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/zerigo/models/dns/zones.rb

31 lines
545 B
Ruby
Raw Normal View History

require 'fog/core/collection'
require 'fog/zerigo/models/dns/zone'
module Fog
module Zerigo
class DNS
class Zones < Fog::Collection
model Fog::Zerigo::DNS::Zone
def all
data = connection.list_zones.body['zones']
load(data)
end
def get(zone_id)
data = connection.get_zone(zone_id).body
zone = new(data)
zone.records.load(data['hosts'])
zone
rescue Excon::Errors::Forbidden
nil
end
end
end
end
end