Databricks SDK for JavaScript
    Preparing search index...

    Request to remove rows by primary key from a Direct Access AI Search index. Named RemoveData (not DeleteData) so the linter does not classify it as a standard AIP-135 Delete method — it deletes rows within an index, not the index resource.

    interface RemoveDataRequest {
        name?: string;
        primaryKeys?: string[];
    }
    Index

    Properties

    Properties

    name?: string

    Full resource name of the index. Must be a Direct Access index. Format: workspaces/{workspace_id}/endpoints/{endpoint_id}/indexes/{index_id}

    primaryKeys?: string[]

    Primary keys of the rows to remove.