aws-sdk-rds 1.251.0 → 1.252.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aac1571be1c666a2470474e4c280b5c742c892fe16a88e128c6dc10096fb6c3d
4
- data.tar.gz: '09abaa4cf387c5e31b7ddf76554376a5da94f03ae2c1373d5a779da47a9560f3'
3
+ metadata.gz: 2da58a166460b210f1501fd26a4821a216222bdd32751e5bc216da44f0840f0b
4
+ data.tar.gz: b51977aa663f9a4adcbda52e593f751347cf3149ac8f15d37b25c70683c8168c
5
5
  SHA512:
6
- metadata.gz: b05afd6e8a30409c0a393babf35e8990ec2affe3f9e9e0cbe6d8b692fa647186943e072179c12abd1e849fc2650d4ab9787910e2b85c757feb7c72086f187c41
7
- data.tar.gz: d8cbce4ef70da6ef63ac16b9a463f297a73adf91eda1d392aa1630f5145a5c6299aca099864563f75c85566daa1c9da5c7c776b0568f122398b3a2131b046c4a
6
+ metadata.gz: 830c374ed750b85c7ff4cfea6330758a45ad7169cd1dabcd82e6c07ab543f19d105422ace53e43afcd162f538c25bcde8a503fafcb5f81d3ca377e99862597b9
7
+ data.tar.gz: a042bbf4f7a0c5d04878a7e38eb24c4fd1af9a98a486e74a807287fb13c27bf5d02c930f7ce61ad861a589c176586feacc30cf970fe0d5ecdfeac7347b9b169b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.251.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.251.0
1
+ 1.252.0
@@ -3379,6 +3379,18 @@ module Aws::RDS
3379
3379
  #
3380
3380
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
3381
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
+ #
3382
3394
  # @option params [String] :db_system_id
3383
3395
  # Reserved for future use.
3384
3396
  #
@@ -3692,6 +3704,7 @@ module Aws::RDS
3692
3704
  # max_capacity: 1.0,
3693
3705
  # },
3694
3706
  # network_type: "String",
3707
+ # cluster_scalability_type: "standard", # accepts standard, limitless
3695
3708
  # db_system_id: "String",
3696
3709
  # manage_master_user_password: false,
3697
3710
  # master_user_secret_kms_key_id: "String",
@@ -3837,6 +3850,7 @@ module Aws::RDS
3837
3850
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
3838
3851
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
3839
3852
  # resp.db_cluster.storage_throughput #=> Integer
3853
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
3840
3854
  # resp.db_cluster.certificate_details.ca_identifier #=> String
3841
3855
  # resp.db_cluster.certificate_details.valid_till #=> Time
3842
3856
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -7438,6 +7452,18 @@ module Aws::RDS
7438
7452
  # * If the subnets are part of a VPC that has an internet gateway
7439
7453
  # attached to it, the DB shard group is public.
7440
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
+ #
7441
7467
  # @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7442
7468
  #
7443
7469
  # * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
@@ -7450,6 +7476,7 @@ module Aws::RDS
7450
7476
  # * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
7451
7477
  # * {Types::DBShardGroup#endpoint #endpoint} => String
7452
7478
  # * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
7479
+ # * {Types::DBShardGroup#tag_list #tag_list} => Array&lt;Types::Tag&gt;
7453
7480
  #
7454
7481
  # @example Request syntax with placeholder values
7455
7482
  #
@@ -7460,6 +7487,12 @@ module Aws::RDS
7460
7487
  # max_acu: 1.0, # required
7461
7488
  # min_acu: 1.0,
7462
7489
  # publicly_accessible: false,
7490
+ # tags: [
7491
+ # {
7492
+ # key: "String",
7493
+ # value: "String",
7494
+ # },
7495
+ # ],
7463
7496
  # })
7464
7497
  #
7465
7498
  # @example Response structure
@@ -7474,6 +7507,9 @@ module Aws::RDS
7474
7507
  # resp.publicly_accessible #=> Boolean
7475
7508
  # resp.endpoint #=> String
7476
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
7477
7513
  #
7478
7514
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroup AWS API Documentation
7479
7515
  #
@@ -9179,6 +9215,7 @@ module Aws::RDS
9179
9215
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
9180
9216
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
9181
9217
  # resp.db_cluster.storage_throughput #=> Integer
9218
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
9182
9219
  # resp.db_cluster.certificate_details.ca_identifier #=> String
9183
9220
  # resp.db_cluster.certificate_details.valid_till #=> Time
9184
9221
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -10117,6 +10154,7 @@ module Aws::RDS
10117
10154
  # * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
10118
10155
  # * {Types::DBShardGroup#endpoint #endpoint} => String
10119
10156
  # * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
10157
+ # * {Types::DBShardGroup#tag_list #tag_list} => Array&lt;Types::Tag&gt;
10120
10158
  #
10121
10159
  # @example Request syntax with placeholder values
10122
10160
  #
@@ -10136,6 +10174,9 @@ module Aws::RDS
10136
10174
  # resp.publicly_accessible #=> Boolean
10137
10175
  # resp.endpoint #=> String
10138
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
10139
10180
  #
10140
10181
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroup AWS API Documentation
10141
10182
  #
@@ -12618,6 +12659,7 @@ module Aws::RDS
12618
12659
  # resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
12619
12660
  # resp.db_clusters[0].limitless_database.min_required_acu #=> Float
12620
12661
  # resp.db_clusters[0].storage_throughput #=> Integer
12662
+ # resp.db_clusters[0].cluster_scalability_type #=> String, one of "standard", "limitless"
12621
12663
  # resp.db_clusters[0].certificate_details.ca_identifier #=> String
12622
12664
  # resp.db_clusters[0].certificate_details.valid_till #=> Time
12623
12665
  # resp.db_clusters[0].engine_lifecycle_support #=> String
@@ -14426,6 +14468,9 @@ module Aws::RDS
14426
14468
  # resp.db_shard_groups[0].publicly_accessible #=> Boolean
14427
14469
  # resp.db_shard_groups[0].endpoint #=> String
14428
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
14429
14474
  # resp.marker #=> String
14430
14475
  #
14431
14476
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroups AWS API Documentation
@@ -17931,6 +17976,7 @@ module Aws::RDS
17931
17976
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
17932
17977
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
17933
17978
  # resp.db_cluster.storage_throughput #=> Integer
17979
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
17934
17980
  # resp.db_cluster.certificate_details.ca_identifier #=> String
17935
17981
  # resp.db_cluster.certificate_details.valid_till #=> Time
17936
17982
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -19620,6 +19666,7 @@ module Aws::RDS
19620
19666
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
19621
19667
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
19622
19668
  # resp.db_cluster.storage_throughput #=> Integer
19669
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
19623
19670
  # resp.db_cluster.certificate_details.ca_identifier #=> String
19624
19671
  # resp.db_cluster.certificate_details.valid_till #=> Time
19625
19672
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -21864,6 +21911,7 @@ module Aws::RDS
21864
21911
  # * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
21865
21912
  # * {Types::DBShardGroup#endpoint #endpoint} => String
21866
21913
  # * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
21914
+ # * {Types::DBShardGroup#tag_list #tag_list} => Array&lt;Types::Tag&gt;
21867
21915
  #
21868
21916
  # @example Request syntax with placeholder values
21869
21917
  #
@@ -21886,6 +21934,9 @@ module Aws::RDS
21886
21934
  # resp.publicly_accessible #=> Boolean
21887
21935
  # resp.endpoint #=> String
21888
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
21889
21940
  #
21890
21941
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBShardGroup AWS API Documentation
21891
21942
  #
@@ -23340,6 +23391,7 @@ module Aws::RDS
23340
23391
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
23341
23392
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
23342
23393
  # resp.db_cluster.storage_throughput #=> Integer
23394
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
23343
23395
  # resp.db_cluster.certificate_details.ca_identifier #=> String
23344
23396
  # resp.db_cluster.certificate_details.valid_till #=> Time
23345
23397
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -23640,6 +23692,7 @@ module Aws::RDS
23640
23692
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
23641
23693
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
23642
23694
  # resp.db_cluster.storage_throughput #=> Integer
23695
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
23643
23696
  # resp.db_cluster.certificate_details.ca_identifier #=> String
23644
23697
  # resp.db_cluster.certificate_details.valid_till #=> Time
23645
23698
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -23921,6 +23974,7 @@ module Aws::RDS
23921
23974
  # * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
23922
23975
  # * {Types::DBShardGroup#endpoint #endpoint} => String
23923
23976
  # * {Types::DBShardGroup#db_shard_group_arn #db_shard_group_arn} => String
23977
+ # * {Types::DBShardGroup#tag_list #tag_list} => Array&lt;Types::Tag&gt;
23924
23978
  #
23925
23979
  # @example Request syntax with placeholder values
23926
23980
  #
@@ -23940,6 +23994,9 @@ module Aws::RDS
23940
23994
  # resp.publicly_accessible #=> Boolean
23941
23995
  # resp.endpoint #=> String
23942
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
23943
24000
  #
23944
24001
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBShardGroup AWS API Documentation
23945
24002
  #
@@ -25222,6 +25279,7 @@ module Aws::RDS
25222
25279
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
25223
25280
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
25224
25281
  # resp.db_cluster.storage_throughput #=> Integer
25282
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
25225
25283
  # resp.db_cluster.certificate_details.ca_identifier #=> String
25226
25284
  # resp.db_cluster.certificate_details.valid_till #=> Time
25227
25285
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -25980,6 +26038,7 @@ module Aws::RDS
25980
26038
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
25981
26039
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
25982
26040
  # resp.db_cluster.storage_throughput #=> Integer
26041
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
25983
26042
  # resp.db_cluster.certificate_details.ca_identifier #=> String
25984
26043
  # resp.db_cluster.certificate_details.valid_till #=> Time
25985
26044
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -26717,6 +26776,7 @@ module Aws::RDS
26717
26776
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
26718
26777
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
26719
26778
  # resp.db_cluster.storage_throughput #=> Integer
26779
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
26720
26780
  # resp.db_cluster.certificate_details.ca_identifier #=> String
26721
26781
  # resp.db_cluster.certificate_details.valid_till #=> Time
26722
26782
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -29764,6 +29824,7 @@ module Aws::RDS
29764
29824
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
29765
29825
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
29766
29826
  # resp.db_cluster.storage_throughput #=> Integer
29827
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
29767
29828
  # resp.db_cluster.certificate_details.ca_identifier #=> String
29768
29829
  # resp.db_cluster.certificate_details.valid_till #=> Time
29769
29830
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -30605,6 +30666,7 @@ module Aws::RDS
30605
30666
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
30606
30667
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
30607
30668
  # resp.db_cluster.storage_throughput #=> Integer
30669
+ # resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
30608
30670
  # resp.db_cluster.certificate_details.ca_identifier #=> String
30609
30671
  # resp.db_cluster.certificate_details.valid_till #=> Time
30610
30672
  # resp.db_cluster.engine_lifecycle_support #=> String
@@ -31466,7 +31528,7 @@ module Aws::RDS
31466
31528
  tracer: tracer
31467
31529
  )
31468
31530
  context[:gem_name] = 'aws-sdk-rds'
31469
- context[:gem_version] = '1.251.0'
31531
+ context[:gem_version] = '1.252.0'
31470
31532
  Seahorse::Client::Request.new(handlers, context)
31471
31533
  end
31472
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
@@ -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
@@ -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
@@ -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.251.0'
83
+ GEM_VERSION = '1.252.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
@@ -146,6 +146,7 @@ module Aws
146
146
  max_capacity: ::Float?
147
147
  },
148
148
  ?network_type: ::String,
149
+ ?cluster_scalability_type: ("standard" | "limitless"),
149
150
  ?db_system_id: ::String,
150
151
  ?manage_master_user_password: bool,
151
152
  ?master_user_secret_kms_key_id: ::String,
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.251.0
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-09-24 00:00:00.000000000 Z
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