interface CacheStage {
    backendStageId?: string;
    createdAt?: Date;
    fallbackTtl?: string;
    id: string;
    pipelineId?: string;
    projectId: string;
    updatedAt?: Date;
}

Properties

backendStageId?: string

Backend stage ID the cache stage is linked to.

One-of ('next'): at most one of 'backendStageId' could be set.

createdAt?: Date

Date the cache stage was created.

fallbackTtl?: string

Time To Live (TTL) in seconds. Defines how long content is cached.

id: string

ID of the cache stage.

pipelineId?: string

Pipeline ID the cache stage belongs to.

projectId: string

Project ID of the cache stage.

updatedAt?: Date

Date the cache stage was last updated.