List Operations
route53domains_list_operations | R Documentation |
Returns information about all of the operations that return an operation ID and that have ever been performed on domains that were registered by the current account¶
Description¶
Returns information about all of the operations that return an operation ID and that have ever been performed on domains that were registered by the current account.
This command runs only in the us-east-1 Region.
Usage¶
route53domains_list_operations(SubmittedSince, Marker, MaxItems, Status,
Type, SortBy, SortOrder)
Arguments¶
SubmittedSince |
An optional parameter that lets you get information about all the operations that you submitted after a specified date and time. Specify the date and time in Unix time format and Coordinated Universal time (UTC). |
Marker |
For an initial request for a list of operations, omit this
element. If the number of operations that are not yet complete is
greater than the value that you specified for |
MaxItems |
Number of domains to be returned. Default: 20 |
Status |
The status of the operations. |
Type |
An arrays of the domains operation types. |
SortBy |
The sort type for returned values. |
SortOrder |
The sort order for returned values, either ascending or descending. |
Value¶
A list with the following syntax:
list(
Operations = list(
list(
OperationId = "string",
Status = "SUBMITTED"|"IN_PROGRESS"|"ERROR"|"SUCCESSFUL"|"FAILED",
Type = "REGISTER_DOMAIN"|"DELETE_DOMAIN"|"TRANSFER_IN_DOMAIN"|"UPDATE_DOMAIN_CONTACT"|"UPDATE_NAMESERVER"|"CHANGE_PRIVACY_PROTECTION"|"DOMAIN_LOCK"|"ENABLE_AUTORENEW"|"DISABLE_AUTORENEW"|"ADD_DNSSEC"|"REMOVE_DNSSEC"|"EXPIRE_DOMAIN"|"TRANSFER_OUT_DOMAIN"|"CHANGE_DOMAIN_OWNER"|"RENEW_DOMAIN"|"PUSH_DOMAIN"|"INTERNAL_TRANSFER_OUT_DOMAIN"|"INTERNAL_TRANSFER_IN_DOMAIN"|"RELEASE_TO_GANDI"|"TRANSFER_ON_RENEW"|"RESTORE_DOMAIN",
SubmittedDate = as.POSIXct(
"2015-01-01"
),
DomainName = "string",
Message = "string",
StatusFlag = "PENDING_ACCEPTANCE"|"PENDING_CUSTOMER_ACTION"|"PENDING_AUTHORIZATION"|"PENDING_PAYMENT_VERIFICATION"|"PENDING_SUPPORT_CASE",
LastUpdatedDate = as.POSIXct(
"2015-01-01"
)
)
),
NextPageMarker = "string"
)
Request syntax¶
svc$list_operations(
SubmittedSince = as.POSIXct(
"2015-01-01"
),
Marker = "string",
MaxItems = 123,
Status = list(
"SUBMITTED"|"IN_PROGRESS"|"ERROR"|"SUCCESSFUL"|"FAILED"
),
Type = list(
"REGISTER_DOMAIN"|"DELETE_DOMAIN"|"TRANSFER_IN_DOMAIN"|"UPDATE_DOMAIN_CONTACT"|"UPDATE_NAMESERVER"|"CHANGE_PRIVACY_PROTECTION"|"DOMAIN_LOCK"|"ENABLE_AUTORENEW"|"DISABLE_AUTORENEW"|"ADD_DNSSEC"|"REMOVE_DNSSEC"|"EXPIRE_DOMAIN"|"TRANSFER_OUT_DOMAIN"|"CHANGE_DOMAIN_OWNER"|"RENEW_DOMAIN"|"PUSH_DOMAIN"|"INTERNAL_TRANSFER_OUT_DOMAIN"|"INTERNAL_TRANSFER_IN_DOMAIN"|"RELEASE_TO_GANDI"|"TRANSFER_ON_RENEW"|"RESTORE_DOMAIN"
),
SortBy = "SubmittedDate",
SortOrder = "ASC"|"DESC"
)