Sha256: 7c3b2707e51ef35532beebe908dcb29f0244c6fc9f42b8196ea298962c9c0466
Contents?: true
Size: 722 Bytes
Versions: 24
Compression:
Stored size: 722 Bytes
Contents
module Fog module Compute class Cloudstack class Real # List virtual machine snapshot by conditions # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listVMSnapshot.html] def list_vm_snapshot(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listVMSnapshot') else options.merge!('command' => 'listVMSnapshot') end # add project id if we have one @cloudstack_project_id ? options.merge!('projectid' => @cloudstack_project_id) : nil request(options) end end end end end
Version data entries
24 entries across 22 versions & 3 rubygems