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