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