Dataset Class

  • java.lang.Object
    • com.azure.resourcemanager.datafactory.models.Dataset

public class Dataset

The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.

Constructor Summary

Constructor Description
Dataset()

Creates an instance of Dataset class.

Method Summary

Modifier and Type Method and Description
Map<String,Object> additionalProperties()

Get the additionalProperties property: The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.

List<Object> annotations()

Get the annotations property: List of tags that can be used for describing the Dataset.

String description()

Get the description property: Dataset description.

DatasetFolder folder()

Get the folder property: The folder that this Dataset is in.

LinkedServiceReference linkedServiceName()

Get the linkedServiceName property: Linked service reference.

Map<String,ParameterSpecification> parameters()

Get the parameters property: Parameters for dataset.

Object schema()

Get the schema property: Columns that define the physical type schema of the dataset.

Object structure()

Get the structure property: Columns that define the structure of the dataset.

void validate()

Validates the instance.

Dataset withAdditionalProperties(Map<String,Object> additionalProperties)

Set the additionalProperties property: The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.

Dataset withAnnotations(List<Object> annotations)

Set the annotations property: List of tags that can be used for describing the Dataset.

Dataset withDescription(String description)

Set the description property: Dataset description.

Dataset withFolder(DatasetFolder folder)

Set the folder property: The folder that this Dataset is in.

Dataset withLinkedServiceName(LinkedServiceReference linkedServiceName)

Set the linkedServiceName property: Linked service reference.

Dataset withParameters(Map<String,ParameterSpecification> parameters)

Set the parameters property: Parameters for dataset.

Dataset withSchema(Object schema)

Set the schema property: Columns that define the physical type schema of the dataset.

Dataset withStructure(Object structure)

Set the structure property: Columns that define the structure of the dataset.

Methods inherited from java.lang.Object

Constructor Details

Dataset

public Dataset()

Creates an instance of Dataset class.

Method Details

additionalProperties

public Map additionalProperties()

Get the additionalProperties property: The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.

Returns:

the additionalProperties value.

annotations

public List annotations()

Get the annotations property: List of tags that can be used for describing the Dataset.

Returns:

the annotations value.

description

public String description()

Get the description property: Dataset description.

Returns:

the description value.

folder

public DatasetFolder folder()

Get the folder property: The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Returns:

the folder value.

linkedServiceName

public LinkedServiceReference linkedServiceName()

Get the linkedServiceName property: Linked service reference.

Returns:

the linkedServiceName value.

parameters

public Map parameters()

Get the parameters property: Parameters for dataset.

Returns:

the parameters value.

schema

public Object schema()

Get the schema property: Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Returns:

the schema value.

structure

public Object structure()

Get the structure property: Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Returns:

the structure value.

validate

public void validate()

Validates the instance.

withAdditionalProperties

public Dataset withAdditionalProperties(Map additionalProperties)

Set the additionalProperties property: The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.

Parameters:

additionalProperties - the additionalProperties value to set.

Returns:

the Dataset object itself.

withAnnotations

public Dataset withAnnotations(List annotations)

Set the annotations property: List of tags that can be used for describing the Dataset.

Parameters:

annotations - the annotations value to set.

Returns:

the Dataset object itself.

withDescription

public Dataset withDescription(String description)

Set the description property: Dataset description.

Parameters:

description - the description value to set.

Returns:

the Dataset object itself.

withFolder

public Dataset withFolder(DatasetFolder folder)

Set the folder property: The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters:

folder - the folder value to set.

Returns:

the Dataset object itself.

withLinkedServiceName

public Dataset withLinkedServiceName(LinkedServiceReference linkedServiceName)

Set the linkedServiceName property: Linked service reference.

Parameters:

linkedServiceName - the linkedServiceName value to set.

Returns:

the Dataset object itself.

withParameters

public Dataset withParameters(Map parameters)

Set the parameters property: Parameters for dataset.

Parameters:

parameters - the parameters value to set.

Returns:

the Dataset object itself.

withSchema

public Dataset withSchema(Object schema)

Set the schema property: Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Parameters:

schema - the schema value to set.

Returns:

the Dataset object itself.

withStructure

public Dataset withStructure(Object structure)

Set the structure property: Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Parameters:

structure - the structure value to set.

Returns:

the Dataset object itself.

Applies to