UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 loc) 1.47 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 { AZUREBLOBAuthConfig } from './AZUREBLOBAuthConfig'; /** * * @export * @interface AzureBlob */ export interface AzureBlob { /** * Name of the connector * @type {string} * @memberof AzureBlob */ name: string; /** * Connector type (must be "AZURE_BLOB") * @type {string} * @memberof AzureBlob */ type: AzureBlobTypeEnum; /** * * @type {AZUREBLOBAuthConfig} * @memberof AzureBlob */ config: AZUREBLOBAuthConfig; } /** * @export */ export declare const AzureBlobTypeEnum: { readonly AzureBlob: "AZURE_BLOB"; }; export type AzureBlobTypeEnum = typeof AzureBlobTypeEnum[keyof typeof AzureBlobTypeEnum]; /** * Check if a given object implements the AzureBlob interface. */ export declare function instanceOfAzureBlob(value: object): value is AzureBlob; export declare function AzureBlobFromJSON(json: any): AzureBlob; export declare function AzureBlobFromJSONTyped(json: any, ignoreDiscriminator: boolean): AzureBlob; export declare function AzureBlobToJSON(json: any): AzureBlob; export declare function AzureBlobToJSONTyped(value?: AzureBlob | null, ignoreDiscriminator?: boolean): any;