Databricks SDK for JavaScript
    Preparing search index...

    A LoggedModelInfo includes logged model attributes, tags, and registration info.

    interface LoggedModelInfo {
        artifactUri?: string;
        creationTimestampMs?: bigint;
        creatorId?: bigint;
        experimentId?: string;
        lastUpdatedTimestampMs?: bigint;
        modelId?: string;
        modelType?: string;
        name?: string;
        sourceRunId?: string;
        status?: LoggedModelStatus;
        statusMessage?: string;
        tags?: LoggedModelTag[];
    }
    Index

    Properties

    artifactUri?: string

    The URI of the directory where model artifacts are stored.

    creationTimestampMs?: bigint

    The timestamp when the model was created in milliseconds since the UNIX epoch.

    creatorId?: bigint

    The ID of the user or principal that created the model.

    experimentId?: string

    The ID of the experiment that owns the model.

    lastUpdatedTimestampMs?: bigint

    The timestamp when the model was last updated in milliseconds since the UNIX epoch.

    modelId?: string

    The unique identifier for the logged model.

    modelType?: string

    The type of model, such as "Agent", "Classifier", "LLM".

    name?: string

    The name of the model.

    sourceRunId?: string

    The ID of the run that created the model.

    The status of whether or not the model is ready for use.

    statusMessage?: string

    Details on the current model status.

    Mutable string key-value pairs set on the model.