@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
39 lines (38 loc) • 1.41 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 Azure AI Search
* @export
* @interface AZUREAISEARCHAuthConfig
*/
export interface AZUREAISEARCHAuthConfig {
/**
* Azure AI Search Service Name. Example: Enter your Azure AI Search service name
* @type {string}
* @memberof AZUREAISEARCHAuthConfig
*/
serviceName: string;
/**
* API Key. Example: Enter your API key
* @type {string}
* @memberof AZUREAISEARCHAuthConfig
*/
apiKey: string;
}
/**
* Check if a given object implements the AZUREAISEARCHAuthConfig interface.
*/
export declare function instanceOfAZUREAISEARCHAuthConfig(value: object): value is AZUREAISEARCHAuthConfig;
export declare function AZUREAISEARCHAuthConfigFromJSON(json: any): AZUREAISEARCHAuthConfig;
export declare function AZUREAISEARCHAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): AZUREAISEARCHAuthConfig;
export declare function AZUREAISEARCHAuthConfigToJSON(json: any): AZUREAISEARCHAuthConfig;
export declare function AZUREAISEARCHAuthConfigToJSONTyped(value?: AZUREAISEARCHAuthConfig | null, ignoreDiscriminator?: boolean): any;