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

    Interface DerivedLegacyIndexSpec

    Pure deployment projection before missing-capacity accessors are installed.

    interface DerivedLegacyIndexSpec {
        byoc?: Omit<LegacyByocSpec, "readCapacity"> & {
            readCapacity?: ReadCapacityResponse;
        };
        pod?: LegacyPodSpec;
        serverless?: Omit<LegacyServerlessSpec, "readCapacity"> & {
            readCapacity?: ReadCapacityResponse;
        };
    }
    Index
    byoc?: Omit<LegacyByocSpec, "readCapacity"> & {
        readCapacity?: ReadCapacityResponse;
    }

    BYOC fields, including the raw optional API read capacity.

    Type Declaration

    • OptionalreadCapacity?: ReadCapacityResponse

      Raw API read capacity, which an out-of-contract response may omit.

    Pod deployment fields, which never carry read capacity.

    serverless?: Omit<LegacyServerlessSpec, "readCapacity"> & {
        readCapacity?: ReadCapacityResponse;
    }

    Serverless fields, including the raw optional API read capacity.

    Type Declaration

    • OptionalreadCapacity?: ReadCapacityResponse

      Raw API read capacity, which an out-of-contract response may omit.