Get Landing Zone Operation
controltower_get_landing_zone_operation | R Documentation |
Returns the status of the specified landing zone operation¶
Description¶
Returns the status of the specified landing zone operation. Details for an operation are available for 90 days.
Usage¶
Arguments¶
operationIdentifier
[required] A unique identifier assigned to a landing zone operation.
Value¶
A list with the following syntax:
list(
operationDetails = list(
endTime = as.POSIXct(
"2015-01-01"
),
operationIdentifier = "string",
operationType = "DELETE"|"CREATE"|"UPDATE"|"RESET",
startTime = as.POSIXct(
"2015-01-01"
),
status = "SUCCEEDED"|"FAILED"|"IN_PROGRESS",
statusMessage = "string"
)
)