Package version:

Interface PipelineRunInvokedBy

Provides entity name and id that started the pipeline run.

interface PipelineRunInvokedBy {
    id?: string;
    invokedByType?: string;
    name?: string;
    pipelineName?: string;
    pipelineRunId?: string;
}

Properties

id?: string

The ID of the entity that started the run. NOTE: This property will not be serialized. It can only be populated by the server.

invokedByType?: string

The type of the entity that started the run. NOTE: This property will not be serialized. It can only be populated by the server.

name?: string

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

pipelineName?: string

The name of the pipeline that triggered the run, if any. NOTE: This property will not be serialized. It can only be populated by the server.

pipelineRunId?: string

The run id of the pipeline that triggered the run, if any. NOTE: This property will not be serialized. It can only be populated by the server.