Requires authorization
Enumerates the list of
Changes
to a
ResourceRecordSet
collection. The status of the changes can be determined by examining the
status
field. This method allows you to see a historical record of all changes made to the resource record sets for the managed zone. For more information, see
Monitoring changes
.
Try it now
or
see an example
.
Request
HTTP request
GET https://www.googleapis.com/dns/v1beta1/projects/project/managedZones/managedZone/changes
Parameters
Parameter name | Value | Description |
---|---|---|
Path parameters | ||
managedZone
|
string
|
Identifies the managed zone addressed by this request. Can be the managed zone name or ID. |
project
|
string
|
Identifies the project addressed by this request. |
Optional query parameters | ||
maxResults
|
integer
|
Optional. Maximum number of results to be returned. If unspecified, the server will decide how many results to return. |
pageToken
|
string
|
Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. |
sortBy
|
string
|
Sorting criterion. The only supported value is change sequence.
Acceptable values are:
|
sortOrder
|
string
|
Sorting order direction:
|
Authorization
This request requires authorization with at least one of the following scopes ( read more about authentication and authorization ).
Scope |
---|
https://www.googleapis.com/auth/ndev.clouddns.readonly
|
https://www.googleapis.com/auth/ndev.clouddns.readwrite
|
https://www.googleapis.com/auth/cloud-platform
|
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a response body with the following structure:
{ "kind": "dns#changesListResponse", "changes": [ changes Resource ], "nextPageToken": string }
Property name | Value | Description | Notes |
---|---|---|---|
changes[]
|
list
|
The list of changes. | |
nextPageToken
|
string
|
Pagination token. If present, indicates that additional results are available for retrieval. To access the results past the pagination limit, set this value to the
pageToken
query parameter.
In this way you can retrieve the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the first and last paginated list request, the set of all elements returned will be an inconsistent view of the collection. There is no way to retrieve a consistent snapshot of a collection larger than the maximum page size. |
|
kind
|
string
|
Type of resource. |
Examples
Note: The code examples available for this method do not represent all supported programming languages (see the client libraries page for a list of supported languages).
Python
Uses the Python client library .
from apiclient import errors # ... try: response = service.changes().list(project=PROJECT_NAME, managedZone=ZONE_NAME).execute() except errors.HttpError, error: print 'An error occurred: %s' % error
Ruby
Uses the Ruby client library .
## # List the DNS changes and their status for a given project and zone # # @param [Google::APIClient] client # Authorized client instance. # @param [String] project_name # The name of the project. # @param [String] zone_name # The name of the zone for which you want to list DNS changes. def list_changes(client, project_name, zone_name) service = client.discovered_api('dns', 'v1beta1') result = service.execute( :api_method => service.changes.list, :body_object => { 'project' => project_name, 'managedZone' => zone_name }) if result.error? puts "An error occurred: #{result.data['error']['message']}" end end
Try it!
Use the APIs Explorer below to call this method on live data and see the response. Alternatively, try the standalone Explorer .