diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs
index 51a901ef2002..ab3f3e522dcf 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs
@@ -33,10 +33,13 @@ public Activity()
/// Initializes a new instance of the Activity class.
///
/// Activity name.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Activity description.
/// Activity depends on condition.
- public Activity(string name, string description = default(string), IList dependsOn = default(IList))
+ public Activity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList))
{
+ AdditionalProperties = additionalProperties;
Name = name;
Description = description;
DependsOn = dependsOn;
@@ -48,6 +51,13 @@ public Activity()
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets or sets activity name.
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs
index 436836e60f30..c2d28c0a175b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs
@@ -35,8 +35,11 @@ public ActivityDependency()
/// Activity name.
/// Match-Condition for the
/// dependency.
- public ActivityDependency(string activity, IList dependencyConditions)
+ /// Unmatched properties from the
+ /// message are deserialized this collection
+ public ActivityDependency(string activity, IList dependencyConditions, IDictionary additionalProperties = default(IDictionary))
{
+ AdditionalProperties = additionalProperties;
Activity = activity;
DependencyConditions = dependencyConditions;
CustomInit();
@@ -47,6 +50,13 @@ public ActivityDependency(string activity, IList dependencyConditions)
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets or sets activity name.
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs
index 8003e5b3478c..558fa81cedb2 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs
@@ -12,6 +12,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
{
using Microsoft.Rest;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -30,6 +32,8 @@ public ActivityPolicy()
///
/// Initializes a new instance of the ActivityPolicy class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Specifies the timeout for the activity to
/// run. The default timeout is 7 days. Type: string (or Expression
/// with resultType string), pattern:
@@ -39,8 +43,9 @@ public ActivityPolicy()
/// 0.
/// Interval between each retry
/// attempt (in seconds). The default is 30 sec.
- public ActivityPolicy(object timeout = default(object), object retry = default(object), int? retryIntervalInSeconds = default(int?))
+ public ActivityPolicy(IDictionary additionalProperties = default(IDictionary), object timeout = default(object), object retry = default(object), int? retryIntervalInSeconds = default(int?))
{
+ AdditionalProperties = additionalProperties;
Timeout = timeout;
Retry = retry;
RetryIntervalInSeconds = retryIntervalInSeconds;
@@ -52,6 +57,13 @@ public ActivityPolicy()
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets or sets specifies the timeout for the activity to run. The
/// default timeout is 7 days. Type: string (or Expression with
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs
index 91732a903b1d..c5360bf73a9c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public ActivityRun()
///
/// Initializes a new instance of the ActivityRun class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The name of the pipeline.
/// The id of the pipeline run.
/// The name of the activity.
@@ -46,8 +50,9 @@ public ActivityRun()
/// The input for the activity.
/// The output for the activity.
/// The error if any from the activity run.
- public ActivityRun(string pipelineName = default(string), string pipelineRunId = default(string), string activityName = default(string), string activityType = default(string), string activityRunId = default(string), string linkedServiceName = default(string), string status = default(string), System.DateTime? activityRunStart = default(System.DateTime?), System.DateTime? activityRunEnd = default(System.DateTime?), int? durationInMs = default(int?), object input = default(object), object output = default(object), object error = default(object))
+ public ActivityRun(IDictionary additionalProperties = default(IDictionary), string pipelineName = default(string), string pipelineRunId = default(string), string activityName = default(string), string activityType = default(string), string activityRunId = default(string), string linkedServiceName = default(string), string status = default(string), System.DateTime? activityRunStart = default(System.DateTime?), System.DateTime? activityRunEnd = default(System.DateTime?), int? durationInMs = default(int?), object input = default(object), object output = default(object), object error = default(object))
{
+ AdditionalProperties = additionalProperties;
PipelineName = pipelineName;
PipelineRunId = pipelineRunId;
ActivityName = activityName;
@@ -69,6 +74,13 @@ public ActivityRun()
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets the name of the pipeline.
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSLinkedService.cs
index 6d89429b554c..9cb82d8ebd41 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -41,6 +43,8 @@ public AmazonMWSLinkedService()
/// The Amazon seller ID.
/// The access key id used to access
/// data.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The Amazon MWS authentication
@@ -59,8 +63,8 @@ public AmazonMWSLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AmazonMWSLinkedService(object endpoint, object marketplaceID, object sellerID, object accessKeyId, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase mwsAuthToken = default(SecretBase), SecretBase secretKey = default(SecretBase), object useEncryptedEndpoints = default(object), object useHostVerification = default(object), object usePeerVerification = default(object), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AmazonMWSLinkedService(object endpoint, object marketplaceID, object sellerID, object accessKeyId, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase mwsAuthToken = default(SecretBase), SecretBase secretKey = default(SecretBase), object useEncryptedEndpoints = default(object), object useHostVerification = default(object), object usePeerVerification = default(object), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
Endpoint = endpoint;
MarketplaceID = marketplaceID;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSObjectDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSObjectDataset.cs
index 65ca0759b021..da62556b3e1f 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSObjectDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSObjectDataset.cs
@@ -34,13 +34,15 @@ public AmazonMWSObjectDataset()
/// Initializes a new instance of the AmazonMWSObjectDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public AmazonMWSObjectDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public AmazonMWSObjectDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSSource.cs
index ee9b2e4a22f2..94bd9954eba5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonMWSSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AmazonMWSSource()
///
/// Initializes a new instance of the AmazonMWSSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -36,8 +40,8 @@ public AmazonMWSSource()
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public AmazonMWSSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public AmazonMWSSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs
index f71b2e71a736..58d8bf445fa7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -40,6 +42,8 @@ public AmazonRedshiftLinkedService()
/// The database name of the Amazon Redshift
/// source. Type: string (or Expression with resultType
/// string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The username of the Amazon Redshift source.
@@ -54,8 +58,8 @@ public AmazonRedshiftLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AmazonRedshiftLinkedService(object server, object database, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object username = default(object), SecureString password = default(SecureString), object port = default(object), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AmazonRedshiftLinkedService(object server, object database, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object username = default(object), SecureString password = default(SecureString), object port = default(object), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
Server = server;
Username = username;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs
index 95093a0ae9ad..47a54fe6d738 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AmazonRedshiftSource()
///
/// Initializes a new instance of the AmazonRedshiftSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -41,8 +45,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(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), RedshiftUnloadSettings redshiftUnloadSettings = default(RedshiftUnloadSettings))
- : base(sourceRetryCount, sourceRetryWait)
+ public AmazonRedshiftSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), RedshiftUnloadSettings redshiftUnloadSettings = default(RedshiftUnloadSettings))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
RedshiftUnloadSettings = redshiftUnloadSettings;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs
index b42598329165..4dd7b6dc0f80 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs
@@ -40,6 +40,8 @@ public AmazonS3Dataset()
/// Linked service reference.
/// The name of the Amazon S3 bucket. Type:
/// string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
@@ -54,8 +56,8 @@ public AmazonS3Dataset()
/// The format of files.
/// The data compression method used for the
/// Amazon S3 object.
- public AmazonS3Dataset(LinkedServiceReference linkedServiceName, object bucketName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object key = default(object), object prefix = default(object), object version = default(object), DatasetStorageFormat format = default(DatasetStorageFormat), DatasetCompression compression = default(DatasetCompression))
- : base(linkedServiceName, description, structure, parameters)
+ public AmazonS3Dataset(LinkedServiceReference linkedServiceName, object bucketName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object key = default(object), object prefix = default(object), object version = default(object), DatasetStorageFormat format = default(DatasetStorageFormat), DatasetCompression compression = default(DatasetCompression))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
BucketName = bucketName;
Key = key;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs
index 4fcb9b77e67f..be56654b72cb 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -33,6 +35,8 @@ public AmazonS3LinkedService()
///
/// Initializes a new instance of the AmazonS3LinkedService class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The access key identifier of the Amazon
@@ -44,8 +48,8 @@ public AmazonS3LinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AmazonS3LinkedService(IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object accessKeyId = default(object), SecureString secretAccessKey = default(SecureString), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AmazonS3LinkedService(IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object accessKeyId = default(object), SecureString secretAccessKey = default(SecureString), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
AccessKeyId = accessKeyId;
SecretAccessKey = secretAccessKey;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs
index a250096a2ffe..1dc691a10489 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs
@@ -10,6 +10,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -28,12 +30,14 @@ public AvroFormat()
///
/// Initializes a new instance of the AvroFormat class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Serializer. Type: string (or Expression
/// with resultType string).
/// Deserializer. Type: string (or
/// Expression with resultType string).
- public AvroFormat(object serializer = default(object), object deserializer = default(object))
- : base(serializer, deserializer)
+ public AvroFormat(IDictionary additionalProperties = default(IDictionary), object serializer = default(object), object deserializer = default(object))
+ : base(additionalProperties, serializer, deserializer)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs
index 5f4d56c6a072..f50d7be0dde3 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -42,6 +44,8 @@ public AzureBatchLinkedService()
/// Expression with resultType string).
/// The Azure Storage linked service
/// reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The Azure Batch account access key.
@@ -49,8 +53,8 @@ public AzureBatchLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureBatchLinkedService(object accountName, object batchUri, object poolName, LinkedServiceReference linkedServiceName, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecureString accessKey = default(SecureString), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureBatchLinkedService(object accountName, object batchUri, object poolName, LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecureString accessKey = default(SecureString), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
AccountName = accountName;
AccessKey = accessKey;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs
index fe1c0d3c2b0f..ac0daa0ab2f5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs
@@ -37,6 +37,8 @@ public AzureBlobDataset()
/// Initializes a new instance of the AzureBlobDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
@@ -51,8 +53,8 @@ public AzureBlobDataset()
/// The format of the Azure Blob storage.
/// The data compression method used for the
/// blob storage.
- public AzureBlobDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object folderPath = default(object), object tableRootLocation = default(object), object fileName = default(object), DatasetStorageFormat format = default(DatasetStorageFormat), DatasetCompression compression = default(DatasetCompression))
- : base(linkedServiceName, description, structure, parameters)
+ public AzureBlobDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object folderPath = default(object), object tableRootLocation = default(object), object fileName = default(object), DatasetStorageFormat format = default(DatasetStorageFormat), DatasetCompression compression = default(DatasetCompression))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
FolderPath = folderPath;
TableRootLocation = tableRootLocation;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs
index cb4a1fa73eb1..7277a5d65814 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -40,6 +42,8 @@ public AzureDataLakeAnalyticsLinkedService()
/// The name or ID of the tenant to which the
/// service principal belongs. Type: string (or Expression with
/// resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The ID of the application used to
@@ -60,8 +64,8 @@ public AzureDataLakeAnalyticsLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureDataLakeAnalyticsLinkedService(object accountName, object tenant, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object servicePrincipalId = default(object), SecureString servicePrincipalKey = default(SecureString), object subscriptionId = default(object), object resourceGroupName = default(object), object dataLakeAnalyticsUri = default(object), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureDataLakeAnalyticsLinkedService(object accountName, object tenant, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object servicePrincipalId = default(object), SecureString servicePrincipalKey = default(SecureString), object subscriptionId = default(object), object resourceGroupName = default(object), object dataLakeAnalyticsUri = default(object), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
AccountName = accountName;
ServicePrincipalId = servicePrincipalId;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs
index e1a27320a047..d9a5c7a3341f 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs
@@ -39,6 +39,8 @@ public AzureDataLakeStoreDataset()
/// Linked service reference.
/// Path to the folder in the Azure Data Lake
/// Store. Type: string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
@@ -49,8 +51,8 @@ public AzureDataLakeStoreDataset()
/// The format of the Data Lake Store.
/// The data compression method used for the
/// item(s) in the Azure Data Lake Store.
- public AzureDataLakeStoreDataset(LinkedServiceReference linkedServiceName, object folderPath, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object fileName = default(object), DatasetStorageFormat format = default(DatasetStorageFormat), DatasetCompression compression = default(DatasetCompression))
- : base(linkedServiceName, description, structure, parameters)
+ public AzureDataLakeStoreDataset(LinkedServiceReference linkedServiceName, object folderPath, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object fileName = default(object), DatasetStorageFormat format = default(DatasetStorageFormat), DatasetCompression compression = default(DatasetCompression))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
FolderPath = folderPath;
FileName = fileName;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs
index 9bc326801444..d039e59feb8e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -37,6 +39,8 @@ public AzureDataLakeStoreLinkedService()
///
/// Data Lake Store service URI. Type:
/// string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The ID of the application used to
@@ -59,8 +63,8 @@ public AzureDataLakeStoreLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureDataLakeStoreLinkedService(object dataLakeStoreUri, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object servicePrincipalId = default(object), SecureString servicePrincipalKey = default(SecureString), object tenant = default(object), object accountName = default(object), object subscriptionId = default(object), object resourceGroupName = default(object), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureDataLakeStoreLinkedService(object dataLakeStoreUri, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object servicePrincipalId = default(object), SecureString servicePrincipalKey = default(SecureString), object tenant = default(object), object accountName = default(object), object subscriptionId = default(object), object resourceGroupName = default(object), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
DataLakeStoreUri = dataLakeStoreUri;
ServicePrincipalId = servicePrincipalId;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs
index 43cb19cdfcec..99c67f05d95d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AzureDataLakeStoreSink()
///
/// Initializes a new instance of the AzureDataLakeStoreSink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -42,8 +46,8 @@ public AzureDataLakeStoreSink()
/// The type of copy behavior for copy sink.
/// Possible values include: 'PreserveHierarchy', 'FlattenHierarchy',
/// 'MergeFiles'
- public AzureDataLakeStoreSink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), string copyBehavior = default(string))
- : base(writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
+ public AzureDataLakeStoreSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), string copyBehavior = default(string))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
{
CopyBehavior = copyBehavior;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs
index 8ac9eba081f2..0cff267b5a9f 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AzureDataLakeStoreSource()
///
/// Initializes a new instance of the AzureDataLakeStoreSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -37,8 +41,8 @@ public AzureDataLakeStoreSource()
/// If true, files under the folder path will
/// be read recursively. Default is true. Type: boolean (or Expression
/// with resultType boolean).
- public AzureDataLakeStoreSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object recursive = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public AzureDataLakeStoreSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object recursive = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Recursive = recursive;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs
index 378ffb4d7138..b22a523789a2 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -36,10 +38,12 @@ public AzureKeyVaultLinkedService()
/// The base URL of the Azure Key Vault. e.g.
/// https://myakv.vault.azure.net Type: string (or Expression with
/// resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
- public AzureKeyVaultLinkedService(object baseUrl, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string))
- : base(connectVia, description)
+ public AzureKeyVaultLinkedService(object baseUrl, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string))
+ : base(additionalProperties, connectVia, description)
{
BaseUrl = baseUrl;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs
index 068cb805b1c6..94491b1be69d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs
@@ -38,6 +38,8 @@ public AzureMLBatchExecutionActivity()
/// class.
///
/// Activity name.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Activity description.
/// Activity depends on condition.
/// Linked service reference.
@@ -57,8 +59,8 @@ public AzureMLBatchExecutionActivity()
/// objects specifying the input Blob locations.. This information will
/// be passed in the WebServiceInputs property of the Azure ML batch
/// execution request.
- public AzureMLBatchExecutionActivity(string name, string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary globalParameters = default(IDictionary), IDictionary webServiceOutputs = default(IDictionary), IDictionary webServiceInputs = default(IDictionary))
- : base(name, description, dependsOn, linkedServiceName, policy)
+ public AzureMLBatchExecutionActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary globalParameters = default(IDictionary), IDictionary webServiceOutputs = default(IDictionary), IDictionary webServiceInputs = default(IDictionary))
+ : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy)
{
GlobalParameters = globalParameters;
WebServiceOutputs = webServiceOutputs;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs
index 25bfb1840412..2744b247ff2c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -38,6 +40,8 @@ public AzureMLLinkedService()
/// resultType string).
/// The API key for accessing the Azure ML model
/// endpoint.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The Update Resource REST URL
@@ -57,8 +61,8 @@ public AzureMLLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureMLLinkedService(object mlEndpoint, SecureString apiKey, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object updateResourceEndpoint = default(object), object servicePrincipalId = default(object), SecureString servicePrincipalKey = default(SecureString), object tenant = default(object), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureMLLinkedService(object mlEndpoint, SecureString apiKey, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object updateResourceEndpoint = default(object), object servicePrincipalId = default(object), SecureString servicePrincipalKey = default(SecureString), object tenant = default(object), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
MlEndpoint = mlEndpoint;
ApiKey = apiKey;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs
index e084ec374b11..fb607f048fd6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs
@@ -49,12 +49,14 @@ public AzureMLUpdateResourceActivity()
/// trainedModelLinkedService to represent the .ilearner file that will
/// be uploaded by the update operation. Type: string (or Expression
/// with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Activity description.
/// Activity depends on condition.
/// Linked service reference.
/// Activity policy.
- public AzureMLUpdateResourceActivity(string name, object trainedModelName, LinkedServiceReference trainedModelLinkedServiceName, object trainedModelFilePath, string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy))
- : base(name, description, dependsOn, linkedServiceName, policy)
+ public AzureMLUpdateResourceActivity(string name, object trainedModelName, LinkedServiceReference trainedModelLinkedServiceName, object trainedModelFilePath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy))
+ : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy)
{
TrainedModelName = trainedModelName;
TrainedModelLinkedServiceName = trainedModelLinkedServiceName;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlLinkedService.cs
index f7b9042084dd..b2e9fa051306 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -34,14 +36,16 @@ public AzureMySqlLinkedService()
/// Initializes a new instance of the AzureMySqlLinkedService class.
///
/// The connection string.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The encrypted credential used for
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureMySqlLinkedService(SecureString connectionString, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureMySqlLinkedService(SecureString connectionString, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
EncryptedCredential = encryptedCredential;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlSource.cs
index 241670a82a19..037c4242055e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AzureMySqlSource()
///
/// Initializes a new instance of the AzureMySqlSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -36,8 +40,8 @@ public AzureMySqlSource()
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
/// Database query. Type: string (or Expression
/// with resultType string).
- public AzureMySqlSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public AzureMySqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlTableDataset.cs
index 4a595ee1676f..4236733666da 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMySqlTableDataset.cs
@@ -37,6 +37,8 @@ public AzureMySqlTableDataset()
/// Initializes a new instance of the AzureMySqlTableDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
@@ -44,8 +46,8 @@ public AzureMySqlTableDataset()
/// Parameters for dataset.
/// The Azure MySQL database table name. Type:
/// string (or Expression with resultType string).
- public AzureMySqlTableDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object tableName = default(object))
- : base(linkedServiceName, description, structure, parameters)
+ public AzureMySqlTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object tableName = default(object))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
TableName = tableName;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlLinkedService.cs
index f73ee19cc0f3..21a3f3cba44b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -35,6 +37,8 @@ public AzurePostgreSqlLinkedService()
/// Initializes a new instance of the AzurePostgreSqlLinkedService
/// class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// An ODBC connection string.
@@ -42,8 +46,8 @@ public AzurePostgreSqlLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzurePostgreSqlLinkedService(IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase connectionString = default(SecretBase), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzurePostgreSqlLinkedService(IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase connectionString = default(SecretBase), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
EncryptedCredential = encryptedCredential;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlSource.cs
index 19d770b182e5..59d040d07025 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AzurePostgreSqlSource()
///
/// Initializes a new instance of the AzurePostgreSqlSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -36,8 +40,8 @@ public AzurePostgreSqlSource()
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public AzurePostgreSqlSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public AzurePostgreSqlSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlTableDataset.cs
index 73eb77fb1c6a..e3ea6ae086d6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzurePostgreSqlTableDataset.cs
@@ -36,13 +36,15 @@ public AzurePostgreSqlTableDataset()
/// class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public AzurePostgreSqlTableDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public AzurePostgreSqlTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs
index a3135382f469..57627661fb9b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs
@@ -10,6 +10,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -28,6 +30,8 @@ public AzureQueueSink()
///
/// Initializes a new instance of the AzureQueueSink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -38,8 +42,8 @@ public AzureQueueSink()
/// Sink retry wait. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- public AzureQueueSink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object))
- : base(writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
+ public AzureQueueSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs
index 466cb3f1511d..32ebec6f2125 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs
@@ -39,13 +39,15 @@ public AzureSearchIndexDataset()
/// Linked service reference.
/// The name of the Azure Search Index. Type:
/// string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public AzureSearchIndexDataset(LinkedServiceReference linkedServiceName, object indexName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public AzureSearchIndexDataset(LinkedServiceReference linkedServiceName, object indexName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
IndexName = indexName;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs
index 32fd079b9b20..ead570494f63 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AzureSearchIndexSink()
///
/// Initializes a new instance of the AzureSearchIndexSink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -42,8 +46,8 @@ public AzureSearchIndexSink()
/// Specify the write behavior when
/// upserting documents into Azure Search Index. Possible values
/// include: 'Merge', 'Upload'
- public AzureSearchIndexSink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), string writeBehavior = default(string))
- : base(writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
+ public AzureSearchIndexSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), string writeBehavior = default(string))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
{
WriteBehavior = writeBehavior;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs
index cd3b00db153b..9f781fc1034b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -35,6 +37,8 @@ public AzureSearchLinkedService()
///
/// URL for Azure Search service. Type: string (or
/// Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// Admin Key for Azure Search service
@@ -42,8 +46,8 @@ public AzureSearchLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureSearchLinkedService(object url, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecureString key = default(SecureString), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureSearchLinkedService(object url, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecureString key = default(SecureString), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
Url = url;
Key = key;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs
index 0e2e2bc64a4c..9b9413bb563d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -34,14 +36,16 @@ public AzureSqlDWLinkedService()
/// Initializes a new instance of the AzureSqlDWLinkedService class.
///
/// The connection string.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The encrypted credential used for
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureSqlDWLinkedService(SecureString connectionString, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureSqlDWLinkedService(SecureString connectionString, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
EncryptedCredential = encryptedCredential;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs
index 5d1e84999717..959da2dfe3be 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs
@@ -40,13 +40,15 @@ public AzureSqlDWTableDataset()
/// The table name of the Azure SQL Data
/// Warehouse. Type: string (or Expression with resultType
/// string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public AzureSqlDWTableDataset(LinkedServiceReference linkedServiceName, object tableName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public AzureSqlDWTableDataset(LinkedServiceReference linkedServiceName, object tableName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
TableName = tableName;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs
index 4155b9a3b86c..e85fbcad5e2a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -36,14 +38,16 @@ public AzureSqlDatabaseLinkedService()
/// class.
///
/// The connection string.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The encrypted credential used for
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureSqlDatabaseLinkedService(SecureString connectionString, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureSqlDatabaseLinkedService(SecureString connectionString, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
EncryptedCredential = encryptedCredential;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs
index df2fae12161d..a77131328db5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs
@@ -39,13 +39,15 @@ public AzureSqlTableDataset()
/// Linked service reference.
/// The table name of the Azure SQL database.
/// Type: string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public AzureSqlTableDataset(LinkedServiceReference linkedServiceName, object tableName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public AzureSqlTableDataset(LinkedServiceReference linkedServiceName, object tableName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
TableName = tableName;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs
index 4fa4cdcd87a4..a7e6bebcc32c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -33,6 +35,8 @@ public AzureStorageLinkedService()
///
/// Initializes a new instance of the AzureStorageLinkedService class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The connection string. It is
@@ -43,8 +47,8 @@ public AzureStorageLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public AzureStorageLinkedService(IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecureString connectionString = default(SecureString), SecureString sasUri = default(SecureString), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public AzureStorageLinkedService(IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecureString connectionString = default(SecureString), SecureString sasUri = default(SecureString), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
SasUri = sasUri;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs
index c86db27b573e..0d0731128a9b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs
@@ -39,13 +39,15 @@ public AzureTableDataset()
/// Linked service reference.
/// The table name of the Azure Table storage.
/// Type: string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public AzureTableDataset(LinkedServiceReference linkedServiceName, object tableName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public AzureTableDataset(LinkedServiceReference linkedServiceName, object tableName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
TableName = tableName;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs
index 29cbe93ae93a..07d98c428594 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AzureTableSink()
///
/// Initializes a new instance of the AzureTableSink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -48,8 +52,8 @@ public AzureTableSink()
/// string (or Expression with resultType string).
/// Azure Table insert type. Type:
/// string (or Expression with resultType string).
- public AzureTableSink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object azureTableDefaultPartitionKeyValue = default(object), object azureTablePartitionKeyName = default(object), object azureTableRowKeyName = default(object), object azureTableInsertType = default(object))
- : base(writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
+ public AzureTableSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object azureTableDefaultPartitionKeyValue = default(object), object azureTablePartitionKeyName = default(object), object azureTableRowKeyName = default(object), object azureTableInsertType = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
{
AzureTableDefaultPartitionKeyValue = azureTableDefaultPartitionKeyValue;
AzureTablePartitionKeyName = azureTablePartitionKeyName;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs
index 2b3bbf78f905..2f51fc76743d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public AzureTableSource()
///
/// Initializes a new instance of the AzureTableSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -39,8 +43,8 @@ public AzureTableSource()
/// Azure Table
/// source ignore table not found. Type: boolean (or Expression with
/// resultType boolean).
- public AzureTableSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object azureTableSourceQuery = default(object), object azureTableSourceIgnoreTableNotFound = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public AzureTableSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object azureTableSourceQuery = default(object), object azureTableSourceIgnoreTableNotFound = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
AzureTableSourceQuery = azureTableSourceQuery;
AzureTableSourceIgnoreTableNotFound = azureTableSourceIgnoreTableNotFound;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs
index 0176d43e9891..be57e588391b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public BlobSink()
///
/// Initializes a new instance of the BlobSink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -49,8 +53,8 @@ public BlobSink()
/// The type of copy behavior for copy sink.
/// Possible values include: 'PreserveHierarchy', 'FlattenHierarchy',
/// 'MergeFiles'
- public BlobSink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object blobWriterOverwriteFiles = default(object), object blobWriterDateTimeFormat = default(object), object blobWriterAddHeader = default(object), string copyBehavior = default(string))
- : base(writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
+ public BlobSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object blobWriterOverwriteFiles = default(object), object blobWriterDateTimeFormat = default(object), object blobWriterAddHeader = default(object), string copyBehavior = default(string))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
{
BlobWriterOverwriteFiles = blobWriterOverwriteFiles;
BlobWriterDateTimeFormat = blobWriterDateTimeFormat;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs
index 0def60f71afe..d9e0909576cb 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public BlobSource()
///
/// Initializes a new instance of the BlobSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -42,8 +46,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(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object treatEmptyAsNull = default(object), object skipHeaderLineCount = default(object), object recursive = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public BlobSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object treatEmptyAsNull = default(object), object skipHeaderLineCount = default(object), object recursive = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
TreatEmptyAsNull = treatEmptyAsNull;
SkipHeaderLineCount = skipHeaderLineCount;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs
index 456c00cb2baa..09eaed5bbd8d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs
@@ -34,6 +34,8 @@ public BlobTrigger()
///
/// Initializes a new instance of the BlobTrigger class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Trigger description.
/// Indicates if trigger is running or not.
/// Updated when Start/Stop APIs are called on the Trigger. Possible
@@ -45,8 +47,8 @@ public BlobTrigger()
/// handle when it is triggered.
/// The Azure Storage linked service
/// reference.
- public BlobTrigger(string description = default(string), string runtimeState = default(string), IList pipelines = default(IList), string folderPath = default(string), int? maxConcurrency = default(int?), LinkedServiceReference linkedService = default(LinkedServiceReference))
- : base(description, runtimeState, pipelines)
+ public BlobTrigger(IDictionary additionalProperties = default(IDictionary), string description = default(string), string runtimeState = default(string), IList pipelines = default(IList), string folderPath = default(string), int? maxConcurrency = default(int?), LinkedServiceReference linkedService = default(LinkedServiceReference))
+ : base(additionalProperties, description, runtimeState, pipelines)
{
FolderPath = folderPath;
MaxConcurrency = maxConcurrency;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs
index ce7f131b6165..195bce1052a5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -35,6 +37,8 @@ public CassandraLinkedService()
///
/// Host name for connection. Type: string (or
/// Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// AuthenticationType to be used for
@@ -49,8 +53,8 @@ public CassandraLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public CassandraLinkedService(object host, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object authenticationType = default(object), object port = default(object), object username = default(object), SecureString password = default(SecureString), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public CassandraLinkedService(object host, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object authenticationType = default(object), object port = default(object), object username = default(object), SecureString password = default(SecureString), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
Host = host;
AuthenticationType = authenticationType;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs
index c0320b1c8974..42b9330e3a72 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public CassandraSource()
///
/// Initializes a new instance of the CassandraSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -45,8 +49,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(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), string consistencyLevel = default(string))
- : base(sourceRetryCount, sourceRetryWait)
+ public CassandraSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), string consistencyLevel = default(string))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
ConsistencyLevel = consistencyLevel;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs
index 2f6a14dcb423..183833584c20 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs
@@ -37,6 +37,8 @@ public CassandraTableDataset()
/// Initializes a new instance of the CassandraTableDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
@@ -46,8 +48,8 @@ public CassandraTableDataset()
/// Type: string (or Expression with resultType string).
/// The keyspace of the Cassandra database.
/// Type: string (or Expression with resultType string).
- public CassandraTableDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object tableName = default(object), object keyspace = default(object))
- : base(linkedServiceName, description, structure, parameters)
+ public CassandraTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object tableName = default(object), object keyspace = default(object))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
TableName = tableName;
Keyspace = keyspace;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurLinkedService.cs
index 5a45c7c02795..0d8e4f5b174c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -37,6 +39,8 @@ public ConcurLinkedService()
/// Management.
/// The user name that you use to access Concur
/// Service.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The password corresponding to the user name
@@ -54,8 +58,8 @@ public ConcurLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public ConcurLinkedService(object clientId, object username, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase password = default(SecretBase), object useEncryptedEndpoints = default(object), object useHostVerification = default(object), object usePeerVerification = default(object), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public ConcurLinkedService(object clientId, object username, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase password = default(SecretBase), object useEncryptedEndpoints = default(object), object useHostVerification = default(object), object usePeerVerification = default(object), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ClientId = clientId;
Username = username;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurObjectDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurObjectDataset.cs
index a089e9079672..eb1773d13170 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurObjectDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurObjectDataset.cs
@@ -34,13 +34,15 @@ public ConcurObjectDataset()
/// Initializes a new instance of the ConcurObjectDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public ConcurObjectDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public ConcurObjectDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurSource.cs
index 9e2625575560..939337d404d7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ConcurSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public ConcurSource()
///
/// Initializes a new instance of the ConcurSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -36,8 +40,8 @@ public ConcurSource()
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public ConcurSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public ConcurSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs
index 50ed8fb3edb8..fac72d90d874 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs
@@ -34,10 +34,12 @@ public ControlActivity()
/// Initializes a new instance of the ControlActivity class.
///
/// Activity name.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Activity description.
/// Activity depends on condition.
- public ControlActivity(string name, string description = default(string), IList dependsOn = default(IList))
- : base(name, description, dependsOn)
+ public ControlActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList))
+ : base(name, additionalProperties, description, dependsOn)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs
index 483836199d49..0083503ecb41 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs
@@ -38,6 +38,8 @@ public CopyActivity()
/// Activity name.
/// Copy activity source.
/// Copy activity sink.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Activity description.
/// Activity depends on condition.
/// Linked service reference.
@@ -64,8 +66,8 @@ public CopyActivity()
/// row settings when EnableSkipIncompatibleRow is true.
/// List of inputs for the activity.
/// List of outputs for the activity.
- public CopyActivity(string name, CopySource source, CopySink sink, string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), CopyTranslator translator = default(CopyTranslator), object enableStaging = default(object), StagingSettings stagingSettings = default(StagingSettings), object parallelCopies = default(object), object cloudDataMovementUnits = default(object), object enableSkipIncompatibleRow = default(object), RedirectIncompatibleRowSettings redirectIncompatibleRowSettings = default(RedirectIncompatibleRowSettings), IList inputs = default(IList), IList outputs = default(IList))
- : base(name, description, dependsOn, linkedServiceName, policy)
+ public CopyActivity(string name, CopySource source, CopySink sink, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), CopyTranslator translator = default(CopyTranslator), object enableStaging = default(object), StagingSettings stagingSettings = default(StagingSettings), object parallelCopies = default(object), object cloudDataMovementUnits = default(object), object enableSkipIncompatibleRow = default(object), RedirectIncompatibleRowSettings redirectIncompatibleRowSettings = default(RedirectIncompatibleRowSettings), IList inputs = default(IList), IList outputs = default(IList))
+ : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy)
{
Source = source;
Sink = sink;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs
index bc5d4830f5d1..ca7515783ccd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public CopySink()
///
/// Initializes a new instance of the CopySink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -39,8 +43,9 @@ public CopySink()
/// Sink retry wait. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- public CopySink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object))
+ public CopySink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object))
{
+ AdditionalProperties = additionalProperties;
WriteBatchSize = writeBatchSize;
WriteBatchTimeout = writeBatchTimeout;
SinkRetryCount = sinkRetryCount;
@@ -53,6 +58,13 @@ public CopySink()
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets or sets write batch size. Type: integer (or Expression with
/// resultType integer), minimum: 0.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs
index 22e69d8deccb..184078c03b7a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,13 +31,16 @@ public CopySource()
///
/// Initializes a new instance of the CopySource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- public CopySource(object sourceRetryCount = default(object), object sourceRetryWait = default(object))
+ public CopySource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object))
{
+ AdditionalProperties = additionalProperties;
SourceRetryCount = sourceRetryCount;
SourceRetryWait = sourceRetryWait;
CustomInit();
@@ -46,6 +51,13 @@ public CopySource()
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets or sets source retry count. Type: integer (or Expression with
/// resultType integer).
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs
index f2657d1a15ee..5247ddc6ea5b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs
@@ -10,6 +10,9 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -25,11 +28,28 @@ public CopyTranslator()
CustomInit();
}
+ ///
+ /// Initializes a new instance of the CopyTranslator class.
+ ///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
+ public CopyTranslator(IDictionary additionalProperties = default(IDictionary))
+ {
+ AdditionalProperties = additionalProperties;
+ CustomInit();
+ }
///
/// An initialization method that performs custom operations like setting defaults
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
}
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs
index f7c2d891767e..40e8fac79eed 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -34,14 +36,16 @@ public CosmosDbLinkedService()
/// Initializes a new instance of the CosmosDbLinkedService class.
///
/// The connection string.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The encrypted credential used for
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public CosmosDbLinkedService(SecureString connectionString, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public CosmosDbLinkedService(SecureString connectionString, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
EncryptedCredential = encryptedCredential;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseLinkedService.cs
index 9979c07b6f2b..734f93ae1c2a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -33,6 +35,8 @@ public CouchbaseLinkedService()
///
/// Initializes a new instance of the CouchbaseLinkedService class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// An ODBC connection string.
@@ -40,8 +44,8 @@ public CouchbaseLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public CouchbaseLinkedService(IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase connectionString = default(SecretBase), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public CouchbaseLinkedService(IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase connectionString = default(SecretBase), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
EncryptedCredential = encryptedCredential;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseSource.cs
index 171edca34a90..d4923586af43 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public CouchbaseSource()
///
/// Initializes a new instance of the CouchbaseSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -36,8 +40,8 @@ public CouchbaseSource()
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public CouchbaseSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public CouchbaseSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseTableDataset.cs
index 817ad81dbc17..26493b4518fd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CouchbaseTableDataset.cs
@@ -34,13 +34,15 @@ public CouchbaseTableDataset()
/// Initializes a new instance of the CouchbaseTableDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public CouchbaseTableDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public CouchbaseTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs
index 3216d6a53518..ef7f28143992 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs
@@ -38,6 +38,8 @@ public CustomActivity()
/// Activity name.
/// Command for custom activity Type: string (or
/// Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Activity description.
/// Activity depends on condition.
/// Linked service reference.
@@ -51,8 +53,8 @@ public CustomActivity()
/// is no restriction on the keys or values that can be used. The user
/// specified custom activity has the full responsibility to consume
/// and interpret the content defined.
- public CustomActivity(string name, object command, string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), LinkedServiceReference resourceLinkedService = default(LinkedServiceReference), object folderPath = default(object), CustomActivityReferenceObject referenceObjects = default(CustomActivityReferenceObject), IDictionary extendedProperties = default(IDictionary))
- : base(name, description, dependsOn, linkedServiceName, policy)
+ public CustomActivity(string name, object command, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), LinkedServiceReference resourceLinkedService = default(LinkedServiceReference), object folderPath = default(object), CustomActivityReferenceObject referenceObjects = default(CustomActivityReferenceObject), IDictionary extendedProperties = default(IDictionary))
+ : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy)
{
Command = command;
ResourceLinkedService = resourceLinkedService;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs
index d2332557c0d0..9a3a9b1a3553 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs
@@ -12,6 +12,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
{
using Microsoft.Rest;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -35,10 +37,12 @@ public CustomDataSourceLinkedService()
///
/// Custom linked service
/// properties.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
- public CustomDataSourceLinkedService(object typeProperties, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string))
- : base(connectVia, description)
+ public CustomDataSourceLinkedService(object typeProperties, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string))
+ : base(additionalProperties, connectVia, description)
{
TypeProperties = typeProperties;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs
index 97cada6dd2e1..eff73ee7246d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs
@@ -35,13 +35,15 @@ public CustomDataset()
///
/// Linked service reference.
/// Custom dataset properties.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public CustomDataset(LinkedServiceReference linkedServiceName, object typeProperties, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public CustomDataset(LinkedServiceReference linkedServiceName, object typeProperties, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
TypeProperties = typeProperties;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs
index 1beec4a69511..9d16bc40c44e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs
@@ -44,6 +44,8 @@ public DataLakeAnalyticsUSQLActivity()
/// resultType string).
/// Script linked service
/// reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Activity description.
/// Activity depends on condition.
/// Linked service reference.
@@ -62,8 +64,8 @@ public DataLakeAnalyticsUSQLActivity()
/// Compilation mode of U-SQL. Must be
/// one of these values : Semantic, Full and SingleBox. Type: string
/// (or Expression with resultType string).
- public DataLakeAnalyticsUSQLActivity(string name, object scriptPath, LinkedServiceReference scriptLinkedService, string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object degreeOfParallelism = default(object), object priority = default(object), IDictionary parameters = default(IDictionary), object runtimeVersion = default(object), object compilationMode = default(object))
- : base(name, description, dependsOn, linkedServiceName, policy)
+ public DataLakeAnalyticsUSQLActivity(string name, object scriptPath, LinkedServiceReference scriptLinkedService, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object degreeOfParallelism = default(object), object priority = default(object), IDictionary parameters = default(IDictionary), object runtimeVersion = default(object), object compilationMode = default(object))
+ : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy)
{
ScriptPath = scriptPath;
ScriptLinkedService = scriptLinkedService;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs
index 08bc29eacd36..8a4f75d544f5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs
@@ -35,13 +35,16 @@ public Dataset()
/// Initializes a new instance of the Dataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public Dataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ public Dataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
{
+ AdditionalProperties = additionalProperties;
Description = description;
Structure = structure;
LinkedServiceName = linkedServiceName;
@@ -54,6 +57,13 @@ public Dataset()
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets or sets dataset description.
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs
index 04f5332cfdc4..70519eaf4e8b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -27,6 +29,16 @@ public DatasetBZip2Compression()
CustomInit();
}
+ ///
+ /// Initializes a new instance of the DatasetBZip2Compression class.
+ ///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
+ public DatasetBZip2Compression(IDictionary additionalProperties = default(IDictionary))
+ : base(additionalProperties)
+ {
+ CustomInit();
+ }
///
/// An initialization method that performs custom operations like setting defaults
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs
index 59070794e022..684c3a8a2b97 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs
@@ -10,6 +10,9 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -25,11 +28,28 @@ public DatasetCompression()
CustomInit();
}
+ ///
+ /// Initializes a new instance of the DatasetCompression class.
+ ///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
+ public DatasetCompression(IDictionary additionalProperties = default(IDictionary))
+ {
+ AdditionalProperties = additionalProperties;
+ CustomInit();
+ }
///
/// An initialization method that performs custom operations like setting defaults
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
}
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs
index 4d12ebd0a815..8daa38fae676 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -30,9 +32,12 @@ public DatasetDeflateCompression()
///
/// Initializes a new instance of the DatasetDeflateCompression class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The Deflate compression level. Possible values
/// include: 'Optimal', 'Fastest'
- public DatasetDeflateCompression(string level = default(string))
+ public DatasetDeflateCompression(IDictionary additionalProperties = default(IDictionary), string level = default(string))
+ : base(additionalProperties)
{
Level = level;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs
index 1870890f656a..6d29caa11377 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -30,9 +32,12 @@ public DatasetGZipCompression()
///
/// Initializes a new instance of the DatasetGZipCompression class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The GZip compression level. Possible values
/// include: 'Optimal', 'Fastest'
- public DatasetGZipCompression(string level = default(string))
+ public DatasetGZipCompression(IDictionary additionalProperties = default(IDictionary), string level = default(string))
+ : base(additionalProperties)
{
Level = level;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs
index eadaf109aad5..9666f91b0e06 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,12 +31,15 @@ public DatasetStorageFormat()
///
/// Initializes a new instance of the DatasetStorageFormat class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Serializer. Type: string (or Expression
/// with resultType string).
/// Deserializer. Type: string (or
/// Expression with resultType string).
- public DatasetStorageFormat(object serializer = default(object), object deserializer = default(object))
+ public DatasetStorageFormat(IDictionary additionalProperties = default(IDictionary), object serializer = default(object), object deserializer = default(object))
{
+ AdditionalProperties = additionalProperties;
Serializer = serializer;
Deserializer = deserializer;
CustomInit();
@@ -45,6 +50,13 @@ public DatasetStorageFormat()
///
partial void CustomInit();
+ ///
+ /// Gets or sets unmatched properties from the message are deserialized
+ /// this collection
+ ///
+ [JsonExtensionData]
+ public IDictionary AdditionalProperties { get; set; }
+
///
/// Gets or sets serializer. Type: string (or Expression with
/// resultType string).
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetZipDeflateCompression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetZipDeflateCompression.cs
index 3ebaf88048b4..3643b060faec 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetZipDeflateCompression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetZipDeflateCompression.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -32,9 +34,12 @@ public DatasetZipDeflateCompression()
/// Initializes a new instance of the DatasetZipDeflateCompression
/// class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The ZipDeflate compression level. Possible
/// values include: 'Optimal', 'Fastest'
- public DatasetZipDeflateCompression(string level = default(string))
+ public DatasetZipDeflateCompression(IDictionary additionalProperties = default(IDictionary), string level = default(string))
+ : base(additionalProperties)
{
Level = level;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs
index 3ed8daa091cc..171dbe0843b4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -37,6 +39,8 @@ public Db2LinkedService()
/// Expression with resultType string).
/// Database name for connection. Type: string
/// (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// Schema name for connection. Type: string (or
@@ -50,8 +54,8 @@ public Db2LinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public Db2LinkedService(object server, object database, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object schema = default(object), string authenticationType = default(string), object username = default(object), SecureString password = default(SecureString), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public Db2LinkedService(object server, object database, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object schema = default(object), string authenticationType = default(string), object username = default(object), SecureString password = default(SecureString), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
Server = server;
Database = database;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs
index 9a6811f2c08e..d9f803c6352d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs
@@ -41,13 +41,15 @@ public DocumentDbCollectionDataset()
/// Linked service reference.
/// Document Database collection name.
/// Type: string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public DocumentDbCollectionDataset(LinkedServiceReference linkedServiceName, object collectionName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public DocumentDbCollectionDataset(LinkedServiceReference linkedServiceName, object collectionName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
CollectionName = collectionName;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs
index 36c314a636be..10944b4a343d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public DocumentDbCollectionSink()
///
/// Initializes a new instance of the DocumentDbCollectionSink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -42,8 +46,8 @@ public DocumentDbCollectionSink()
/// Nested properties separator. Default
/// is . (dot). Type: string (or Expression with resultType
/// string).
- public DocumentDbCollectionSink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object nestingSeparator = default(object))
- : base(writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
+ public DocumentDbCollectionSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object nestingSeparator = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
{
NestingSeparator = nestingSeparator;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs
index 73c46f2857c1..c962c6a4e56e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public DocumentDbCollectionSource()
///
/// Initializes a new instance of the DocumentDbCollectionSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -38,8 +42,8 @@ public DocumentDbCollectionSource()
/// with resultType string).
/// Nested properties separator. Type:
/// string (or Expression with resultType string).
- public DocumentDbCollectionSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), object nestingSeparator = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public DocumentDbCollectionSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), object nestingSeparator = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
NestingSeparator = nestingSeparator;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillLinkedService.cs
index 582e0bc85530..87292e95fbf1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -33,6 +35,8 @@ public DrillLinkedService()
///
/// Initializes a new instance of the DrillLinkedService class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// An ODBC connection string.
@@ -40,8 +44,8 @@ public DrillLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public DrillLinkedService(IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase connectionString = default(SecretBase), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public DrillLinkedService(IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase connectionString = default(SecretBase), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
ConnectionString = connectionString;
EncryptedCredential = encryptedCredential;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillSource.cs
index fb897394bd65..950221e02782 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public DrillSource()
///
/// Initializes a new instance of the DrillSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -36,8 +40,8 @@ public DrillSource()
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
/// A query to retrieve data from source. Type:
/// string (or Expression with resultType string).
- public DrillSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public DrillSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillTableDataset.cs
index d8fdbcc0a82e..887999077eb3 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DrillTableDataset.cs
@@ -34,13 +34,15 @@ public DrillTableDataset()
/// Initializes a new instance of the DrillTableDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.
/// Parameters for dataset.
- public DrillTableDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
- : base(linkedServiceName, description, structure, parameters)
+ public DrillTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs
index 860cbe153a8a..f75372fb596c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs
@@ -37,6 +37,8 @@ public DynamicsEntityDataset()
/// Initializes a new instance of the DynamicsEntityDataset class.
///
/// Linked service reference.
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Dataset description.
/// Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
@@ -44,8 +46,8 @@ public DynamicsEntityDataset()
/// Parameters for dataset.
/// The logical name of the entity. Type:
/// string (or Expression with resultType string).
- public DynamicsEntityDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object entityName = default(object))
- : base(linkedServiceName, description, structure, parameters)
+ public DynamicsEntityDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), IDictionary parameters = default(IDictionary), object entityName = default(object))
+ : base(linkedServiceName, additionalProperties, description, structure, parameters)
{
EntityName = entityName;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs
index f86eae3f9ee8..18ee3b6dcdb1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -43,6 +45,8 @@ public DynamicsLinkedService()
/// resultType string).
/// User name to access the Dynamics instance.
/// Type: string (or Expression with resultType string).
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The host name of the on-premises Dynamics
@@ -64,8 +68,8 @@ public DynamicsLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public DynamicsLinkedService(object deploymentType, object authenticationType, object username, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object hostName = default(object), object port = default(object), object organizationName = default(object), SecretBase password = default(SecretBase), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public DynamicsLinkedService(object deploymentType, object authenticationType, object username, IDictionary additionalProperties = default(IDictionary), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), object hostName = default(object), object port = default(object), object organizationName = default(object), SecretBase password = default(SecretBase), object encryptedCredential = default(object))
+ : base(additionalProperties, connectVia, description)
{
DeploymentType = deploymentType;
HostName = hostName;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSink.cs
index bb1b4dee6485..f8914c120b6b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSink.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public DynamicsSink()
///
/// Initializes a new instance of the DynamicsSink class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Write batch size. Type: integer (or
/// Expression with resultType integer), minimum: 0.
/// Write batch timeout. Type: string
@@ -43,8 +47,8 @@ public DynamicsSink()
/// null values from input dataset (except key fields) during write
/// operation. Default is false. Type: boolean (or Expression with
/// resultType boolean).
- public DynamicsSink(object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object ignoreNullValues = default(object))
- : base(writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
+ public DynamicsSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object ignoreNullValues = default(object))
+ : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait)
{
IgnoreNullValues = ignoreNullValues;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs
index cd39f34a355c..7f47681dbe83 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -29,6 +31,8 @@ public DynamicsSource()
///
/// Initializes a new instance of the DynamicsSource class.
///
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// Source retry count. Type: integer
/// (or Expression with resultType integer).
/// Source retry wait. Type: string (or
@@ -37,8 +41,8 @@ public DynamicsSource()
/// FetchXML is a proprietary query language that
/// is used in Microsoft Dynamics (online & on-premises). Type:
/// string (or Expression with resultType string).
- public DynamicsSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
- : base(sourceRetryCount, sourceRetryWait)
+ public DynamicsSource(IDictionary additionalProperties = default(IDictionary), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
+ : base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/EloquaLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/EloquaLinkedService.cs
index 96f4417c5ad2..68cdbd77cd14 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/EloquaLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/EloquaLinkedService.cs
@@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.DataFactory.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -37,6 +39,8 @@ public EloquaLinkedService()
/// eloqua.example.com)
/// The site name and user name of your Eloqua
/// account in the form: sitename/username. (i.e. Eloqua/Alice)
+ /// Unmatched properties from the
+ /// message are deserialized this collection
/// The integration runtime reference.
/// Linked service description.
/// The password corresponding to the user
@@ -54,8 +58,8 @@ public EloquaLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).
- public EloquaLinkedService(object endpoint, object username, IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), SecretBase password = default(SecretBase), object useEncryptedEndpoints = default(object), object useHostVerification = default(object), object usePeerVerification = default(object), object encryptedCredential = default(object))
- : base(connectVia, description)
+ public EloquaLinkedService(object endpoint, object username, IDictionary additionalProperties = default(IDictionary