Sha256: 0d35f9a0e828cf2561ea4454e3ef1ba209cf00588cd8c574644670198dd12e85
Contents?: true
Size: 466 Bytes
Versions: 11
Compression:
Stored size: 466 Bytes
Contents
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
Version data entries
11 entries across 11 versions & 3 rubygems