Get Run Task
omics_get_run_task | R Documentation |
Gets information about a workflow run task¶
Description¶
Gets information about a workflow run task.
Usage¶
Arguments¶
id
[required] The workflow run ID.
taskId
[required] The task's ID.
Value¶
A list with the following syntax:
list(
taskId = "string",
status = "PENDING"|"STARTING"|"RUNNING"|"STOPPING"|"COMPLETED"|"CANCELLED"|"FAILED",
name = "string",
cpus = 123,
memory = 123,
creationTime = as.POSIXct(
"2015-01-01"
),
startTime = as.POSIXct(
"2015-01-01"
),
stopTime = as.POSIXct(
"2015-01-01"
),
statusMessage = "string",
logStream = "string",
gpus = 123,
instanceType = "string",
failureReason = "string"
)