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