# File lib/fog/dns/requests/dnsmadeeasy/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     => options.to_json
          )
        end