IronFunctions.Task
October 14, 2016 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| groupName | String | Group this task belongs to. | [optional] |
| error | String | The error message, if status is 'error'. This is errors due to things outside the task itself. Errors from user code will be found in the log. | [optional] |
| reason | String | Machine usable reason for task being in this state. Valid values for error status are `timeout | killed |
| createdAt | Date | Time when task was submitted. Always in UTC. | [optional] |
| startedAt | Date | Time when task started execution. Always in UTC. | [optional] |
| completedAt | Date | Time when task completed, whether it was successul or failed. Always in UTC. | [optional] |
| retryOf | String | If this field is set, then this task is a retry of the ID in this field. | [optional] |
| retryAt | String | If this field is set, then this task was retried by the task referenced in this field. | [optional] |
| envVars | {String: String} | Env vars for the task. Comes from the ones set on the Group. | [optional] |
Enum: ReasonEnum
-
timeout(value:"timeout") -
killed(value:"killed") -
bad_exit(value:"bad_exit") -
client_request(value:"client_request")