Databricks SDK for JavaScript
    Preparing search index...

    Lifecycle and health state of an AI Search index, along with human-readable detail about that state and basic indexing progress.

    interface IndexStatus {
        indexedRowCount?: bigint;
        indexUrl?: string;
        message?: string;
        ready?: boolean;
    }
    Index

    Properties

    indexedRowCount?: bigint

    Number of rows indexed.

    indexUrl?: string

    Index API URL used to perform operations on the index.

    message?: string

    Human-readable detail about the index's current state.

    ready?: boolean

    Whether the index is ready for search.