UNPKG

@vectorize-io/vectorize-client

Version:
51 lines (50 loc) 1.61 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 Milvus * @export * @interface MILVUSAuthConfig */ export interface MILVUSAuthConfig { /** * Public Endpoint. Example: Enter your public endpoint for your Milvus cluster * @type {string} * @memberof MILVUSAuthConfig */ url: string; /** * Token. Example: Enter your cluster token or Username/Password * @type {string} * @memberof MILVUSAuthConfig */ token?: string; /** * Username. Example: Enter your cluster Username * @type {string} * @memberof MILVUSAuthConfig */ username?: string; /** * Password. Example: Enter your cluster Password * @type {string} * @memberof MILVUSAuthConfig */ password?: string; } /** * Check if a given object implements the MILVUSAuthConfig interface. */ export declare function instanceOfMILVUSAuthConfig(value: object): value is MILVUSAuthConfig; export declare function MILVUSAuthConfigFromJSON(json: any): MILVUSAuthConfig; export declare function MILVUSAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): MILVUSAuthConfig; export declare function MILVUSAuthConfigToJSON(json: any): MILVUSAuthConfig; export declare function MILVUSAuthConfigToJSONTyped(value?: MILVUSAuthConfig | null, ignoreDiscriminator?: boolean): any;