Module: Google::Cloud
- Defined in:
 - lib/google-cloud-dns.rb,
lib/google/cloud/dns.rb,
lib/google/cloud/dns/zone.rb,
lib/google/cloud/dns/change.rb,
lib/google/cloud/dns/record.rb,
lib/google/cloud/dns/project.rb,
lib/google/cloud/dns/service.rb,
lib/google/cloud/dns/version.rb,
lib/google/cloud/dns/importer.rb,
lib/google/cloud/dns/zone/list.rb,
lib/google/cloud/dns/change/list.rb,
lib/google/cloud/dns/credentials.rb,
lib/google/cloud/dns/record/list.rb,
lib/google/cloud/dns/zone/transaction.rb 
Defined Under Namespace
Modules: Dns
Class Method Summary collapse
- 
  
    
      .dns(project_id = nil, credentials = nil, scope: nil, retries: nil, timeout: nil)  ⇒ Google::Cloud::Dns::Project 
    
    
  
  
  
  
  
  
  
  
  
    
Creates a new
Projectinstance connected to the DNS service. 
Instance Method Summary collapse
- 
  
    
      #dns(scope: nil, retries: nil, timeout: nil)  ⇒ Google::Cloud::Dns::Project 
    
    
  
  
  
  
  
  
  
  
  
    
Creates a new object for connecting to the DNS service.
 
Class Method Details
.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.
      105 106 107 108 109 110  | 
    
      # File 'lib/google-cloud-dns.rb', line 105 def self.dns project_id = nil, credentials = nil, scope: nil, retries: nil, timeout: nil require "google/cloud/dns" Google::Cloud::Dns.new project_id: project_id, credentials: credentials, scope: scope, retries: retries, timeout: timeout end  | 
  
Instance Method Details
#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.
      66 67 68 69 70  | 
    
      # File 'lib/google-cloud-dns.rb', line 66 def dns scope: nil, retries: nil, timeout: nil Google::Cloud.dns @project, @keyfile, scope: scope, retries: (retries || @retries), timeout: (timeout || @timeout) end  |