diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonMWSSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonMWSSource.cs
index 80a37d728bf6..e54ae64a901c 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonMWSSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonMWSSource.cs
@@ -41,6 +41,9 @@ public AmazonMWSSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -49,8 +52,8 @@ public AmazonMWSSource()
/// resultType array of objects).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public AmazonMWSSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public AmazonMWSSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
Query = query;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonRedshiftSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonRedshiftSource.cs
index 80ddc2c7b95f..ef8a73ee58c6 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonRedshiftSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonRedshiftSource.cs
@@ -41,6 +41,9 @@ public AmazonRedshiftSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -54,8 +57,8 @@ public AmazonRedshiftSource()
/// unload. With this, data from Amazon Redshift source will be
/// unloaded into S3 first and then copied into the targeted sink from
/// the interim S3.
- public AmazonRedshiftSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object), RedshiftUnloadSettings redshiftUnloadSettings = default(RedshiftUnloadSettings))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public AmazonRedshiftSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object), RedshiftUnloadSettings redshiftUnloadSettings = default(RedshiftUnloadSettings))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
Query = query;
RedshiftUnloadSettings = redshiftUnloadSettings;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3CompatibleReadSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3CompatibleReadSettings.cs
index 0f01aba06443..81b06efea002 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3CompatibleReadSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3CompatibleReadSettings.cs
@@ -38,6 +38,9 @@ public AmazonS3CompatibleReadSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
@@ -68,8 +71,8 @@ public AmazonS3CompatibleReadSettings()
/// The end of file's modified
/// datetime. Type: string (or Expression with resultType
/// string).
- public AmazonS3CompatibleReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
- : base(additionalProperties, maxConcurrentConnections)
+ public AmazonS3CompatibleReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection)
{
Recursive = recursive;
WildcardFolderPath = wildcardFolderPath;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3ReadSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3ReadSettings.cs
index afd78707609f..0988d7914906 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3ReadSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonS3ReadSettings.cs
@@ -36,6 +36,9 @@ public AmazonS3ReadSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
@@ -64,8 +67,8 @@ public AmazonS3ReadSettings()
/// The end of file's modified
/// datetime. Type: string (or Expression with resultType
/// string).
- public AmazonS3ReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
- : base(additionalProperties, maxConcurrentConnections)
+ public AmazonS3ReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection)
{
Recursive = recursive;
WildcardFolderPath = wildcardFolderPath;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSink.cs
index 971fe631c2e1..9121a0c98ed3 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSink.cs
@@ -46,10 +46,13 @@ public AvroSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Avro store settings.
/// Avro format settings.
- public AvroSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), StoreWriteSettings storeSettings = default(StoreWriteSettings), AvroWriteSettings formatSettings = default(AvroWriteSettings))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AvroSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), StoreWriteSettings storeSettings = default(StoreWriteSettings), AvroWriteSettings formatSettings = default(AvroWriteSettings))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
StoreSettings = storeSettings;
FormatSettings = formatSettings;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSource.cs
index f1d8804fbda2..14f60dd06b26 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AvroSource.cs
@@ -41,12 +41,15 @@ public AvroSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Avro store settings.
/// Specifies the additional columns to
/// be added to source data. Type: array of objects (or Expression with
/// resultType array of objects).
- public AvroSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), StoreReadSettings storeSettings = default(StoreReadSettings), IList additionalColumns = default(IList))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public AvroSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), StoreReadSettings storeSettings = default(StoreReadSettings), IList additionalColumns = default(IList))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
StoreSettings = storeSettings;
AdditionalColumns = additionalColumns;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSReadSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSReadSettings.cs
index 7d26d4ce46bd..6f587896636a 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSReadSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSReadSettings.cs
@@ -36,6 +36,9 @@ public AzureBlobFSReadSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
@@ -62,8 +65,8 @@ public AzureBlobFSReadSettings()
/// The end of file's modified
/// datetime. Type: string (or Expression with resultType
/// string).
- public AzureBlobFSReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
- : base(additionalProperties, maxConcurrentConnections)
+ public AzureBlobFSReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection)
{
Recursive = recursive;
WildcardFolderPath = wildcardFolderPath;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSink.cs
index 587c3c7c0b67..df25b3af902e 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSink.cs
@@ -46,10 +46,13 @@ public AzureBlobFSSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The type of copy behavior for copy
/// sink.
- public AzureBlobFSSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object copyBehavior = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureBlobFSSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object copyBehavior = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
CopyBehavior = copyBehavior;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSource.cs
index 9542d1895e94..e8b20d378e78 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSSource.cs
@@ -41,6 +41,9 @@ public AzureBlobFSSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Treat empty as null. Type: boolean
/// (or Expression with resultType boolean).
/// Number of header lines to skip
@@ -49,8 +52,8 @@ public AzureBlobFSSource()
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
- public AzureBlobFSSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object treatEmptyAsNull = default(object), object skipHeaderLineCount = default(object), object recursive = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public AzureBlobFSSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object treatEmptyAsNull = default(object), object skipHeaderLineCount = default(object), object recursive = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
TreatEmptyAsNull = treatEmptyAsNull;
SkipHeaderLineCount = skipHeaderLineCount;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSWriteSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSWriteSettings.cs
index a4190a133de4..766dd73d274b 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSWriteSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobFSWriteSettings.cs
@@ -36,13 +36,16 @@ public AzureBlobFSWriteSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The type of copy behavior for copy
/// sink.
/// Indicates the block size(MB) when
/// writing data to blob. Type: integer (or Expression with resultType
/// integer).
- public AzureBlobFSWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object copyBehavior = default(object), object blockSizeInMB = default(object))
- : base(additionalProperties, maxConcurrentConnections, copyBehavior)
+ public AzureBlobFSWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object copyBehavior = default(object), object blockSizeInMB = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection, copyBehavior)
{
BlockSizeInMB = blockSizeInMB;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageReadSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageReadSettings.cs
index 3c31ef1dec5e..e2dce915eb46 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageReadSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageReadSettings.cs
@@ -38,6 +38,9 @@ public AzureBlobStorageReadSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
@@ -66,8 +69,8 @@ public AzureBlobStorageReadSettings()
/// The end of file's modified
/// datetime. Type: string (or Expression with resultType
/// string).
- public AzureBlobStorageReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
- : base(additionalProperties, maxConcurrentConnections)
+ public AzureBlobStorageReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection)
{
Recursive = recursive;
WildcardFolderPath = wildcardFolderPath;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageWriteSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageWriteSettings.cs
index 5abe50e082e2..1fcfba4cd5da 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageWriteSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureBlobStorageWriteSettings.cs
@@ -38,13 +38,16 @@ public AzureBlobStorageWriteSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The type of copy behavior for copy
/// sink.
/// Indicates the block size(MB) when
/// writing data to blob. Type: integer (or Expression with resultType
/// integer).
- public AzureBlobStorageWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object copyBehavior = default(object), object blockSizeInMB = default(object))
- : base(additionalProperties, maxConcurrentConnections, copyBehavior)
+ public AzureBlobStorageWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object copyBehavior = default(object), object blockSizeInMB = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection, copyBehavior)
{
BlockSizeInMB = blockSizeInMB;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSink.cs
index c0cd48667b9d..34f9ef97360b 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSink.cs
@@ -46,6 +46,9 @@ public AzureDataExplorerSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// A name of a pre-created csv
/// mapping that was defined on the target Kusto table. Type:
/// string.
@@ -53,8 +56,8 @@ public AzureDataExplorerSink()
/// description provided in a json format. Type: string.
/// If set to true, any aggregation will
/// be skipped. Default is false. Type: boolean.
- public AzureDataExplorerSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object ingestionMappingName = default(object), object ingestionMappingAsJson = default(object), object flushImmediately = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureDataExplorerSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ingestionMappingName = default(object), object ingestionMappingAsJson = default(object), object flushImmediately = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
IngestionMappingName = ingestionMappingName;
IngestionMappingAsJson = ingestionMappingAsJson;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSource.cs
index 7874791ec0ea..4b939a6be9fa 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataExplorerSource.cs
@@ -45,6 +45,9 @@ public AzureDataExplorerSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The name of the Boolean option that
/// controls whether truncation is applied to result-sets that go
/// beyond a certain row-count limit.
@@ -54,8 +57,8 @@ public AzureDataExplorerSource()
/// Specifies the additional columns to
/// be added to source data. Type: array of objects (or Expression with
/// resultType array of objects).
- public AzureDataExplorerSource(object query, IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object noTruncation = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public AzureDataExplorerSource(object query, IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object noTruncation = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
Query = query;
NoTruncation = noTruncation;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreReadSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreReadSettings.cs
index 59fd4720f38c..c02cd73c8f2d 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreReadSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreReadSettings.cs
@@ -38,6 +38,9 @@ public AzureDataLakeStoreReadSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
@@ -74,8 +77,8 @@ public AzureDataLakeStoreReadSettings()
/// The end of file's modified
/// datetime. Type: string (or Expression with resultType
/// string).
- public AzureDataLakeStoreReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object fileListPath = default(object), object listAfter = default(object), object listBefore = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
- : base(additionalProperties, maxConcurrentConnections)
+ public AzureDataLakeStoreReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object fileListPath = default(object), object listAfter = default(object), object listBefore = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection)
{
Recursive = recursive;
WildcardFolderPath = wildcardFolderPath;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSink.cs
index 0760f01ffd36..596a65bba5fa 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSink.cs
@@ -46,12 +46,15 @@ public AzureDataLakeStoreSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The type of copy behavior for copy
/// sink.
/// Single File
/// Parallel.
- public AzureDataLakeStoreSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object copyBehavior = default(object), object enableAdlsSingleFileParallel = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureDataLakeStoreSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object copyBehavior = default(object), object enableAdlsSingleFileParallel = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
CopyBehavior = copyBehavior;
EnableAdlsSingleFileParallel = enableAdlsSingleFileParallel;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSource.cs
index 4d60d8925580..eaaf03365c24 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreSource.cs
@@ -41,11 +41,14 @@ public AzureDataLakeStoreSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
- public AzureDataLakeStoreSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object recursive = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public AzureDataLakeStoreSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object recursive = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
Recursive = recursive;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreWriteSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreWriteSettings.cs
index 8b187af31cc6..bfeebae49554 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreWriteSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDataLakeStoreWriteSettings.cs
@@ -38,14 +38,17 @@ public AzureDataLakeStoreWriteSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The type of copy behavior for copy
/// sink.
/// Specifies the expiry time of the
/// written files. The time is applied to the UTC time zone in the
/// format of "2018-12-01T05:00:00Z". Default value is NULL. Type:
/// integer (or Expression with resultType integer).
- public AzureDataLakeStoreWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object copyBehavior = default(object), object expiryDateTime = default(object))
- : base(additionalProperties, maxConcurrentConnections, copyBehavior)
+ public AzureDataLakeStoreWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object copyBehavior = default(object), object expiryDateTime = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection, copyBehavior)
{
ExpiryDateTime = expiryDateTime;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSink.cs
index 7df2d3a1dd14..a7918ed8f104 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSink.cs
@@ -48,12 +48,15 @@ public AzureDatabricksDeltaLakeSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// SQL pre-copy script. Type: string (or
/// Expression with resultType string).
/// Azure Databricks Delta Lake import
/// settings.
- public AzureDatabricksDeltaLakeSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object preCopyScript = default(object), AzureDatabricksDeltaLakeImportCommand importSettings = default(AzureDatabricksDeltaLakeImportCommand))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureDatabricksDeltaLakeSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object preCopyScript = default(object), AzureDatabricksDeltaLakeImportCommand importSettings = default(AzureDatabricksDeltaLakeImportCommand))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
PreCopyScript = preCopyScript;
ImportSettings = importSettings;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSource.cs
index 55f52dbb477d..e51bdc2bbc7d 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureDatabricksDeltaLakeSource.cs
@@ -43,12 +43,15 @@ public AzureDatabricksDeltaLakeSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Azure Databricks Delta Lake Sql query. Type:
/// string (or Expression with resultType string).
/// Azure Databricks Delta Lake export
/// settings.
- public AzureDatabricksDeltaLakeSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object query = default(object), AzureDatabricksDeltaLakeExportCommand exportSettings = default(AzureDatabricksDeltaLakeExportCommand))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public AzureDatabricksDeltaLakeSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object query = default(object), AzureDatabricksDeltaLakeExportCommand exportSettings = default(AzureDatabricksDeltaLakeExportCommand))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
Query = query;
ExportSettings = exportSettings;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageReadSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageReadSettings.cs
index 05a2c07d75c2..c1f95c026f38 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageReadSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageReadSettings.cs
@@ -38,6 +38,9 @@ public AzureFileStorageReadSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
@@ -68,8 +71,8 @@ public AzureFileStorageReadSettings()
/// The end of file's modified
/// datetime. Type: string (or Expression with resultType
/// string).
- public AzureFileStorageReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
- : base(additionalProperties, maxConcurrentConnections)
+ public AzureFileStorageReadSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object recursive = default(object), object wildcardFolderPath = default(object), object wildcardFileName = default(object), object prefix = default(object), object fileListPath = default(object), bool? enablePartitionDiscovery = default(bool?), object partitionRootPath = default(object), object deleteFilesAfterCompletion = default(object), object modifiedDatetimeStart = default(object), object modifiedDatetimeEnd = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection)
{
Recursive = recursive;
WildcardFolderPath = wildcardFolderPath;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageWriteSettings.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageWriteSettings.cs
index 10849e9db258..afd1cfdf8378 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageWriteSettings.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureFileStorageWriteSettings.cs
@@ -37,10 +37,13 @@ public AzureFileStorageWriteSettings()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The type of copy behavior for copy
/// sink.
- public AzureFileStorageWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object copyBehavior = default(object))
- : base(additionalProperties, maxConcurrentConnections, copyBehavior)
+ public AzureFileStorageWriteSettings(IDictionary additionalProperties = default(IDictionary), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object copyBehavior = default(object))
+ : base(additionalProperties, maxConcurrentConnections, disableMetricsCollection, copyBehavior)
{
CustomInit();
}
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMariaDBSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMariaDBSource.cs
index 40648531bb38..d1636de8dfcd 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMariaDBSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMariaDBSource.cs
@@ -41,6 +41,9 @@ public AzureMariaDBSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -49,8 +52,8 @@ public AzureMariaDBSource()
/// resultType array of objects).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public AzureMariaDBSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public AzureMariaDBSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
Query = query;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSink.cs
index 833052d405ae..9b22e3ee042d 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSink.cs
@@ -46,10 +46,13 @@ public AzureMySqlSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// A query to execute before starting the
/// copy. Type: string (or Expression with resultType string).
- public AzureMySqlSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object preCopyScript = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureMySqlSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object preCopyScript = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
PreCopyScript = preCopyScript;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSource.cs
index 1eb1ed222b18..4c793486ec46 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSource.cs
@@ -41,6 +41,9 @@ public AzureMySqlSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -49,8 +52,8 @@ public AzureMySqlSource()
/// resultType array of objects).
/// Database query. Type: string (or Expression
/// with resultType string).
- public AzureMySqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public AzureMySqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
Query = query;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSink.cs
index b7948c955b27..b55a0437d4d4 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSink.cs
@@ -46,10 +46,13 @@ public AzurePostgreSqlSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// A query to execute before starting the
/// copy. Type: string (or Expression with resultType string).
- public AzurePostgreSqlSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object preCopyScript = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzurePostgreSqlSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object preCopyScript = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
PreCopyScript = preCopyScript;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSource.cs
index 97b8d0ecd64e..bd87ecaed30e 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzurePostgreSqlSource.cs
@@ -41,6 +41,9 @@ public AzurePostgreSqlSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -49,8 +52,8 @@ public AzurePostgreSqlSource()
/// resultType array of objects).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public AzurePostgreSqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public AzurePostgreSqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
Query = query;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureQueueSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureQueueSink.cs
index a3412d7745c0..473887e4208c 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureQueueSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureQueueSink.cs
@@ -45,8 +45,11 @@ public AzureQueueSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
- public AzureQueueSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
+ public AzureQueueSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
CustomInit();
}
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSearchIndexSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSearchIndexSink.cs
index cc1483ddc136..7699e920e525 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSearchIndexSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSearchIndexSink.cs
@@ -46,11 +46,14 @@ public AzureSearchIndexSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Specify the write behavior when
/// upserting documents into Azure Search Index. Possible values
/// include: 'Merge', 'Upload'
- public AzureSearchIndexSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), string writeBehavior = default(string))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureSearchIndexSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), string writeBehavior = default(string))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
WriteBehavior = writeBehavior;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSink.cs
index e5132caf465f..0a8bc9813a75 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSink.cs
@@ -46,6 +46,9 @@ public AzureSqlSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// SQL writer stored
/// procedure name. Type: string (or Expression with resultType
/// string).
@@ -61,8 +64,8 @@ public AzureSqlSink()
/// The option to handle sink table, such as
/// autoCreate. For now only 'autoCreate' value is supported. Type:
/// string (or Expression with resultType string).
- public AzureSqlSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object sqlWriterStoredProcedureName = default(object), object sqlWriterTableType = default(object), object preCopyScript = default(object), IDictionary storedProcedureParameters = default(IDictionary), object storedProcedureTableTypeParameterName = default(object), object tableOption = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureSqlSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object sqlWriterStoredProcedureName = default(object), object sqlWriterTableType = default(object), object preCopyScript = default(object), IDictionary storedProcedureParameters = default(IDictionary), object storedProcedureTableTypeParameterName = default(object), object tableOption = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
SqlWriterStoredProcedureName = sqlWriterStoredProcedureName;
SqlWriterTableType = sqlWriterTableType;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSource.cs
index 95c31c0aa117..36b761878b9c 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureSqlSource.cs
@@ -41,6 +41,9 @@ public AzureSqlSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -63,8 +66,8 @@ public AzureSqlSource()
/// "PhysicalPartitionsOfTable", "DynamicRange".
/// The settings that will be leveraged
/// for Sql source partitioning.
- public AzureSqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object sqlReaderQuery = default(object), object sqlReaderStoredProcedureName = default(object), IDictionary storedProcedureParameters = default(IDictionary), object produceAdditionalTypes = default(object), object partitionOption = default(object), SqlPartitionSettings partitionSettings = default(SqlPartitionSettings))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public AzureSqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object sqlReaderQuery = default(object), object sqlReaderStoredProcedureName = default(object), IDictionary storedProcedureParameters = default(IDictionary), object produceAdditionalTypes = default(object), object partitionOption = default(object), SqlPartitionSettings partitionSettings = default(SqlPartitionSettings))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
SqlReaderQuery = sqlReaderQuery;
SqlReaderStoredProcedureName = sqlReaderStoredProcedureName;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSink.cs
index 3700867f3ad8..43a902f560fe 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSink.cs
@@ -46,6 +46,9 @@ public AzureTableSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Azure Table
/// default partition key value. Type: string (or Expression with
/// resultType string).
@@ -55,8 +58,8 @@ public AzureTableSink()
/// string (or Expression with resultType string).
/// Azure Table insert type. Type:
/// string (or Expression with resultType string).
- public AzureTableSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object azureTableDefaultPartitionKeyValue = default(object), object azureTablePartitionKeyName = default(object), object azureTableRowKeyName = default(object), object azureTableInsertType = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public AzureTableSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object azureTableDefaultPartitionKeyValue = default(object), object azureTablePartitionKeyName = default(object), object azureTableRowKeyName = default(object), object azureTableInsertType = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
AzureTableDefaultPartitionKeyValue = azureTableDefaultPartitionKeyValue;
AzureTablePartitionKeyName = azureTablePartitionKeyName;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSource.cs
index c7d9c98a7e1f..1c49ec1e354b 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureTableSource.cs
@@ -41,6 +41,9 @@ public AzureTableSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -52,8 +55,8 @@ public AzureTableSource()
/// Azure Table
/// source ignore table not found. Type: boolean (or Expression with
/// resultType boolean).
- public AzureTableSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object azureTableSourceQuery = default(object), object azureTableSourceIgnoreTableNotFound = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public AzureTableSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object azureTableSourceQuery = default(object), object azureTableSourceIgnoreTableNotFound = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
AzureTableSourceQuery = azureTableSourceQuery;
AzureTableSourceIgnoreTableNotFound = azureTableSourceIgnoreTableNotFound;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySink.cs
index 5fec652f6705..ab1b00c4b2ac 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySink.cs
@@ -46,9 +46,12 @@ public BinarySink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Binary store settings.
- public BinarySink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), StoreWriteSettings storeSettings = default(StoreWriteSettings))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public BinarySink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), StoreWriteSettings storeSettings = default(StoreWriteSettings))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
StoreSettings = storeSettings;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySource.cs
index 61961e4bd0fc..71c7bde2e2d9 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BinarySource.cs
@@ -41,10 +41,13 @@ public BinarySource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Binary store settings.
/// Binary format settings.
- public BinarySource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), StoreReadSettings storeSettings = default(StoreReadSettings), BinaryReadSettings formatSettings = default(BinaryReadSettings))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public BinarySource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), StoreReadSettings storeSettings = default(StoreReadSettings), BinaryReadSettings formatSettings = default(BinaryReadSettings))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
StoreSettings = storeSettings;
FormatSettings = formatSettings;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSink.cs
index ff85b921f5a5..7b87ed090d61 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSink.cs
@@ -46,6 +46,9 @@ public BlobSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Blob writer overwrite files.
/// Type: boolean (or Expression with resultType boolean).
/// Blob writer date time
@@ -55,8 +58,8 @@ public BlobSink()
/// boolean (or Expression with resultType boolean).
/// The type of copy behavior for copy
/// sink.
- public BlobSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object blobWriterOverwriteFiles = default(object), object blobWriterDateTimeFormat = default(object), object blobWriterAddHeader = default(object), object copyBehavior = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public BlobSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object blobWriterOverwriteFiles = default(object), object blobWriterDateTimeFormat = default(object), object blobWriterAddHeader = default(object), object copyBehavior = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
BlobWriterOverwriteFiles = blobWriterOverwriteFiles;
BlobWriterDateTimeFormat = blobWriterDateTimeFormat;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSource.cs
index 86fe12c48633..b3ec0bf75ea5 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/BlobSource.cs
@@ -41,6 +41,9 @@ public BlobSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Treat empty as null. Type: boolean
/// (or Expression with resultType boolean).
/// Number of header lines to skip
@@ -49,8 +52,8 @@ public BlobSource()
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
- public BlobSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object treatEmptyAsNull = default(object), object skipHeaderLineCount = default(object), object recursive = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public BlobSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object treatEmptyAsNull = default(object), object skipHeaderLineCount = default(object), object recursive = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
TreatEmptyAsNull = treatEmptyAsNull;
SkipHeaderLineCount = skipHeaderLineCount;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CassandraSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CassandraSource.cs
index facd12079d67..f12ac4229fce 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CassandraSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CassandraSource.cs
@@ -41,6 +41,9 @@ public CassandraSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -58,8 +61,8 @@ public CassandraSource()
/// default value is 'ONE'. It is case-insensitive. Possible values
/// include: 'ALL', 'EACH_QUORUM', 'QUORUM', 'LOCAL_QUORUM', 'ONE',
/// 'TWO', 'THREE', 'LOCAL_ONE', 'SERIAL', 'LOCAL_SERIAL'
- public CassandraSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object), string consistencyLevel = default(string))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public CassandraSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object), string consistencyLevel = default(string))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
Query = query;
ConsistencyLevel = consistencyLevel;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSink.cs
index 3053bee2212e..67010038f1fe 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSink.cs
@@ -48,6 +48,9 @@ public CommonDataServiceForAppsSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// The flag indicating whether to
/// ignore null values from input dataset (except key fields) during
/// write operation. Default is false. Type: boolean (or Expression
@@ -55,8 +58,8 @@ public CommonDataServiceForAppsSink()
/// The logical name of the alternate
/// key which will be used when upserting records. Type: string (or
/// Expression with resultType string).
- public CommonDataServiceForAppsSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public CommonDataServiceForAppsSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
IgnoreNullValues = ignoreNullValues;
AlternateKeyName = alternateKeyName;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSource.cs
index 345946dc3feb..2b1be9cd0862 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CommonDataServiceForAppsSource.cs
@@ -43,6 +43,9 @@ public CommonDataServiceForAppsSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// FetchXML is a proprietary query language that
/// is used in Microsoft Common Data Service for Apps (online &
/// on-premises). Type: string (or Expression with resultType
@@ -50,8 +53,8 @@ public CommonDataServiceForAppsSource()
/// Specifies the additional columns to
/// be added to source data. Type: array of objects (or Expression with
/// resultType array of objects).
- public CommonDataServiceForAppsSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object query = default(object), IList additionalColumns = default(IList))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public CommonDataServiceForAppsSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object query = default(object), IList additionalColumns = default(IList))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
Query = query;
AdditionalColumns = additionalColumns;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/ConcurSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/ConcurSource.cs
index 8f66fe7350da..b26dbe9e7ffc 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/ConcurSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/ConcurSource.cs
@@ -41,6 +41,9 @@ public ConcurSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -49,8 +52,8 @@ public ConcurSource()
/// resultType array of objects).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public ConcurSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, queryTimeout, additionalColumns)
+ public ConcurSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection, queryTimeout, additionalColumns)
{
Query = query;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySink.cs
index ac2f9e17465e..f026994c4449 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySink.cs
@@ -46,7 +46,10 @@ public CopySink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
- public CopySink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object))
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
+ public CopySink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object))
{
AdditionalProperties = additionalProperties;
WriteBatchSize = writeBatchSize;
@@ -54,6 +57,7 @@ public CopySink()
SinkRetryCount = sinkRetryCount;
SinkRetryWait = sinkRetryWait;
MaxConcurrentConnections = maxConcurrentConnections;
+ DisableMetricsCollection = disableMetricsCollection;
CustomInit();
}
@@ -106,5 +110,13 @@ public CopySink()
[JsonProperty(PropertyName = "maxConcurrentConnections")]
public object MaxConcurrentConnections { get; set; }
+ ///
+ /// Gets or sets if true, disable data store metrics collection.
+ /// Default is false. Type: boolean (or Expression with resultType
+ /// boolean).
+ ///
+ [JsonProperty(PropertyName = "disableMetricsCollection")]
+ public object DisableMetricsCollection { get; set; }
+
}
}
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySource.cs
index 6cf1c11db478..f26d45b26ae0 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CopySource.cs
@@ -41,12 +41,16 @@ public CopySource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
- public CopySource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object))
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
+ public CopySource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object))
{
AdditionalProperties = additionalProperties;
SourceRetryCount = sourceRetryCount;
SourceRetryWait = sourceRetryWait;
MaxConcurrentConnections = maxConcurrentConnections;
+ DisableMetricsCollection = disableMetricsCollection;
CustomInit();
}
@@ -84,5 +88,13 @@ public CopySource()
[JsonProperty(PropertyName = "maxConcurrentConnections")]
public object MaxConcurrentConnections { get; set; }
+ ///
+ /// Gets or sets if true, disable data store metrics collection.
+ /// Default is false. Type: boolean (or Expression with resultType
+ /// boolean).
+ ///
+ [JsonProperty(PropertyName = "disableMetricsCollection")]
+ public object DisableMetricsCollection { get; set; }
+
}
}
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSink.cs
index 396dec19b3c1..624ec13eab8b 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSink.cs
@@ -46,13 +46,16 @@ public CosmosDbMongoDbApiSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Specifies whether the document with
/// same key to be overwritten (upsert) rather than throw exception
/// (insert). The default value is "insert". Type: string (or
/// Expression with resultType string). Type: string (or Expression
/// with resultType string).
- public CosmosDbMongoDbApiSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object writeBehavior = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public CosmosDbMongoDbApiSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object writeBehavior = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
WriteBehavior = writeBehavior;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSource.cs
index ec910ea1d7f3..a43cc4640813 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbMongoDbApiSource.cs
@@ -41,6 +41,9 @@ public CosmosDbMongoDbApiSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Specifies selection filter using query
/// operators. To return all documents in a collection, omit this
/// parameter or pass an empty document ({}). Type: string (or
@@ -59,8 +62,8 @@ public CosmosDbMongoDbApiSource()
/// Specifies the additional columns to
/// be added to source data. Type: array of objects (or Expression with
/// resultType array of objects).
- public CosmosDbMongoDbApiSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object filter = default(object), MongoDbCursorMethodsProperties cursorMethods = default(MongoDbCursorMethodsProperties), object batchSize = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public CosmosDbMongoDbApiSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object filter = default(object), MongoDbCursorMethodsProperties cursorMethods = default(MongoDbCursorMethodsProperties), object batchSize = default(object), object queryTimeout = default(object), IList additionalColumns = default(IList))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
Filter = filter;
CursorMethods = cursorMethods;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSink.cs
index a6f5bf1acc86..7cf403306e7e 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSink.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSink.cs
@@ -46,11 +46,14 @@ public CosmosDbSqlApiSink()
/// The maximum concurrent
/// connection count for the sink data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Describes how to write data to Azure
/// Cosmos DB. Type: string (or Expression with resultType string).
/// Allowed values: insert and upsert.
- public CosmosDbSqlApiSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object writeBehavior = default(object))
- : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections)
+ public CosmosDbSqlApiSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object writeBehavior = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
WriteBehavior = writeBehavior;
CustomInit();
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSource.cs
index 39e3c972e981..eba548a04343 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CosmosDbSqlApiSource.cs
@@ -41,6 +41,9 @@ public CosmosDbSqlApiSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// SQL API query. Type: string (or Expression with
/// resultType string).
/// Page size of the result. Type: integer (or
@@ -53,8 +56,8 @@ public CosmosDbSqlApiSource()
/// Specifies the additional columns to
/// be added to source data. Type: array of objects (or Expression with
/// resultType array of objects).
- public CosmosDbSqlApiSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object query = default(object), object pageSize = default(object), object preferredRegions = default(object), object detectDatetime = default(object), IList additionalColumns = default(IList))
- : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections)
+ public CosmosDbSqlApiSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object query = default(object), object pageSize = default(object), object preferredRegions = default(object), object detectDatetime = default(object), IList additionalColumns = default(IList))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, disableMetricsCollection)
{
Query = query;
PageSize = pageSize;
diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CouchbaseSource.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CouchbaseSource.cs
index da869996583f..94b04c9917ce 100644
--- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CouchbaseSource.cs
+++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/CouchbaseSource.cs
@@ -41,6 +41,9 @@ public CouchbaseSource()
/// The maximum concurrent
/// connection count for the source data store. Type: integer (or
/// Expression with resultType integer).
+ /// If true, disable data store
+ /// metrics collection. Default is false. Type: boolean (or Expression
+ /// with resultType boolean).
/// Query timeout. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
@@ -49,8 +52,8 @@ public CouchbaseSource()
/// resultType array of objects).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public CouchbaseSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object maxConcurrentConnections = default(object), object queryTimeout = default(object), IList