Databricks SDK for JavaScript
    Preparing search index...

    Request to update a refresh.

    interface UpdateRefreshRequest {
        objectId?: string;
        objectType?: string;
        refresh?: Refresh;
        refreshId?: bigint;
        updateMask?: FieldMask<Refresh>;
    }
    Index

    Properties

    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: schema or table.

    refresh?: Refresh

    The refresh to update.

    refreshId?: bigint

    Unique id of the refresh operation.

    updateMask?: FieldMask<Refresh>

    The field mask to specify which fields to update.