@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.14 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.
*/
/**
* Configuration for PostgreSQL connector
* @export
* @interface POSTGRESQLConfig
*/
export interface POSTGRESQLConfig {
/**
* Table Name. Example: Enter <table name> or <schema>.<table name>
* @type {string}
* @memberof POSTGRESQLConfig
*/
table: string;
}
/**
* Check if a given object implements the POSTGRESQLConfig interface.
*/
export declare function instanceOfPOSTGRESQLConfig(value: object): value is POSTGRESQLConfig;
export declare function POSTGRESQLConfigFromJSON(json: any): POSTGRESQLConfig;
export declare function POSTGRESQLConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): POSTGRESQLConfig;
export declare function POSTGRESQLConfigToJSON(json: any): POSTGRESQLConfig;
export declare function POSTGRESQLConfigToJSONTyped(value?: POSTGRESQLConfig | null, ignoreDiscriminator?: boolean): any;