Reference documentation and code samples for the google-cloud-dns module Google::Cloud.
Methods
.dns
def self.dns(project_id = nil, credentials = nil, scope: nil, retries: nil, timeout: nil) -> Google::Cloud::Dns::Project
Creates a new Project
instance connected to the DNS service.
Each call creates a new connection.
For more information on connecting to Google Cloud see the Authentication Guide.
- project_id (String) — Identifier for a DNS project. If not present, the default project for the credentials is used.
- credentials (String, Hash, Google::Auth::Credentials) — The path to the keyfile as a String, the contents of the keyfile as a Hash, or a Google::Auth::Credentials object. (See Dns::Credentials)
-
scope (String, Array<String>) (defaults to: nil) —
The OAuth 2.0 scopes controlling the set of resources and operations that the connection can access. See Using OAuth 2.0 to Access Google APIs.
The default scope is:
https://www.googleapis.com/auth/ndev.clouddns.readwrite
-
retries (Integer) (defaults to: nil) — Number of times to retry requests on server
error. The default value is
3
. Optional. - timeout (Integer) (defaults to: nil) — Default timeout to use in requests. Optional.
require "google/cloud" dns = Google::Cloud.dns "my-project", "/path/to/keyfile.json" zone = dns.zone "example-com"
#dns
def dns(scope: nil, retries: nil, timeout: nil) -> Google::Cloud::Dns::Project
Creates a new object for connecting to the DNS service. Each call creates a new connection.
For more information on connecting to Google Cloud see the Authentication Guide.
-
scope (String, Array<String>) (defaults to: nil) —
The OAuth 2.0 scopes controlling the set of resources and operations that the connection can access. See Using OAuth 2.0 to Access Google APIs.
The default scope is:
https://www.googleapis.com/auth/ndev.clouddns.readwrite
-
retries (Integer) (defaults to: nil) — Number of times to retry requests on server
error. The default value is
3
. Optional. - timeout (Integer) (defaults to: nil) — Default timeout to use in requests. Optional.
require "google/cloud" gcloud = Google::Cloud.new dns = gcloud.dns zone = dns.zone "example-com" zone.records.each do |record| puts record.name end
The default scope can be overridden with the scope
option:
require "google/cloud" gcloud = Google::Cloud.new dns_readonly = "https://www.googleapis.com/auth/ndev.clouddns.readonly" dns = gcloud.dns scope: dns_readonly