Databricks SDK for JavaScript
    Preparing search index...

    Interface TransitionModelVersionStageDatabricksRequest

    Details required to transition a model version's stage.

    interface TransitionModelVersionStageDatabricksRequest {
        archiveExistingVersions?: boolean;
        comment?: string;
        name?: string;
        stage?: string;
        version?: string;
    }
    Index

    Properties

    archiveExistingVersions?: boolean

    Specifies whether to archive all current model versions in the target stage.

    comment?: string

    User-provided comment on the action.

    name?: string

    Name of the model.

    stage?: string

    Target stage of the transition. Valid values are:

    • None: The initial stage of a model version.

    • Staging: Staging or pre-production stage.

    • Production: Production stage.

    • Archived: Archived stage.

    version?: string

    Version of the model.