Package version:

Interface SearchIndexerStatus

Represents the current status and execution history of an indexer.

interface SearchIndexerStatus {
    executionHistory: IndexerExecutionResult[];
    lastResult?: IndexerExecutionResult;
    limits: SearchIndexerLimits;
    status: IndexerStatus;
}

Properties

executionHistory: IndexerExecutionResult[]

History of the recent indexer executions, sorted in reverse chronological order. NOTE: This property will not be serialized. It can only be populated by the server.

The result of the most recent or an in-progress indexer execution. NOTE: This property will not be serialized. It can only be populated by the server.

The execution limits for the indexer. NOTE: This property will not be serialized. It can only be populated by the server.

Overall indexer status. NOTE: This property will not be serialized. It can only be populated by the server.