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