# File lib/fog/dns/requests/dnsimple/update_record.rb, line 29 def update_record(domain, record_id, options) body = { "record" => options } request( :body => body.to_json, :expects => 200, :method => "PUT", :path => "/domains/#{domain}/records/#{record_id}" ) end