@runloop/api-client - v1.4.0
    Preparing search index...

    Interface DevboxSnapshotView

    View of a Devbox disk snapshot.

    interface DevboxSnapshotView {
        id: string;
        create_time_ms: number;
        metadata: { [key: string]: string };
        source_devbox_id: string;
        commit_message?: string | null;
        name?: string | null;
        source_blueprint_id?: string | null;
    }
    Index

    Properties

    id: string

    The unique identifier of the snapshot.

    create_time_ms: number

    Creation time of the Snapshot (Unix timestamp milliseconds).

    metadata: { [key: string]: string }

    User defined metadata associated with the snapshot.

    source_devbox_id: string

    The source Devbox ID this snapshot was created from.

    commit_message?: string | null

    (Optional) The commit message of the snapshot (max 1000 characters).

    name?: string | null

    (Optional) The custom name of the snapshot.

    source_blueprint_id?: string | null

    (Optional) The source Blueprint ID this snapshot was created from.