Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Interface ServerlessSpec

    Configuration needed to deploy a serverless index.

    ServerlessSpec

    interface ServerlessSpec {
        cloud: string;
        readCapacity?: ReadCapacity;
        region: string;
        schema?: MetadataSchema;
        sourceCollection?: string;
    }
    Index
    cloud: string

    The public cloud where you would like your index hosted. Possible values: gcp, aws, or azure.

    ServerlessSpec

    readCapacity?: ReadCapacity

    ServerlessSpec

    region: string

    The region where you would like your index to be created.

    ServerlessSpec

    ServerlessSpec

    sourceCollection?: string

    The name of the collection to be used as the source for the index.

    ServerlessSpec