(self, cfuri)
| 507 | return responses |
| 508 | |
| 509 | def GetInvalList(self, cfuri): |
| 510 | if cfuri.type != "cf": |
| 511 | raise ValueError("Expected CFUri instead of: %s" % cfuri) |
| 512 | response = self.send_request("GetInvalList", dist_id = cfuri.dist_id()) |
| 513 | response['inval_list'] = InvalidationList(response['data']) |
| 514 | return response |
| 515 | |
| 516 | def GetInvalInfo(self, cfuri): |
| 517 | if cfuri.type != "cf": |
no test coverage detected