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

    Interface PreviewManagedDeployment

    Deployment configuration for a serverless (managed) index. Serverless indexes scale automatically and you are billed only for the resources you use. This deployment type also covers full-text search indexes, which are serverless under the hood.

    ManagedDeployment

    interface PreviewManagedDeployment {
        cloud: string;
        deploymentType: "managed";
        region: string;
    }
    Index
    cloud: string

    The public cloud where the index is hosted. Possible values: gcp, aws, or azure.

    ManagedDeployment

    deploymentType: "managed"

    Identifies this as a managed (serverless) deployment. Must be managed.

    ManagedDeployment

    region: string

    The region where the index is hosted.

    ManagedDeployment