@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.06 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.
*/
import type { POSTGRESQLAuthConfig } from './POSTGRESQLAuthConfig';
/**
*
* @export
* @interface Postgresql1
*/
export interface Postgresql1 {
/**
*
* @type {POSTGRESQLAuthConfig}
* @memberof Postgresql1
*/
config?: POSTGRESQLAuthConfig;
}
/**
* Check if a given object implements the Postgresql1 interface.
*/
export declare function instanceOfPostgresql1(value: object): value is Postgresql1;
export declare function Postgresql1FromJSON(json: any): Postgresql1;
export declare function Postgresql1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Postgresql1;
export declare function Postgresql1ToJSON(json: any): Postgresql1;
export declare function Postgresql1ToJSONTyped(value?: Postgresql1 | null, ignoreDiscriminator?: boolean): any;