Databricks SDK for JavaScript
    Preparing search index...

    Stores information about a single task run.

    interface CleanRoomNotebookTaskRun {
        collaboratorJobRunInfo?: CollaboratorJobRunInfo;
        notebookEtag?: string;
        notebookJobRunState?: CleanRoomTaskRunState;
        notebookName?: string;
        notebookUpdatedAt?: bigint;
        outputSchemaExpirationTime?: bigint;
        outputSchemaName?: string;
        runDuration?: bigint;
        startTime?: bigint;
    }
    Index

    Properties

    collaboratorJobRunInfo?: CollaboratorJobRunInfo

    Job run info of the task in the runner's local workspace. This field is only included in the LIST API. if the task was run within the same workspace the API is being called. If the task run was in a different workspace under the same metastore, only the workspace_id is included.

    notebookEtag?: string

    Etag of the notebook executed in this task run, used to identify the notebook version.

    notebookJobRunState?: CleanRoomTaskRunState

    State of the task run.

    notebookName?: string

    Asset name of the notebook executed in this task run.

    notebookUpdatedAt?: bigint

    The timestamp of when the notebook was last updated.

    outputSchemaExpirationTime?: bigint

    Expiration time of the output schema of the task run (if any), in epoch milliseconds.

    outputSchemaName?: string

    Name of the output schema associated with the clean rooms notebook task run.

    runDuration?: bigint

    Duration of the task run, in milliseconds.

    startTime?: bigint

    When the task run started, in epoch milliseconds.