aws-sdk-rds 1.251.0 → 1.253.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +86 -17
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_cluster.rb +34 -7
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +4 -2
- data/lib/aws-sdk-rds/resource.rb +16 -2
- data/lib/aws-sdk-rds/types.rb +75 -18
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +12 -1
- data/sig/db_cluster.rbs +4 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9106f7917c2436d33ba1b2805db38b4600c9a966b1ae7de07d15e0fefc7482fe
|
4
|
+
data.tar.gz: 143c7a969c8fd44d4ca915834230a79863a4cd8f3b50dd0833ad584da4bc3858
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64c2611eab5dea20f5dc4252b2efa1615edb9fc1f747c9f1ede46c991bdd9302bc75e055b72ee00e7f7fddf820ad661d4180b9ba7e56b1729f63d2465d9c6c91
|
7
|
+
data.tar.gz: 883aeb2e401abb642e0277b1ef78ebd9408017bd74aed074e42bd1c682cc7b7f31eb0f35ecb1cb005826fee4a6f19c74965d91f2339eb370471244fd0cd76cb0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.253.0 (2024-10-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates Amazon RDS documentation for TAZ IAM support
|
8
|
+
|
9
|
+
1.252.0 (2024-10-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release provides additional support for enabling Aurora Limitless Database DB clusters.
|
13
|
+
|
4
14
|
1.251.0 (2024-09-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.253.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2973,13 +2973,15 @@ module Aws::RDS
|
|
2973
2973
|
# mapping isn't enabled.
|
2974
2974
|
#
|
2975
2975
|
# For more information, see [ IAM Database Authentication][1] in the
|
2976
|
-
# *Amazon Aurora User Guide
|
2976
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
2977
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
2977
2978
|
#
|
2978
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2979
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2979
2980
|
#
|
2980
2981
|
#
|
2981
2982
|
#
|
2982
2983
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
2984
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2983
2985
|
#
|
2984
2986
|
# @option params [Integer] :backtrack_window
|
2985
2987
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -3379,6 +3381,18 @@ module Aws::RDS
|
|
3379
3381
|
#
|
3380
3382
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
3381
3383
|
#
|
3384
|
+
# @option params [String] :cluster_scalability_type
|
3385
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
3386
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
3387
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
3388
|
+
# instance creation.
|
3389
|
+
#
|
3390
|
+
# Valid for: Aurora DB clusters only
|
3391
|
+
#
|
3392
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
3393
|
+
#
|
3394
|
+
# </note>
|
3395
|
+
#
|
3382
3396
|
# @option params [String] :db_system_id
|
3383
3397
|
# Reserved for future use.
|
3384
3398
|
#
|
@@ -3692,6 +3706,7 @@ module Aws::RDS
|
|
3692
3706
|
# max_capacity: 1.0,
|
3693
3707
|
# },
|
3694
3708
|
# network_type: "String",
|
3709
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless
|
3695
3710
|
# db_system_id: "String",
|
3696
3711
|
# manage_master_user_password: false,
|
3697
3712
|
# master_user_secret_kms_key_id: "String",
|
@@ -3837,6 +3852,7 @@ module Aws::RDS
|
|
3837
3852
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
3838
3853
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
3839
3854
|
# resp.db_cluster.storage_throughput #=> Integer
|
3855
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
3840
3856
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
3841
3857
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
3842
3858
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -7438,6 +7454,18 @@ module Aws::RDS
|
|
7438
7454
|
# * If the subnets are part of a VPC that has an internet gateway
|
7439
7455
|
# attached to it, the DB shard group is public.
|
7440
7456
|
#
|
7457
|
+
# @option params [Array<Types::Tag>] :tags
|
7458
|
+
# A list of tags.
|
7459
|
+
#
|
7460
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7461
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7462
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7463
|
+
#
|
7464
|
+
#
|
7465
|
+
#
|
7466
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7467
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7468
|
+
#
|
7441
7469
|
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7442
7470
|
#
|
7443
7471
|
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
@@ -7450,6 +7478,7 @@ module Aws::RDS
|
|
7450
7478
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
7451
7479
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
7452
7480
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
7481
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
7453
7482
|
#
|
7454
7483
|
# @example Request syntax with placeholder values
|
7455
7484
|
#
|
@@ -7460,6 +7489,12 @@ module Aws::RDS
|
|
7460
7489
|
# max_acu: 1.0, # required
|
7461
7490
|
# min_acu: 1.0,
|
7462
7491
|
# publicly_accessible: false,
|
7492
|
+
# tags: [
|
7493
|
+
# {
|
7494
|
+
# key: "String",
|
7495
|
+
# value: "String",
|
7496
|
+
# },
|
7497
|
+
# ],
|
7463
7498
|
# })
|
7464
7499
|
#
|
7465
7500
|
# @example Response structure
|
@@ -7474,6 +7509,9 @@ module Aws::RDS
|
|
7474
7509
|
# resp.publicly_accessible #=> Boolean
|
7475
7510
|
# resp.endpoint #=> String
|
7476
7511
|
# resp.db_shard_group_arn #=> String
|
7512
|
+
# resp.tag_list #=> Array
|
7513
|
+
# resp.tag_list[0].key #=> String
|
7514
|
+
# resp.tag_list[0].value #=> String
|
7477
7515
|
#
|
7478
7516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroup AWS API Documentation
|
7479
7517
|
#
|
@@ -9179,6 +9217,7 @@ module Aws::RDS
|
|
9179
9217
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
9180
9218
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
9181
9219
|
# resp.db_cluster.storage_throughput #=> Integer
|
9220
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
9182
9221
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
9183
9222
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
9184
9223
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -10103,7 +10142,7 @@ module Aws::RDS
|
|
10103
10142
|
# Deletes an Aurora Limitless Database DB shard group.
|
10104
10143
|
#
|
10105
10144
|
# @option params [required, String] :db_shard_group_identifier
|
10106
|
-
#
|
10145
|
+
# The name of the DB shard group to delete.
|
10107
10146
|
#
|
10108
10147
|
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10109
10148
|
#
|
@@ -10117,6 +10156,7 @@ module Aws::RDS
|
|
10117
10156
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
10118
10157
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
10119
10158
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
10159
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
10120
10160
|
#
|
10121
10161
|
# @example Request syntax with placeholder values
|
10122
10162
|
#
|
@@ -10136,6 +10176,9 @@ module Aws::RDS
|
|
10136
10176
|
# resp.publicly_accessible #=> Boolean
|
10137
10177
|
# resp.endpoint #=> String
|
10138
10178
|
# resp.db_shard_group_arn #=> String
|
10179
|
+
# resp.tag_list #=> Array
|
10180
|
+
# resp.tag_list[0].key #=> String
|
10181
|
+
# resp.tag_list[0].value #=> String
|
10139
10182
|
#
|
10140
10183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroup AWS API Documentation
|
10141
10184
|
#
|
@@ -12618,6 +12661,7 @@ module Aws::RDS
|
|
12618
12661
|
# resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
12619
12662
|
# resp.db_clusters[0].limitless_database.min_required_acu #=> Float
|
12620
12663
|
# resp.db_clusters[0].storage_throughput #=> Integer
|
12664
|
+
# resp.db_clusters[0].cluster_scalability_type #=> String, one of "standard", "limitless"
|
12621
12665
|
# resp.db_clusters[0].certificate_details.ca_identifier #=> String
|
12622
12666
|
# resp.db_clusters[0].certificate_details.valid_till #=> Time
|
12623
12667
|
# resp.db_clusters[0].engine_lifecycle_support #=> String
|
@@ -14364,10 +14408,9 @@ module Aws::RDS
|
|
14364
14408
|
# Describes existing Aurora Limitless Database DB shard groups.
|
14365
14409
|
#
|
14366
14410
|
# @option params [String] :db_shard_group_identifier
|
14367
|
-
# The user-supplied DB shard group identifier
|
14368
|
-
#
|
14369
|
-
#
|
14370
|
-
# parameter isn't case-sensitive.
|
14411
|
+
# The user-supplied DB shard group identifier. If this parameter is
|
14412
|
+
# specified, information for only the specific DB shard group is
|
14413
|
+
# returned. This parameter isn't case-sensitive.
|
14371
14414
|
#
|
14372
14415
|
# Constraints:
|
14373
14416
|
#
|
@@ -14426,6 +14469,9 @@ module Aws::RDS
|
|
14426
14469
|
# resp.db_shard_groups[0].publicly_accessible #=> Boolean
|
14427
14470
|
# resp.db_shard_groups[0].endpoint #=> String
|
14428
14471
|
# resp.db_shard_groups[0].db_shard_group_arn #=> String
|
14472
|
+
# resp.db_shard_groups[0].tag_list #=> Array
|
14473
|
+
# resp.db_shard_groups[0].tag_list[0].key #=> String
|
14474
|
+
# resp.db_shard_groups[0].tag_list[0].value #=> String
|
14429
14475
|
# resp.marker #=> String
|
14430
14476
|
#
|
14431
14477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroups AWS API Documentation
|
@@ -17931,6 +17977,7 @@ module Aws::RDS
|
|
17931
17977
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
17932
17978
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
17933
17979
|
# resp.db_cluster.storage_throughput #=> Integer
|
17980
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
17934
17981
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
17935
17982
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
17936
17983
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -18802,13 +18849,15 @@ module Aws::RDS
|
|
18802
18849
|
# mapping isn't enabled.
|
18803
18850
|
#
|
18804
18851
|
# For more information, see [ IAM Database Authentication][1] in the
|
18805
|
-
# *Amazon Aurora User Guide
|
18852
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
18853
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
18806
18854
|
#
|
18807
|
-
# Valid for Cluster Type: Aurora DB clusters
|
18855
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18808
18856
|
#
|
18809
18857
|
#
|
18810
18858
|
#
|
18811
18859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
18860
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
18812
18861
|
#
|
18813
18862
|
# @option params [Integer] :backtrack_window
|
18814
18863
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -19122,7 +19171,7 @@ module Aws::RDS
|
|
19122
19171
|
# For more information, see [ Using Amazon Performance Insights][1] in
|
19123
19172
|
# the *Amazon RDS User Guide*.
|
19124
19173
|
#
|
19125
|
-
# Valid for Cluster Type: Multi-AZ DB clusters
|
19174
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19126
19175
|
#
|
19127
19176
|
#
|
19128
19177
|
#
|
@@ -19620,6 +19669,7 @@ module Aws::RDS
|
|
19620
19669
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
19621
19670
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
19622
19671
|
# resp.db_cluster.storage_throughput #=> Integer
|
19672
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
19623
19673
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
19624
19674
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
19625
19675
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -21864,6 +21914,7 @@ module Aws::RDS
|
|
21864
21914
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
21865
21915
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
21866
21916
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
21917
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
21867
21918
|
#
|
21868
21919
|
# @example Request syntax with placeholder values
|
21869
21920
|
#
|
@@ -21886,6 +21937,9 @@ module Aws::RDS
|
|
21886
21937
|
# resp.publicly_accessible #=> Boolean
|
21887
21938
|
# resp.endpoint #=> String
|
21888
21939
|
# resp.db_shard_group_arn #=> String
|
21940
|
+
# resp.tag_list #=> Array
|
21941
|
+
# resp.tag_list[0].key #=> String
|
21942
|
+
# resp.tag_list[0].value #=> String
|
21889
21943
|
#
|
21890
21944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBShardGroup AWS API Documentation
|
21891
21945
|
#
|
@@ -23340,6 +23394,7 @@ module Aws::RDS
|
|
23340
23394
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
23341
23395
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
23342
23396
|
# resp.db_cluster.storage_throughput #=> Integer
|
23397
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
23343
23398
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23344
23399
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23345
23400
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -23640,6 +23695,7 @@ module Aws::RDS
|
|
23640
23695
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
23641
23696
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
23642
23697
|
# resp.db_cluster.storage_throughput #=> Integer
|
23698
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
23643
23699
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23644
23700
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23645
23701
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -23921,6 +23977,7 @@ module Aws::RDS
|
|
23921
23977
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
23922
23978
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
23923
23979
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
23980
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
23924
23981
|
#
|
23925
23982
|
# @example Request syntax with placeholder values
|
23926
23983
|
#
|
@@ -23940,6 +23997,9 @@ module Aws::RDS
|
|
23940
23997
|
# resp.publicly_accessible #=> Boolean
|
23941
23998
|
# resp.endpoint #=> String
|
23942
23999
|
# resp.db_shard_group_arn #=> String
|
24000
|
+
# resp.tag_list #=> Array
|
24001
|
+
# resp.tag_list[0].key #=> String
|
24002
|
+
# resp.tag_list[0].value #=> String
|
23943
24003
|
#
|
23944
24004
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBShardGroup AWS API Documentation
|
23945
24005
|
#
|
@@ -25222,6 +25282,7 @@ module Aws::RDS
|
|
25222
25282
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
25223
25283
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
25224
25284
|
# resp.db_cluster.storage_throughput #=> Integer
|
25285
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
25225
25286
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
25226
25287
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25227
25288
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -25432,13 +25493,15 @@ module Aws::RDS
|
|
25432
25493
|
# mapping isn't enabled.
|
25433
25494
|
#
|
25434
25495
|
# For more information, see [ IAM Database Authentication][1] in the
|
25435
|
-
# *Amazon Aurora User Guide
|
25496
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
25497
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
25436
25498
|
#
|
25437
|
-
# Valid for: Aurora DB clusters
|
25499
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
25438
25500
|
#
|
25439
25501
|
#
|
25440
25502
|
#
|
25441
25503
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
25504
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
25442
25505
|
#
|
25443
25506
|
# @option params [Integer] :backtrack_window
|
25444
25507
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -25980,6 +26043,7 @@ module Aws::RDS
|
|
25980
26043
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
25981
26044
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
25982
26045
|
# resp.db_cluster.storage_throughput #=> Integer
|
26046
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
25983
26047
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
25984
26048
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25985
26049
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -26170,13 +26234,15 @@ module Aws::RDS
|
|
26170
26234
|
# mapping isn't enabled.
|
26171
26235
|
#
|
26172
26236
|
# For more information, see [ IAM Database Authentication][1] in the
|
26173
|
-
# *Amazon Aurora User Guide
|
26237
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
26238
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
26174
26239
|
#
|
26175
|
-
# Valid for: Aurora DB clusters
|
26240
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
26176
26241
|
#
|
26177
26242
|
#
|
26178
26243
|
#
|
26179
26244
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
26245
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
26180
26246
|
#
|
26181
26247
|
# @option params [Integer] :backtrack_window
|
26182
26248
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -26717,6 +26783,7 @@ module Aws::RDS
|
|
26717
26783
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
26718
26784
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
26719
26785
|
# resp.db_cluster.storage_throughput #=> Integer
|
26786
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
26720
26787
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
26721
26788
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
26722
26789
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -29764,6 +29831,7 @@ module Aws::RDS
|
|
29764
29831
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
29765
29832
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
29766
29833
|
# resp.db_cluster.storage_throughput #=> Integer
|
29834
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
29767
29835
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29768
29836
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
29769
29837
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -30605,6 +30673,7 @@ module Aws::RDS
|
|
30605
30673
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
30606
30674
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
30607
30675
|
# resp.db_cluster.storage_throughput #=> Integer
|
30676
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
30608
30677
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
30609
30678
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
30610
30679
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -30970,11 +31039,11 @@ module Aws::RDS
|
|
30970
31039
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
30971
31040
|
#
|
30972
31041
|
# @option params [required, String] :blue_green_deployment_identifier
|
30973
|
-
# The
|
31042
|
+
# The resource ID of the blue/green deployment.
|
30974
31043
|
#
|
30975
31044
|
# Constraints:
|
30976
31045
|
#
|
30977
|
-
# * Must match an existing blue/green deployment
|
31046
|
+
# * Must match an existing blue/green deployment resource ID.
|
30978
31047
|
#
|
30979
31048
|
# ^
|
30980
31049
|
#
|
@@ -31466,7 +31535,7 @@ module Aws::RDS
|
|
31466
31535
|
tracer: tracer
|
31467
31536
|
)
|
31468
31537
|
context[:gem_name] = 'aws-sdk-rds'
|
31469
|
-
context[:gem_version] = '1.
|
31538
|
+
context[:gem_version] = '1.253.0'
|
31470
31539
|
Seahorse::Client::Request.new(handlers, context)
|
31471
31540
|
end
|
31472
31541
|
|
@@ -73,6 +73,7 @@ module Aws::RDS
|
|
73
73
|
ClientPasswordAuthType = Shapes::StringShape.new(name: 'ClientPasswordAuthType')
|
74
74
|
CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
|
75
75
|
ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
|
76
|
+
ClusterScalabilityType = Shapes::StringShape.new(name: 'ClusterScalabilityType')
|
76
77
|
ConnectionPoolConfiguration = Shapes::StructureShape.new(name: 'ConnectionPoolConfiguration')
|
77
78
|
ConnectionPoolConfigurationInfo = Shapes::StructureShape.new(name: 'ConnectionPoolConfigurationInfo')
|
78
79
|
ContextAttribute = Shapes::StructureShape.new(name: 'ContextAttribute')
|
@@ -1072,6 +1073,7 @@ module Aws::RDS
|
|
1072
1073
|
CreateDBClusterMessage.add_member(:enable_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLimitlessDatabase"))
|
1073
1074
|
CreateDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
1074
1075
|
CreateDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1076
|
+
CreateDBClusterMessage.add_member(:cluster_scalability_type, Shapes::ShapeRef.new(shape: ClusterScalabilityType, location_name: "ClusterScalabilityType"))
|
1075
1077
|
CreateDBClusterMessage.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1076
1078
|
CreateDBClusterMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
1077
1079
|
CreateDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
@@ -1269,6 +1271,7 @@ module Aws::RDS
|
|
1269
1271
|
CreateDBShardGroupMessage.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, required: true, location_name: "MaxACU"))
|
1270
1272
|
CreateDBShardGroupMessage.add_member(:min_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinACU"))
|
1271
1273
|
CreateDBShardGroupMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
1274
|
+
CreateDBShardGroupMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1272
1275
|
CreateDBShardGroupMessage.struct_class = Types::CreateDBShardGroupMessage
|
1273
1276
|
|
1274
1277
|
CreateDBSnapshotMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSnapshotIdentifier"))
|
@@ -1436,6 +1439,7 @@ module Aws::RDS
|
|
1436
1439
|
DBCluster.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
|
1437
1440
|
DBCluster.add_member(:limitless_database, Shapes::ShapeRef.new(shape: LimitlessDatabase, location_name: "LimitlessDatabase"))
|
1438
1441
|
DBCluster.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1442
|
+
DBCluster.add_member(:cluster_scalability_type, Shapes::ShapeRef.new(shape: ClusterScalabilityType, location_name: "ClusterScalabilityType"))
|
1439
1443
|
DBCluster.add_member(:certificate_details, Shapes::ShapeRef.new(shape: CertificateDetails, location_name: "CertificateDetails"))
|
1440
1444
|
DBCluster.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
1441
1445
|
DBCluster.struct_class = Types::DBCluster
|
@@ -2026,6 +2030,7 @@ module Aws::RDS
|
|
2026
2030
|
DBShardGroup.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
2027
2031
|
DBShardGroup.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
2028
2032
|
DBShardGroup.add_member(:db_shard_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBShardGroupArn"))
|
2033
|
+
DBShardGroup.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
2029
2034
|
DBShardGroup.struct_class = Types::DBShardGroup
|
2030
2035
|
|
2031
2036
|
DBShardGroupAlreadyExistsFault.struct_class = Types::DBShardGroupAlreadyExistsFault
|
@@ -4709,6 +4714,7 @@ module Aws::RDS
|
|
4709
4714
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4710
4715
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedDBEngineVersionFault)
|
4711
4716
|
o.errors << Shapes::ShapeRef.new(shape: InvalidVPCNetworkStateFault)
|
4717
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
4712
4718
|
end)
|
4713
4719
|
|
4714
4720
|
api.add_operation(:create_db_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
@@ -701,6 +701,15 @@ module Aws::RDS
|
|
701
701
|
data[:storage_throughput]
|
702
702
|
end
|
703
703
|
|
704
|
+
# The scalability mode of the Aurora DB cluster. When set to
|
705
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
706
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
707
|
+
# instance creation.
|
708
|
+
# @return [String]
|
709
|
+
def cluster_scalability_type
|
710
|
+
data[:cluster_scalability_type]
|
711
|
+
end
|
712
|
+
|
704
713
|
# The details of the DB instance’s server certificate.
|
705
714
|
#
|
706
715
|
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
@@ -932,6 +941,7 @@ module Aws::RDS
|
|
932
941
|
# max_capacity: 1.0,
|
933
942
|
# },
|
934
943
|
# network_type: "String",
|
944
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless
|
935
945
|
# db_system_id: "String",
|
936
946
|
# manage_master_user_password: false,
|
937
947
|
# master_user_secret_kms_key_id: "String",
|
@@ -1279,13 +1289,15 @@ module Aws::RDS
|
|
1279
1289
|
# mapping isn't enabled.
|
1280
1290
|
#
|
1281
1291
|
# For more information, see [ IAM Database Authentication][1] in the
|
1282
|
-
# *Amazon Aurora User Guide
|
1292
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
1293
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
1283
1294
|
#
|
1284
|
-
# Valid for Cluster Type: Aurora DB clusters
|
1295
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1285
1296
|
#
|
1286
1297
|
#
|
1287
1298
|
#
|
1288
1299
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
1300
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
1289
1301
|
# @option options [Integer] :backtrack_window
|
1290
1302
|
# The target backtrack window, in seconds. To disable backtracking, set
|
1291
1303
|
# this value to `0`.
|
@@ -1658,6 +1670,17 @@ module Aws::RDS
|
|
1658
1670
|
#
|
1659
1671
|
#
|
1660
1672
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
1673
|
+
# @option options [String] :cluster_scalability_type
|
1674
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
1675
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
1676
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
1677
|
+
# instance creation.
|
1678
|
+
#
|
1679
|
+
# Valid for: Aurora DB clusters only
|
1680
|
+
#
|
1681
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
1682
|
+
#
|
1683
|
+
# </note>
|
1661
1684
|
# @option options [String] :db_system_id
|
1662
1685
|
# Reserved for future use.
|
1663
1686
|
# @option options [Boolean] :manage_master_user_password
|
@@ -2093,13 +2116,15 @@ module Aws::RDS
|
|
2093
2116
|
# mapping isn't enabled.
|
2094
2117
|
#
|
2095
2118
|
# For more information, see [ IAM Database Authentication][1] in the
|
2096
|
-
# *Amazon Aurora User Guide
|
2119
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
2120
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
2097
2121
|
#
|
2098
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2122
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2099
2123
|
#
|
2100
2124
|
#
|
2101
2125
|
#
|
2102
2126
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
2127
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2103
2128
|
# @option options [Integer] :backtrack_window
|
2104
2129
|
# The target backtrack window, in seconds. To disable backtracking, set
|
2105
2130
|
# this value to `0`.
|
@@ -2393,7 +2418,7 @@ module Aws::RDS
|
|
2393
2418
|
# For more information, see [ Using Amazon Performance Insights][1] in
|
2394
2419
|
# the *Amazon RDS User Guide*.
|
2395
2420
|
#
|
2396
|
-
# Valid for Cluster Type: Multi-AZ DB clusters
|
2421
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2397
2422
|
#
|
2398
2423
|
#
|
2399
2424
|
#
|
@@ -2793,13 +2818,15 @@ module Aws::RDS
|
|
2793
2818
|
# mapping isn't enabled.
|
2794
2819
|
#
|
2795
2820
|
# For more information, see [ IAM Database Authentication][1] in the
|
2796
|
-
# *Amazon Aurora User Guide
|
2821
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
2822
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
2797
2823
|
#
|
2798
|
-
# Valid for: Aurora DB clusters
|
2824
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2799
2825
|
#
|
2800
2826
|
#
|
2801
2827
|
#
|
2802
2828
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
2829
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2803
2830
|
# @option options [Integer] :backtrack_window
|
2804
2831
|
# The target backtrack window, in seconds. To disable backtracking, set
|
2805
2832
|
# this value to 0.
|
@@ -746,13 +746,15 @@ module Aws::RDS
|
|
746
746
|
# mapping isn't enabled.
|
747
747
|
#
|
748
748
|
# For more information, see [ IAM Database Authentication][1] in the
|
749
|
-
# *Amazon Aurora User Guide
|
749
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
750
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
750
751
|
#
|
751
|
-
# Valid for: Aurora DB clusters
|
752
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
752
753
|
#
|
753
754
|
#
|
754
755
|
#
|
755
756
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
757
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
756
758
|
# @option options [Integer] :backtrack_window
|
757
759
|
# The target backtrack window, in seconds. To disable backtracking, set
|
758
760
|
# this value to 0.
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -105,6 +105,7 @@ module Aws::RDS
|
|
105
105
|
# max_capacity: 1.0,
|
106
106
|
# },
|
107
107
|
# network_type: "String",
|
108
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless
|
108
109
|
# db_system_id: "String",
|
109
110
|
# manage_master_user_password: false,
|
110
111
|
# master_user_secret_kms_key_id: "String",
|
@@ -468,13 +469,15 @@ module Aws::RDS
|
|
468
469
|
# mapping isn't enabled.
|
469
470
|
#
|
470
471
|
# For more information, see [ IAM Database Authentication][1] in the
|
471
|
-
# *Amazon Aurora User Guide
|
472
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
473
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
472
474
|
#
|
473
|
-
# Valid for Cluster Type: Aurora DB clusters
|
475
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
474
476
|
#
|
475
477
|
#
|
476
478
|
#
|
477
479
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
480
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
478
481
|
# @option options [Integer] :backtrack_window
|
479
482
|
# The target backtrack window, in seconds. To disable backtracking, set
|
480
483
|
# this value to `0`.
|
@@ -847,6 +850,17 @@ module Aws::RDS
|
|
847
850
|
#
|
848
851
|
#
|
849
852
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
853
|
+
# @option options [String] :cluster_scalability_type
|
854
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
855
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
856
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
857
|
+
# instance creation.
|
858
|
+
#
|
859
|
+
# Valid for: Aurora DB clusters only
|
860
|
+
#
|
861
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
862
|
+
#
|
863
|
+
# </note>
|
850
864
|
# @option options [String] :db_system_id
|
851
865
|
# Reserved for future use.
|
852
866
|
# @option options [Boolean] :manage_master_user_password
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2480,13 +2480,15 @@ module Aws::RDS
|
|
2480
2480
|
# default, mapping isn't enabled.
|
2481
2481
|
#
|
2482
2482
|
# For more information, see [ IAM Database Authentication][1] in the
|
2483
|
-
# *Amazon Aurora User Guide
|
2483
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
2484
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
2484
2485
|
#
|
2485
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2486
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2486
2487
|
#
|
2487
2488
|
#
|
2488
2489
|
#
|
2489
2490
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
2491
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2490
2492
|
# @return [Boolean]
|
2491
2493
|
#
|
2492
2494
|
# @!attribute [rw] backtrack_window
|
@@ -2915,6 +2917,19 @@ module Aws::RDS
|
|
2915
2917
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2916
2918
|
# @return [String]
|
2917
2919
|
#
|
2920
|
+
# @!attribute [rw] cluster_scalability_type
|
2921
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
2922
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
2923
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
2924
|
+
# instance creation.
|
2925
|
+
#
|
2926
|
+
# Valid for: Aurora DB clusters only
|
2927
|
+
#
|
2928
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
2929
|
+
#
|
2930
|
+
# </note>
|
2931
|
+
# @return [String]
|
2932
|
+
#
|
2918
2933
|
# @!attribute [rw] db_system_id
|
2919
2934
|
# Reserved for future use.
|
2920
2935
|
# @return [String]
|
@@ -3085,6 +3100,7 @@ module Aws::RDS
|
|
3085
3100
|
:enable_limitless_database,
|
3086
3101
|
:serverless_v2_scaling_configuration,
|
3087
3102
|
:network_type,
|
3103
|
+
:cluster_scalability_type,
|
3088
3104
|
:db_system_id,
|
3089
3105
|
:manage_master_user_password,
|
3090
3106
|
:master_user_secret_kms_key_id,
|
@@ -5935,6 +5951,19 @@ module Aws::RDS
|
|
5935
5951
|
# attached to it, the DB shard group is public.
|
5936
5952
|
# @return [Boolean]
|
5937
5953
|
#
|
5954
|
+
# @!attribute [rw] tags
|
5955
|
+
# A list of tags.
|
5956
|
+
#
|
5957
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
5958
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
5959
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
5960
|
+
#
|
5961
|
+
#
|
5962
|
+
#
|
5963
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5964
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
5965
|
+
# @return [Array<Types::Tag>]
|
5966
|
+
#
|
5938
5967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroupMessage AWS API Documentation
|
5939
5968
|
#
|
5940
5969
|
class CreateDBShardGroupMessage < Struct.new(
|
@@ -5943,7 +5972,8 @@ module Aws::RDS
|
|
5943
5972
|
:compute_redundancy,
|
5944
5973
|
:max_acu,
|
5945
5974
|
:min_acu,
|
5946
|
-
:publicly_accessible
|
5975
|
+
:publicly_accessible,
|
5976
|
+
:tags)
|
5947
5977
|
SENSITIVE = []
|
5948
5978
|
include Aws::Structure
|
5949
5979
|
end
|
@@ -7183,6 +7213,13 @@ module Aws::RDS
|
|
7183
7213
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7184
7214
|
# @return [Integer]
|
7185
7215
|
#
|
7216
|
+
# @!attribute [rw] cluster_scalability_type
|
7217
|
+
# The scalability mode of the Aurora DB cluster. When set to
|
7218
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
7219
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
7220
|
+
# instance creation.
|
7221
|
+
# @return [String]
|
7222
|
+
#
|
7186
7223
|
# @!attribute [rw] certificate_details
|
7187
7224
|
# The details of the DB instance’s server certificate.
|
7188
7225
|
#
|
@@ -7284,6 +7321,7 @@ module Aws::RDS
|
|
7284
7321
|
:aws_backup_recovery_point_arn,
|
7285
7322
|
:limitless_database,
|
7286
7323
|
:storage_throughput,
|
7324
|
+
:cluster_scalability_type,
|
7287
7325
|
:certificate_details,
|
7288
7326
|
:engine_lifecycle_support)
|
7289
7327
|
SENSITIVE = []
|
@@ -10613,6 +10651,19 @@ module Aws::RDS
|
|
10613
10651
|
# The Amazon Resource Name (ARN) for the DB shard group.
|
10614
10652
|
# @return [String]
|
10615
10653
|
#
|
10654
|
+
# @!attribute [rw] tag_list
|
10655
|
+
# A list of tags.
|
10656
|
+
#
|
10657
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
10658
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
10659
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
10660
|
+
#
|
10661
|
+
#
|
10662
|
+
#
|
10663
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
10664
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
10665
|
+
# @return [Array<Types::Tag>]
|
10666
|
+
#
|
10616
10667
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBShardGroup AWS API Documentation
|
10617
10668
|
#
|
10618
10669
|
class DBShardGroup < Struct.new(
|
@@ -10625,7 +10676,8 @@ module Aws::RDS
|
|
10625
10676
|
:status,
|
10626
10677
|
:publicly_accessible,
|
10627
10678
|
:endpoint,
|
10628
|
-
:db_shard_group_arn
|
10679
|
+
:db_shard_group_arn,
|
10680
|
+
:tag_list)
|
10629
10681
|
SENSITIVE = []
|
10630
10682
|
include Aws::Structure
|
10631
10683
|
end
|
@@ -11718,7 +11770,7 @@ module Aws::RDS
|
|
11718
11770
|
end
|
11719
11771
|
|
11720
11772
|
# @!attribute [rw] db_shard_group_identifier
|
11721
|
-
#
|
11773
|
+
# The name of the DB shard group to delete.
|
11722
11774
|
# @return [String]
|
11723
11775
|
#
|
11724
11776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroupMessage AWS API Documentation
|
@@ -13548,10 +13600,9 @@ module Aws::RDS
|
|
13548
13600
|
end
|
13549
13601
|
|
13550
13602
|
# @!attribute [rw] db_shard_group_identifier
|
13551
|
-
# The user-supplied DB shard group identifier
|
13552
|
-
#
|
13553
|
-
#
|
13554
|
-
# parameter isn't case-sensitive.
|
13603
|
+
# The user-supplied DB shard group identifier. If this parameter is
|
13604
|
+
# specified, information for only the specific DB shard group is
|
13605
|
+
# returned. This parameter isn't case-sensitive.
|
13555
13606
|
#
|
13556
13607
|
# Constraints:
|
13557
13608
|
#
|
@@ -17267,13 +17318,15 @@ module Aws::RDS
|
|
17267
17318
|
# default, mapping isn't enabled.
|
17268
17319
|
#
|
17269
17320
|
# For more information, see [ IAM Database Authentication][1] in the
|
17270
|
-
# *Amazon Aurora User Guide
|
17321
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
17322
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
17271
17323
|
#
|
17272
|
-
# Valid for Cluster Type: Aurora DB clusters
|
17324
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
17273
17325
|
#
|
17274
17326
|
#
|
17275
17327
|
#
|
17276
17328
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
17329
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
17277
17330
|
# @return [Boolean]
|
17278
17331
|
#
|
17279
17332
|
# @!attribute [rw] backtrack_window
|
@@ -17609,7 +17662,7 @@ module Aws::RDS
|
|
17609
17662
|
# For more information, see [ Using Amazon Performance Insights][1] in
|
17610
17663
|
# the *Amazon RDS User Guide*.
|
17611
17664
|
#
|
17612
|
-
# Valid for Cluster Type: Multi-AZ DB clusters
|
17665
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
17613
17666
|
#
|
17614
17667
|
#
|
17615
17668
|
#
|
@@ -23144,13 +23197,15 @@ module Aws::RDS
|
|
23144
23197
|
# default, mapping isn't enabled.
|
23145
23198
|
#
|
23146
23199
|
# For more information, see [ IAM Database Authentication][1] in the
|
23147
|
-
# *Amazon Aurora User Guide
|
23200
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
23201
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
23148
23202
|
#
|
23149
|
-
# Valid for: Aurora DB clusters
|
23203
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23150
23204
|
#
|
23151
23205
|
#
|
23152
23206
|
#
|
23153
23207
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
23208
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
23154
23209
|
# @return [Boolean]
|
23155
23210
|
#
|
23156
23211
|
# @!attribute [rw] backtrack_window
|
@@ -23688,13 +23743,15 @@ module Aws::RDS
|
|
23688
23743
|
# default, mapping isn't enabled.
|
23689
23744
|
#
|
23690
23745
|
# For more information, see [ IAM Database Authentication][1] in the
|
23691
|
-
# *Amazon Aurora User Guide
|
23746
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
23747
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
23692
23748
|
#
|
23693
|
-
# Valid for: Aurora DB clusters
|
23749
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23694
23750
|
#
|
23695
23751
|
#
|
23696
23752
|
#
|
23697
23753
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
23754
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
23698
23755
|
# @return [Boolean]
|
23699
23756
|
#
|
23700
23757
|
# @!attribute [rw] backtrack_window
|
@@ -27224,11 +27281,11 @@ module Aws::RDS
|
|
27224
27281
|
class SubscriptionNotFoundFault < Aws::EmptyStructure; end
|
27225
27282
|
|
27226
27283
|
# @!attribute [rw] blue_green_deployment_identifier
|
27227
|
-
# The
|
27284
|
+
# The resource ID of the blue/green deployment.
|
27228
27285
|
#
|
27229
27286
|
# Constraints:
|
27230
27287
|
#
|
27231
|
-
# * Must match an existing blue/green deployment
|
27288
|
+
# * Must match an existing blue/green deployment resource ID.
|
27232
27289
|
#
|
27233
27290
|
# ^
|
27234
27291
|
# @return [String]
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
82
82
|
|
83
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.253.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -435,6 +435,7 @@ module Aws
|
|
435
435
|
max_capacity: ::Float?
|
436
436
|
},
|
437
437
|
?network_type: ::String,
|
438
|
+
?cluster_scalability_type: ("standard" | "limitless"),
|
438
439
|
?db_system_id: ::String,
|
439
440
|
?manage_master_user_password: bool,
|
440
441
|
?master_user_secret_kms_key_id: ::String,
|
@@ -756,6 +757,7 @@ module Aws
|
|
756
757
|
def publicly_accessible: () -> bool
|
757
758
|
def endpoint: () -> ::String
|
758
759
|
def db_shard_group_arn: () -> ::String
|
760
|
+
def tag_list: () -> ::Array[Types::Tag]
|
759
761
|
end
|
760
762
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_db_shard_group-instance_method
|
761
763
|
def create_db_shard_group: (
|
@@ -764,7 +766,13 @@ module Aws
|
|
764
766
|
?compute_redundancy: ::Integer,
|
765
767
|
max_acu: ::Float,
|
766
768
|
?min_acu: ::Float,
|
767
|
-
?publicly_accessible: bool
|
769
|
+
?publicly_accessible: bool,
|
770
|
+
?tags: Array[
|
771
|
+
{
|
772
|
+
key: ::String?,
|
773
|
+
value: ::String?
|
774
|
+
},
|
775
|
+
]
|
768
776
|
) -> _CreateDBShardGroupResponseSuccess
|
769
777
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBShardGroupResponseSuccess
|
770
778
|
|
@@ -1101,6 +1109,7 @@ module Aws
|
|
1101
1109
|
def publicly_accessible: () -> bool
|
1102
1110
|
def endpoint: () -> ::String
|
1103
1111
|
def db_shard_group_arn: () -> ::String
|
1112
|
+
def tag_list: () -> ::Array[Types::Tag]
|
1104
1113
|
end
|
1105
1114
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_db_shard_group-instance_method
|
1106
1115
|
def delete_db_shard_group: (
|
@@ -2556,6 +2565,7 @@ module Aws
|
|
2556
2565
|
def publicly_accessible: () -> bool
|
2557
2566
|
def endpoint: () -> ::String
|
2558
2567
|
def db_shard_group_arn: () -> ::String
|
2568
|
+
def tag_list: () -> ::Array[Types::Tag]
|
2559
2569
|
end
|
2560
2570
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_db_shard_group-instance_method
|
2561
2571
|
def modify_db_shard_group: (
|
@@ -2775,6 +2785,7 @@ module Aws
|
|
2775
2785
|
def publicly_accessible: () -> bool
|
2776
2786
|
def endpoint: () -> ::String
|
2777
2787
|
def db_shard_group_arn: () -> ::String
|
2788
|
+
def tag_list: () -> ::Array[Types::Tag]
|
2778
2789
|
end
|
2779
2790
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#reboot_db_shard_group-instance_method
|
2780
2791
|
def reboot_db_shard_group: (
|
data/sig/db_cluster.rbs
CHANGED
@@ -249,6 +249,9 @@ module Aws
|
|
249
249
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#storage_throughput-instance_method
|
250
250
|
def storage_throughput: () -> ::Integer
|
251
251
|
|
252
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#cluster_scalability_type-instance_method
|
253
|
+
def cluster_scalability_type: () -> ("standard" | "limitless")
|
254
|
+
|
252
255
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#certificate_details-instance_method
|
253
256
|
def certificate_details: () -> Types::CertificateDetails
|
254
257
|
|
@@ -336,6 +339,7 @@ module Aws
|
|
336
339
|
max_capacity: ::Float?
|
337
340
|
},
|
338
341
|
?network_type: ::String,
|
342
|
+
?cluster_scalability_type: ("standard" | "limitless"),
|
339
343
|
?db_system_id: ::String,
|
340
344
|
?manage_master_user_password: bool,
|
341
345
|
?master_user_secret_kms_key_id: ::String,
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -388,6 +388,7 @@ module Aws::RDS
|
|
388
388
|
attr_accessor enable_limitless_database: bool
|
389
389
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
390
390
|
attr_accessor network_type: ::String
|
391
|
+
attr_accessor cluster_scalability_type: ("standard" | "limitless")
|
391
392
|
attr_accessor db_system_id: ::String
|
392
393
|
attr_accessor manage_master_user_password: bool
|
393
394
|
attr_accessor master_user_secret_kms_key_id: ::String
|
@@ -621,6 +622,7 @@ module Aws::RDS
|
|
621
622
|
attr_accessor max_acu: ::Float
|
622
623
|
attr_accessor min_acu: ::Float
|
623
624
|
attr_accessor publicly_accessible: bool
|
625
|
+
attr_accessor tags: ::Array[Types::Tag]
|
624
626
|
SENSITIVE: []
|
625
627
|
end
|
626
628
|
|
@@ -822,6 +824,7 @@ module Aws::RDS
|
|
822
824
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
823
825
|
attr_accessor limitless_database: Types::LimitlessDatabase
|
824
826
|
attr_accessor storage_throughput: ::Integer
|
827
|
+
attr_accessor cluster_scalability_type: ("standard" | "limitless")
|
825
828
|
attr_accessor certificate_details: Types::CertificateDetails
|
826
829
|
attr_accessor engine_lifecycle_support: ::String
|
827
830
|
SENSITIVE: []
|
@@ -1491,6 +1494,7 @@ module Aws::RDS
|
|
1491
1494
|
attr_accessor publicly_accessible: bool
|
1492
1495
|
attr_accessor endpoint: ::String
|
1493
1496
|
attr_accessor db_shard_group_arn: ::String
|
1497
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1494
1498
|
SENSITIVE: []
|
1495
1499
|
end
|
1496
1500
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.253.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|