BuildCache contains information about a build cache record. BuildCache

interface BuildCache {
    CreatedAt?: string;
    Description?: string;
    ID?: string;
    InUse?: boolean;
    LastUsedAt?: null | string;
    Parent?: string;
    Shared?: boolean;
    Size?: number;
    Type?: BuildCacheTypeEnum;
    UsageCount?: number;
}

Properties

CreatedAt?: string

Date and time at which the build cache was created in RFC 3339 format with nano-seconds.

Description?: string

Description of the build-step that produced the build cache.

ID?: string

Unique ID of the build cache record.

InUse?: boolean

Indicates if the build cache is in use.

LastUsedAt?: null | string

Date and time at which the build cache was last used in RFC 3339 format with nano-seconds.

Parent?: string

ID of the parent build cache record.

Shared?: boolean

Indicates if the build cache is shared.

Size?: number

Amount of disk space used by the build cache (in bytes).

Cache record type.

UsageCount?: number