@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.44 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 { DATASTAXAuthConfig } from './DATASTAXAuthConfig';
/**
*
* @export
* @interface Datastax
*/
export interface Datastax {
/**
* Name of the connector
* @type {string}
* @memberof Datastax
*/
name: string;
/**
* Connector type (must be "DATASTAX")
* @type {string}
* @memberof Datastax
*/
type: DatastaxTypeEnum;
/**
*
* @type {DATASTAXAuthConfig}
* @memberof Datastax
*/
config: DATASTAXAuthConfig;
}
/**
* @export
*/
export declare const DatastaxTypeEnum: {
readonly Datastax: "DATASTAX";
};
export type DatastaxTypeEnum = typeof DatastaxTypeEnum[keyof typeof DatastaxTypeEnum];
/**
* Check if a given object implements the Datastax interface.
*/
export declare function instanceOfDatastax(value: object): value is Datastax;
export declare function DatastaxFromJSON(json: any): Datastax;
export declare function DatastaxFromJSONTyped(json: any, ignoreDiscriminator: boolean): Datastax;
export declare function DatastaxToJSON(json: any): Datastax;
export declare function DatastaxToJSONTyped(value?: Datastax | null, ignoreDiscriminator?: boolean): any;