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

    Type Alias NativeConfigureIndexOptions

    NativeConfigureIndexOptions: Omit<
        ConfigureIndexRequest,
        "readCapacity"
        | "deletionProtection",
    > & {
        deletionProtection?: DeletionProtection;
        readCapacity?: ReadCapacity | ReadCapacityPatch;
    }

    Options for configuring an index.

    All fields are optional — send only those you want to change.

    Type Declaration

    • OptionaldeletionProtection?: DeletionProtection

      Whether to enable deletion protection. Omit to leave it unchanged.

    • OptionalreadCapacity?: ReadCapacity | ReadCapacityPatch

      The read capacity configuration to apply. Omit to leave it unchanged.