@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
32 lines (31 loc) • 1.04 kB
TypeScript
/**
* 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.
*/
/**
* Configuration needed to deploy an index in a BYOC environment.
* @export
* @interface ByocSpec
*/
export interface ByocSpec {
/**
* The environment where the index is hosted.
* @type {string}
* @memberof ByocSpec
*/
environment: string;
}
/**
* Check if a given object implements the ByocSpec interface.
*/
export declare function instanceOfByocSpec(value: object): boolean;
export declare function ByocSpecFromJSON(json: any): ByocSpec;
export declare function ByocSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): ByocSpec;
export declare function ByocSpecToJSON(value?: ByocSpec | null): any;