Databricks SDK for JavaScript
    Preparing search index...
    interface ModelVersionInfo {
        aliases?: RegisteredModelAliasInfo[];
        catalogName?: string;
        comment?: string;
        createdAt?: bigint;
        createdBy?: string;
        id?: string;
        metastoreId?: string;
        modelName?: string;
        modelVersionDependencies?: DependencyList;
        runId?: string;
        runWorkspaceId?: bigint;
        schemaName?: string;
        source?: string;
        status?: ModelVersionStatus;
        storageLocation?: string;
        updatedAt?: bigint;
        updatedBy?: string;
        version?: bigint;
    }
    Index

    Properties

    List of aliases associated with the model version

    catalogName?: string

    The name of the catalog containing the model version

    comment?: string

    The comment attached to the model version

    createdAt?: bigint
    createdBy?: string

    The identifier of the user who created the model version

    id?: string

    The unique identifier of the model version

    metastoreId?: string

    The unique identifier of the metastore containing the model version

    modelName?: string

    The name of the parent registered model of the model version, relative to parent schema

    modelVersionDependencies?: DependencyList

    Model version dependencies, for feature-store packaged models

    runId?: string

    MLflow run ID used when creating the model version, if source was generated by an experiment run stored in an MLflow tracking server

    runWorkspaceId?: bigint

    ID of the workspace containing the MLflow run that generated this model version, if applicable

    schemaName?: string

    The name of the schema containing the model version, relative to parent catalog

    source?: string

    URI indicating the location of the source artifacts (files) for the model version

    Current status of the model version. Newly created model versions start in PENDING_REGISTRATION status, then move to READY status once the model version files are uploaded and the model version is finalized. Only model versions in READY status can be loaded for inference or served.

    storageLocation?: string

    The storage location on the cloud under which model version data files are stored

    updatedAt?: bigint
    updatedBy?: string

    The identifier of the user who updated the model version last time

    version?: bigint

    Integer model version number, used to reference the model version in API requests.