/** * 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 { ETLEnumManifestGenerationPolicy, ETLEnumManifestPriority } from './'; /** * * @export * @interface ETLManifestsSystem */ export interface ETLManifestsSystem { /** * * @type {string} * @memberof ETLManifestsSystem */ system_id?: string; /** * * @type {string} * @memberof ETLManifestsSystem */ path?: string; /** * * @type {Array} * @memberof ETLManifestsSystem */ include_patterns?: Array; /** * * @type {Array} * @memberof ETLManifestsSystem */ exclude_patterns?: Array; /** * * @type {ETLEnumManifestGenerationPolicy} * @memberof ETLManifestsSystem */ generation_policy?: ETLEnumManifestGenerationPolicy; /** * * @type {ETLEnumManifestPriority} * @memberof ETLManifestsSystem */ priority?: ETLEnumManifestPriority; } export declare function ETLManifestsSystemFromJSON(json: any): ETLManifestsSystem; export declare function ETLManifestsSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLManifestsSystem; export declare function ETLManifestsSystemToJSON(value?: ETLManifestsSystem | null): any;