A pipeline job event to be processed by the execution plan.

interface TaskCompletedEvent {
    deliveryFailed?: boolean;
    jobId?: string;
    name?: string;
    result?: TaskResult;
    taskId?: string;
}

Hierarchy (View Summary)

Properties

deliveryFailed?: boolean

The api request was no delivered successfully

jobId?: string

The ID of the pipeline job affected by the event.

name?: string

The name of the pipeline job event.

result?: TaskResult

The result of the task.

taskId?: string

The ID of the task definition.