| Index: third_party/gsutil/boto/boto/cloudfront/__init__.py
|
| diff --git a/third_party/gsutil/20110627/boto/boto/cloudfront/__init__.py b/third_party/gsutil/boto/boto/cloudfront/__init__.py
|
| similarity index 96%
|
| rename from third_party/gsutil/20110627/boto/boto/cloudfront/__init__.py
|
| rename to third_party/gsutil/boto/boto/cloudfront/__init__.py
|
| index 74ac0ce3e01abb0a53d871f3fee533d8fef6dc0b..7f98b70b75a894a0f5dd37e03bdce34914703409 100644
|
| --- a/third_party/gsutil/20110627/boto/boto/cloudfront/__init__.py
|
| +++ b/third_party/gsutil/boto/boto/cloudfront/__init__.py
|
| @@ -153,10 +153,11 @@ class CloudFrontConnection(AWSAuthConnection):
|
| return self._set_config(distribution_id, etag, config)
|
|
|
| def create_distribution(self, origin, enabled, caller_reference='',
|
| - cnames=None, comment=''):
|
| + cnames=None, comment='', trusted_signers=None):
|
| config = DistributionConfig(origin=origin, enabled=enabled,
|
| caller_reference=caller_reference,
|
| - cnames=cnames, comment=comment)
|
| + cnames=cnames, comment=comment,
|
| + trusted_signers=trusted_signers)
|
| return self._create_object(config, 'distribution', Distribution)
|
|
|
| def delete_distribution(self, distribution_id, etag):
|
| @@ -181,10 +182,12 @@ class CloudFrontConnection(AWSAuthConnection):
|
|
|
| def create_streaming_distribution(self, origin, enabled,
|
| caller_reference='',
|
| - cnames=None, comment=''):
|
| + cnames=None, comment='',
|
| + trusted_signers=None):
|
| config = StreamingDistributionConfig(origin=origin, enabled=enabled,
|
| caller_reference=caller_reference,
|
| - cnames=cnames, comment=comment)
|
| + cnames=cnames, comment=comment,
|
| + trusted_signers=trusted_signers)
|
| return self._create_object(config, 'streaming-distribution',
|
| StreamingDistribution)
|
|
|
|
|