UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 loc) 1.38 kB
/** * 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 { MILVUSAuthConfig } from './MILVUSAuthConfig'; /** * * @export * @interface Milvus */ export interface Milvus { /** * Name of the connector * @type {string} * @memberof Milvus */ name: string; /** * Connector type (must be "MILVUS") * @type {string} * @memberof Milvus */ type: MilvusTypeEnum; /** * * @type {MILVUSAuthConfig} * @memberof Milvus */ config: MILVUSAuthConfig; } /** * @export */ export declare const MilvusTypeEnum: { readonly Milvus: "MILVUS"; }; export type MilvusTypeEnum = typeof MilvusTypeEnum[keyof typeof MilvusTypeEnum]; /** * Check if a given object implements the Milvus interface. */ export declare function instanceOfMilvus(value: object): value is Milvus; export declare function MilvusFromJSON(json: any): Milvus; export declare function MilvusFromJSONTyped(json: any, ignoreDiscriminator: boolean): Milvus; export declare function MilvusToJSON(json: any): Milvus; export declare function MilvusToJSONTyped(value?: Milvus | null, ignoreDiscriminator?: boolean): any;