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