Class DatasetStorageFormat
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.DatasetStorageFormat
-
- Direct Known Subclasses:
AvroFormat
,JsonFormat
,OrcFormat
,ParquetFormat
,TextFormat
public class DatasetStorageFormat extends Object
The format definition of a storage.
-
-
Constructor Summary
Constructors Constructor Description DatasetStorageFormat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
additionalProperties()
Get the additionalProperties property: The format definition of a storage.Object
deserializer()
Get the deserializer property: Deserializer.Object
serializer()
Get the serializer property: Serializer.void
validate()
Validates the instance.DatasetStorageFormat
withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: The format definition of a storage.DatasetStorageFormat
withDeserializer(Object deserializer)
Set the deserializer property: Deserializer.DatasetStorageFormat
withSerializer(Object serializer)
Set the serializer property: Serializer.
-
-
-
Method Detail
-
serializer
public Object serializer()
Get the serializer property: Serializer. Type: string (or Expression with resultType string).- Returns:
- the serializer value.
-
withSerializer
public DatasetStorageFormat withSerializer(Object serializer)
Set the serializer property: Serializer. Type: string (or Expression with resultType string).- Parameters:
serializer
- the serializer value to set.- Returns:
- the DatasetStorageFormat object itself.
-
deserializer
public Object deserializer()
Get the deserializer property: Deserializer. Type: string (or Expression with resultType string).- Returns:
- the deserializer value.
-
withDeserializer
public DatasetStorageFormat withDeserializer(Object deserializer)
Set the deserializer property: Deserializer. Type: string (or Expression with resultType string).- Parameters:
deserializer
- the deserializer value to set.- Returns:
- the DatasetStorageFormat object itself.
-
additionalProperties
public Map<String,Object> additionalProperties()
Get the additionalProperties property: The format definition of a storage.- Returns:
- the additionalProperties value.
-
withAdditionalProperties
public DatasetStorageFormat withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: The format definition of a storage.- Parameters:
additionalProperties
- the additionalProperties value to set.- Returns:
- the DatasetStorageFormat object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-