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

34 lines
588 B
Ruby

require 'fog/core/collection'
require 'fog/rage4/models/dns/zone'
module Fog
module DNS
class Rage4
class Zones < Fog::Collection
model Fog::DNS::Rage4::Zone
def all
clear
data = service.list_domains.body
load(data)
end
def get(zone_name)
data = service.get_domain_by_name(zone_name).body
if data["status"] && !data["status"]
nil
else
new(data)
end
rescue Excon::Errors::NotFound
nil
end
end
end
end
end