# File lib/fog/bluebox/models/dns/records.rb, line 14defallrequires:zonedata = service.get_records(zone.identity).body['records']
load(data)
end
get(record_id)click to toggle source
# File lib/fog/bluebox/models/dns/records.rb, line 20defget(record_id)
data = service.get_record(zone.identity, record_id).bodynew(data)
rescueFog::Service::NotFoundnilend
new(attributes = {})click to toggle source
# File lib/fog/bluebox/models/dns/records.rb, line 27defnew(attributes = {})
requires:zonesuper({ :zone =>zone }.merge!(attributes))
end