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/openstack/requests/compute/delete_key_pair.rb

22 lines
321 B
Ruby
Raw Normal View History

module Fog
module Compute
class Openstack
class Real
def delete_key_pair(key_name)
request(
:expects => 202,
:method => 'DELETE',
:path => "os-keypairs/#{key_name}"
)
end
end
class Mock
end
end
end
end