/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ETLSystem */ export interface ETLSystem { /** * * @type {string} * @memberof ETLSystem */ system_id?: string; /** * * @type {string} * @memberof ETLSystem */ path?: string; /** * * @type {Array} * @memberof ETLSystem */ include_patterns?: Array; /** * * @type {Array} * @memberof ETLSystem */ exclude_patterns?: Array; } export declare function ETLSystemFromJSON(json: any): ETLSystem; export declare function ETLSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLSystem; export declare function ETLSystemToJSON(value?: ETLSystem | null): any;