# File lib/fog/bluebox/models/dns/zones.rb, line 10 def all data = service.get_zones.body['zones'] load(data) end
# File lib/fog/bluebox/models/dns/zones.rb, line 15 def get(zone_id) data = service.get_zone(zone_id).body new(data) rescue Fog::Service::NotFound nil end