(self, cfuri)
| 441 | return response |
| 442 | |
| 443 | def GetDistConfig(self, cfuri): |
| 444 | if cfuri.type != "cf": |
| 445 | raise ValueError("Expected CFUri instead of: %s" % cfuri) |
| 446 | response = self.send_request("GetDistConfig", dist_id = cfuri.dist_id()) |
| 447 | response['dist_config'] = DistributionConfig(response['data']) |
| 448 | return response |
| 449 | |
| 450 | def SetDistConfig(self, cfuri, dist_config, etag = None): |
| 451 | if etag == None: |
no test coverage detected