Get Run Task
| omics_get_run_task | R Documentation |
Gets detailed information about a run task using its ID¶
Description¶
Gets detailed information about a run task using its ID.
Usage¶
omics_get_run_task(id, taskId)
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,
cacheHit = TRUE|FALSE,
cacheS3Uri = "string",
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",
imageDetails = list(
image = "string",
imageDigest = "string",
sourceImage = "string"
)
)
Request syntax¶
svc$get_run_task(
id = "string",
taskId = "string"
)