import "../ApiClient-fBZ10h6n.mjs"; import "../StateType-CA4aMnXy.mjs"; import "../StateHistory-CKitluwW.mjs"; import { t as State_default } from "../State-DVXHVcVv.mjs"; import "../Asset-QWv2ZEoy.mjs"; import "../AssetIdentifier-CzXHaTTa.mjs"; import { t as AssetsInOut_default } from "../AssetsInOut-BT_nZJkV.mjs"; //#region src/model/TaskRun.d.ts type ITaskRun = { id: string; executionId: string; namespace: string; flowId: string; taskId: string; parentTaskRunId: string; value: string; /** * :model/TaskRunAttempt>} attempts */ "": Array; outputs: any; assets: AssetsInOut_default; state: State_default; iteration: number; dynamic: boolean; forceExecution: boolean; }; /** * @typedef {Object} ITaskRun * @property {String} id * @property {String} executionId * @property {String} namespace * @property {String} flowId * @property {String} taskId * @property {String} parentTaskRunId * @property {String} value * @property {Array.} attempts * @property {Object} outputs * @property {AssetsInOut} assets * @property {State} state * @property {Number} iteration * @property {Boolean} dynamic * @property {Boolean} forceExecution */ /** * The TaskRun model module. * @module model/TaskRun * @type {ITaskRun} */ declare class TaskRun { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, executionId: any, namespace: any, flowId: any, taskId: any, state: any): void; /** * Constructs a TaskRun from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/TaskRun} obj Optional instance to populate. * @return {module:model/TaskRun} The populated TaskRun instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to TaskRun. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to TaskRun. */ static validateJSON(data: any): boolean; /** * Constructs a new TaskRun. * @alias module:model/TaskRun * @param {String} id - * @param {String} executionId - * @param {String} namespace - * @param {String} flowId - * @param {String} taskId - * @param {module:model/State} state - */ constructor(id: string, executionId: string, namespace: string, flowId: string, taskId: string, state: any); id: string; executionId: string; namespace: string; flowId: string; taskId: string; parentTaskRunId: string; value: string; attempts: any; outputs: any; assets: AssetsInOut_default; state: State_default; iteration: number; dynamic: boolean; forceExecution: boolean; } declare namespace TaskRun { let RequiredProperties: string[]; } //#endregion export { ITaskRun, TaskRun as default };