UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 loc) 1.44 kB
/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * 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 { PINECONEAuthConfig } from './PINECONEAuthConfig'; /** * * @export * @interface Pinecone */ export interface Pinecone { /** * Name of the connector * @type {string} * @memberof Pinecone */ name: string; /** * Connector type (must be "PINECONE") * @type {string} * @memberof Pinecone */ type: PineconeTypeEnum; /** * * @type {PINECONEAuthConfig} * @memberof Pinecone */ config: PINECONEAuthConfig; } /** * @export */ export declare const PineconeTypeEnum: { readonly Pinecone: "PINECONE"; }; export type PineconeTypeEnum = typeof PineconeTypeEnum[keyof typeof PineconeTypeEnum]; /** * Check if a given object implements the Pinecone interface. */ export declare function instanceOfPinecone(value: object): value is Pinecone; export declare function PineconeFromJSON(json: any): Pinecone; export declare function PineconeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pinecone; export declare function PineconeToJSON(json: any): Pinecone; export declare function PineconeToJSONTyped(value?: Pinecone | null, ignoreDiscriminator?: boolean): any;