|
| 1 | +using System.Collections.Generic; |
| 2 | + |
| 3 | +namespace Microsoft.Azure.Management.DataFactory.Models |
| 4 | +{ |
| 5 | + public partial class ExecuteWranglingDataflowActivity : Activity |
| 6 | + { |
| 7 | + /// <summary> |
| 8 | + /// Initializes a new instance of the ExecuteWranglingDataflowActivity |
| 9 | + /// class. |
| 10 | + /// </summary> |
| 11 | + /// <param name="name">Activity name.</param> |
| 12 | + /// <param name="dataFlow">Data flow reference.</param> |
| 13 | + /// <param name="additionalProperties">Unmatched properties from the |
| 14 | + /// message are deserialized this collection</param> |
| 15 | + /// <param name="description">Activity description.</param> |
| 16 | + /// <param name="dependsOn">Activity depends on condition.</param> |
| 17 | + /// <param name="userProperties">Activity user properties.</param> |
| 18 | + /// <param name="staging">Staging info for execute data flow |
| 19 | + /// activity.</param> |
| 20 | + /// <param name="integrationRuntime">The integration runtime |
| 21 | + /// reference.</param> |
| 22 | + /// <param name="compute">Compute properties for data flow |
| 23 | + /// activity.</param> |
| 24 | + /// <param name="traceLevel">Trace level setting used for data flow |
| 25 | + /// monitoring output. Supported values are: 'coarse', 'fine', and |
| 26 | + /// 'none'. Type: string (or Expression with resultType string)</param> |
| 27 | + /// <param name="continueOnError">Continue on error setting used for |
| 28 | + /// data flow execution. Enables processing to continue if a sink |
| 29 | + /// fails. Type: boolean (or Expression with resultType |
| 30 | + /// boolean)</param> |
| 31 | + /// <param name="runConcurrently">Concurrent run setting used for data |
| 32 | + /// flow execution. Allows sinks with the same save order to be |
| 33 | + /// processed concurrently. Type: boolean (or Expression with |
| 34 | + /// resultType boolean)</param> |
| 35 | + /// <param name="sinks">(Deprecated. Please use Queries). List of Power |
| 36 | + /// Query activity sinks mapped to a queryName.</param> |
| 37 | + /// <param name="queries">List of mapping for Power Query mashup query |
| 38 | + /// to sink dataset(s).</param> |
| 39 | + /// <param name="policy">Activity policy.</param> |
| 40 | + public ExecuteWranglingDataflowActivity(string name, DataFlowReference dataFlow, IDictionary<string, object> additionalProperties, string description, IList<ActivityDependency> dependsOn, IList<UserProperty> userProperties, DataFlowStagingInfo staging, IntegrationRuntimeReference integrationRuntime, ExecuteDataFlowActivityTypePropertiesCompute compute, object traceLevel, object continueOnError, object runConcurrently, IDictionary<string, PowerQuerySink> sinks, IList<PowerQuerySinkMapping> queries = default(IList<PowerQuerySinkMapping>), ActivityPolicy policy = default(ActivityPolicy)) |
| 41 | + : base(name, additionalProperties, description, dependsOn, userProperties) |
| 42 | + { |
| 43 | + DataFlow = dataFlow; |
| 44 | + Staging = staging; |
| 45 | + IntegrationRuntime = integrationRuntime; |
| 46 | + Compute = compute; |
| 47 | + TraceLevel = traceLevel; |
| 48 | + ContinueOnError = continueOnError; |
| 49 | + RunConcurrently = runConcurrently; |
| 50 | + Sinks = sinks; |
| 51 | + Queries = queries; |
| 52 | + Policy = policy; |
| 53 | + CustomInit(); |
| 54 | + } |
| 55 | + } |
| 56 | +} |
0 commit comments