# File lib/fog/aws/models/dns/zones.rb, line 15defall(options = {})
options['marker'] ||=markeroptions['maxitems'] ||=max_itemsdata = service.list_hosted_zones(options).body['HostedZones']
load(data)
end
get(zone_id)click to toggle source
# File lib/fog/aws/models/dns/zones.rb, line 22defget(zone_id)
data = service.get_hosted_zone(zone_id).bodynew(data)
rescueExcon::Errors::NotFoundnilend