Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Type Alias IndexState

    IndexState:
        | "Initializing"
        | "InitializationFailed"
        | "Failed"
        | "ScalingUp"
        | "ScalingDown"
        | "ScalingUpPodSize"
        | "Terminating"
        | "Ready"
        | "Disabled"
        | string & {}

    The current state of an index.

    Check status.ready before starting data operations. When waiting for an index, Indexes.create and Indexes.createForModel throw if its state is InitializationFailed, Failed, Terminating, or Disabled.