@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.14 kB
TypeScript
/**
* 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.
*/
/**
* Authentication configuration for Pinecone
* @export
* @interface PINECONEAuthConfig
*/
export interface PINECONEAuthConfig {
/**
* API Key. Example: Enter your API Key
* @type {string}
* @memberof PINECONEAuthConfig
*/
apiKey: string;
}
/**
* Check if a given object implements the PINECONEAuthConfig interface.
*/
export declare function instanceOfPINECONEAuthConfig(value: object): value is PINECONEAuthConfig;
export declare function PINECONEAuthConfigFromJSON(json: any): PINECONEAuthConfig;
export declare function PINECONEAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): PINECONEAuthConfig;
export declare function PINECONEAuthConfigToJSON(json: any): PINECONEAuthConfig;
export declare function PINECONEAuthConfigToJSONTyped(value?: PINECONEAuthConfig | null, ignoreDiscriminator?: boolean): any;