Requires authorization
Enumerates
ResourceRecordSets
that have been created but not yet deleted.
Try it now
or
see an example
.
Request
HTTP request
GET https://www.googleapis.com/dns/v1beta1/projects/project/managedZones/managedZone/rrsets
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. |
name
|
string
|
Restricts the list to return only records with this fully qualified domain name. |
pageToken
|
string
|
Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. |
type
|
string
|
Restricts the list to return only records of this type. If present, the
name
parameter must also be present. See the
full list of supported types
.
|
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#resourceRecordSetsListResponse", "rrsets": [ resourceRecordSets Resource ], "nextPageToken": string }
Property name | Value | Description | Notes |
---|---|---|---|
kind
|
string
|
Type of resource. | |
rrsets[]
|
list
|
The resource record set resources. | |
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. |
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.resourceRecordSets().list(project=PROJECT_NAME, managedZone=ZONE_NAME).execute() except errors.HttpError, error: print 'An error occurred: %s' % error
Try it!
Use the APIs Explorer below to call this method on live data and see the response. Alternatively, try the standalone Explorer .