Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(407)

Unified Diff: third_party/gsutil/boto/boto/cloudfront/__init__.py

Issue 10199002: Upgrade gsutil to 3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)
« no previous file with comments | « third_party/gsutil/boto/boto/cloudformation/template.py ('k') | third_party/gsutil/boto/boto/cloudfront/distribution.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698