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

    Interface PreviewPatchIndexDeploymentRequest

    Deployment update parameters for pod-based indexes. Specify replicas, pod_type, or both. Deployment type, cloud/region, and environment cannot be changed after creation. Do not include a deployment_type field; it is not accepted.

    PatchIndexDeploymentRequest

    interface PreviewPatchIndexDeploymentRequest {
        podType?: string;
        replicas?: number;
    }
    Index
    podType?: string

    The type of pod to use. One of s1, p1, or p2 appended with . and one of x1, x2, x4, or x8.

    PatchIndexDeploymentRequest

    replicas?: number

    The number of replicas. Replicas duplicate your index. They provide higher availability and throughput. Replicas can be scaled up or down as your needs change.

    PatchIndexDeploymentRequest