UNPKG

@pinecone-database/pinecone

Version:

This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.

24 lines (23 loc) 1.07 kB
/** * Pinecone Control Plane API * Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors. * * The version of the OpenAPI document: 2025-04 * Contact: support@pinecone.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Whether [deletion protection](http://docs.pinecone.io/guides/manage-data/manage-indexes#configure-deletion-protection) is enabled/disabled for the index. * @export */ export declare const DeletionProtection: { readonly Disabled: "disabled"; readonly Enabled: "enabled"; }; export type DeletionProtection = typeof DeletionProtection[keyof typeof DeletionProtection]; export declare function DeletionProtectionFromJSON(json: any): DeletionProtection; export declare function DeletionProtectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeletionProtection; export declare function DeletionProtectionToJSON(value?: DeletionProtection | null): any;