Package version:

Interface ExecutePipelineActivity

Execute pipeline activity.

interface ExecutePipelineActivity {
    dependsOn?: ActivityDependency[];
    description?: string;
    name: string;
    onInactiveMarkAs?: string;
    parameters?: {
        [propertyName: string]: any;
    };
    pipeline: PipelineReference;
    policy?: ExecutePipelineActivityPolicy;
    state?: string;
    type: "ExecutePipeline";
    userProperties?: UserProperty[];
    waitOnCompletion?: boolean;
}

Hierarchy (view full)

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.

parameters?: {
    [propertyName: string]: any;
}

Pipeline parameters.

Pipeline reference.

Execute pipeline activity policy.

state?: string

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

type

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

userProperties?: UserProperty[]

Activity user properties.

waitOnCompletion?: boolean

Defines whether activity execution will wait for the dependent pipeline execution to finish. Default is false.