summaryrefslogtreecommitdiff
path: root/boto/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'boto/utils.py')
-rw-r--r--boto/utils.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/boto/utils.py b/boto/utils.py
index f8801817..22f97110 100644
--- a/boto/utils.py
+++ b/boto/utils.py
@@ -93,7 +93,10 @@ qsa_of_interest = ['acl', 'cors', 'defaultObjectAcl', 'location', 'logging',
# billing is a QSA for buckets in Google Cloud Storage.
'billing',
# userProject is a QSA for requests in Google Cloud Storage.
- 'userProject']
+ 'userProject',
+ # encryptionConfig is a QSA for requests in Google Cloud
+ # Storage.
+ 'encryptionConfig']
_first_cap_regex = re.compile('(.)([A-Z][a-z]+)')