Package version:

The response properties returned for a pipeline run.

interface PipelineRunResponse {
    catalogDigest?: string;
    finishTime?: any;
    importedArtifacts?: string[];
    pipelineRunErrorMessage?: string;
    progress?: ProgressProperties;
    source?: ImportPipelineSourceProperties;
    startTime?: any;
    status?: string;
    target?: ExportPipelineTargetProperties;
    trigger?: PipelineTriggerDescriptor;
}

Properties

catalogDigest?: string

The digest of the tar used to transfer the artifacts.

finishTime?: any

The time the pipeline run finished.

importedArtifacts?: string[]

The artifacts imported in the pipeline run.

pipelineRunErrorMessage?: string

The detailed error message for the pipeline run in the case of failure.

The current progress of the copy operation.

The source of the pipeline run.

startTime?: any

The time the pipeline run started.

status?: string

The current status of the pipeline run.

The target of the pipeline run.

The trigger that caused the pipeline run.