Sha256: d1be78c1c0af144c57d79c6f053f3530b895900f7598ec5e6dd331e30f5ec450
Contents?: true
Size: 767 Bytes
Versions: 24
Compression:
Stored size: 767 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Create a new keypair and returns the private key # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/createSSHKeyPair.html] def create_ssh_key_pair(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'createSSHKeyPair') else options.merge!('command' => 'createSSHKeyPair', 'name' => args[0]) end # add project id if we have one @cloudstack_project_id ? options.merge!('projectid' => @cloudstack_project_id) : nil request(options) end end end end end
Version data entries
24 entries across 22 versions & 3 rubygems