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