/** * 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 ETLControlSystem */ export interface ETLControlSystem { /** * * @type {string} * @memberof ETLControlSystem */ system_id?: string; /** * * @type {string} * @memberof ETLControlSystem */ path?: string; /** * * @type {Array} * @memberof ETLControlSystem */ include_patterns?: Array; /** * * @type {Array} * @memberof ETLControlSystem */ exclude_patterns?: Array; } export declare function ETLControlSystemFromJSON(json: any): ETLControlSystem; export declare function ETLControlSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLControlSystem; export declare function ETLControlSystemToJSON(value?: ETLControlSystem | null): any;