@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
51 lines (50 loc) • 1.66 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 Blob Storage
* @export
* @interface AZUREBLOBAuthConfig
*/
export interface AZUREBLOBAuthConfig {
/**
* Storage Account Name. Example: Enter Storage Account Name
* @type {string}
* @memberof AZUREBLOBAuthConfig
*/
storageAccountName: string;
/**
* Storage Account Key. Example: Enter Storage Account Key
* @type {string}
* @memberof AZUREBLOBAuthConfig
*/
storageAccountKey: string;
/**
* Container. Example: Enter Container Name
* @type {string}
* @memberof AZUREBLOBAuthConfig
*/
container: string;
/**
* Endpoint. Example: Enter Endpoint URL
* @type {string}
* @memberof AZUREBLOBAuthConfig
*/
endpoint?: string;
}
/**
* Check if a given object implements the AZUREBLOBAuthConfig interface.
*/
export declare function instanceOfAZUREBLOBAuthConfig(value: object): value is AZUREBLOBAuthConfig;
export declare function AZUREBLOBAuthConfigFromJSON(json: any): AZUREBLOBAuthConfig;
export declare function AZUREBLOBAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): AZUREBLOBAuthConfig;
export declare function AZUREBLOBAuthConfigToJSON(json: any): AZUREBLOBAuthConfig;
export declare function AZUREBLOBAuthConfigToJSONTyped(value?: AZUREBLOBAuthConfig | null, ignoreDiscriminator?: boolean): any;