Sha256: dacdaa8ee9dee71a67c30d71a2707824fb5609861708b8dd16cec607790a2bf9
Contents?: true
Size: 662 Bytes
Versions: 28
Compression:
Stored size: 662 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Replaces ACL associated with a Network or private gateway # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/replaceNetworkACLList.html] def replace_network_acl_list(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'replaceNetworkACLList') else options.merge!('command' => 'replaceNetworkACLList', 'aclid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems