Interface IndexModelStatus

The current status of the index

IndexModelStatus

interface IndexModelStatus {
    ready: boolean;
    state: string;
}

Properties

Properties

ready: boolean

Whether the index is ready for use

IndexModelStatus

state: string

The state of the index. Possible values: Initializing, InitializationFailed, ScalingUp, ScalingDown, ScalingUpPodSize, ScalingDownPodSize, Terminating, Ready, or Disabled.

IndexModelStatus