Sha256: 35806bb920d80d89bdbf0c681987fa6f1fe4abc5a468861900e49ed54d2b227f
Contents?: true
Size: 702 Bytes
Versions: 29
Compression:
Stored size: 702 Bytes
Contents
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 unless marker.nil? options[:maxitems] ||= max_items unless max_items.nil? 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
Version data entries
29 entries across 27 versions & 3 rubygems