Class StoreWriteSettings
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.StoreWriteSettings
-
- Direct Known Subclasses:
AzureBlobFSWriteSettings
,AzureBlobStorageWriteSettings
,AzureDataLakeStoreWriteSettings
,AzureFileStorageWriteSettings
,FileServerWriteSettings
,SftpWriteSettings
public class StoreWriteSettings extends Object
Connector write settings.
-
-
Constructor Summary
Constructors Constructor Description StoreWriteSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
additionalProperties()
Get the additionalProperties property: Connector write settings.Object
copyBehavior()
Get the copyBehavior property: The type of copy behavior for copy sink.Object
disableMetricsCollection()
Get the disableMetricsCollection property: If true, disable data store metrics collection.Object
maxConcurrentConnections()
Get the maxConcurrentConnections property: The maximum concurrent connection count for the source data store.void
validate()
Validates the instance.StoreWriteSettings
withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: Connector write settings.StoreWriteSettings
withCopyBehavior(Object copyBehavior)
Set the copyBehavior property: The type of copy behavior for copy sink.StoreWriteSettings
withDisableMetricsCollection(Object disableMetricsCollection)
Set the disableMetricsCollection property: If true, disable data store metrics collection.StoreWriteSettings
withMaxConcurrentConnections(Object maxConcurrentConnections)
Set the maxConcurrentConnections property: The maximum concurrent connection count for the source data store.
-
-
-
Method Detail
-
maxConcurrentConnections
public Object maxConcurrentConnections()
Get the maxConcurrentConnections property: The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).- Returns:
- the maxConcurrentConnections value.
-
withMaxConcurrentConnections
public StoreWriteSettings withMaxConcurrentConnections(Object maxConcurrentConnections)
Set the maxConcurrentConnections property: The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).- Parameters:
maxConcurrentConnections
- the maxConcurrentConnections value to set.- Returns:
- the StoreWriteSettings object itself.
-
disableMetricsCollection
public Object disableMetricsCollection()
Get the disableMetricsCollection property: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).- Returns:
- the disableMetricsCollection value.
-
withDisableMetricsCollection
public StoreWriteSettings withDisableMetricsCollection(Object disableMetricsCollection)
Set the disableMetricsCollection property: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).- Parameters:
disableMetricsCollection
- the disableMetricsCollection value to set.- Returns:
- the StoreWriteSettings object itself.
-
copyBehavior
public Object copyBehavior()
Get the copyBehavior property: The type of copy behavior for copy sink.- Returns:
- the copyBehavior value.
-
withCopyBehavior
public StoreWriteSettings withCopyBehavior(Object copyBehavior)
Set the copyBehavior property: The type of copy behavior for copy sink.- Parameters:
copyBehavior
- the copyBehavior value to set.- Returns:
- the StoreWriteSettings object itself.
-
additionalProperties
public Map<String,Object> additionalProperties()
Get the additionalProperties property: Connector write settings.- Returns:
- the additionalProperties value.
-
withAdditionalProperties
public StoreWriteSettings withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: Connector write settings.- Parameters:
additionalProperties
- the additionalProperties value to set.- Returns:
- the StoreWriteSettings object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-