interface Environment {
    created?: string;
    file_count?: string;
    id: string;
    last_accessed?: string;
    network?: EnvironmentNetworkEgressAllowlist;
    size_bytes?: string;
    sources?: Source[];
    status?: Status;
    updated?: string;
}

Hierarchy

  • Environment$
    • Environment

Properties

created?: string

Output only. The time at which the environment was created in ISO 8601 format

(YYYY-MM-DDThh:mm:ssZ).

file_count?: string

Output only. The number of files in the environment, output only.

id: string

Required. Output only. The ID of the environment.

last_accessed?: string

Output only. The time at which the environment was last accessed in ISO 8601 format

(YYYY-MM-DDThh:mm:ssZ).

Network configuration for the environment.

size_bytes?: string

Output only. The total size of the environment files in bytes, output only.

sources?: Source[]

Sources to be mounted into the environment.

status?: Status

Output only. The status of the environment container.

updated?: string

Output only. The time at which the environment was last updated in ISO 8601 format

(YYYY-MM-DDThh:mm:ssZ).