/** * 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 { EnumTaskType, SpecWithValue, TaskDependency, TaskExecutionProfile } from './'; /** * * @export * @interface ReqApplicationTask */ export interface ReqApplicationTask { /** * * @type {string} * @memberof ReqApplicationTask */ id: string; /** * * @type {EnumTaskType} * @memberof ReqApplicationTask */ type: EnumTaskType; /** * * @type {Array} * @memberof ReqApplicationTask */ depends_on?: Array; /** * * @type {string} * @memberof ReqApplicationTask */ description?: string; /** * * @type {TaskExecutionProfile} * @memberof ReqApplicationTask */ execution_profile?: TaskExecutionProfile; /** * * @type {{ [key: string]: SpecWithValue; }} * @memberof ReqApplicationTask */ input?: { [key: string]: SpecWithValue; }; /** * * @type {{ [key: string]: object; }} * @memberof ReqApplicationTask */ output?: { [key: string]: object; }; /** * * @type {Array<{ [key: string]: object; }>} * @memberof ReqApplicationTask */ conditions?: Array<{ [key: string]: object; }>; /** * * @type {Array} * @memberof ReqApplicationTask */ tags?: Array; /** * * @type {string} * @memberof ReqApplicationTask */ image: string; } export declare function ReqApplicationTaskFromJSON(json: any): ReqApplicationTask; export declare function ReqApplicationTaskFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqApplicationTask; export declare function ReqApplicationTaskToJSON(value?: ReqApplicationTask | null): any;