1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/models/dns/zones.rb
Milad Rastian a811ae0c5c list_hosted_zones expects to options to be hash with symbol as key
If the hash key is string it won't get applied in list_hosted_zones.
2015-06-24 19:14:38 +08:00

28 lines
661 B
Ruby

require 'fog/aws/models/dns/zone'
module Fog
module DNS
class AWS
class Zones < Fog::Collection
attribute :marker, :aliases => 'Marker'
attribute :max_items, :aliases => 'MaxItems'
model Fog::DNS::AWS::Zone
def all(options = {})
options[:marker] ||= marker
options[:maxitems] ||= max_items
data = service.list_hosted_zones(options).body['HostedZones']
load(data)
end
def get(zone_id)
data = service.get_hosted_zone(zone_id).body
new(data)
rescue Fog::DNS::AWS::NotFound
nil
end
end
end
end
end