Package version:

Trigger runs.

interface TriggerRun {
    dependencyStatus?: {
        [propertyName: string]: any;
    };
    message?: string;
    properties?: {
        [propertyName: string]: string;
    };
    runDimension?: {
        [propertyName: string]: string;
    };
    status?: string;
    triggeredPipelines?: {
        [propertyName: string]: string;
    };
    triggerName?: string;
    triggerRunId?: string;
    triggerRunTimestamp?: any;
    triggerType?: string;
    [property: string]: any;
}

Indexable

  • [property: string]: any

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

Properties

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

Status of the upstream pipelines. NOTE: This property will not be serialized. It can only be populated by the server.

message?: string

Trigger error message. NOTE: This property will not be serialized. It can only be populated by the server.

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

List of property name and value related to trigger run. Name, value pair depends on type of trigger. NOTE: This property will not be serialized. It can only be populated by the server.

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

Run dimension for which trigger was fired. NOTE: This property will not be serialized. It can only be populated by the server.

status?: string

Trigger run status. NOTE: This property will not be serialized. It can only be populated by the server.

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

List of pipeline name and run Id triggered by the trigger run. NOTE: This property will not be serialized. It can only be populated by the server.

triggerName?: string

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

triggerRunId?: string

Trigger run id. NOTE: This property will not be serialized. It can only be populated by the server.

triggerRunTimestamp?: any

Trigger run start time. NOTE: This property will not be serialized. It can only be populated by the server.

triggerType?: string

Trigger type. NOTE: This property will not be serialized. It can only be populated by the server.