1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/hp/requests/compute_v2/delete_key_pair.rb

38 lines
839 B
Ruby

module Fog
module Compute
class HPV2
class Real
# Delete a keypair
#
# ==== Parameters
# * 'key_name'<~String> - Name of the keypair to delete
#
def delete_key_pair(key_name)
request(
:expects => 202,
:method => 'DELETE',
:path => "os-keypairs/#{key_name}"
)
end
end
class Mock
def delete_key_pair(key_name)
response = Excon::Response.new
if self.data[:key_pairs][key_name]
self.data[:last_modified][:key_pairs].delete(key_name)
self.data[:key_pairs].delete(key_name)
response.status = 202
response
else
raise Fog::Compute::HPV2::NotFound
end
end
end
end
end
end