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