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