# File lib/fog/dnsmadeeasy/models/dns/records.rb, line 14defallrequires:zonedata = service.list_records(zone.identity).bodyload(data)
end
get(record_id)click to toggle source
# File lib/fog/dnsmadeeasy/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/dnsmadeeasy/models/dns/records.rb, line 27defnew(attributes = {})
requires:zonesuper({ :zone =>zone }.merge!(attributes))
end