UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 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. */ import type { POSTGRESQLAuthConfig } from './POSTGRESQLAuthConfig'; /** * * @export * @interface Postgresql */ export interface Postgresql { /** * Name of the connector * @type {string} * @memberof Postgresql */ name: string; /** * Connector type (must be "POSTGRESQL") * @type {string} * @memberof Postgresql */ type: PostgresqlTypeEnum; /** * * @type {POSTGRESQLAuthConfig} * @memberof Postgresql */ config: POSTGRESQLAuthConfig; } /** * @export */ export declare const PostgresqlTypeEnum: { readonly Postgresql: "POSTGRESQL"; }; export type PostgresqlTypeEnum = typeof PostgresqlTypeEnum[keyof typeof PostgresqlTypeEnum]; /** * Check if a given object implements the Postgresql interface. */ export declare function instanceOfPostgresql(value: object): value is Postgresql; export declare function PostgresqlFromJSON(json: any): Postgresql; export declare function PostgresqlFromJSONTyped(json: any, ignoreDiscriminator: boolean): Postgresql; export declare function PostgresqlToJSON(json: any): Postgresql; export declare function PostgresqlToJSONTyped(value?: Postgresql | null, ignoreDiscriminator?: boolean): any;