Skip to content

Commit 3b8ba8c

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent 9ddedaf commit 3b8ba8c

File tree

10 files changed

+181
-31
lines changed

10 files changed

+181
-31
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::DocDB - Updated the API, and documentation for Amazon DocumentDB with MongoDB compatibility.
5+
6+
* Feature - Aws::EC2 - Updated the API, and documentation for Amazon Elastic Compute Cloud.
7+
8+
* Feature - Aws::Organizations - Updated the API, and documentation for AWS Organizations.
9+
10+
* Feature - Aws::RDS - Updated the API, and documentation for Amazon Relational Database Service.
11+
412
2.11.306 (2019-06-28)
513
------------------
614

aws-sdk-core/apis/docdb/2014-10-31/api-2.json

Lines changed: 76 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@
3838
"resultWrapper":"ApplyPendingMaintenanceActionResult"
3939
},
4040
"errors":[
41-
{"shape":"ResourceNotFoundFault"}
41+
{"shape":"ResourceNotFoundFault"},
42+
{"shape":"InvalidDBClusterStateFault"},
43+
{"shape":"InvalidDBInstanceStateFault"}
4244
]
4345
},
4446
"CopyDBClusterParameterGroup":{
@@ -690,6 +692,40 @@
690692
{"shape":"KMSKeyNotAccessibleFault"},
691693
{"shape":"StorageQuotaExceededFault"}
692694
]
695+
},
696+
"StartDBCluster":{
697+
"name":"StartDBCluster",
698+
"http":{
699+
"method":"POST",
700+
"requestUri":"/"
701+
},
702+
"input":{"shape":"StartDBClusterMessage"},
703+
"output":{
704+
"shape":"StartDBClusterResult",
705+
"resultWrapper":"StartDBClusterResult"
706+
},
707+
"errors":[
708+
{"shape":"DBClusterNotFoundFault"},
709+
{"shape":"InvalidDBClusterStateFault"},
710+
{"shape":"InvalidDBInstanceStateFault"}
711+
]
712+
},
713+
"StopDBCluster":{
714+
"name":"StopDBCluster",
715+
"http":{
716+
"method":"POST",
717+
"requestUri":"/"
718+
},
719+
"input":{"shape":"StopDBClusterMessage"},
720+
"output":{
721+
"shape":"StopDBClusterResult",
722+
"resultWrapper":"StopDBClusterResult"
723+
},
724+
"errors":[
725+
{"shape":"DBClusterNotFoundFault"},
726+
{"shape":"InvalidDBClusterStateFault"},
727+
{"shape":"InvalidDBInstanceStateFault"}
728+
]
693729
}
694730
},
695731
"shapes":{
@@ -834,7 +870,9 @@
834870
"type":"structure",
835871
"required":[
836872
"DBClusterIdentifier",
837-
"Engine"
873+
"Engine",
874+
"MasterUsername",
875+
"MasterUserPassword"
838876
],
839877
"members":{
840878
"AvailabilityZones":{"shape":"AvailabilityZones"},
@@ -853,7 +891,8 @@
853891
"Tags":{"shape":"TagList"},
854892
"StorageEncrypted":{"shape":"BooleanOptional"},
855893
"KmsKeyId":{"shape":"String"},
856-
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
894+
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
895+
"DeletionProtection":{"shape":"BooleanOptional"}
857896
}
858897
},
859898
"CreateDBClusterParameterGroupMessage":{
@@ -976,7 +1015,8 @@
9761015
"DBClusterArn":{"shape":"String"},
9771016
"AssociatedRoles":{"shape":"DBClusterRoles"},
9781017
"ClusterCreateTime":{"shape":"TStamp"},
979-
"EnabledCloudwatchLogsExports":{"shape":"LogTypeList"}
1018+
"EnabledCloudwatchLogsExports":{"shape":"LogTypeList"},
1019+
"DeletionProtection":{"shape":"Boolean"}
9801020
},
9811021
"wrapper":true
9821022
},
@@ -1974,7 +2014,8 @@
19742014
"PreferredBackupWindow":{"shape":"String"},
19752015
"PreferredMaintenanceWindow":{"shape":"String"},
19762016
"CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"},
1977-
"EngineVersion":{"shape":"String"}
2017+
"EngineVersion":{"shape":"String"},
2018+
"DeletionProtection":{"shape":"BooleanOptional"}
19782019
}
19792020
},
19802021
"ModifyDBClusterParameterGroupMessage":{
@@ -2227,7 +2268,8 @@
22272268
"VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
22282269
"Tags":{"shape":"TagList"},
22292270
"KmsKeyId":{"shape":"String"},
2230-
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
2271+
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
2272+
"DeletionProtection":{"shape":"BooleanOptional"}
22312273
}
22322274
},
22332275
"RestoreDBClusterFromSnapshotResult":{
@@ -2252,7 +2294,8 @@
22522294
"VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
22532295
"Tags":{"shape":"TagList"},
22542296
"KmsKeyId":{"shape":"String"},
2255-
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
2297+
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
2298+
"DeletionProtection":{"shape":"BooleanOptional"}
22562299
}
22572300
},
22582301
"RestoreDBClusterToPointInTimeResult":{
@@ -2294,6 +2337,32 @@
22942337
"db-cluster-snapshot"
22952338
]
22962339
},
2340+
"StartDBClusterMessage":{
2341+
"type":"structure",
2342+
"required":["DBClusterIdentifier"],
2343+
"members":{
2344+
"DBClusterIdentifier":{"shape":"String"}
2345+
}
2346+
},
2347+
"StartDBClusterResult":{
2348+
"type":"structure",
2349+
"members":{
2350+
"DBCluster":{"shape":"DBCluster"}
2351+
}
2352+
},
2353+
"StopDBClusterMessage":{
2354+
"type":"structure",
2355+
"required":["DBClusterIdentifier"],
2356+
"members":{
2357+
"DBClusterIdentifier":{"shape":"String"}
2358+
}
2359+
},
2360+
"StopDBClusterResult":{
2361+
"type":"structure",
2362+
"members":{
2363+
"DBCluster":{"shape":"DBCluster"}
2364+
}
2365+
},
22972366
"StorageQuotaExceededFault":{
22982367
"type":"structure",
22992368
"members":{

0 commit comments

Comments
 (0)