Sha256: 1b8eadfc9472b8b5cfa470fb5aaf391b90e317c4289eaabb6690862544cead55
Contents?: true
Size: 661 Bytes
Versions: 28
Compression:
Stored size: 661 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Creates a ACL rule in the given network (the network has to belong to VPC) # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/createNetworkACL.html] def create_network_acl(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'createNetworkACL') else options.merge!('command' => 'createNetworkACL', 'protocol' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems