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