# File lib/openstack/compute/metadata.rb, line 88
    def delete!(keys)
      keys.each { |key|
        @compute.connection.req('DELETE', "#{@base_url}/#{key}")
        @metadata.delete(key) if not @metadata.nil?
      }
    end