Package version:

A pipeline activity.

interface Activity {
    dependsOn?: ActivityDependency[];
    description?: string;
    name: string;
    onInactiveMarkAs?: string;
    state?: string;
    type:
        | "Container"
        | "Execution"
        | "Copy"
        | "HDInsightHive"
        | "HDInsightPig"
        | "HDInsightMapReduce"
        | "HDInsightStreaming"
        | "HDInsightSpark"
        | "ExecuteSSISPackage"
        | "Custom"
        | "SqlServerStoredProcedure"
        | "ExecutePipeline"
        | "Delete"
        | "AzureDataExplorerCommand"
        | "Lookup"
        | "WebActivity"
        | "GetMetadata"
        | "IfCondition"
        | "Switch"
        | "ForEach"
        | "AzureMLBatchExecution"
        | "AzureMLUpdateResource"
        | "AzureMLExecutePipeline"
        | "DataLakeAnalyticsU-SQL"
        | "Wait"
        | "Fail"
        | "Until"
        | "Validation"
        | "Filter"
        | "DatabricksNotebook"
        | "DatabricksSparkJar"
        | "DatabricksSparkPython"
        | "SetVariable"
        | "AppendVariable"
        | "AzureFunctionActivity"
        | "WebHook"
        | "ExecuteDataFlow"
        | "ExecuteWranglingDataflow"
        | "Script"
        | "SynapseNotebook"
        | "SparkJob";
    userProperties?: UserProperty[];
    [property: string]: any;
}

Hierarchy (view full)

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

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.

state?: string

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

type:
    | "Container"
    | "Execution"
    | "Copy"
    | "HDInsightHive"
    | "HDInsightPig"
    | "HDInsightMapReduce"
    | "HDInsightStreaming"
    | "HDInsightSpark"
    | "ExecuteSSISPackage"
    | "Custom"
    | "SqlServerStoredProcedure"
    | "ExecutePipeline"
    | "Delete"
    | "AzureDataExplorerCommand"
    | "Lookup"
    | "WebActivity"
    | "GetMetadata"
    | "IfCondition"
    | "Switch"
    | "ForEach"
    | "AzureMLBatchExecution"
    | "AzureMLUpdateResource"
    | "AzureMLExecutePipeline"
    | "DataLakeAnalyticsU-SQL"
    | "Wait"
    | "Fail"
    | "Until"
    | "Validation"
    | "Filter"
    | "DatabricksNotebook"
    | "DatabricksSparkJar"
    | "DatabricksSparkPython"
    | "SetVariable"
    | "AppendVariable"
    | "AzureFunctionActivity"
    | "WebHook"
    | "ExecuteDataFlow"
    | "ExecuteWranglingDataflow"
    | "Script"
    | "SynapseNotebook"
    | "SparkJob"

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

userProperties?: UserProperty[]

Activity user properties.