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

Unified Diff: boto/rds/__init__.py

Issue 8669001: Pull in upstream boto from github at bcb719937de9ac2851e632d62b777352029a6d55 (Closed) Base URL: svn://svn.chromium.org/boto
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « boto/mturk/connection.py ('k') | boto/s3/bucket.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: boto/rds/__init__.py
diff --git a/boto/rds/__init__.py b/boto/rds/__init__.py
index f271cf3438e0bd39fe31ed108fe69557a3514dbd..bf69b1cc6fc0e7743abd6a04aa406ad6b6d400f5 100644
--- a/boto/rds/__init__.py
+++ b/boto/rds/__init__.py
@@ -43,6 +43,8 @@ def regions():
endpoint='rds.eu-west-1.amazonaws.com'),
RDSRegionInfo(name='us-west-1',
endpoint='rds.us-west-1.amazonaws.com'),
+ RDSRegionInfo(name='us-west-2',
+ endpoint='rds.us-west-2.amazonaws.com'),
RDSRegionInfo(name='ap-northeast-1',
endpoint='rds.ap-northeast-1.amazonaws.com'),
RDSRegionInfo(name='ap-southeast-1',
@@ -556,7 +558,7 @@ class RDSConnection(AWSQueryConnection):
:param name: The name of the new dbparameter group
:type engine: str
- :param engine: Name of database engine. Must be MySQL5.1 for now.
+ :param engine: Name of database engine.
:type description: string
:param description: The description of the new security group
@@ -565,7 +567,7 @@ class RDSConnection(AWSQueryConnection):
:return: The newly created DBSecurityGroup
"""
params = {'DBParameterGroupName': name,
- 'Engine': engine,
+ 'DBParameterGroupFamily': engine,
'Description' : description}
return self.get_object('CreateDBParameterGroup', params, ParameterGroup)
« no previous file with comments | « boto/mturk/connection.py ('k') | boto/s3/bucket.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698