Sha256: 6697e18d1126b01d2d1c043979db8f10dee98b03b5f75809a77ed9c3f6138244
Contents?: true
Size: 818 Bytes
Versions: 24
Compression:
Stored size: 818 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Register a public key in a keypair under a certain name # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/registerSSHKeyPair.html] def register_ssh_key_pair(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'registerSSHKeyPair') else options.merge!('command' => 'registerSSHKeyPair', 'name' => args[0], 'publickey' => args[1]) 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