Sha256: ab779e85312653a6321b33b70ccad4803c093eef7e4e40d9c8fd7dfe7eb78b52
Contents?: true
Size: 684 Bytes
Versions: 28
Compression:
Stored size: 684 Bytes
Contents
module Fog module Compute class Cloudstack class Real # lists network that are using a nicira nvp device # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listNiciraNvpDeviceNetworks.html] def list_nicira_nvp_device_networks(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listNiciraNvpDeviceNetworks') else options.merge!('command' => 'listNiciraNvpDeviceNetworks', 'nvpdeviceid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems