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