UNPKG

@vectorize-io/vectorize-client

Version:
33 lines (32 loc) 1.16 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. */ /** * Configuration for Azure AI Search connector * @export * @interface AZUREAISEARCHConfig */ export interface AZUREAISEARCHConfig { /** * Index Name. Example: Enter index name * @type {string} * @memberof AZUREAISEARCHConfig */ index: string; } /** * Check if a given object implements the AZUREAISEARCHConfig interface. */ export declare function instanceOfAZUREAISEARCHConfig(value: object): value is AZUREAISEARCHConfig; export declare function AZUREAISEARCHConfigFromJSON(json: any): AZUREAISEARCHConfig; export declare function AZUREAISEARCHConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): AZUREAISEARCHConfig; export declare function AZUREAISEARCHConfigToJSON(json: any): AZUREAISEARCHConfig; export declare function AZUREAISEARCHConfigToJSONTyped(value?: AZUREAISEARCHConfig | null, ignoreDiscriminator?: boolean): any;