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