/** * 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 TapisJobTask */ export interface TapisJobTask { /** * * @type {string} * @memberof TapisJobTask */ id?: string; /** * * @type {EnumTaskType} * @memberof TapisJobTask */ type?: EnumTaskType; /** * * @type {Array} * @memberof TapisJobTask */ depends_on?: Array; /** * * @type {string} * @memberof TapisJobTask */ description?: string; /** * * @type {TaskExecutionProfile} * @memberof TapisJobTask */ execution_profile?: TaskExecutionProfile; /** * * @type {{ [key: string]: SpecWithValue; }} * @memberof TapisJobTask */ input?: { [key: string]: SpecWithValue; }; /** * * @type {{ [key: string]: object; }} * @memberof TapisJobTask */ output?: { [key: string]: object; }; /** * * @type {Array<{ [key: string]: object; }>} * @memberof TapisJobTask */ conditions?: Array<{ [key: string]: object; }>; /** * * @type {Array} * @memberof TapisJobTask */ tags?: Array; /** * * @type {boolean} * @memberof TapisJobTask */ poll?: boolean; /** * * @type {object} * @memberof TapisJobTask */ tapis_job_def?: object; } export declare function TapisJobTaskFromJSON(json: any): TapisJobTask; export declare function TapisJobTaskFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapisJobTask; export declare function TapisJobTaskToJSON(value?: TapisJobTask | null): any;