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