Databricks SDK for JavaScript
    Preparing search index...

    The Refresh object gives information on a refresh of the data quality monitoring pipeline.

    interface Refresh {
        endTimeMs?: bigint;
        message?: string;
        objectId?: string;
        objectType?: string;
        refreshId?: bigint;
        startTimeMs?: bigint;
        state?: RefreshState;
        trigger?: RefreshTrigger;
    }
    Index

    Properties

    endTimeMs?: bigint

    Time when the refresh ended (milliseconds since 1/1/1970 UTC).

    message?: string

    An optional message to give insight into the current state of the refresh (e.g. FAILURE messages).

    objectId?: string

    The UUID of the request object. It is schema_id for schema, and table_id for table.

    Find the schema_id from either:

    1. The schema_id of the Schemas resource.
    2. In Catalog Explorer > select the schema > go to the Details tab > the Schema ID field.

    Find the table_id from either:

    1. The table_id of the Tables resource.
    2. In Catalog Explorer > select the table > go to the Details tab > the Table ID field.
    objectType?: string

    The type of the monitored object. Can be one of the following: schemaor table.

    refreshId?: bigint

    Unique id of the refresh operation.

    startTimeMs?: bigint

    Time when the refresh started (milliseconds since 1/1/1970 UTC).

    state?: RefreshState

    The current state of the refresh.

    trigger?: RefreshTrigger

    What triggered the refresh.