# File lib/fog/dnsmadeeasy/requests/dns/update_record.rb, line 44
        def update_record(domain, record_id, options = {})
          request(
            :expects  => 200,
            :method   => "PUT",
            :path     => "/V1.2/domains/#{domain}/records/#{record_id}",
            :body     => MultiJson.encode(options)
          )
        end