@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.52 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 { SINGLESTOREAuthConfig } from './SINGLESTOREAuthConfig';
/**
*
* @export
* @interface Singlestore
*/
export interface Singlestore {
/**
* Name of the connector
* @type {string}
* @memberof Singlestore
*/
name: string;
/**
* Connector type (must be "SINGLESTORE")
* @type {string}
* @memberof Singlestore
*/
type: SinglestoreTypeEnum;
/**
*
* @type {SINGLESTOREAuthConfig}
* @memberof Singlestore
*/
config: SINGLESTOREAuthConfig;
}
/**
* @export
*/
export declare const SinglestoreTypeEnum: {
readonly Singlestore: "SINGLESTORE";
};
export type SinglestoreTypeEnum = typeof SinglestoreTypeEnum[keyof typeof SinglestoreTypeEnum];
/**
* Check if a given object implements the Singlestore interface.
*/
export declare function instanceOfSinglestore(value: object): value is Singlestore;
export declare function SinglestoreFromJSON(json: any): Singlestore;
export declare function SinglestoreFromJSONTyped(json: any, ignoreDiscriminator: boolean): Singlestore;
export declare function SinglestoreToJSON(json: any): Singlestore;
export declare function SinglestoreToJSONTyped(value?: Singlestore | null, ignoreDiscriminator?: boolean): any;