(self)
| 349 | ## -------------------------------------------------- |
| 350 | |
| 351 | def GetList(self): |
| 352 | response = self.send_request("GetList") |
| 353 | response['dist_list'] = DistributionList(response['data']) |
| 354 | if response['dist_list'].info['IsTruncated']: |
| 355 | raise NotImplementedError("List is truncated. Ask s3cmd author to add support.") |
| 356 | ## TODO: handle Truncated |
| 357 | return response |
| 358 | |
| 359 | def CreateDistribution(self, uri, cnames_add = [], comment = None, logging = None, default_root_object = None): |
| 360 | dist_config = DistributionConfig() |
no test coverage detected