Class StoreReadSettings
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.StoreReadSettings
-
- Direct Known Subclasses:
AmazonS3CompatibleReadSettings
,AmazonS3ReadSettings
,AzureBlobFSReadSettings
,AzureBlobStorageReadSettings
,AzureDataLakeStoreReadSettings
,AzureFileStorageReadSettings
,FileServerReadSettings
,FtpReadSettings
,GoogleCloudStorageReadSettings
,HdfsReadSettings
,HttpReadSettings
,OracleCloudStorageReadSettings
,SftpReadSettings
public class StoreReadSettings extends Object
Connector read setting.
-
-
Constructor Summary
Constructors Constructor Description StoreReadSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
additionalProperties()
Get the additionalProperties property: Connector read setting.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.StoreReadSettings
withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: Connector read setting.StoreReadSettings
withDisableMetricsCollection(Object disableMetricsCollection)
Set the disableMetricsCollection property: If true, disable data store metrics collection.StoreReadSettings
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 StoreReadSettings 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 StoreReadSettings 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 StoreReadSettings 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 StoreReadSettings object itself.
-
additionalProperties
public Map<String,Object> additionalProperties()
Get the additionalProperties property: Connector read setting.- Returns:
- the additionalProperties value.
-
withAdditionalProperties
public StoreReadSettings withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: Connector read setting.- Parameters:
additionalProperties
- the additionalProperties value to set.- Returns:
- the StoreReadSettings object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-