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