Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,13 @@ public Activity()
/// Initializes a new instance of the Activity class.
/// </summary>
/// <param name="name">Activity name.</param>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="description">Activity description.</param>
/// <param name="dependsOn">Activity depends on condition.</param>
public Activity(string name, string description = default(string), IList<ActivityDependency> dependsOn = default(IList<ActivityDependency>))
public Activity(string name, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), string description = default(string), IList<ActivityDependency> dependsOn = default(IList<ActivityDependency>))
{
AdditionalProperties = additionalProperties;
Name = name;
Description = description;
DependsOn = dependsOn;
Expand All @@ -48,6 +51,13 @@ public Activity()
/// </summary>
partial void CustomInit();

/// <summary>
/// Gets or sets unmatched properties from the message are deserialized
/// this collection
/// </summary>
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

/// <summary>
/// Gets or sets activity name.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ public ActivityDependency()
/// <param name="activity">Activity name.</param>
/// <param name="dependencyConditions">Match-Condition for the
/// dependency.</param>
public ActivityDependency(string activity, IList<string> dependencyConditions)
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
public ActivityDependency(string activity, IList<string> dependencyConditions, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>))
{
AdditionalProperties = additionalProperties;
Activity = activity;
DependencyConditions = dependencyConditions;
CustomInit();
Expand All @@ -47,6 +50,13 @@ public ActivityDependency(string activity, IList<string> dependencyConditions)
/// </summary>
partial void CustomInit();

/// <summary>
/// Gets or sets unmatched properties from the message are deserialized
/// this collection
/// </summary>
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

/// <summary>
/// Gets or sets activity name.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/// <summary>
Expand All @@ -30,6 +32,8 @@ public ActivityPolicy()
/// <summary>
/// Initializes a new instance of the ActivityPolicy class.
/// </summary>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="timeout">Specifies the timeout for the activity to
/// run. The default timeout is 7 days. Type: string (or Expression
/// with resultType string), pattern:
Expand All @@ -39,8 +43,9 @@ public ActivityPolicy()
/// 0.</param>
/// <param name="retryIntervalInSeconds">Interval between each retry
/// attempt (in seconds). The default is 30 sec.</param>
public ActivityPolicy(object timeout = default(object), object retry = default(object), int? retryIntervalInSeconds = default(int?))
public ActivityPolicy(IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), object timeout = default(object), object retry = default(object), int? retryIntervalInSeconds = default(int?))
{
AdditionalProperties = additionalProperties;
Timeout = timeout;
Retry = retry;
RetryIntervalInSeconds = retryIntervalInSeconds;
Expand All @@ -52,6 +57,13 @@ public ActivityPolicy()
/// </summary>
partial void CustomInit();

/// <summary>
/// Gets or sets unmatched properties from the message are deserialized
/// this collection
/// </summary>
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

/// <summary>
/// Gets or sets specifies the timeout for the activity to run. The
/// default timeout is 7 days. Type: string (or Expression with
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

/// <summary>
Expand All @@ -29,6 +31,8 @@ public ActivityRun()
/// <summary>
/// Initializes a new instance of the ActivityRun class.
/// </summary>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="pipelineName">The name of the pipeline.</param>
/// <param name="pipelineRunId">The id of the pipeline run.</param>
/// <param name="activityName">The name of the activity.</param>
Expand All @@ -46,8 +50,9 @@ public ActivityRun()
/// <param name="input">The input for the activity.</param>
/// <param name="output">The output for the activity.</param>
/// <param name="error">The error if any from the activity run.</param>
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<string, object> additionalProperties = default(IDictionary<string, object>), 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;
Expand All @@ -69,6 +74,13 @@ public ActivityRun()
/// </summary>
partial void CustomInit();

/// <summary>
/// Gets or sets unmatched properties from the message are deserialized
/// this collection
/// </summary>
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

/// <summary>
/// Gets the name of the pipeline.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/// <summary>
Expand Down Expand Up @@ -41,6 +43,8 @@ public AmazonMWSLinkedService()
/// <param name="sellerID">The Amazon seller ID.</param>
/// <param name="accessKeyId">The access key id used to access
/// data.</param>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="connectVia">The integration runtime reference.</param>
/// <param name="description">Linked service description.</param>
/// <param name="mwsAuthToken">The Amazon MWS authentication
Expand All @@ -59,8 +63,8 @@ public AmazonMWSLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).</param>
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<string, object> additionalProperties = default(IDictionary<string, object>), 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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ public AmazonMWSObjectDataset()
/// Initializes a new instance of the AmazonMWSObjectDataset class.
/// </summary>
/// <param name="linkedServiceName">Linked service reference.</param>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="description">Dataset description.</param>
/// <param name="structure">Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
/// itemType: DatasetDataElement.</param>
/// <param name="parameters">Parameters for dataset.</param>
public AmazonMWSObjectDataset(LinkedServiceReference linkedServiceName, string description = default(string), object structure = default(object), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>))
: base(linkedServiceName, description, structure, parameters)
public AmazonMWSObjectDataset(LinkedServiceReference linkedServiceName, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), string description = default(string), object structure = default(object), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>))
: base(linkedServiceName, additionalProperties, description, structure, parameters)
{
CustomInit();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

/// <summary>
Expand All @@ -29,15 +31,17 @@ public AmazonMWSSource()
/// <summary>
/// Initializes a new instance of the AmazonMWSSource class.
/// </summary>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="sourceRetryCount">Source retry count. Type: integer
/// (or Expression with resultType integer).</param>
/// <param name="sourceRetryWait">Source retry wait. Type: string (or
/// Expression with resultType string), pattern:
/// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).</param>
/// <param name="query">A query to retrieve data from source. Type:
/// string (or Expression with resultType string).</param>
public AmazonMWSSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
: base(sourceRetryCount, sourceRetryWait)
public AmazonMWSSource(IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object))
: base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
CustomInit();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/// <summary>
Expand Down Expand Up @@ -40,6 +42,8 @@ public AmazonRedshiftLinkedService()
/// <param name="database">The database name of the Amazon Redshift
/// source. Type: string (or Expression with resultType
/// string).</param>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="connectVia">The integration runtime reference.</param>
/// <param name="description">Linked service description.</param>
/// <param name="username">The username of the Amazon Redshift source.
Expand All @@ -54,8 +58,8 @@ public AmazonRedshiftLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).</param>
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<string, object> additionalProperties = default(IDictionary<string, object>), 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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataFactory.Models
{
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

/// <summary>
Expand All @@ -29,6 +31,8 @@ public AmazonRedshiftSource()
/// <summary>
/// Initializes a new instance of the AmazonRedshiftSource class.
/// </summary>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="sourceRetryCount">Source retry count. Type: integer
/// (or Expression with resultType integer).</param>
/// <param name="sourceRetryWait">Source retry wait. Type: string (or
Expand All @@ -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.</param>
public AmazonRedshiftSource(object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), RedshiftUnloadSettings redshiftUnloadSettings = default(RedshiftUnloadSettings))
: base(sourceRetryCount, sourceRetryWait)
public AmazonRedshiftSource(IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), object sourceRetryCount = default(object), object sourceRetryWait = default(object), object query = default(object), RedshiftUnloadSettings redshiftUnloadSettings = default(RedshiftUnloadSettings))
: base(additionalProperties, sourceRetryCount, sourceRetryWait)
{
Query = query;
RedshiftUnloadSettings = redshiftUnloadSettings;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ public AmazonS3Dataset()
/// <param name="linkedServiceName">Linked service reference.</param>
/// <param name="bucketName">The name of the Amazon S3 bucket. Type:
/// string (or Expression with resultType string).</param>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="description">Dataset description.</param>
/// <param name="structure">Columns that define the structure of the
/// dataset. Type: array (or Expression with resultType array),
Expand All @@ -54,8 +56,8 @@ public AmazonS3Dataset()
/// <param name="format">The format of files.</param>
/// <param name="compression">The data compression method used for the
/// Amazon S3 object.</param>
public AmazonS3Dataset(LinkedServiceReference linkedServiceName, object bucketName, string description = default(string), object structure = default(object), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>), 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<string, object> additionalProperties = default(IDictionary<string, object>), string description = default(string), object structure = default(object), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>), 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;
Expand Down
Loading