@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.41 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 { ELASTICAuthConfig } from './ELASTICAuthConfig';
/**
*
* @export
* @interface Elastic
*/
export interface Elastic {
/**
* Name of the connector
* @type {string}
* @memberof Elastic
*/
name: string;
/**
* Connector type (must be "ELASTIC")
* @type {string}
* @memberof Elastic
*/
type: ElasticTypeEnum;
/**
*
* @type {ELASTICAuthConfig}
* @memberof Elastic
*/
config: ELASTICAuthConfig;
}
/**
* @export
*/
export declare const ElasticTypeEnum: {
readonly Elastic: "ELASTIC";
};
export type ElasticTypeEnum = typeof ElasticTypeEnum[keyof typeof ElasticTypeEnum];
/**
* Check if a given object implements the Elastic interface.
*/
export declare function instanceOfElastic(value: object): value is Elastic;
export declare function ElasticFromJSON(json: any): Elastic;
export declare function ElasticFromJSONTyped(json: any, ignoreDiscriminator: boolean): Elastic;
export declare function ElasticToJSON(json: any): Elastic;
export declare function ElasticToJSONTyped(value?: Elastic | null, ignoreDiscriminator?: boolean): any;