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