Sha256: 776e649bcb05fa0aa3c3bffb2adfceebeb5223dc85cfb2789249536ae49819ec
Contents?: true
Size: 625 Bytes
Versions: 28
Compression:
Stored size: 625 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Migrate volume # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/migrateVolume.html] def migrate_volume(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'migrateVolume') else options.merge!('command' => 'migrateVolume', 'storageid' => args[0], 'volumeid' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems