/** * 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 { ETLActionFilter, ETLLocalInbox, ETLLocalOutbox, ETLRemoteInbox, ETLRemoteOutbox, EnumPipelineType, EnvSpec, ExecutionProfile, ReqTask, Spec, TapisETLExtendedTapisJobDef, Uses } from './'; /** * * @export * @interface ReqCreateETLPipeline */ export interface ReqCreateETLPipeline { /** * * @type {string} * @memberof ReqCreateETLPipeline */ id: string; /** * * @type {Uses} * @memberof ReqCreateETLPipeline */ uses?: Uses; /** * * @type {Array} * @memberof ReqCreateETLPipeline */ archive_ids?: Array; /** * * @type {string} * @memberof ReqCreateETLPipeline */ description?: string; /** * * @type {{ [key: string]: EnvSpec; }} * @memberof ReqCreateETLPipeline */ env?: { [key: string]: EnvSpec; }; /** * * @type {boolean} * @memberof ReqCreateETLPipeline */ enabled?: boolean; /** * * @type {{ [key: string]: Spec; }} * @memberof ReqCreateETLPipeline */ params?: { [key: string]: Spec; }; /** * * @type {EnumPipelineType} * @memberof ReqCreateETLPipeline */ type: EnumPipelineType; /** * * @type {ExecutionProfile} * @memberof ReqCreateETLPipeline */ execution_profile?: ExecutionProfile; /** * * @type {Array} * @memberof ReqCreateETLPipeline */ tasks?: Array; /** * * @type {Array} * @memberof ReqCreateETLPipeline */ tags?: Array; /** * * @type {ETLActionFilter} * @memberof ReqCreateETLPipeline */ before?: ETLActionFilter; /** * * @type {ETLRemoteOutbox} * @memberof ReqCreateETLPipeline */ remote_outbox: ETLRemoteOutbox; /** * * @type {ETLLocalInbox} * @memberof ReqCreateETLPipeline */ local_inbox: ETLLocalInbox; /** * * @type {Array} * @memberof ReqCreateETLPipeline */ jobs: Array; /** * * @type {ETLLocalOutbox} * @memberof ReqCreateETLPipeline */ local_outbox: ETLLocalOutbox; /** * * @type {ETLRemoteInbox} * @memberof ReqCreateETLPipeline */ remote_inbox: ETLRemoteInbox; /** * * @type {ETLActionFilter} * @memberof ReqCreateETLPipeline */ after?: ETLActionFilter; } export declare function ReqCreateETLPipelineFromJSON(json: any): ReqCreateETLPipeline; export declare function ReqCreateETLPipelineFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqCreateETLPipeline; export declare function ReqCreateETLPipelineToJSON(value?: ReqCreateETLPipeline | null): any;