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