Package version:

Interface ExecuteDataFlowActivity

Execute data flow activity.

interface ExecuteDataFlowActivity {
    compute?: ExecuteDataFlowActivityTypePropertiesCompute;
    continuationSettings?: ContinuationSettingsReference;
    continueOnError?: any;
    dataFlow: DataFlowReference;
    dependsOn?: ActivityDependency[];
    description?: string;
    integrationRuntime?: IntegrationRuntimeReference;
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    policy?: ActivityPolicy;
    runConcurrently?: any;
    sourceStagingConcurrency?: any;
    staging?: DataFlowStagingInfo;
    state?: string;
    traceLevel?: any;
    type: "ExecuteDataFlow";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

Compute properties for data flow activity.

continuationSettings?: ContinuationSettingsReference

Continuation settings for execute data flow activity.

continueOnError?: any

Continue on error setting used for data flow execution. Enables processing to continue if a sink fails. Type: boolean (or Expression with resultType boolean)

Data flow reference.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

integrationRuntime?: IntegrationRuntimeReference

The integration runtime reference.

linkedServiceName?: LinkedServiceReference

Linked service reference.

name: string

Activity name.

onInactiveMarkAs?: string

Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.

Activity policy.

runConcurrently?: any

Concurrent run setting used for data flow execution. Allows sinks with the same save order to be processed concurrently. Type: boolean (or Expression with resultType boolean)

sourceStagingConcurrency?: any

Specify number of parallel staging for sources applicable to the sink. Type: integer (or Expression with resultType integer)

Staging info for execute data flow activity.

state?: string

Activity state. This is an optional property and if not provided, the state will be Active by default.

traceLevel?: any

Trace level setting used for data flow monitoring output. Supported values are: 'coarse', 'fine', and 'none'. Type: string (or Expression with resultType string)

type

Polymorphic discriminator, which specifies the different types this object can be

userProperties?: UserProperty[]

Activity user properties.