mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
17 lines
437 B
Ruby
17 lines
437 B
Ruby
module Fog
|
|
module Compute
|
|
class Cloudstack
|
|
class Real
|
|
# Registers an SSH key pair..
|
|
#
|
|
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/registerSSHKeyPair.html]
|
|
def register_ssh_key_pair(options={})
|
|
options.merge!(
|
|
'command' => 'registerSSHKeyPair'
|
|
)
|
|
request(options)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|