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