Databricks SDK for JavaScript
    Preparing search index...

    Represents a cluster revision.

    Only the 100 most recent revisions are stored for each cluster.

    interface ClusterRevision {
        createTime?: Instant;
        editReason?: ClusterEditReason;
        editUser?: string;
        isCurrent?: boolean;
        revisionId?: string;
        settings?: ClusterInfo_ComputeSpec;
    }
    Index

    Properties

    createTime?: Instant

    Time when the cluster revision was created.

    editReason?: ClusterEditReason

    Reason the cluster was edited.

    editUser?: string

    Name of the user who edited this cluster.

    isCurrent?: boolean

    Whether this is the current revision.

    revisionId?: string

    ID of the cluster revision.

    Settings used to create/edit the cluster.