The state of an index. During index creation, an index will be in the
CREATING state. If the index is created successfully, it will transition
to the READY state. If the index creation encounters a problem, the index
will transition to the NEEDS_REPAIR state.
The index is being created.
There is an active long-running operation for the index.
The index is updated when writing a document.
Some index data may exist.
NeedsRepair
The index was being created, but something went wrong.
There is no active long-running operation for the index,
and the most recently finished long-running operation failed.
The index is not updated when writing a document.
Some index data may exist.
Use the google.longrunning.Operations API to determine why the operation
that last attempted to create this index failed, then re-create the
index.
Ready
The index is ready to be used.
The index is updated when writing a document.
The index is fully populated from all stored documents it applies to.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-04 UTC."],[[["The content outlines different versions of the `Google.Cloud.Firestore.Admin.V1.Index.Types.State` component, with version 3.12.0 being the latest."],["This component is an enum that represents the state of an index in Firestore, indicating whether it's being created, needs repair, is ready, or is in an unspecified state."],["The `State` enum has four possible fields: `Creating`, `NeedsRepair`, `Ready`, and `Unspecified`, each with specific meanings regarding the index's operational status and data population."],["The `Creating` state means there is an active long-running operation, with the `NeedsRepair` state meaning the previous long-running operation failed, and the `Ready` state meaning it is fully functional."],["The namespace for this component is `Google.Cloud.Firestore.Admin.V1` within the assembly `Google.Cloud.Firestore.Admin.V1.dll`."]]],[]]