Databricks SDK for JavaScript
    Preparing search index...

    An experiment and its metadata.

    interface Experiment {
        artifactLocation?: string;
        creationTime?: bigint;
        experimentId?: string;
        lastUpdateTime?: bigint;
        lifecycleStage?: string;
        name?: string;
        tags?: ExperimentTag[];
    }
    Index

    Properties

    artifactLocation?: string

    Location where artifacts for the experiment are stored.

    creationTime?: bigint

    Creation time

    experimentId?: string

    Unique identifier for the experiment.

    lastUpdateTime?: bigint

    Last update time

    lifecycleStage?: string

    Current life cycle stage of the experiment: "active" or "deleted". Deleted experiments are not returned by APIs.

    name?: string

    Human readable name that identifies the experiment.

    tags?: ExperimentTag[]

    Tags: Additional metadata key-value pairs.