Sha256: 168e54d198a1ae47207595e3a5df2d62724b373a2255bb1d3c0bbb1f75cd6afc

Contents?: true

Size: 530 Bytes

Versions: 1

Compression:

Stored size: 530 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.3/root_admin/createNetworkACLList.html]
        def create_network_acl_list(vpcid, name, options={})
          options.merge!(
            'command' => 'createNetworkACLList', 
            'vpcid' => vpcid, 
            'name' => name  
          )
          request(options)
        end
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-1.23.0 lib/fog/cloudstack/requests/compute/create_network_acl_list.rb