/** * 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 { EnumRunStatus } from './'; /** * * @export * @interface TaskExecution */ export interface TaskExecution { /** * * @type {string} * @memberof TaskExecution */ uuid?: string; /** * * @type {string} * @memberof TaskExecution */ pipeline_run?: string; /** * * @type {string} * @memberof TaskExecution */ task_id?: string; /** * * @type {EnumRunStatus} * @memberof TaskExecution */ status?: EnumRunStatus; /** * * @type {string} * @memberof TaskExecution */ started_at?: string; /** * * @type {string} * @memberof TaskExecution */ last_modified?: string; /** * * @type {string} * @memberof TaskExecution */ last_message?: string; /** * * @type {string} * @memberof TaskExecution */ stderr?: string; /** * * @type {string} * @memberof TaskExecution */ stdout?: string; } export declare function TaskExecutionFromJSON(json: any): TaskExecution; export declare function TaskExecutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskExecution; export declare function TaskExecutionToJSON(value?: TaskExecution | null): any;