Amazon Route 53 Domains

2018/04/30 - Amazon Route 53 Domains - 1 updated api methods

Changes  This release adds a SubmittedSince attribute to the ListOperations API, so you can list operations that were submitted after a specified date and time.

ListOperations (updated) Link ΒΆ
Changes (request)
{'SubmittedSince': 'timestamp'}

This operation returns the operation IDs of operations that are not yet complete.

See also: AWS API Documentation

Request Syntax

client.list_operations(
    SubmittedSince=datetime(2015, 1, 1),
    Marker='string',
    MaxItems=123
)
type SubmittedSince

datetime

param 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 Coordinated Universal time (UTC).

type Marker

string

param 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 , you can use Marker to return additional operations. Get the value of NextPageMarker from the previous response, and submit another request that includes the value of NextPageMarker in the Marker element.

type MaxItems

integer

param MaxItems

Number of domains to be returned.

Default: 20

rtype

dict

returns

Response Syntax

{
    'Operations': [
        {
            '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',
            'SubmittedDate': datetime(2015, 1, 1)
        },
    ],
    'NextPageMarker': 'string'
}

Response Structure

  • (dict) --

    The ListOperations response includes the following elements.

    • Operations (list) --

      Lists summaries of the operations.

      • (dict) --

        OperationSummary includes the following elements.

        • OperationId (string) --

          Identifier returned to track the requested action.

        • Status (string) --

          The current status of the requested operation in the system.

        • Type (string) --

          Type of the action requested.

        • SubmittedDate (datetime) --

          The date when the request was submitted.

    • NextPageMarker (string) --

      If there are more operations than you specified for MaxItems in the request, submit another request and include the value of NextPageMarker in the value of Marker .