Databricks SDK for JavaScript
    Preparing search index...

    Server-observed state of a snapshot.

    interface SnapshotStatus {
        diffSizeBytes?: bigint;
        expiration?:
            | { $case: "expireTime"; expireTime: Instant }
            | { $case: "noExpiry"; noExpiry: boolean };
        fullSizeBytes?: bigint;
        sourceBranch?: string;
    }
    Index

    Properties

    diffSizeBytes?: bigint

    Incremental storage size in bytes since the previous snapshot. Unset when the snapshot is not billed on incremental usage.

    expiration?:
        | { $case: "expireTime"; expireTime: Instant }
        | { $case: "noExpiry"; noExpiry: boolean }

    Observed expiration state of the snapshot.

    Type Declaration

    • { $case: "expireTime"; expireTime: Instant }
      • $case: "expireTime"
      • expireTime: Instant

        Absolute time at which the snapshot is deleted.

    • { $case: "noExpiry"; noExpiry: boolean }
      • $case: "noExpiry"
      • noExpiry: boolean

        True if the snapshot never expires.

    fullSizeBytes?: bigint

    Full logical size of the snapshot, in bytes.

    sourceBranch?: string

    The source branch the snapshot was taken from. Format: projects/{project_id}/branches/{branch_id}