Methods

Class/Module Index [+]

Quicksearch

Fog::DNS::DNSMadeEasy::Zones

Public Instance Methods

all() click to toggle source
# File lib/fog/dnsmadeeasy/models/dns/zones.rb, line 12
def all
  clear
  data = service.list_domains.body['list'].collect{|domain| {:id => domain}}
  load(data)
end
get(zone_id) click to toggle source
# File lib/fog/dnsmadeeasy/models/dns/zones.rb, line 18
def get(zone_id)
  data = service.get_domain(zone_id).body
  data.merge!(:id => data['name'])
  new(data)
rescue Fog::Service::NotFound
  nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.