Sha256: 64b6d168d3d742b6a6f39265c55cae4e44c1844657fa5394ffe5adf035bc9724
Contents?: true
Size: 730 Bytes
Versions: 28
Compression:
Stored size: 730 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Changes the default NIC on a VM # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateDefaultNicForVirtualMachine.html] def update_default_nic_for_virtual_machine(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateDefaultNicForVirtualMachine') else options.merge!('command' => 'updateDefaultNicForVirtualMachine', 'nicid' => args[0], 'virtualmachineid' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems