/** * 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 Blob Storage connector * @export * @interface AZUREBLOBConfig */ export interface AZUREBLOBConfig { /** * File Extensions * @type {Array} * @memberof AZUREBLOBConfig */ fileExtensions: AZUREBLOBConfigFileExtensionsEnum; /** * Polling Interval (seconds) * @type {number} * @memberof AZUREBLOBConfig */ idleTime: number; /** * Recursively scan all folders in the bucket * @type {boolean} * @memberof AZUREBLOBConfig */ recursive?: boolean; /** * Path Prefix * @type {string} * @memberof AZUREBLOBConfig */ pathPrefix?: string; /** * Path Metadata Regex * @type {string} * @memberof AZUREBLOBConfig */ pathMetadataRegex?: string; /** * Path Regex Group Names. Example: Enter Group Name * @type {Array} * @memberof AZUREBLOBConfig */ pathRegexGroupNames?: Array; } /** * @export */ export declare const AZUREBLOBConfigFileExtensionsEnum: { readonly Pdf: "pdf"; readonly Docdocxgdocodtrtfepub: "doc,docx,gdoc,odt,rtf,epub"; readonly Pptpptxgslides: "ppt,pptx,gslides"; readonly Xlsxlsxgsheetsods: "xls,xlsx,gsheets,ods"; readonly Emlmsg: "eml,msg"; readonly Txt: "txt"; readonly Htmlhtm: "html,htm"; readonly Md: "md"; readonly Jpgjpegpngwebpsvggif: "jpg,jpeg,png,webp,svg,gif"; readonly Json: "json"; readonly Csv: "csv"; }; export type AZUREBLOBConfigFileExtensionsEnum = typeof AZUREBLOBConfigFileExtensionsEnum[keyof typeof AZUREBLOBConfigFileExtensionsEnum]; /** * Check if a given object implements the AZUREBLOBConfig interface. */ export declare function instanceOfAZUREBLOBConfig(value: object): value is AZUREBLOBConfig; export declare function AZUREBLOBConfigFromJSON(json: any): AZUREBLOBConfig; export declare function AZUREBLOBConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): AZUREBLOBConfig; export declare function AZUREBLOBConfigToJSON(json: any): AZUREBLOBConfig; export declare function AZUREBLOBConfigToJSONTyped(value?: AZUREBLOBConfig | null, ignoreDiscriminator?: boolean): any;