aws-sdk-rds 1.250.0 → 1.252.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +63 -3
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_cluster.rb +21 -0
- data/lib/aws-sdk-rds/resource.rb +12 -0
- data/lib/aws-sdk-rds/types.rb +52 -2
- data/lib/aws-sdk-rds.rb +3 -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: 2da58a166460b210f1501fd26a4821a216222bdd32751e5bc216da44f0840f0b
|
4
|
+
data.tar.gz: b51977aa663f9a4adcbda52e593f751347cf3149ac8f15d37b25c70683c8168c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 830c374ed750b85c7ff4cfea6330758a45ad7169cd1dabcd82e6c07ab543f19d105422ace53e43afcd162f538c25bcde8a503fafcb5f81d3ca377e99862597b9
|
7
|
+
data.tar.gz: a042bbf4f7a0c5d04878a7e38eb24c4fd1af9a98a486e74a807287fb13c27bf5d02c930f7ce61ad861a589c176586feacc30cf970fe0d5ecdfeac7347b9b169b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.252.0 (2024-10-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release provides additional support for enabling Aurora Limitless Database DB clusters.
|
8
|
+
|
9
|
+
1.251.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.250.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.252.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -37,8 +37,6 @@ require 'aws-sdk-core/plugins/sign.rb'
|
|
37
37
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
38
38
|
require 'aws-sdk-rds/plugins/cross_region_copying.rb'
|
39
39
|
|
40
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:rds)
|
41
|
-
|
42
40
|
module Aws::RDS
|
43
41
|
# An API client for RDS. To construct a client, you need to configure a `:region` and `:credentials`.
|
44
42
|
#
|
@@ -3381,6 +3379,18 @@ module Aws::RDS
|
|
3381
3379
|
#
|
3382
3380
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
3383
3381
|
#
|
3382
|
+
# @option params [String] :cluster_scalability_type
|
3383
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
3384
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
3385
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
3386
|
+
# instance creation.
|
3387
|
+
#
|
3388
|
+
# Valid for: Aurora DB clusters only
|
3389
|
+
#
|
3390
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
3391
|
+
#
|
3392
|
+
# </note>
|
3393
|
+
#
|
3384
3394
|
# @option params [String] :db_system_id
|
3385
3395
|
# Reserved for future use.
|
3386
3396
|
#
|
@@ -3694,6 +3704,7 @@ module Aws::RDS
|
|
3694
3704
|
# max_capacity: 1.0,
|
3695
3705
|
# },
|
3696
3706
|
# network_type: "String",
|
3707
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless
|
3697
3708
|
# db_system_id: "String",
|
3698
3709
|
# manage_master_user_password: false,
|
3699
3710
|
# master_user_secret_kms_key_id: "String",
|
@@ -3839,6 +3850,7 @@ module Aws::RDS
|
|
3839
3850
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
3840
3851
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
3841
3852
|
# resp.db_cluster.storage_throughput #=> Integer
|
3853
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
3842
3854
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
3843
3855
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
3844
3856
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -7440,6 +7452,18 @@ module Aws::RDS
|
|
7440
7452
|
# * If the subnets are part of a VPC that has an internet gateway
|
7441
7453
|
# attached to it, the DB shard group is public.
|
7442
7454
|
#
|
7455
|
+
# @option params [Array<Types::Tag>] :tags
|
7456
|
+
# A list of tags.
|
7457
|
+
#
|
7458
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7459
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7460
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7461
|
+
#
|
7462
|
+
#
|
7463
|
+
#
|
7464
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7465
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7466
|
+
#
|
7443
7467
|
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7444
7468
|
#
|
7445
7469
|
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
@@ -7452,6 +7476,7 @@ module Aws::RDS
|
|
7452
7476
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
7453
7477
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
7454
7478
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
7479
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
7455
7480
|
#
|
7456
7481
|
# @example Request syntax with placeholder values
|
7457
7482
|
#
|
@@ -7462,6 +7487,12 @@ module Aws::RDS
|
|
7462
7487
|
# max_acu: 1.0, # required
|
7463
7488
|
# min_acu: 1.0,
|
7464
7489
|
# publicly_accessible: false,
|
7490
|
+
# tags: [
|
7491
|
+
# {
|
7492
|
+
# key: "String",
|
7493
|
+
# value: "String",
|
7494
|
+
# },
|
7495
|
+
# ],
|
7465
7496
|
# })
|
7466
7497
|
#
|
7467
7498
|
# @example Response structure
|
@@ -7476,6 +7507,9 @@ module Aws::RDS
|
|
7476
7507
|
# resp.publicly_accessible #=> Boolean
|
7477
7508
|
# resp.endpoint #=> String
|
7478
7509
|
# resp.db_shard_group_arn #=> String
|
7510
|
+
# resp.tag_list #=> Array
|
7511
|
+
# resp.tag_list[0].key #=> String
|
7512
|
+
# resp.tag_list[0].value #=> String
|
7479
7513
|
#
|
7480
7514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroup AWS API Documentation
|
7481
7515
|
#
|
@@ -9181,6 +9215,7 @@ module Aws::RDS
|
|
9181
9215
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
9182
9216
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
9183
9217
|
# resp.db_cluster.storage_throughput #=> Integer
|
9218
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
9184
9219
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
9185
9220
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
9186
9221
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -10119,6 +10154,7 @@ module Aws::RDS
|
|
10119
10154
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
10120
10155
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
10121
10156
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
10157
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
10122
10158
|
#
|
10123
10159
|
# @example Request syntax with placeholder values
|
10124
10160
|
#
|
@@ -10138,6 +10174,9 @@ module Aws::RDS
|
|
10138
10174
|
# resp.publicly_accessible #=> Boolean
|
10139
10175
|
# resp.endpoint #=> String
|
10140
10176
|
# resp.db_shard_group_arn #=> String
|
10177
|
+
# resp.tag_list #=> Array
|
10178
|
+
# resp.tag_list[0].key #=> String
|
10179
|
+
# resp.tag_list[0].value #=> String
|
10141
10180
|
#
|
10142
10181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroup AWS API Documentation
|
10143
10182
|
#
|
@@ -12620,6 +12659,7 @@ module Aws::RDS
|
|
12620
12659
|
# resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
12621
12660
|
# resp.db_clusters[0].limitless_database.min_required_acu #=> Float
|
12622
12661
|
# resp.db_clusters[0].storage_throughput #=> Integer
|
12662
|
+
# resp.db_clusters[0].cluster_scalability_type #=> String, one of "standard", "limitless"
|
12623
12663
|
# resp.db_clusters[0].certificate_details.ca_identifier #=> String
|
12624
12664
|
# resp.db_clusters[0].certificate_details.valid_till #=> Time
|
12625
12665
|
# resp.db_clusters[0].engine_lifecycle_support #=> String
|
@@ -14428,6 +14468,9 @@ module Aws::RDS
|
|
14428
14468
|
# resp.db_shard_groups[0].publicly_accessible #=> Boolean
|
14429
14469
|
# resp.db_shard_groups[0].endpoint #=> String
|
14430
14470
|
# resp.db_shard_groups[0].db_shard_group_arn #=> String
|
14471
|
+
# resp.db_shard_groups[0].tag_list #=> Array
|
14472
|
+
# resp.db_shard_groups[0].tag_list[0].key #=> String
|
14473
|
+
# resp.db_shard_groups[0].tag_list[0].value #=> String
|
14431
14474
|
# resp.marker #=> String
|
14432
14475
|
#
|
14433
14476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroups AWS API Documentation
|
@@ -17933,6 +17976,7 @@ module Aws::RDS
|
|
17933
17976
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
17934
17977
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
17935
17978
|
# resp.db_cluster.storage_throughput #=> Integer
|
17979
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
17936
17980
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
17937
17981
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
17938
17982
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -19622,6 +19666,7 @@ module Aws::RDS
|
|
19622
19666
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
19623
19667
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
19624
19668
|
# resp.db_cluster.storage_throughput #=> Integer
|
19669
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
19625
19670
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
19626
19671
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
19627
19672
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -21866,6 +21911,7 @@ module Aws::RDS
|
|
21866
21911
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
21867
21912
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
21868
21913
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
21914
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
21869
21915
|
#
|
21870
21916
|
# @example Request syntax with placeholder values
|
21871
21917
|
#
|
@@ -21888,6 +21934,9 @@ module Aws::RDS
|
|
21888
21934
|
# resp.publicly_accessible #=> Boolean
|
21889
21935
|
# resp.endpoint #=> String
|
21890
21936
|
# resp.db_shard_group_arn #=> String
|
21937
|
+
# resp.tag_list #=> Array
|
21938
|
+
# resp.tag_list[0].key #=> String
|
21939
|
+
# resp.tag_list[0].value #=> String
|
21891
21940
|
#
|
21892
21941
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBShardGroup AWS API Documentation
|
21893
21942
|
#
|
@@ -23342,6 +23391,7 @@ module Aws::RDS
|
|
23342
23391
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
23343
23392
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
23344
23393
|
# resp.db_cluster.storage_throughput #=> Integer
|
23394
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
23345
23395
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23346
23396
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23347
23397
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -23642,6 +23692,7 @@ module Aws::RDS
|
|
23642
23692
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
23643
23693
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
23644
23694
|
# resp.db_cluster.storage_throughput #=> Integer
|
23695
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
23645
23696
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23646
23697
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23647
23698
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -23923,6 +23974,7 @@ module Aws::RDS
|
|
23923
23974
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
23924
23975
|
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
23925
23976
|
# * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
|
23977
|
+
# * {Types::DBShardGroup#tag_list #tag_list} => Array<Types::Tag>
|
23926
23978
|
#
|
23927
23979
|
# @example Request syntax with placeholder values
|
23928
23980
|
#
|
@@ -23942,6 +23994,9 @@ module Aws::RDS
|
|
23942
23994
|
# resp.publicly_accessible #=> Boolean
|
23943
23995
|
# resp.endpoint #=> String
|
23944
23996
|
# resp.db_shard_group_arn #=> String
|
23997
|
+
# resp.tag_list #=> Array
|
23998
|
+
# resp.tag_list[0].key #=> String
|
23999
|
+
# resp.tag_list[0].value #=> String
|
23945
24000
|
#
|
23946
24001
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBShardGroup AWS API Documentation
|
23947
24002
|
#
|
@@ -25224,6 +25279,7 @@ module Aws::RDS
|
|
25224
25279
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
25225
25280
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
25226
25281
|
# resp.db_cluster.storage_throughput #=> Integer
|
25282
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
25227
25283
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
25228
25284
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25229
25285
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -25982,6 +26038,7 @@ module Aws::RDS
|
|
25982
26038
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
25983
26039
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
25984
26040
|
# resp.db_cluster.storage_throughput #=> Integer
|
26041
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
25985
26042
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
25986
26043
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25987
26044
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -26719,6 +26776,7 @@ module Aws::RDS
|
|
26719
26776
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
26720
26777
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
26721
26778
|
# resp.db_cluster.storage_throughput #=> Integer
|
26779
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
26722
26780
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
26723
26781
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
26724
26782
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -29766,6 +29824,7 @@ module Aws::RDS
|
|
29766
29824
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
29767
29825
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
29768
29826
|
# resp.db_cluster.storage_throughput #=> Integer
|
29827
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
29769
29828
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29770
29829
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
29771
29830
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -30607,6 +30666,7 @@ module Aws::RDS
|
|
30607
30666
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
30608
30667
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
30609
30668
|
# resp.db_cluster.storage_throughput #=> Integer
|
30669
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
30610
30670
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
30611
30671
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
30612
30672
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
@@ -31468,7 +31528,7 @@ module Aws::RDS
|
|
31468
31528
|
tracer: tracer
|
31469
31529
|
)
|
31470
31530
|
context[:gem_name] = 'aws-sdk-rds'
|
31471
|
-
context[:gem_version] = '1.
|
31531
|
+
context[:gem_version] = '1.252.0'
|
31472
31532
|
Seahorse::Client::Request.new(handlers, context)
|
31473
31533
|
end
|
31474
31534
|
|
@@ -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",
|
@@ -1658,6 +1668,17 @@ module Aws::RDS
|
|
1658
1668
|
#
|
1659
1669
|
#
|
1660
1670
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
1671
|
+
# @option options [String] :cluster_scalability_type
|
1672
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
1673
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
1674
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
1675
|
+
# instance creation.
|
1676
|
+
#
|
1677
|
+
# Valid for: Aurora DB clusters only
|
1678
|
+
#
|
1679
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
1680
|
+
#
|
1681
|
+
# </note>
|
1661
1682
|
# @option options [String] :db_system_id
|
1662
1683
|
# Reserved for future use.
|
1663
1684
|
# @option options [Boolean] :manage_master_user_password
|
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",
|
@@ -847,6 +848,17 @@ module Aws::RDS
|
|
847
848
|
#
|
848
849
|
#
|
849
850
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
851
|
+
# @option options [String] :cluster_scalability_type
|
852
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
853
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
854
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
855
|
+
# instance creation.
|
856
|
+
#
|
857
|
+
# Valid for: Aurora DB clusters only
|
858
|
+
#
|
859
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
860
|
+
#
|
861
|
+
# </note>
|
850
862
|
# @option options [String] :db_system_id
|
851
863
|
# Reserved for future use.
|
852
864
|
# @option options [Boolean] :manage_master_user_password
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2915,6 +2915,19 @@ module Aws::RDS
|
|
2915
2915
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2916
2916
|
# @return [String]
|
2917
2917
|
#
|
2918
|
+
# @!attribute [rw] cluster_scalability_type
|
2919
|
+
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
2920
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
2921
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
2922
|
+
# instance creation.
|
2923
|
+
#
|
2924
|
+
# Valid for: Aurora DB clusters only
|
2925
|
+
#
|
2926
|
+
# <note markdown="1"> You can't modify this setting after you create the DB cluster.
|
2927
|
+
#
|
2928
|
+
# </note>
|
2929
|
+
# @return [String]
|
2930
|
+
#
|
2918
2931
|
# @!attribute [rw] db_system_id
|
2919
2932
|
# Reserved for future use.
|
2920
2933
|
# @return [String]
|
@@ -3085,6 +3098,7 @@ module Aws::RDS
|
|
3085
3098
|
:enable_limitless_database,
|
3086
3099
|
:serverless_v2_scaling_configuration,
|
3087
3100
|
:network_type,
|
3101
|
+
:cluster_scalability_type,
|
3088
3102
|
:db_system_id,
|
3089
3103
|
:manage_master_user_password,
|
3090
3104
|
:master_user_secret_kms_key_id,
|
@@ -5935,6 +5949,19 @@ module Aws::RDS
|
|
5935
5949
|
# attached to it, the DB shard group is public.
|
5936
5950
|
# @return [Boolean]
|
5937
5951
|
#
|
5952
|
+
# @!attribute [rw] tags
|
5953
|
+
# A list of tags.
|
5954
|
+
#
|
5955
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
5956
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
5957
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
5958
|
+
#
|
5959
|
+
#
|
5960
|
+
#
|
5961
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5962
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
5963
|
+
# @return [Array<Types::Tag>]
|
5964
|
+
#
|
5938
5965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroupMessage AWS API Documentation
|
5939
5966
|
#
|
5940
5967
|
class CreateDBShardGroupMessage < Struct.new(
|
@@ -5943,7 +5970,8 @@ module Aws::RDS
|
|
5943
5970
|
:compute_redundancy,
|
5944
5971
|
:max_acu,
|
5945
5972
|
:min_acu,
|
5946
|
-
:publicly_accessible
|
5973
|
+
:publicly_accessible,
|
5974
|
+
:tags)
|
5947
5975
|
SENSITIVE = []
|
5948
5976
|
include Aws::Structure
|
5949
5977
|
end
|
@@ -7183,6 +7211,13 @@ module Aws::RDS
|
|
7183
7211
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7184
7212
|
# @return [Integer]
|
7185
7213
|
#
|
7214
|
+
# @!attribute [rw] cluster_scalability_type
|
7215
|
+
# The scalability mode of the Aurora DB cluster. When set to
|
7216
|
+
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
7217
|
+
# When set to `standard` (the default), the cluster uses normal DB
|
7218
|
+
# instance creation.
|
7219
|
+
# @return [String]
|
7220
|
+
#
|
7186
7221
|
# @!attribute [rw] certificate_details
|
7187
7222
|
# The details of the DB instance’s server certificate.
|
7188
7223
|
#
|
@@ -7284,6 +7319,7 @@ module Aws::RDS
|
|
7284
7319
|
:aws_backup_recovery_point_arn,
|
7285
7320
|
:limitless_database,
|
7286
7321
|
:storage_throughput,
|
7322
|
+
:cluster_scalability_type,
|
7287
7323
|
:certificate_details,
|
7288
7324
|
:engine_lifecycle_support)
|
7289
7325
|
SENSITIVE = []
|
@@ -10613,6 +10649,19 @@ module Aws::RDS
|
|
10613
10649
|
# The Amazon Resource Name (ARN) for the DB shard group.
|
10614
10650
|
# @return [String]
|
10615
10651
|
#
|
10652
|
+
# @!attribute [rw] tag_list
|
10653
|
+
# A list of tags.
|
10654
|
+
#
|
10655
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
10656
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
10657
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
10658
|
+
#
|
10659
|
+
#
|
10660
|
+
#
|
10661
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
10662
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
10663
|
+
# @return [Array<Types::Tag>]
|
10664
|
+
#
|
10616
10665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBShardGroup AWS API Documentation
|
10617
10666
|
#
|
10618
10667
|
class DBShardGroup < Struct.new(
|
@@ -10625,7 +10674,8 @@ module Aws::RDS
|
|
10625
10674
|
:status,
|
10626
10675
|
:publicly_accessible,
|
10627
10676
|
:endpoint,
|
10628
|
-
:db_shard_group_arn
|
10677
|
+
:db_shard_group_arn,
|
10678
|
+
:tag_list)
|
10629
10679
|
SENSITIVE = []
|
10630
10680
|
include Aws::Structure
|
10631
10681
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:rds)
|
15
|
+
|
14
16
|
# This module provides support for Amazon Relational Database Service. This module is available in the
|
15
17
|
# `aws-sdk-rds` gem.
|
16
18
|
#
|
@@ -78,7 +80,7 @@ module Aws::RDS
|
|
78
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
79
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
80
82
|
|
81
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.252.0'
|
82
84
|
|
83
85
|
end
|
84
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.252.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-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|