@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
51 lines (50 loc) • 1.5 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.
*/
/**
* Configuration for Couchbase Capella connector
* @export
* @interface CAPELLAConfig
*/
export interface CAPELLAConfig {
/**
* Bucket Name. Example: Enter bucket name
* @type {string}
* @memberof CAPELLAConfig
*/
bucket: string;
/**
* Scope Name. Example: Enter scope name
* @type {string}
* @memberof CAPELLAConfig
*/
scope: string;
/**
* Collection Name. Example: Enter collection name
* @type {string}
* @memberof CAPELLAConfig
*/
collection: string;
/**
* Search Index Name. Example: Enter search index name
* @type {string}
* @memberof CAPELLAConfig
*/
index: string;
}
/**
* Check if a given object implements the CAPELLAConfig interface.
*/
export declare function instanceOfCAPELLAConfig(value: object): value is CAPELLAConfig;
export declare function CAPELLAConfigFromJSON(json: any): CAPELLAConfig;
export declare function CAPELLAConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): CAPELLAConfig;
export declare function CAPELLAConfigToJSON(json: any): CAPELLAConfig;
export declare function CAPELLAConfigToJSONTyped(value?: CAPELLAConfig | null, ignoreDiscriminator?: boolean): any;