(self, cfuri)
| 434 | return response |
| 435 | |
| 436 | def GetDistInfo(self, cfuri): |
| 437 | if cfuri.type != "cf": |
| 438 | raise ValueError("Expected CFUri instead of: %s" % cfuri) |
| 439 | response = self.send_request("GetDistInfo", dist_id = cfuri.dist_id()) |
| 440 | response['distribution'] = Distribution(response['data']) |
| 441 | return response |
| 442 | |
| 443 | def GetDistConfig(self, cfuri): |
| 444 | if cfuri.type != "cf": |
no test coverage detected