aws-sdk-rds 1.115.0 → 1.120.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +712 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-rds.rb +2 -2
- data/lib/aws-sdk-rds/account_quota.rb +1 -1
- data/lib/aws-sdk-rds/certificate.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +331 -37
- data/lib/aws-sdk-rds/client_api.rb +134 -1
- data/lib/aws-sdk-rds/db_cluster.rb +25 -9
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_engine.rb +1 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +26 -14
- data/lib/aws-sdk-rds/db_log_file.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +1 -1
- data/lib/aws-sdk-rds/db_security_group.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +1 -1
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
- data/lib/aws-sdk-rds/errors.rb +45 -1
- data/lib/aws-sdk-rds/event.rb +1 -1
- data/lib/aws-sdk-rds/event_category_map.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +2 -3
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/option_group_option.rb +1 -1
- data/lib/aws-sdk-rds/parameter.rb +1 -1
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +8 -15
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +438 -35
- data/lib/aws-sdk-rds/waiters.rb +1 -1
- metadata +9 -7
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -78,6 +78,8 @@ module Aws::RDS
|
|
78
78
|
CreateDBInstanceResult = Shapes::StructureShape.new(name: 'CreateDBInstanceResult')
|
79
79
|
CreateDBParameterGroupMessage = Shapes::StructureShape.new(name: 'CreateDBParameterGroupMessage')
|
80
80
|
CreateDBParameterGroupResult = Shapes::StructureShape.new(name: 'CreateDBParameterGroupResult')
|
81
|
+
CreateDBProxyEndpointRequest = Shapes::StructureShape.new(name: 'CreateDBProxyEndpointRequest')
|
82
|
+
CreateDBProxyEndpointResponse = Shapes::StructureShape.new(name: 'CreateDBProxyEndpointResponse')
|
81
83
|
CreateDBProxyRequest = Shapes::StructureShape.new(name: 'CreateDBProxyRequest')
|
82
84
|
CreateDBProxyResponse = Shapes::StructureShape.new(name: 'CreateDBProxyResponse')
|
83
85
|
CreateDBSecurityGroupMessage = Shapes::StructureShape.new(name: 'CreateDBSecurityGroupMessage')
|
@@ -174,7 +176,16 @@ module Aws::RDS
|
|
174
176
|
DBParameterGroupsMessage = Shapes::StructureShape.new(name: 'DBParameterGroupsMessage')
|
175
177
|
DBProxy = Shapes::StructureShape.new(name: 'DBProxy')
|
176
178
|
DBProxyAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBProxyAlreadyExistsFault')
|
179
|
+
DBProxyEndpoint = Shapes::StructureShape.new(name: 'DBProxyEndpoint')
|
180
|
+
DBProxyEndpointAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBProxyEndpointAlreadyExistsFault')
|
181
|
+
DBProxyEndpointList = Shapes::ListShape.new(name: 'DBProxyEndpointList')
|
182
|
+
DBProxyEndpointName = Shapes::StringShape.new(name: 'DBProxyEndpointName')
|
183
|
+
DBProxyEndpointNotFoundFault = Shapes::StructureShape.new(name: 'DBProxyEndpointNotFoundFault')
|
184
|
+
DBProxyEndpointQuotaExceededFault = Shapes::StructureShape.new(name: 'DBProxyEndpointQuotaExceededFault')
|
185
|
+
DBProxyEndpointStatus = Shapes::StringShape.new(name: 'DBProxyEndpointStatus')
|
186
|
+
DBProxyEndpointTargetRole = Shapes::StringShape.new(name: 'DBProxyEndpointTargetRole')
|
177
187
|
DBProxyList = Shapes::ListShape.new(name: 'DBProxyList')
|
188
|
+
DBProxyName = Shapes::StringShape.new(name: 'DBProxyName')
|
178
189
|
DBProxyNotFoundFault = Shapes::StructureShape.new(name: 'DBProxyNotFoundFault')
|
179
190
|
DBProxyQuotaExceededFault = Shapes::StructureShape.new(name: 'DBProxyQuotaExceededFault')
|
180
191
|
DBProxyStatus = Shapes::StringShape.new(name: 'DBProxyStatus')
|
@@ -224,6 +235,8 @@ module Aws::RDS
|
|
224
235
|
DeleteDBInstanceMessage = Shapes::StructureShape.new(name: 'DeleteDBInstanceMessage')
|
225
236
|
DeleteDBInstanceResult = Shapes::StructureShape.new(name: 'DeleteDBInstanceResult')
|
226
237
|
DeleteDBParameterGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBParameterGroupMessage')
|
238
|
+
DeleteDBProxyEndpointRequest = Shapes::StructureShape.new(name: 'DeleteDBProxyEndpointRequest')
|
239
|
+
DeleteDBProxyEndpointResponse = Shapes::StructureShape.new(name: 'DeleteDBProxyEndpointResponse')
|
227
240
|
DeleteDBProxyRequest = Shapes::StructureShape.new(name: 'DeleteDBProxyRequest')
|
228
241
|
DeleteDBProxyResponse = Shapes::StructureShape.new(name: 'DeleteDBProxyResponse')
|
229
242
|
DeleteDBSecurityGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBSecurityGroupMessage')
|
@@ -260,6 +273,8 @@ module Aws::RDS
|
|
260
273
|
DescribeDBParametersMessage = Shapes::StructureShape.new(name: 'DescribeDBParametersMessage')
|
261
274
|
DescribeDBProxiesRequest = Shapes::StructureShape.new(name: 'DescribeDBProxiesRequest')
|
262
275
|
DescribeDBProxiesResponse = Shapes::StructureShape.new(name: 'DescribeDBProxiesResponse')
|
276
|
+
DescribeDBProxyEndpointsRequest = Shapes::StructureShape.new(name: 'DescribeDBProxyEndpointsRequest')
|
277
|
+
DescribeDBProxyEndpointsResponse = Shapes::StructureShape.new(name: 'DescribeDBProxyEndpointsResponse')
|
263
278
|
DescribeDBProxyTargetGroupsRequest = Shapes::StructureShape.new(name: 'DescribeDBProxyTargetGroupsRequest')
|
264
279
|
DescribeDBProxyTargetGroupsResponse = Shapes::StructureShape.new(name: 'DescribeDBProxyTargetGroupsResponse')
|
265
280
|
DescribeDBProxyTargetsRequest = Shapes::StructureShape.new(name: 'DescribeDBProxyTargetsRequest')
|
@@ -364,6 +379,7 @@ module Aws::RDS
|
|
364
379
|
InvalidDBInstanceAutomatedBackupStateFault = Shapes::StructureShape.new(name: 'InvalidDBInstanceAutomatedBackupStateFault')
|
365
380
|
InvalidDBInstanceStateFault = Shapes::StructureShape.new(name: 'InvalidDBInstanceStateFault')
|
366
381
|
InvalidDBParameterGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBParameterGroupStateFault')
|
382
|
+
InvalidDBProxyEndpointStateFault = Shapes::StructureShape.new(name: 'InvalidDBProxyEndpointStateFault')
|
367
383
|
InvalidDBProxyStateFault = Shapes::StructureShape.new(name: 'InvalidDBProxyStateFault')
|
368
384
|
InvalidDBSecurityGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSecurityGroupStateFault')
|
369
385
|
InvalidDBSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBSnapshotStateFault')
|
@@ -401,6 +417,8 @@ module Aws::RDS
|
|
401
417
|
ModifyDBInstanceMessage = Shapes::StructureShape.new(name: 'ModifyDBInstanceMessage')
|
402
418
|
ModifyDBInstanceResult = Shapes::StructureShape.new(name: 'ModifyDBInstanceResult')
|
403
419
|
ModifyDBParameterGroupMessage = Shapes::StructureShape.new(name: 'ModifyDBParameterGroupMessage')
|
420
|
+
ModifyDBProxyEndpointRequest = Shapes::StructureShape.new(name: 'ModifyDBProxyEndpointRequest')
|
421
|
+
ModifyDBProxyEndpointResponse = Shapes::StructureShape.new(name: 'ModifyDBProxyEndpointResponse')
|
404
422
|
ModifyDBProxyRequest = Shapes::StructureShape.new(name: 'ModifyDBProxyRequest')
|
405
423
|
ModifyDBProxyResponse = Shapes::StructureShape.new(name: 'ModifyDBProxyResponse')
|
406
424
|
ModifyDBProxyTargetGroupRequest = Shapes::StructureShape.new(name: 'ModifyDBProxyTargetGroupRequest')
|
@@ -565,6 +583,7 @@ module Aws::RDS
|
|
565
583
|
TargetHealth = Shapes::StructureShape.new(name: 'TargetHealth')
|
566
584
|
TargetHealthReason = Shapes::StringShape.new(name: 'TargetHealthReason')
|
567
585
|
TargetList = Shapes::ListShape.new(name: 'TargetList')
|
586
|
+
TargetRole = Shapes::StringShape.new(name: 'TargetRole')
|
568
587
|
TargetState = Shapes::StringShape.new(name: 'TargetState')
|
569
588
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
570
589
|
Timezone = Shapes::StructureShape.new(name: 'Timezone')
|
@@ -938,6 +957,17 @@ module Aws::RDS
|
|
938
957
|
CreateDBParameterGroupResult.add_member(:db_parameter_group, Shapes::ShapeRef.new(shape: DBParameterGroup, location_name: "DBParameterGroup"))
|
939
958
|
CreateDBParameterGroupResult.struct_class = Types::CreateDBParameterGroupResult
|
940
959
|
|
960
|
+
CreateDBProxyEndpointRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: DBProxyName, required: true, location_name: "DBProxyName"))
|
961
|
+
CreateDBProxyEndpointRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, required: true, location_name: "DBProxyEndpointName"))
|
962
|
+
CreateDBProxyEndpointRequest.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "VpcSubnetIds"))
|
963
|
+
CreateDBProxyEndpointRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
964
|
+
CreateDBProxyEndpointRequest.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
965
|
+
CreateDBProxyEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
966
|
+
CreateDBProxyEndpointRequest.struct_class = Types::CreateDBProxyEndpointRequest
|
967
|
+
|
968
|
+
CreateDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
969
|
+
CreateDBProxyEndpointResponse.struct_class = Types::CreateDBProxyEndpointResponse
|
970
|
+
|
941
971
|
CreateDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
942
972
|
CreateDBProxyRequest.add_member(:engine_family, Shapes::ShapeRef.new(shape: EngineFamily, required: true, location_name: "EngineFamily"))
|
943
973
|
CreateDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, required: true, location_name: "Auth"))
|
@@ -1442,6 +1472,7 @@ module Aws::RDS
|
|
1442
1472
|
DBProxy.add_member(:db_proxy_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyArn"))
|
1443
1473
|
DBProxy.add_member(:status, Shapes::ShapeRef.new(shape: DBProxyStatus, location_name: "Status"))
|
1444
1474
|
DBProxy.add_member(:engine_family, Shapes::ShapeRef.new(shape: String, location_name: "EngineFamily"))
|
1475
|
+
DBProxy.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
1445
1476
|
DBProxy.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
1446
1477
|
DBProxy.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSubnetIds"))
|
1447
1478
|
DBProxy.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigInfoList, location_name: "Auth"))
|
@@ -1456,6 +1487,27 @@ module Aws::RDS
|
|
1456
1487
|
|
1457
1488
|
DBProxyAlreadyExistsFault.struct_class = Types::DBProxyAlreadyExistsFault
|
1458
1489
|
|
1490
|
+
DBProxyEndpoint.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyEndpointName"))
|
1491
|
+
DBProxyEndpoint.add_member(:db_proxy_endpoint_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyEndpointArn"))
|
1492
|
+
DBProxyEndpoint.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyName"))
|
1493
|
+
DBProxyEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: DBProxyEndpointStatus, location_name: "Status"))
|
1494
|
+
DBProxyEndpoint.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
1495
|
+
DBProxyEndpoint.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
1496
|
+
DBProxyEndpoint.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSubnetIds"))
|
1497
|
+
DBProxyEndpoint.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
1498
|
+
DBProxyEndpoint.add_member(:created_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreatedDate"))
|
1499
|
+
DBProxyEndpoint.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
1500
|
+
DBProxyEndpoint.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
1501
|
+
DBProxyEndpoint.struct_class = Types::DBProxyEndpoint
|
1502
|
+
|
1503
|
+
DBProxyEndpointAlreadyExistsFault.struct_class = Types::DBProxyEndpointAlreadyExistsFault
|
1504
|
+
|
1505
|
+
DBProxyEndpointList.member = Shapes::ShapeRef.new(shape: DBProxyEndpoint)
|
1506
|
+
|
1507
|
+
DBProxyEndpointNotFoundFault.struct_class = Types::DBProxyEndpointNotFoundFault
|
1508
|
+
|
1509
|
+
DBProxyEndpointQuotaExceededFault.struct_class = Types::DBProxyEndpointQuotaExceededFault
|
1510
|
+
|
1459
1511
|
DBProxyList.member = Shapes::ShapeRef.new(shape: DBProxy)
|
1460
1512
|
|
1461
1513
|
DBProxyNotFoundFault.struct_class = Types::DBProxyNotFoundFault
|
@@ -1468,6 +1520,7 @@ module Aws::RDS
|
|
1468
1520
|
DBProxyTarget.add_member(:rds_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "RdsResourceId"))
|
1469
1521
|
DBProxyTarget.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "Port"))
|
1470
1522
|
DBProxyTarget.add_member(:type, Shapes::ShapeRef.new(shape: TargetType, location_name: "Type"))
|
1523
|
+
DBProxyTarget.add_member(:role, Shapes::ShapeRef.new(shape: TargetRole, location_name: "Role"))
|
1471
1524
|
DBProxyTarget.add_member(:target_health, Shapes::ShapeRef.new(shape: TargetHealth, location_name: "TargetHealth"))
|
1472
1525
|
DBProxyTarget.struct_class = Types::DBProxyTarget
|
1473
1526
|
|
@@ -1642,6 +1695,12 @@ module Aws::RDS
|
|
1642
1695
|
DeleteDBParameterGroupMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBParameterGroupName"))
|
1643
1696
|
DeleteDBParameterGroupMessage.struct_class = Types::DeleteDBParameterGroupMessage
|
1644
1697
|
|
1698
|
+
DeleteDBProxyEndpointRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, required: true, location_name: "DBProxyEndpointName"))
|
1699
|
+
DeleteDBProxyEndpointRequest.struct_class = Types::DeleteDBProxyEndpointRequest
|
1700
|
+
|
1701
|
+
DeleteDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
1702
|
+
DeleteDBProxyEndpointResponse.struct_class = Types::DeleteDBProxyEndpointResponse
|
1703
|
+
|
1645
1704
|
DeleteDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
1646
1705
|
DeleteDBProxyRequest.struct_class = Types::DeleteDBProxyRequest
|
1647
1706
|
|
@@ -1819,6 +1878,17 @@ module Aws::RDS
|
|
1819
1878
|
DescribeDBProxiesResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1820
1879
|
DescribeDBProxiesResponse.struct_class = Types::DescribeDBProxiesResponse
|
1821
1880
|
|
1881
|
+
DescribeDBProxyEndpointsRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: DBProxyName, location_name: "DBProxyName"))
|
1882
|
+
DescribeDBProxyEndpointsRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, location_name: "DBProxyEndpointName"))
|
1883
|
+
DescribeDBProxyEndpointsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1884
|
+
DescribeDBProxyEndpointsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1885
|
+
DescribeDBProxyEndpointsRequest.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
|
1886
|
+
DescribeDBProxyEndpointsRequest.struct_class = Types::DescribeDBProxyEndpointsRequest
|
1887
|
+
|
1888
|
+
DescribeDBProxyEndpointsResponse.add_member(:db_proxy_endpoints, Shapes::ShapeRef.new(shape: DBProxyEndpointList, location_name: "DBProxyEndpoints"))
|
1889
|
+
DescribeDBProxyEndpointsResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1890
|
+
DescribeDBProxyEndpointsResponse.struct_class = Types::DescribeDBProxyEndpointsResponse
|
1891
|
+
|
1822
1892
|
DescribeDBProxyTargetGroupsRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
1823
1893
|
DescribeDBProxyTargetGroupsRequest.add_member(:target_group_name, Shapes::ShapeRef.new(shape: String, location_name: "TargetGroupName"))
|
1824
1894
|
DescribeDBProxyTargetGroupsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
@@ -2241,6 +2311,8 @@ module Aws::RDS
|
|
2241
2311
|
|
2242
2312
|
InvalidDBParameterGroupStateFault.struct_class = Types::InvalidDBParameterGroupStateFault
|
2243
2313
|
|
2314
|
+
InvalidDBProxyEndpointStateFault.struct_class = Types::InvalidDBProxyEndpointStateFault
|
2315
|
+
|
2244
2316
|
InvalidDBProxyStateFault.struct_class = Types::InvalidDBProxyStateFault
|
2245
2317
|
|
2246
2318
|
InvalidDBSecurityGroupStateFault.struct_class = Types::InvalidDBSecurityGroupStateFault
|
@@ -2404,6 +2476,14 @@ module Aws::RDS
|
|
2404
2476
|
ModifyDBParameterGroupMessage.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, required: true, location_name: "Parameters"))
|
2405
2477
|
ModifyDBParameterGroupMessage.struct_class = Types::ModifyDBParameterGroupMessage
|
2406
2478
|
|
2479
|
+
ModifyDBProxyEndpointRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, required: true, location_name: "DBProxyEndpointName"))
|
2480
|
+
ModifyDBProxyEndpointRequest.add_member(:new_db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, location_name: "NewDBProxyEndpointName"))
|
2481
|
+
ModifyDBProxyEndpointRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
2482
|
+
ModifyDBProxyEndpointRequest.struct_class = Types::ModifyDBProxyEndpointRequest
|
2483
|
+
|
2484
|
+
ModifyDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
2485
|
+
ModifyDBProxyEndpointResponse.struct_class = Types::ModifyDBProxyEndpointResponse
|
2486
|
+
|
2407
2487
|
ModifyDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
2408
2488
|
ModifyDBProxyRequest.add_member(:new_db_proxy_name, Shapes::ShapeRef.new(shape: String, location_name: "NewDBProxyName"))
|
2409
2489
|
ModifyDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, location_name: "Auth"))
|
@@ -2931,6 +3011,8 @@ module Aws::RDS
|
|
2931
3011
|
RestoreDBClusterToPointInTimeMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
2932
3012
|
RestoreDBClusterToPointInTimeMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
2933
3013
|
RestoreDBClusterToPointInTimeMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
3014
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:scaling_configuration, Shapes::ShapeRef.new(shape: ScalingConfiguration, location_name: "ScalingConfiguration"))
|
3015
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:engine_mode, Shapes::ShapeRef.new(shape: String, location_name: "EngineMode"))
|
2934
3016
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
2935
3017
|
|
2936
3018
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -3610,6 +3692,19 @@ module Aws::RDS
|
|
3610
3692
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyQuotaExceededFault)
|
3611
3693
|
end)
|
3612
3694
|
|
3695
|
+
api.add_operation(:create_db_proxy_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
3696
|
+
o.name = "CreateDBProxyEndpoint"
|
3697
|
+
o.http_method = "POST"
|
3698
|
+
o.http_request_uri = "/"
|
3699
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDBProxyEndpointRequest)
|
3700
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDBProxyEndpointResponse)
|
3701
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
|
3702
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
3703
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointAlreadyExistsFault)
|
3704
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointQuotaExceededFault)
|
3705
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
3706
|
+
end)
|
3707
|
+
|
3613
3708
|
api.add_operation(:create_db_security_group, Seahorse::Model::Operation.new.tap do |o|
|
3614
3709
|
o.name = "CreateDBSecurityGroup"
|
3615
3710
|
o.http_method = "POST"
|
@@ -3781,6 +3876,16 @@ module Aws::RDS
|
|
3781
3876
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
3782
3877
|
end)
|
3783
3878
|
|
3879
|
+
api.add_operation(:delete_db_proxy_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
3880
|
+
o.name = "DeleteDBProxyEndpoint"
|
3881
|
+
o.http_method = "POST"
|
3882
|
+
o.http_request_uri = "/"
|
3883
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDBProxyEndpointRequest)
|
3884
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteDBProxyEndpointResponse)
|
3885
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointNotFoundFault)
|
3886
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyEndpointStateFault)
|
3887
|
+
end)
|
3888
|
+
|
3784
3889
|
api.add_operation(:delete_db_security_group, Seahorse::Model::Operation.new.tap do |o|
|
3785
3890
|
o.name = "DeleteDBSecurityGroup"
|
3786
3891
|
o.http_method = "POST"
|
@@ -4105,6 +4210,22 @@ module Aws::RDS
|
|
4105
4210
|
)
|
4106
4211
|
end)
|
4107
4212
|
|
4213
|
+
api.add_operation(:describe_db_proxy_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
4214
|
+
o.name = "DescribeDBProxyEndpoints"
|
4215
|
+
o.http_method = "POST"
|
4216
|
+
o.http_request_uri = "/"
|
4217
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeDBProxyEndpointsRequest)
|
4218
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeDBProxyEndpointsResponse)
|
4219
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
4220
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointNotFoundFault)
|
4221
|
+
o[:pager] = Aws::Pager.new(
|
4222
|
+
limit_key: "max_records",
|
4223
|
+
tokens: {
|
4224
|
+
"marker" => "marker"
|
4225
|
+
}
|
4226
|
+
)
|
4227
|
+
end)
|
4228
|
+
|
4108
4229
|
api.add_operation(:describe_db_proxy_target_groups, Seahorse::Model::Operation.new.tap do |o|
|
4109
4230
|
o.name = "DescribeDBProxyTargetGroups"
|
4110
4231
|
o.http_method = "POST"
|
@@ -4595,6 +4716,18 @@ module Aws::RDS
|
|
4595
4716
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
4596
4717
|
end)
|
4597
4718
|
|
4719
|
+
api.add_operation(:modify_db_proxy_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
4720
|
+
o.name = "ModifyDBProxyEndpoint"
|
4721
|
+
o.http_method = "POST"
|
4722
|
+
o.http_request_uri = "/"
|
4723
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyDBProxyEndpointRequest)
|
4724
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyDBProxyEndpointResponse)
|
4725
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointNotFoundFault)
|
4726
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointAlreadyExistsFault)
|
4727
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyEndpointStateFault)
|
4728
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
4729
|
+
end)
|
4730
|
+
|
4598
4731
|
api.add_operation(:modify_db_proxy_target_group, Seahorse::Model::Operation.new.tap do |o|
|
4599
4732
|
o.name = "ModifyDBProxyTargetGroup"
|
4600
4733
|
o.http_method = "POST"
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -777,9 +777,8 @@ module Aws::RDS
|
|
777
777
|
# parameter.
|
778
778
|
#
|
779
779
|
# The default is a 30-minute window selected at random from an 8-hour
|
780
|
-
# block of time for each AWS Region. To
|
781
|
-
# see [
|
782
|
-
# *Amazon Aurora User Guide.*
|
780
|
+
# block of time for each AWS Region. To view the time blocks available,
|
781
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
783
782
|
#
|
784
783
|
# Constraints:
|
785
784
|
#
|
@@ -793,7 +792,7 @@ module Aws::RDS
|
|
793
792
|
#
|
794
793
|
#
|
795
794
|
#
|
796
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
795
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
797
796
|
# @option options [String] :preferred_maintenance_window
|
798
797
|
# The weekly time range during which system maintenance can occur, in
|
799
798
|
# Universal Coordinated Time (UTC).
|
@@ -1262,9 +1261,8 @@ module Aws::RDS
|
|
1262
1261
|
# parameter.
|
1263
1262
|
#
|
1264
1263
|
# The default is a 30-minute window selected at random from an 8-hour
|
1265
|
-
# block of time for each AWS Region. To
|
1266
|
-
# see [
|
1267
|
-
# *Amazon Aurora User Guide.*
|
1264
|
+
# block of time for each AWS Region. To view the time blocks available,
|
1265
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
1268
1266
|
#
|
1269
1267
|
# Constraints:
|
1270
1268
|
#
|
@@ -1278,7 +1276,7 @@ module Aws::RDS
|
|
1278
1276
|
#
|
1279
1277
|
#
|
1280
1278
|
#
|
1281
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
1279
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
1282
1280
|
# @option options [String] :preferred_maintenance_window
|
1283
1281
|
# The weekly time range during which system maintenance can occur, in
|
1284
1282
|
# Universal Coordinated Time (UTC).
|
@@ -1467,6 +1465,14 @@ module Aws::RDS
|
|
1467
1465
|
# copy_tags_to_snapshot: false,
|
1468
1466
|
# domain: "String",
|
1469
1467
|
# domain_iam_role_name: "String",
|
1468
|
+
# scaling_configuration: {
|
1469
|
+
# min_capacity: 1,
|
1470
|
+
# max_capacity: 1,
|
1471
|
+
# auto_pause: false,
|
1472
|
+
# seconds_until_auto_pause: 1,
|
1473
|
+
# timeout_action: "String",
|
1474
|
+
# },
|
1475
|
+
# engine_mode: "String",
|
1470
1476
|
# })
|
1471
1477
|
# @param [Hash] options ({})
|
1472
1478
|
# @option options [required, String] :db_cluster_identifier
|
@@ -1644,6 +1650,16 @@ module Aws::RDS
|
|
1644
1650
|
# @option options [String] :domain_iam_role_name
|
1645
1651
|
# Specify the name of the IAM role to be used when making API calls to
|
1646
1652
|
# the Directory Service.
|
1653
|
+
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
1654
|
+
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
1655
|
+
# of the DB cluster.
|
1656
|
+
# @option options [String] :engine_mode
|
1657
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
1658
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
1659
|
+
# You can create an Aurora Serverless clone from a provisioned cluster,
|
1660
|
+
# or a provisioned clone from an Aurora Serverless cluster. To create a
|
1661
|
+
# clone that is an Aurora Serverless cluster, the original cluster must
|
1662
|
+
# be an Aurora Serverless cluster or an encrypted provisioned cluster.
|
1647
1663
|
# @return [DBCluster]
|
1648
1664
|
def restore(options = {})
|
1649
1665
|
options = options.merge(source_db_cluster_identifier: @id)
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -1188,19 +1188,15 @@ module Aws::RDS
|
|
1188
1188
|
# @option options [String] :preferred_backup_window
|
1189
1189
|
# The daily time range during which automated backups are created if
|
1190
1190
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
1191
|
-
# parameter.
|
1192
|
-
#
|
1191
|
+
# parameter. The default is a 30-minute window selected at random from
|
1192
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
1193
|
+
# [Backup window][1] in the *Amazon RDS User Guide*.
|
1193
1194
|
#
|
1194
1195
|
# **Amazon Aurora**
|
1195
1196
|
#
|
1196
1197
|
# Not applicable. The daily time range for creating automated backups is
|
1197
1198
|
# managed by the DB cluster.
|
1198
1199
|
#
|
1199
|
-
# The default is a 30-minute window selected at random from an 8-hour
|
1200
|
-
# block of time for each AWS Region. To see the time blocks available,
|
1201
|
-
# see [ Adjusting the Preferred DB Instance Maintenance Window][2] in
|
1202
|
-
# the *Amazon RDS User Guide*.
|
1203
|
-
#
|
1204
1200
|
# Constraints:
|
1205
1201
|
#
|
1206
1202
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
@@ -1214,7 +1210,6 @@ module Aws::RDS
|
|
1214
1210
|
#
|
1215
1211
|
#
|
1216
1212
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
1217
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
1218
1213
|
# @option options [Integer] :port
|
1219
1214
|
# The port number on which the database accepts connections.
|
1220
1215
|
#
|
@@ -2344,10 +2339,14 @@ module Aws::RDS
|
|
2344
2339
|
# to a positive number enables backups. Setting this parameter to 0
|
2345
2340
|
# disables automated backups.
|
2346
2341
|
#
|
2347
|
-
#
|
2348
|
-
#
|
2349
|
-
#
|
2350
|
-
#
|
2342
|
+
# <note markdown="1"> Enabling and disabling backups can result in a brief I/O suspension
|
2343
|
+
# that lasts from a few seconds to a few minutes, depending on the size
|
2344
|
+
# and class of your DB instance.
|
2345
|
+
#
|
2346
|
+
# </note>
|
2347
|
+
#
|
2348
|
+
# These changes are applied during the next maintenance window unless
|
2349
|
+
# the `ApplyImmediately` parameter is enabled for this request. If you
|
2351
2350
|
# change the parameter from one non-zero value to another non-zero
|
2352
2351
|
# value, the change is asynchronously applied as soon as possible.
|
2353
2352
|
#
|
@@ -2374,7 +2373,9 @@ module Aws::RDS
|
|
2374
2373
|
# automated backups are enabled, as determined by the
|
2375
2374
|
# `BackupRetentionPeriod` parameter. Changing this parameter doesn't
|
2376
2375
|
# result in an outage and the change is asynchronously applied as soon
|
2377
|
-
# as possible.
|
2376
|
+
# as possible. The default is a 30-minute window selected at random from
|
2377
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
2378
|
+
# [Backup window][1] in the *Amazon RDS User Guide.*
|
2378
2379
|
#
|
2379
2380
|
# **Amazon Aurora**
|
2380
2381
|
#
|
@@ -2391,6 +2392,10 @@ module Aws::RDS
|
|
2391
2392
|
# * Must not conflict with the preferred maintenance window
|
2392
2393
|
#
|
2393
2394
|
# * Must be at least 30 minutes
|
2395
|
+
#
|
2396
|
+
#
|
2397
|
+
#
|
2398
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
2394
2399
|
# @option options [String] :preferred_maintenance_window
|
2395
2400
|
# The weekly time range (in UTC) during which system maintenance can
|
2396
2401
|
# occur, which might result in an outage. Changing this parameter
|
@@ -2402,6 +2407,9 @@ module Aws::RDS
|
|
2402
2407
|
# current time, there must be at least 30 minutes between the current
|
2403
2408
|
# time and end of the window to ensure pending changes are applied.
|
2404
2409
|
#
|
2410
|
+
# For more information, see [Amazon RDS Maintenance Window][1] in the
|
2411
|
+
# *Amazon RDS User Guide.*
|
2412
|
+
#
|
2405
2413
|
# Default: Uses existing setting
|
2406
2414
|
#
|
2407
2415
|
# Format: ddd:hh24:mi-ddd:hh24:mi
|
@@ -2409,6 +2417,10 @@ module Aws::RDS
|
|
2409
2417
|
# Valid Days: Mon \| Tue \| Wed \| Thu \| Fri \| Sat \| Sun
|
2410
2418
|
#
|
2411
2419
|
# Constraints: Must be at least 30 minutes
|
2420
|
+
#
|
2421
|
+
#
|
2422
|
+
#
|
2423
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
2412
2424
|
# @option options [Boolean] :multi_az
|
2413
2425
|
# A value that indicates whether the DB instance is a Multi-AZ
|
2414
2426
|
# deployment. Changing this parameter doesn't result in an outage and
|