Databricks SDK for JavaScript
    Preparing search index...
    interface BranchStatus {
        branchId?: string;
        currentState?: BranchStatus_State;
        default?: boolean;
        deleteTime?: Instant;
        expireTime?: Instant;
        isProtected?: boolean;
        logicalSizeBytes?: bigint;
        pendingState?: BranchStatus_State;
        purgeTime?: Instant;
        sourceBranch?: string;
        sourceBranchLsn?: string;
        sourceBranchTime?: Instant;
        stateChangeTime?: Instant;
    }
    Index

    Properties

    branchId?: string

    Part of the resource name.

    currentState?: BranchStatus_State

    The branch's state, indicating if it is initializing, ready for use, or archived.

    default?: boolean

    Whether the branch is the project's default branch.

    deleteTime?: Instant

    A timestamp indicating when the branch was deleted. Empty if the branch is not deleted.

    expireTime?: Instant

    Absolute expiration time for the branch. Empty if expiration is disabled.

    isProtected?: boolean

    Whether the branch is protected.

    logicalSizeBytes?: bigint

    The logical size of the branch.

    pendingState?: BranchStatus_State

    The pending state of the branch, if a state transition is in progress.

    purgeTime?: Instant

    A timestamp indicating when the branch is scheduled to be purged. Empty if the branch is not deleted, otherwise set to a timestamp in the future.

    sourceBranch?: string

    The name of the source branch from which this branch was created. Format: projects/{project_id}/branches/{branch_id}

    sourceBranchLsn?: string

    The Log Sequence Number (LSN) on the source branch from which this branch was created.

    sourceBranchTime?: Instant

    The point in time on the source branch from which this branch was created.

    stateChangeTime?: Instant

    A timestamp indicating when the current_state began.