mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
549 B
Ruby
24 lines
549 B
Ruby
module Fog
|
|
module AWS
|
|
class EC2
|
|
|
|
# Delete a key pair that you own
|
|
#
|
|
# ==== Parameters
|
|
# * key_name<~String> - Name of the key pair.
|
|
#
|
|
# ==== Returns
|
|
# * response<~Fog::AWS::Response>:
|
|
# * body<~Hash>:
|
|
# * :request_id<~String> id of request
|
|
# * :return<~Boolean> - success?
|
|
def delete_key_pair(key_name)
|
|
request({
|
|
'Action' => 'DeleteKeyPair',
|
|
'KeyName' => key_name
|
|
}, Fog::Parsers::AWS::EC2::Basic.new)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|