interface Pipeline {
    createdAt?: Date;
    description: string;
    dnsStageId?: string;
    errors: PipelineError[];
    id: string;
    name: string;
    organizationId: string;
    projectId: string;
    status: PipelineStatus;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date the pipeline was created.

description: string

Description of the pipeline.

dnsStageId?: string

DNS stage ID the pipeline is attached to.

One-of ('head'): at most one of 'dnsStageId' could be set.

errors: PipelineError[]

Errors of the pipeline.

id: string

ID of the pipeline.

name: string

Name of the pipeline.

organizationId: string

Organization ID of the pipeline.

projectId: string

Project ID of the pipeline.

Status of the pipeline.

updatedAt?: Date

Date the pipeline was last updated.