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