Class: Fog::DNS::DNSMadeEasy::Zones

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

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
13
14
# File 'lib/fog/dnsmadeeasy/models/dns/zones.rb', line 10

def all
  clear
  data = service.list_domains.body['list'].map{|domain| {:id => domain}}
  load(data)
end

#get(zone_id) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/fog/dnsmadeeasy/models/dns/zones.rb', line 16

def get(zone_id)
  data = service.get_domain(zone_id).body
  data.merge!(:id => data['name'])
  new(data)
rescue Fog::Service::NotFound
  nil
end