Sha256: 36b1d63239de2dfc26c427e0fc134e1d67827d4b37933bae598670b82d09d9a9
Contents?: true
Size: 590 Bytes
Versions: 1
Compression:
Stored size: 590 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Attempts Migration of a VM to a different host or Root volume of the vm to a different storage pool # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/migrateVirtualMachine.html] def migrate_virtual_machine(virtualmachineid, options={}) options.merge!( 'command' => 'migrateVirtualMachine', 'virtualmachineid' => virtualmachineid ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/migrate_virtual_machine.rb |