Sha256: 7de84d606ad987e95bed5bb5ad683636a375eba5f6e24d962fadd3142b2db38e
Contents?: true
Size: 672 Bytes
Versions: 28
Compression:
Stored size: 672 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Creates a Network ACL for the given VPC # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/createNetworkACLList.html] def create_network_acl_list(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'createNetworkACLList') else options.merge!('command' => 'createNetworkACLList', 'name' => args[0], 'vpcid' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems