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