# File lib/fog/aws/parsers/compute/network_acl_parser.rb, line 6 def reset_nacl @network_acl = { 'associationSet' => [], 'entrySet' => [], 'tagSet' => {} } @association = {} @entry = { 'icmpTypeCode' => {}, 'portRange' => {} } @tag = {} @in_entry_set = false @in_association_set = false @in_tag_set = false @in_port_range = false @in_icmp_type_code = false end