UNPKG

@vectorize-io/vectorize-client

Version:
45 lines (44 loc) 1.5 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. */ /** * Authentication configuration for Couchbase Capella * @export * @interface CAPELLAAuthConfig */ export interface CAPELLAAuthConfig { /** * Cluster Access Name. Example: Enter your cluster access name * @type {string} * @memberof CAPELLAAuthConfig */ username: string; /** * Cluster Access Password. Example: Enter your cluster access password * @type {string} * @memberof CAPELLAAuthConfig */ password: string; /** * Connection String. Example: Enter your connection string * @type {string} * @memberof CAPELLAAuthConfig */ connectionString: string; } /** * Check if a given object implements the CAPELLAAuthConfig interface. */ export declare function instanceOfCAPELLAAuthConfig(value: object): value is CAPELLAAuthConfig; export declare function CAPELLAAuthConfigFromJSON(json: any): CAPELLAAuthConfig; export declare function CAPELLAAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): CAPELLAAuthConfig; export declare function CAPELLAAuthConfigToJSON(json: any): CAPELLAAuthConfig; export declare function CAPELLAAuthConfigToJSONTyped(value?: CAPELLAAuthConfig | null, ignoreDiscriminator?: boolean): any;