/** * 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 { AZUREAISEARCHAuthConfig } from './AZUREAISEARCHAuthConfig'; /** * * @export * @interface Azureaisearch */ export interface Azureaisearch { /** * Name of the connector * @type {string} * @memberof Azureaisearch */ name: string; /** * Connector type (must be "AZUREAISEARCH") * @type {string} * @memberof Azureaisearch */ type: AzureaisearchTypeEnum; /** * * @type {AZUREAISEARCHAuthConfig} * @memberof Azureaisearch */ config: AZUREAISEARCHAuthConfig; } /** * @export */ export declare const AzureaisearchTypeEnum: { readonly Azureaisearch: "AZUREAISEARCH"; }; export type AzureaisearchTypeEnum = typeof AzureaisearchTypeEnum[keyof typeof AzureaisearchTypeEnum]; /** * Check if a given object implements the Azureaisearch interface. */ export declare function instanceOfAzureaisearch(value: object): value is Azureaisearch; export declare function AzureaisearchFromJSON(json: any): Azureaisearch; export declare function AzureaisearchFromJSONTyped(json: any, ignoreDiscriminator: boolean): Azureaisearch; export declare function AzureaisearchToJSON(json: any): Azureaisearch; export declare function AzureaisearchToJSONTyped(value?: Azureaisearch | null, ignoreDiscriminator?: boolean): any;