@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
47 lines (46 loc) • 1.36 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.
*/
import type { ByocSpec } from './ByocSpec';
import type { PodSpec } from './PodSpec';
import type { ServerlessSpec } from './ServerlessSpec';
/**
*
* @export
* @interface IndexModelSpec
*/
export interface IndexModelSpec {
/**
*
* @type {ByocSpec}
* @memberof IndexModelSpec
*/
byoc?: ByocSpec;
/**
*
* @type {PodSpec}
* @memberof IndexModelSpec
*/
pod?: PodSpec;
/**
*
* @type {ServerlessSpec}
* @memberof IndexModelSpec
*/
serverless?: ServerlessSpec;
}
/**
* Check if a given object implements the IndexModelSpec interface.
*/
export declare function instanceOfIndexModelSpec(value: object): boolean;
export declare function IndexModelSpecFromJSON(json: any): IndexModelSpec;
export declare function IndexModelSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexModelSpec;
export declare function IndexModelSpecToJSON(value?: IndexModelSpec | null): any;