# File lib/fog/dns/openstack/v2/requests/update_recordset.rb, line 6
          def update_recordset(zone_id, id, options = {})
            headers, options = Fog::DNS::OpenStack::V2.setup_headers(options)

            request(
              :body    => Fog::JSON.encode(options),
              :expects => 202,
              :method  => 'PUT',
              :path    => "zones/#{zone_id}/recordsets/#{id}",
              :headers => headers
            )
          end