Get Operation
servicediscovery_get_operation | R Documentation |
Gets information about any operation that returns an operation ID in the response, such as a CreateHttpNamespace request¶
Description¶
Gets information about any operation that returns an operation ID in the
response, such as a create_http_namespace
request.
To get a list of operations that match specified criteria, see
list_operations
.
Usage¶
Arguments¶
OperationId
[required] The ID of the operation that you want to get more information about.
Value¶
A list with the following syntax:
list(
Operation = list(
Id = "string",
Type = "CREATE_NAMESPACE"|"DELETE_NAMESPACE"|"UPDATE_NAMESPACE"|"UPDATE_SERVICE"|"REGISTER_INSTANCE"|"DEREGISTER_INSTANCE",
Status = "SUBMITTED"|"PENDING"|"SUCCESS"|"FAIL",
ErrorMessage = "string",
ErrorCode = "string",
CreateDate = as.POSIXct(
"2015-01-01"
),
UpdateDate = as.POSIXct(
"2015-01-01"
),
Targets = list(
"string"
)
)
)