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