Get Job Run
| datazone_get_job_run | R Documentation |
The details of the job run¶
Description¶
The details of the job run.
Usage¶
datazone_get_job_run(domainIdentifier, identifier)
Arguments¶
domainIdentifier |
[required] The ID of the domain. |
identifier |
[required] The ID of the job run. |
Value¶
A list with the following syntax:
list(
domainId = "string",
id = "string",
jobId = "string",
jobType = "LINEAGE",
runMode = "SCHEDULED"|"ON_DEMAND",
details = list(
lineageRunDetails = list(
sqlQueryRunDetails = list(
queryStartTime = as.POSIXct(
"2015-01-01"
),
queryEndTime = as.POSIXct(
"2015-01-01"
),
totalQueriesProcessed = 123,
numQueriesFailed = 123,
errorMessages = list(
"string"
)
)
)
),
status = "SCHEDULED"|"IN_PROGRESS"|"SUCCESS"|"PARTIALLY_SUCCEEDED"|"FAILED"|"ABORTED"|"TIMED_OUT"|"CANCELED",
error = list(
message = "string"
),
createdBy = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$get_job_run(
domainIdentifier = "string",
identifier = "string"
)