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