(self)
| 1330 | class CsForwardingRules(CsDataBag): |
| 1331 | |
| 1332 | def process(self): |
| 1333 | for public_ip in self.dbag: |
| 1334 | if public_ip == "id": |
| 1335 | continue |
| 1336 | for rule in self.dbag[public_ip]: |
| 1337 | if rule["type"] == "forward": |
| 1338 | self.processForwardRule(rule) |
| 1339 | elif rule["type"] == "staticnat": |
| 1340 | self.processStaticNatRule(rule) |
| 1341 | |
| 1342 | # Return the VR guest interface ip |
| 1343 | def getGuestIp(self): |
no test coverage detected