/** * 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 PostgreSQL * @export * @interface POSTGRESQLAuthConfig */ export interface POSTGRESQLAuthConfig { /** * Host. Example: Enter the host of the deployment * @type {string} * @memberof POSTGRESQLAuthConfig */ host: string; /** * Port. Example: Enter the port of the deployment * @type {number} * @memberof POSTGRESQLAuthConfig */ port?: number; /** * Database. Example: Enter the database name * @type {string} * @memberof POSTGRESQLAuthConfig */ database: string; /** * Username. Example: Enter the username * @type {string} * @memberof POSTGRESQLAuthConfig */ username: string; /** * Password. Example: Enter the username's password * @type {string} * @memberof POSTGRESQLAuthConfig */ password: string; } /** * Check if a given object implements the POSTGRESQLAuthConfig interface. */ export declare function instanceOfPOSTGRESQLAuthConfig(value: object): value is POSTGRESQLAuthConfig; export declare function POSTGRESQLAuthConfigFromJSON(json: any): POSTGRESQLAuthConfig; export declare function POSTGRESQLAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): POSTGRESQLAuthConfig; export declare function POSTGRESQLAuthConfigToJSON(json: any): POSTGRESQLAuthConfig; export declare function POSTGRESQLAuthConfigToJSONTyped(value?: POSTGRESQLAuthConfig | null, ignoreDiscriminator?: boolean): any;