/** * 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. */ import { DataIntegrityProfile } from './'; /** * * @export * @interface ETLDataSystem */ export interface ETLDataSystem { /** * * @type {string} * @memberof ETLDataSystem */ system_id?: string; /** * * @type {string} * @memberof ETLDataSystem */ path?: string; /** * * @type {Array} * @memberof ETLDataSystem */ include_patterns?: Array; /** * * @type {Array} * @memberof ETLDataSystem */ exclude_patterns?: Array; /** * * @type {DataIntegrityProfile} * @memberof ETLDataSystem */ integrity_profile?: DataIntegrityProfile; } export declare function ETLDataSystemFromJSON(json: any): ETLDataSystem; export declare function ETLDataSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLDataSystem; export declare function ETLDataSystemToJSON(value?: ETLDataSystem | null): any;