Requires authorization
Enumerates managed zones 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
Parameters
Parameter name | Value | Description |
---|---|---|
Path parameters | ||
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. |
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#managedZonesListResponse", "managedZones": [ managedZones Resource ], "nextPageToken": string }
Property name | Value | Description | Notes |
---|---|---|---|
kind
|
string
|
Type of resource. | |
managedZones[]
|
list
|
The managed zone 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.managedZones().list(project=PROJECT_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 for which you want to list the managed zones.
def list_zones(client, project_name)
service = client.discovered_api('dns', 'v1beta1')
result = service.execute(
:api_method => service.managedZones.list,
:body_object => { 'project' => project_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 .