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

Properties

backendStageId?: string

Backend stage ID the cache stage is linked to.

One-of ('next'): at most one of 'backendStageId', 'wafStageId', 'routeStageId' 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.

routeStageId?: string

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

updatedAt?: Date

Date the cache stage was last updated.

wafStageId?: string

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