Package version:

Information about a pipeline run.

interface PipelineRun {
    durationInMs?: number;
    invokedBy?: PipelineRunInvokedBy;
    isLatest?: boolean;
    lastUpdated?: any;
    message?: string;
    parameters?: {
        [propertyName: string]: string;
    };
    pipelineName?: string;
    runDimensions?: {
        [propertyName: string]: string;
    };
    runEnd?: any;
    runGroupId?: string;
    runId?: string;
    runStart?: any;
    status?: string;
    [property: string]: any;
}

Indexable

  • [property: string]: any

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

Properties

durationInMs?: number

The duration of a pipeline run. NOTE: This property will not be serialized. It can only be populated by the server.

Entity that started the pipeline run. NOTE: This property will not be serialized. It can only be populated by the server.

isLatest?: boolean

Indicates if the recovered pipeline run is the latest in its group. NOTE: This property will not be serialized. It can only be populated by the server.

lastUpdated?: any

The last updated timestamp for the pipeline run event in ISO8601 format. NOTE: This property will not be serialized. It can only be populated by the server.

message?: string

The message from a pipeline run. NOTE: This property will not be serialized. It can only be populated by the server.

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

The full or partial list of parameter name, value pair used in the pipeline run. NOTE: This property will not be serialized. It can only be populated by the server.

pipelineName?: string

The pipeline name. NOTE: This property will not be serialized. It can only be populated by the server.

runDimensions?: {
    [propertyName: string]: string;
}

Run dimensions emitted by Pipeline run. NOTE: This property will not be serialized. It can only be populated by the server.

runEnd?: any

The end time of a pipeline run in ISO8601 format. NOTE: This property will not be serialized. It can only be populated by the server.

runGroupId?: string

Identifier that correlates all the recovery runs of a pipeline run. NOTE: This property will not be serialized. It can only be populated by the server.

runId?: string

Identifier of a run. NOTE: This property will not be serialized. It can only be populated by the server.

runStart?: any

The start time of a pipeline run in ISO8601 format. NOTE: This property will not be serialized. It can only be populated by the server.

status?: string

The status of a pipeline run. Possible values: Queued, InProgress, Succeeded, Failed, Canceling, Cancelled NOTE: This property will not be serialized. It can only be populated by the server.