mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
466 B
Ruby
22 lines
466 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class Cloudstack
|
||
|
class Real
|
||
|
|
||
|
# Deletes a keypair by name
|
||
|
#
|
||
|
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.12/global_admin/deleteSSHKeyPair.html]
|
||
|
def delete_ssh_key_pair(name,options={})
|
||
|
options.merge!(
|
||
|
'command' => 'deleteSSHKeyPair',
|
||
|
'name' => name
|
||
|
)
|
||
|
|
||
|
request(options)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|