Class JsonDataset
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.Dataset
-
- com.azure.resourcemanager.datafactory.models.JsonDataset
-
public final class JsonDataset extends Dataset
Json dataset.
-
-
Constructor Summary
Constructors Constructor Description JsonDataset()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DatasetCompression
compression()
Get the compression property: The data compression method used for the json dataset.Object
encodingName()
Get the encodingName property: The code page name of the preferred encoding.DatasetLocation
location()
Get the location property: The location of the json data storage.void
validate()
Validates the instance.JsonDataset
withAnnotations(List<Object> annotations)
Set the annotations property: List of tags that can be used for describing the Dataset.JsonDataset
withCompression(DatasetCompression compression)
Set the compression property: The data compression method used for the json dataset.JsonDataset
withDescription(String description)
Set the description property: Dataset description.JsonDataset
withEncodingName(Object encodingName)
Set the encodingName property: The code page name of the preferred encoding.JsonDataset
withFolder(DatasetFolder folder)
Set the folder property: The folder that this Dataset is in.JsonDataset
withLinkedServiceName(LinkedServiceReference linkedServiceName)
Set the linkedServiceName property: Linked service reference.JsonDataset
withLocation(DatasetLocation location)
Set the location property: The location of the json data storage.JsonDataset
withParameters(Map<String,ParameterSpecification> parameters)
Set the parameters property: Parameters for dataset.JsonDataset
withSchema(Object schema)
Set the schema property: Columns that define the physical type schema of the dataset.JsonDataset
withStructure(Object structure)
Set the structure property: Columns that define the structure of the dataset.-
Methods inherited from class com.azure.resourcemanager.datafactory.models.Dataset
additionalProperties, annotations, description, folder, linkedServiceName, parameters, schema, structure, withAdditionalProperties
-
-
-
-
Method Detail
-
withDescription
public JsonDataset withDescription(String description)
Set the description property: Dataset description.- Overrides:
withDescription
in classDataset
- Parameters:
description
- the description value to set.- Returns:
- the Dataset object itself.
-
withStructure
public JsonDataset withStructure(Object structure)
Set the structure property: Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.- Overrides:
withStructure
in classDataset
- Parameters:
structure
- the structure value to set.- Returns:
- the Dataset object itself.
-
withSchema
public JsonDataset 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.- Overrides:
withSchema
in classDataset
- Parameters:
schema
- the schema value to set.- Returns:
- the Dataset object itself.
-
withLinkedServiceName
public JsonDataset withLinkedServiceName(LinkedServiceReference linkedServiceName)
Set the linkedServiceName property: Linked service reference.- Overrides:
withLinkedServiceName
in classDataset
- Parameters:
linkedServiceName
- the linkedServiceName value to set.- Returns:
- the Dataset object itself.
-
withParameters
public JsonDataset withParameters(Map<String,ParameterSpecification> parameters)
Set the parameters property: Parameters for dataset.- Overrides:
withParameters
in classDataset
- Parameters:
parameters
- the parameters value to set.- Returns:
- the Dataset object itself.
-
withAnnotations
public JsonDataset withAnnotations(List<Object> annotations)
Set the annotations property: List of tags that can be used for describing the Dataset.- Overrides:
withAnnotations
in classDataset
- Parameters:
annotations
- the annotations value to set.- Returns:
- the Dataset object itself.
-
withFolder
public JsonDataset withFolder(DatasetFolder folder)
Set the folder property: The folder that this Dataset is in. If not specified, Dataset will appear at the root level.- Overrides:
withFolder
in classDataset
- Parameters:
folder
- the folder value to set.- Returns:
- the Dataset object itself.
-
location
public DatasetLocation location()
Get the location property: The location of the json data storage.- Returns:
- the location value.
-
withLocation
public JsonDataset withLocation(DatasetLocation location)
Set the location property: The location of the json data storage.- Parameters:
location
- the location value to set.- Returns:
- the JsonDataset object itself.
-
encodingName
public Object encodingName()
Get the encodingName property: The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).- Returns:
- the encodingName value.
-
withEncodingName
public JsonDataset withEncodingName(Object encodingName)
Set the encodingName property: The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).- Parameters:
encodingName
- the encodingName value to set.- Returns:
- the JsonDataset object itself.
-
compression
public DatasetCompression compression()
Get the compression property: The data compression method used for the json dataset.- Returns:
- the compression value.
-
withCompression
public JsonDataset withCompression(DatasetCompression compression)
Set the compression property: The data compression method used for the json dataset.- Parameters:
compression
- the compression value to set.- Returns:
- the JsonDataset object itself.
-
validate
public void validate()
Validates the instance.- Overrides:
validate
in classDataset
- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-