mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
589 B
Ruby
30 lines
589 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/dnsmadeeasy/models/dns/zone'
|
|
|
|
module Fog
|
|
module DNS
|
|
class DNSMadeEasy
|
|
|
|
class Zones < Fog::Collection
|
|
|
|
model Fog::DNS::DNSMadeEasy::Zone
|
|
|
|
def all
|
|
clear
|
|
data = connection.list_domains.body['list'].collect{|domain| {:id => domain}}
|
|
load(data)
|
|
end
|
|
|
|
def get(zone_id)
|
|
data = connection.get_domain(zone_id).body
|
|
data.merge!(:id => data['name'])
|
|
new(data)
|
|
rescue Fog::Service::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|