# File lib/fog/hp/models/dns/records.rb, line 12defallrequires:domainload(service.list_records_in_a_domain(domain.id).body['records'])
end
get(record_id)click to toggle source
# File lib/fog/hp/models/dns/records.rb, line 17defget(record_id)
requires:domain### Inconsistent API - does not return a 'record'ifrecord = service.get_record(domain.id, record_id).bodynew(record)
endrescueFog::HP::DNS::NotFoundnilend