lib/fog/aws/models/dns/zones.rb in fog-1.22.0 vs lib/fog/aws/models/dns/zones.rb in fog-1.22.1
- old
+ new
@@ -2,13 +2,11 @@
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
@@ -23,11 +21,9 @@
data = service.get_hosted_zone(zone_id).body
new(data)
rescue Excon::Errors::NotFound
nil
end
-
end
-
end
end
end