/** * 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 Weaviate * @export * @interface WEAVIATEAuthConfig */ export interface WEAVIATEAuthConfig { /** * Endpoint. Example: Enter your Weaviate Cluster REST Endpoint * @type {string} * @memberof WEAVIATEAuthConfig */ host: string; /** * API Key. Example: Enter your API key * @type {string} * @memberof WEAVIATEAuthConfig */ apiKey: string; } /** * Check if a given object implements the WEAVIATEAuthConfig interface. */ export declare function instanceOfWEAVIATEAuthConfig(value: object): value is WEAVIATEAuthConfig; export declare function WEAVIATEAuthConfigFromJSON(json: any): WEAVIATEAuthConfig; export declare function WEAVIATEAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): WEAVIATEAuthConfig; export declare function WEAVIATEAuthConfigToJSON(json: any): WEAVIATEAuthConfig; export declare function WEAVIATEAuthConfigToJSONTyped(value?: WEAVIATEAuthConfig | null, ignoreDiscriminator?: boolean): any;