@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
45 lines (44 loc) • 1.39 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.
*/
/**
* Authentication configuration for Elasticsearch
* @export
* @interface ELASTICAuthConfig
*/
export interface ELASTICAuthConfig {
/**
* Host. Example: Enter your host
* @type {string}
* @memberof ELASTICAuthConfig
*/
host: string;
/**
* Port. Example: Enter your port
* @type {string}
* @memberof ELASTICAuthConfig
*/
port: string;
/**
* API Key. Example: Enter your API key
* @type {string}
* @memberof ELASTICAuthConfig
*/
apiKey: string;
}
/**
* Check if a given object implements the ELASTICAuthConfig interface.
*/
export declare function instanceOfELASTICAuthConfig(value: object): value is ELASTICAuthConfig;
export declare function ELASTICAuthConfigFromJSON(json: any): ELASTICAuthConfig;
export declare function ELASTICAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ELASTICAuthConfig;
export declare function ELASTICAuthConfigToJSON(json: any): ELASTICAuthConfig;
export declare function ELASTICAuthConfigToJSONTyped(value?: ELASTICAuthConfig | null, ignoreDiscriminator?: boolean): any;