1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/dns/models/dnsimple/zones.rb
2011-02-25 11:25:59 -08:00

28 lines
490 B
Ruby

require 'fog/core/collection'
require 'fog/dns/models/dnsimple/zone'
module Fog
module DNSimple
class DNS
class Zones < Fog::Collection
model Fog::DNSimple::DNS::Zone
def all
data = connection.list_domains.body
load(data)
end
def get(zone_id)
data = connection.get_domain(zone_id).body['domain']
new(data)
rescue Excon::Errors::NotFound
nil
end
end
end
end
end