UNPKG

@vectorize-io/vectorize-client

Version:
57 lines (56 loc) 1.79 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 SingleStore * @export * @interface SINGLESTOREAuthConfig */ export interface SINGLESTOREAuthConfig { /** * Host. Example: Enter the host of the deployment * @type {string} * @memberof SINGLESTOREAuthConfig */ host: string; /** * Port. Example: Enter the port of the deployment * @type {number} * @memberof SINGLESTOREAuthConfig */ port: number; /** * Database. Example: Enter the database name * @type {string} * @memberof SINGLESTOREAuthConfig */ database: string; /** * Username. Example: Enter the username * @type {string} * @memberof SINGLESTOREAuthConfig */ username: string; /** * Password. Example: Enter the username's password * @type {string} * @memberof SINGLESTOREAuthConfig */ password: string; } /** * Check if a given object implements the SINGLESTOREAuthConfig interface. */ export declare function instanceOfSINGLESTOREAuthConfig(value: object): value is SINGLESTOREAuthConfig; export declare function SINGLESTOREAuthConfigFromJSON(json: any): SINGLESTOREAuthConfig; export declare function SINGLESTOREAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): SINGLESTOREAuthConfig; export declare function SINGLESTOREAuthConfigToJSON(json: any): SINGLESTOREAuthConfig; export declare function SINGLESTOREAuthConfigToJSONTyped(value?: SINGLESTOREAuthConfig | null, ignoreDiscriminator?: boolean): any;