Databricks SDK for JavaScript
    Preparing search index...
    interface ModelVersionDatabricks {
        creationTimestamp?: bigint;
        currentStage?: string;
        description?: string;
        emailSubscriptionStatus?: RegistryEmailSubscriptionType;
        featureList?: FeatureList;
        lastUpdatedTimestamp?: bigint;
        name?: string;
        openRequests?: Activity[];
        permissionLevel?: PermissionLevel;
        runId?: string;
        runLink?: string;
        source?: string;
        status?: ModelVersionStatus;
        statusMessage?: string;
        tags?: ModelVersionTag[];
        userId?: string;
        version?: string;
    }
    Index

    Properties

    creationTimestamp?: bigint

    Creation time of the object, as a Unix timestamp in milliseconds.

    currentStage?: string
    description?: string

    User-specified description for the object.

    emailSubscriptionStatus?: RegistryEmailSubscriptionType

    Email Subscription Status: This is the subscription status of the user to the model version Users get subscribed by interacting with the model version.

    featureList?: FeatureList

    Feature lineage of model_version.

    lastUpdatedTimestamp?: bigint

    Time of the object at last update, as a Unix timestamp in milliseconds.

    name?: string

    Name of the model.

    openRequests?: Activity[]

    Open requests for this model_versions. Gap in sequence number is intentional and is done in order to match field sequence numbers of ModelVersion proto message

    permissionLevel?: PermissionLevel
    runId?: string

    Unique identifier for the MLflow tracking run associated with the source model artifacts.

    runLink?: string

    URL of the run associated with the model artifacts. This field is set at model version creation time only for model versions whose source run is from a tracking server that is different from the registry server.

    source?: string

    URI that indicates the location of the source model artifacts. This is used when creating the model version.

    statusMessage?: string

    Details on the current status, for example why registration failed.

    Array of tags that are associated with the model version.

    userId?: string

    The username of the user that created the object.

    version?: string

    Version of the model.