Databricks SDK for JavaScript
    Preparing search index...
    interface ModelVersion {
        creationTimestamp?: bigint;
        currentStage?: string;
        description?: string;
        lastUpdatedTimestamp?: bigint;
        name?: string;
        runId?: string;
        runLink?: string;
        source?: string;
        status?: ModelVersionStatus;
        statusMessage?: string;
        tags?: ModelVersionTag[];
        userId?: string;
        version?: string;
    }
    Index

    Properties

    creationTimestamp?: bigint

    Timestamp recorded when this model_version was created.

    currentStage?: string

    Current stage for this model_version.

    description?: string

    Description of this model_version.

    lastUpdatedTimestamp?: bigint

    Timestamp recorded when metadata for this model_version was last updated.

    name?: string

    Unique name of the model

    runId?: string

    MLflow run ID used when creating model_version, if source was generated by an experiment run stored in MLflow tracking server.

    runLink?: string

    Run Link: Direct link to the run that generated this version

    source?: string

    URI indicating the location of the source model artifacts, used when creating model_version

    Current status of model_version

    statusMessage?: string

    Details on current status, if it is pending or failed.

    Tags: Additional metadata key-value pairs for this model_version.

    userId?: string

    User that created this model_version.

    version?: string

    Model's version number.