Sha256: 3b79e6ff39df7bb9ed2eb61b65b0c0a24b7fdc3cd4ce5ae424999c74f5cf4c47
Contents?: true
Size: 586 Bytes
Versions: 4
Compression:
Stored size: 586 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 request(options) end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems