Requires authorization
Fetches the representation of an existing managed zone. Try it now or see an example .
Request
HTTP request
GET https://www.googleapis.com/dns/v1beta1/projects/project/managedZones/managedZone
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. |
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 ManagedZones resource in the response body.
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().get(project=PROJECT_NAME, managedZone=ZONE_NAME).execute() except errors.HttpError, error: print 'An error occurred: %s' % error
Ruby
Uses the Ruby client library .
## # Get details about a managed 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. def get_zone(client, project_name, zone_name) service = client.discovered_api('dns', 'v1beta1') result = service.execute( :api_method => service.managedZones.get, :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 .