(self, device, ip)
| 136 | return self.__LOG_FORMAT |
| 137 | |
| 138 | def get_ingress_chain(self, device, ip): |
| 139 | if self.is_vpc(): |
| 140 | return "ACL_INBOUND_%s" % device |
| 141 | else: |
| 142 | return "FIREWALL_%s" % ip |
| 143 | |
| 144 | def get_egress_chain(self, device, ip): |
| 145 | if self.is_vpc(): |