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