Class: Fog::DNS::Google::Records

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/dns/google/models/records.rb

Instance Method Summary collapse

Instance Method Details

#allArray<Fog::DNS::Google::Record>

Enumerates Resource Record Sets that have been created but not yet deleted

Returns:



13
14
15
16
17
18
19
20
# File 'lib/fog/dns/google/models/records.rb', line 13

def all
  requires :zone

  data = service.list_resource_record_sets(zone.identity).body["rrsets"] || []
  load(data)
rescue Fog::Errors::NotFound
  []
end

#get(name, type) ⇒ Fog::DNS::Google::Record

Fetches the representation of an existing Resource Record Set

Parameters:

  • name (String)

    Resource Record Set name

  • type (String)

    Resource Record Set type

Returns:



28
29
30
31
32
33
34
35
# File 'lib/fog/dns/google/models/records.rb', line 28

def get(name, type)
  requires :zone

  records = service.list_resource_record_sets(zone.identity, :name => name, :type => type).body["rrsets"] || []
  records.any? ? new(records.first) : nil
rescue Fog::Errors::NotFound
  nil
end

#new(attributes = {}) ⇒ Fog::DNS::Google::Record

Creates a new instance of a Resource Record Set

Returns:



41
42
43
44
45
# File 'lib/fog/dns/google/models/records.rb', line 41

def new(attributes = {})
  requires :zone

  super({ :zone => zone }.merge!(attributes))
end