Sha256: c8c514c7b887f86deb95a370a952787c939806c6caa6e7c18ebb16f8f7872f0d
Contents?: true
Size: 632 Bytes
Versions: 28
Compression:
Stored size: 632 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Updates ACL Item with specified Id # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateNetworkACLItem.html] def update_network_acl_item(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateNetworkACLItem') else options.merge!('command' => 'updateNetworkACLItem', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems