aws-sdk-rds 1.143.0 → 1.144.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +100 -1
- data/lib/aws-sdk-rds/client_api.rb +16 -0
- data/lib/aws-sdk-rds/db_cluster.rb +56 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +14 -0
- data/lib/aws-sdk-rds/resource.rb +14 -0
- data/lib/aws-sdk-rds/types.rb +177 -5
- data/lib/aws-sdk-rds.rb +1 -1
- 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: ba73e5eeaa0b00a27c9d11600bdcb34a8e4296ed0ff694bdbacf00e9afc03232
|
4
|
+
data.tar.gz: ba66d3bc8c9acaadc4e3499504124d7f275f1bb60c4cf048d29ac497d2add24a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abf27eca7372bf73fef439b96a4ebad7c4a7a15dd15e1851bdff38883b09d49a4cf4ee2316d7cbd95962894dabb79a2bb65e2b3edbcfbf029f74679b2ab7c0f9
|
7
|
+
data.tar.gz: bc0a60384593085e7762399bb14828437f0035e0dd0f1325609ec18351ce374c678a19d2b01d6f7f6f9bf629367cb62b1d2d6c323a3d90d5f0d76e0a11c92ee1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.144.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2768,6 +2768,17 @@ module Aws::RDS
|
|
2768
2768
|
#
|
2769
2769
|
# Valid for: Multi-AZ DB clusters only
|
2770
2770
|
#
|
2771
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
2772
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
2773
|
+
# cluster.
|
2774
|
+
#
|
2775
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
2776
|
+
# the *Amazon Aurora User Guide*.
|
2777
|
+
#
|
2778
|
+
#
|
2779
|
+
#
|
2780
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
2781
|
+
#
|
2771
2782
|
# @option params [String] :source_region
|
2772
2783
|
# The source region of the snapshot. This is only needed when the
|
2773
2784
|
# shapshot is encrypted and in a different region.
|
@@ -2862,6 +2873,10 @@ module Aws::RDS
|
|
2862
2873
|
# enable_performance_insights: false,
|
2863
2874
|
# performance_insights_kms_key_id: "String",
|
2864
2875
|
# performance_insights_retention_period: 1,
|
2876
|
+
# serverless_v2_scaling_configuration: {
|
2877
|
+
# min_capacity: 1.0,
|
2878
|
+
# max_capacity: 1.0,
|
2879
|
+
# },
|
2865
2880
|
# source_region: "String",
|
2866
2881
|
# })
|
2867
2882
|
#
|
@@ -2967,6 +2982,8 @@ module Aws::RDS
|
|
2967
2982
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
2968
2983
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
2969
2984
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
2985
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
2986
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
2970
2987
|
#
|
2971
2988
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
2972
2989
|
#
|
@@ -6706,6 +6723,8 @@ module Aws::RDS
|
|
6706
6723
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
6707
6724
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
6708
6725
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
6726
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6727
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6709
6728
|
#
|
6710
6729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
6711
6730
|
#
|
@@ -8761,6 +8780,8 @@ module Aws::RDS
|
|
8761
8780
|
# resp.db_clusters[0].performance_insights_enabled #=> Boolean
|
8762
8781
|
# resp.db_clusters[0].performance_insights_kms_key_id #=> String
|
8763
8782
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
8783
|
+
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
8784
|
+
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
8764
8785
|
#
|
8765
8786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
8766
8787
|
#
|
@@ -12499,6 +12520,8 @@ module Aws::RDS
|
|
12499
12520
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
12500
12521
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
12501
12522
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
12523
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
12524
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
12502
12525
|
#
|
12503
12526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
12504
12527
|
#
|
@@ -13486,6 +13509,17 @@ module Aws::RDS
|
|
13486
13509
|
#
|
13487
13510
|
# Valid for: Multi-AZ DB clusters only
|
13488
13511
|
#
|
13512
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
13513
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
13514
|
+
# cluster.
|
13515
|
+
#
|
13516
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
13517
|
+
# the *Amazon Aurora User Guide*.
|
13518
|
+
#
|
13519
|
+
#
|
13520
|
+
#
|
13521
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
13522
|
+
#
|
13489
13523
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13490
13524
|
#
|
13491
13525
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -13557,6 +13591,10 @@ module Aws::RDS
|
|
13557
13591
|
# enable_performance_insights: false,
|
13558
13592
|
# performance_insights_kms_key_id: "String",
|
13559
13593
|
# performance_insights_retention_period: 1,
|
13594
|
+
# serverless_v2_scaling_configuration: {
|
13595
|
+
# min_capacity: 1.0,
|
13596
|
+
# max_capacity: 1.0,
|
13597
|
+
# },
|
13560
13598
|
# })
|
13561
13599
|
#
|
13562
13600
|
# @example Response structure
|
@@ -13661,6 +13699,8 @@ module Aws::RDS
|
|
13661
13699
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
13662
13700
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
13663
13701
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
13702
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
13703
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
13664
13704
|
#
|
13665
13705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
13666
13706
|
#
|
@@ -16346,6 +16386,8 @@ module Aws::RDS
|
|
16346
16386
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
16347
16387
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
16348
16388
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
16389
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
16390
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
16349
16391
|
#
|
16350
16392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
16351
16393
|
#
|
@@ -16586,6 +16628,8 @@ module Aws::RDS
|
|
16586
16628
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
16587
16629
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
16588
16630
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
16631
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
16632
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
16589
16633
|
#
|
16590
16634
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
16591
16635
|
#
|
@@ -17640,6 +17684,17 @@ module Aws::RDS
|
|
17640
17684
|
# Specify the name of the IAM role to be used when making API calls to
|
17641
17685
|
# the Directory Service.
|
17642
17686
|
#
|
17687
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
17688
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
17689
|
+
# cluster.
|
17690
|
+
#
|
17691
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
17692
|
+
# the *Amazon Aurora User Guide*.
|
17693
|
+
#
|
17694
|
+
#
|
17695
|
+
#
|
17696
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
17697
|
+
#
|
17643
17698
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17644
17699
|
#
|
17645
17700
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -17683,6 +17738,10 @@ module Aws::RDS
|
|
17683
17738
|
# copy_tags_to_snapshot: false,
|
17684
17739
|
# domain: "String",
|
17685
17740
|
# domain_iam_role_name: "String",
|
17741
|
+
# serverless_v2_scaling_configuration: {
|
17742
|
+
# min_capacity: 1.0,
|
17743
|
+
# max_capacity: 1.0,
|
17744
|
+
# },
|
17686
17745
|
# })
|
17687
17746
|
#
|
17688
17747
|
# @example Response structure
|
@@ -17787,6 +17846,8 @@ module Aws::RDS
|
|
17787
17846
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
17788
17847
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
17789
17848
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
17849
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
17850
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
17790
17851
|
#
|
17791
17852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
17792
17853
|
#
|
@@ -18215,6 +18276,17 @@ module Aws::RDS
|
|
18215
18276
|
#
|
18216
18277
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18217
18278
|
#
|
18279
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
18280
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18281
|
+
# cluster.
|
18282
|
+
#
|
18283
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18284
|
+
# the *Amazon Aurora User Guide*.
|
18285
|
+
#
|
18286
|
+
#
|
18287
|
+
#
|
18288
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18289
|
+
#
|
18218
18290
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18219
18291
|
#
|
18220
18292
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -18277,6 +18349,10 @@ module Aws::RDS
|
|
18277
18349
|
# storage_type: "String",
|
18278
18350
|
# iops: 1,
|
18279
18351
|
# publicly_accessible: false,
|
18352
|
+
# serverless_v2_scaling_configuration: {
|
18353
|
+
# min_capacity: 1.0,
|
18354
|
+
# max_capacity: 1.0,
|
18355
|
+
# },
|
18280
18356
|
# })
|
18281
18357
|
#
|
18282
18358
|
# @example Response structure
|
@@ -18381,6 +18457,8 @@ module Aws::RDS
|
|
18381
18457
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
18382
18458
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
18383
18459
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
18460
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
18461
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18384
18462
|
#
|
18385
18463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
18386
18464
|
#
|
@@ -18779,6 +18857,17 @@ module Aws::RDS
|
|
18779
18857
|
#
|
18780
18858
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
18781
18859
|
#
|
18860
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
18861
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18862
|
+
# cluster.
|
18863
|
+
#
|
18864
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18865
|
+
# the *Amazon Aurora User Guide*.
|
18866
|
+
#
|
18867
|
+
#
|
18868
|
+
#
|
18869
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18870
|
+
#
|
18782
18871
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18783
18872
|
#
|
18784
18873
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -18840,6 +18929,10 @@ module Aws::RDS
|
|
18840
18929
|
# storage_type: "String",
|
18841
18930
|
# publicly_accessible: false,
|
18842
18931
|
# iops: 1,
|
18932
|
+
# serverless_v2_scaling_configuration: {
|
18933
|
+
# min_capacity: 1.0,
|
18934
|
+
# max_capacity: 1.0,
|
18935
|
+
# },
|
18843
18936
|
# })
|
18844
18937
|
#
|
18845
18938
|
# @example Response structure
|
@@ -18944,6 +19037,8 @@ module Aws::RDS
|
|
18944
19037
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
18945
19038
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
18946
19039
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
19040
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19041
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18947
19042
|
#
|
18948
19043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
18949
19044
|
#
|
@@ -21258,6 +21353,8 @@ module Aws::RDS
|
|
21258
21353
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
21259
21354
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
21260
21355
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
21356
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
21357
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
21261
21358
|
#
|
21262
21359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
21263
21360
|
#
|
@@ -21848,6 +21945,8 @@ module Aws::RDS
|
|
21848
21945
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
21849
21946
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
21850
21947
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
21948
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
21949
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
21851
21950
|
#
|
21852
21951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
21853
21952
|
#
|
@@ -22122,7 +22221,7 @@ module Aws::RDS
|
|
22122
22221
|
params: params,
|
22123
22222
|
config: config)
|
22124
22223
|
context[:gem_name] = 'aws-sdk-rds'
|
22125
|
-
context[:gem_version] = '1.
|
22224
|
+
context[:gem_version] = '1.144.0'
|
22126
22225
|
Seahorse::Client::Request.new(handlers, context)
|
22127
22226
|
end
|
22128
22227
|
|
@@ -535,6 +535,8 @@ module Aws::RDS
|
|
535
535
|
SNSTopicArnNotFoundFault = Shapes::StructureShape.new(name: 'SNSTopicArnNotFoundFault')
|
536
536
|
ScalingConfiguration = Shapes::StructureShape.new(name: 'ScalingConfiguration')
|
537
537
|
ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ScalingConfigurationInfo')
|
538
|
+
ServerlessV2ScalingConfiguration = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfiguration')
|
539
|
+
ServerlessV2ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfigurationInfo')
|
538
540
|
SharedSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SharedSnapshotQuotaExceededFault')
|
539
541
|
SnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SnapshotQuotaExceededFault')
|
540
542
|
SourceIdsList = Shapes::ListShape.new(name: 'SourceIdsList')
|
@@ -846,6 +848,7 @@ module Aws::RDS
|
|
846
848
|
CreateDBClusterMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
847
849
|
CreateDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
848
850
|
CreateDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
851
|
+
CreateDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
849
852
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
850
853
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
851
854
|
|
@@ -1132,6 +1135,7 @@ module Aws::RDS
|
|
1132
1135
|
DBCluster.add_member(:performance_insights_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PerformanceInsightsEnabled"))
|
1133
1136
|
DBCluster.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
1134
1137
|
DBCluster.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
1138
|
+
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
1135
1139
|
DBCluster.struct_class = Types::DBCluster
|
1136
1140
|
|
1137
1141
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -2412,6 +2416,7 @@ module Aws::RDS
|
|
2412
2416
|
ModifyDBClusterMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
2413
2417
|
ModifyDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
2414
2418
|
ModifyDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
2419
|
+
ModifyDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
2415
2420
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
2416
2421
|
|
2417
2422
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
@@ -2980,6 +2985,7 @@ module Aws::RDS
|
|
2980
2985
|
RestoreDBClusterFromS3Message.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
2981
2986
|
RestoreDBClusterFromS3Message.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
2982
2987
|
RestoreDBClusterFromS3Message.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
2988
|
+
RestoreDBClusterFromS3Message.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
2983
2989
|
RestoreDBClusterFromS3Message.struct_class = Types::RestoreDBClusterFromS3Message
|
2984
2990
|
|
2985
2991
|
RestoreDBClusterFromS3Result.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -3011,6 +3017,7 @@ module Aws::RDS
|
|
3011
3017
|
RestoreDBClusterFromSnapshotMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
3012
3018
|
RestoreDBClusterFromSnapshotMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
3013
3019
|
RestoreDBClusterFromSnapshotMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
3020
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
3014
3021
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
3015
3022
|
|
3016
3023
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -3041,6 +3048,7 @@ module Aws::RDS
|
|
3041
3048
|
RestoreDBClusterToPointInTimeMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
3042
3049
|
RestoreDBClusterToPointInTimeMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
3043
3050
|
RestoreDBClusterToPointInTimeMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
3051
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
3044
3052
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
3045
3053
|
|
3046
3054
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -3208,6 +3216,14 @@ module Aws::RDS
|
|
3208
3216
|
ScalingConfigurationInfo.add_member(:seconds_before_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsBeforeTimeout"))
|
3209
3217
|
ScalingConfigurationInfo.struct_class = Types::ScalingConfigurationInfo
|
3210
3218
|
|
3219
|
+
ServerlessV2ScalingConfiguration.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
3220
|
+
ServerlessV2ScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
3221
|
+
ServerlessV2ScalingConfiguration.struct_class = Types::ServerlessV2ScalingConfiguration
|
3222
|
+
|
3223
|
+
ServerlessV2ScalingConfigurationInfo.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
3224
|
+
ServerlessV2ScalingConfigurationInfo.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
3225
|
+
ServerlessV2ScalingConfigurationInfo.struct_class = Types::ServerlessV2ScalingConfigurationInfo
|
3226
|
+
|
3211
3227
|
SharedSnapshotQuotaExceededFault.struct_class = Types::SharedSnapshotQuotaExceededFault
|
3212
3228
|
|
3213
3229
|
SnapshotQuotaExceededFault.struct_class = Types::SnapshotQuotaExceededFault
|
@@ -588,6 +588,20 @@ module Aws::RDS
|
|
588
588
|
data[:performance_insights_retention_period]
|
589
589
|
end
|
590
590
|
|
591
|
+
# Shows the scaling configuration for an Aurora Serverless v2 DB
|
592
|
+
# cluster.
|
593
|
+
#
|
594
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
595
|
+
# the *Amazon Aurora User Guide*.
|
596
|
+
#
|
597
|
+
#
|
598
|
+
#
|
599
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
600
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
601
|
+
def serverless_v2_scaling_configuration
|
602
|
+
data[:serverless_v2_scaling_configuration]
|
603
|
+
end
|
604
|
+
|
591
605
|
# @!endgroup
|
592
606
|
|
593
607
|
# @return [Client]
|
@@ -780,6 +794,10 @@ module Aws::RDS
|
|
780
794
|
# enable_performance_insights: false,
|
781
795
|
# performance_insights_kms_key_id: "String",
|
782
796
|
# performance_insights_retention_period: 1,
|
797
|
+
# serverless_v2_scaling_configuration: {
|
798
|
+
# min_capacity: 1.0,
|
799
|
+
# max_capacity: 1.0,
|
800
|
+
# },
|
783
801
|
# source_region: "String",
|
784
802
|
# })
|
785
803
|
# @param [Hash] options ({})
|
@@ -1435,6 +1453,16 @@ module Aws::RDS
|
|
1435
1453
|
# Valid values are 7 or 731 (2 years).
|
1436
1454
|
#
|
1437
1455
|
# Valid for: Multi-AZ DB clusters only
|
1456
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
1457
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
1458
|
+
# cluster.
|
1459
|
+
#
|
1460
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
1461
|
+
# the *Amazon Aurora User Guide*.
|
1462
|
+
#
|
1463
|
+
#
|
1464
|
+
#
|
1465
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
1438
1466
|
# @option options [String] :source_region
|
1439
1467
|
# The source region of the snapshot. This is only needed when the
|
1440
1468
|
# shapshot is encrypted and in a different region.
|
@@ -1606,6 +1634,10 @@ module Aws::RDS
|
|
1606
1634
|
# enable_performance_insights: false,
|
1607
1635
|
# performance_insights_kms_key_id: "String",
|
1608
1636
|
# performance_insights_retention_period: 1,
|
1637
|
+
# serverless_v2_scaling_configuration: {
|
1638
|
+
# min_capacity: 1.0,
|
1639
|
+
# max_capacity: 1.0,
|
1640
|
+
# },
|
1609
1641
|
# })
|
1610
1642
|
# @param [Hash] options ({})
|
1611
1643
|
# @option options [String] :new_db_cluster_identifier
|
@@ -2038,6 +2070,16 @@ module Aws::RDS
|
|
2038
2070
|
# Valid values are 7 or 731 (2 years).
|
2039
2071
|
#
|
2040
2072
|
# Valid for: Multi-AZ DB clusters only
|
2073
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
2074
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
2075
|
+
# cluster.
|
2076
|
+
#
|
2077
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
2078
|
+
# the *Amazon Aurora User Guide*.
|
2079
|
+
#
|
2080
|
+
#
|
2081
|
+
#
|
2082
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
2041
2083
|
# @return [DBCluster]
|
2042
2084
|
def modify(options = {})
|
2043
2085
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -2088,6 +2130,10 @@ module Aws::RDS
|
|
2088
2130
|
# storage_type: "String",
|
2089
2131
|
# publicly_accessible: false,
|
2090
2132
|
# iops: 1,
|
2133
|
+
# serverless_v2_scaling_configuration: {
|
2134
|
+
# min_capacity: 1.0,
|
2135
|
+
# max_capacity: 1.0,
|
2136
|
+
# },
|
2091
2137
|
# })
|
2092
2138
|
# @param [Hash] options ({})
|
2093
2139
|
# @option options [required, String] :db_cluster_identifier
|
@@ -2414,6 +2460,16 @@ module Aws::RDS
|
|
2414
2460
|
#
|
2415
2461
|
#
|
2416
2462
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
2463
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
2464
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
2465
|
+
# cluster.
|
2466
|
+
#
|
2467
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
2468
|
+
# the *Amazon Aurora User Guide*.
|
2469
|
+
#
|
2470
|
+
#
|
2471
|
+
#
|
2472
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
2417
2473
|
# @return [DBCluster]
|
2418
2474
|
def restore(options = {})
|
2419
2475
|
options = options.merge(source_db_cluster_identifier: @id)
|
@@ -541,6 +541,10 @@ module Aws::RDS
|
|
541
541
|
# storage_type: "String",
|
542
542
|
# iops: 1,
|
543
543
|
# publicly_accessible: false,
|
544
|
+
# serverless_v2_scaling_configuration: {
|
545
|
+
# min_capacity: 1.0,
|
546
|
+
# max_capacity: 1.0,
|
547
|
+
# },
|
544
548
|
# })
|
545
549
|
# @param [Hash] options ({})
|
546
550
|
# @option options [Array<String>] :availability_zones
|
@@ -893,6 +897,16 @@ module Aws::RDS
|
|
893
897
|
# attached to it, the DB cluster is public.
|
894
898
|
#
|
895
899
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
900
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
901
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
902
|
+
# cluster.
|
903
|
+
#
|
904
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
905
|
+
# the *Amazon Aurora User Guide*.
|
906
|
+
#
|
907
|
+
#
|
908
|
+
#
|
909
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
896
910
|
# @return [DBCluster]
|
897
911
|
def restore(options = {})
|
898
912
|
options = options.merge(snapshot_identifier: @snapshot_id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -94,6 +94,10 @@ module Aws::RDS
|
|
94
94
|
# enable_performance_insights: false,
|
95
95
|
# performance_insights_kms_key_id: "String",
|
96
96
|
# performance_insights_retention_period: 1,
|
97
|
+
# serverless_v2_scaling_configuration: {
|
98
|
+
# min_capacity: 1.0,
|
99
|
+
# max_capacity: 1.0,
|
100
|
+
# },
|
97
101
|
# source_region: "String",
|
98
102
|
# })
|
99
103
|
# @param [Hash] options ({})
|
@@ -764,6 +768,16 @@ module Aws::RDS
|
|
764
768
|
# Valid values are 7 or 731 (2 years).
|
765
769
|
#
|
766
770
|
# Valid for: Multi-AZ DB clusters only
|
771
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
772
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
773
|
+
# cluster.
|
774
|
+
#
|
775
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
776
|
+
# the *Amazon Aurora User Guide*.
|
777
|
+
#
|
778
|
+
#
|
779
|
+
#
|
780
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
767
781
|
# @option options [String] :source_region
|
768
782
|
# The source region of the snapshot. This is only needed when the
|
769
783
|
# shapshot is encrypted and in a different region.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1862,6 +1862,10 @@ module Aws::RDS
|
|
1862
1862
|
# enable_performance_insights: false,
|
1863
1863
|
# performance_insights_kms_key_id: "String",
|
1864
1864
|
# performance_insights_retention_period: 1,
|
1865
|
+
# serverless_v2_scaling_configuration: {
|
1866
|
+
# min_capacity: 1.0,
|
1867
|
+
# max_capacity: 1.0,
|
1868
|
+
# },
|
1865
1869
|
# source_region: "String",
|
1866
1870
|
# }
|
1867
1871
|
#
|
@@ -2624,6 +2628,18 @@ module Aws::RDS
|
|
2624
2628
|
# Valid for: Multi-AZ DB clusters only
|
2625
2629
|
# @return [Integer]
|
2626
2630
|
#
|
2631
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
2632
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
2633
|
+
# cluster.
|
2634
|
+
#
|
2635
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
2636
|
+
# the *Amazon Aurora User Guide*.
|
2637
|
+
#
|
2638
|
+
#
|
2639
|
+
#
|
2640
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
2641
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
2642
|
+
#
|
2627
2643
|
# @!attribute [rw] source_region
|
2628
2644
|
# The source region of the snapshot. This is only needed when the
|
2629
2645
|
# shapshot is encrypted and in a different region.
|
@@ -2676,6 +2692,7 @@ module Aws::RDS
|
|
2676
2692
|
:enable_performance_insights,
|
2677
2693
|
:performance_insights_kms_key_id,
|
2678
2694
|
:performance_insights_retention_period,
|
2695
|
+
:serverless_v2_scaling_configuration,
|
2679
2696
|
:source_region)
|
2680
2697
|
SENSITIVE = []
|
2681
2698
|
include Aws::Structure
|
@@ -6086,6 +6103,18 @@ module Aws::RDS
|
|
6086
6103
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
6087
6104
|
# @return [Integer]
|
6088
6105
|
#
|
6106
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
6107
|
+
# Shows the scaling configuration for an Aurora Serverless v2 DB
|
6108
|
+
# cluster.
|
6109
|
+
#
|
6110
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
6111
|
+
# the *Amazon Aurora User Guide*.
|
6112
|
+
#
|
6113
|
+
#
|
6114
|
+
#
|
6115
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
6116
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
6117
|
+
#
|
6089
6118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
6090
6119
|
#
|
6091
6120
|
class DBCluster < Struct.new(
|
@@ -6155,7 +6184,8 @@ module Aws::RDS
|
|
6155
6184
|
:monitoring_role_arn,
|
6156
6185
|
:performance_insights_enabled,
|
6157
6186
|
:performance_insights_kms_key_id,
|
6158
|
-
:performance_insights_retention_period
|
6187
|
+
:performance_insights_retention_period,
|
6188
|
+
:serverless_v2_scaling_configuration)
|
6159
6189
|
SENSITIVE = []
|
6160
6190
|
include Aws::Structure
|
6161
6191
|
end
|
@@ -14453,6 +14483,10 @@ module Aws::RDS
|
|
14453
14483
|
# enable_performance_insights: false,
|
14454
14484
|
# performance_insights_kms_key_id: "String",
|
14455
14485
|
# performance_insights_retention_period: 1,
|
14486
|
+
# serverless_v2_scaling_configuration: {
|
14487
|
+
# min_capacity: 1.0,
|
14488
|
+
# max_capacity: 1.0,
|
14489
|
+
# },
|
14456
14490
|
# }
|
14457
14491
|
#
|
14458
14492
|
# @!attribute [rw] db_cluster_identifier
|
@@ -14966,6 +15000,18 @@ module Aws::RDS
|
|
14966
15000
|
# Valid for: Multi-AZ DB clusters only
|
14967
15001
|
# @return [Integer]
|
14968
15002
|
#
|
15003
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
15004
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
15005
|
+
# cluster.
|
15006
|
+
#
|
15007
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
15008
|
+
# the *Amazon Aurora User Guide*.
|
15009
|
+
#
|
15010
|
+
#
|
15011
|
+
#
|
15012
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
15013
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
15014
|
+
#
|
14969
15015
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
14970
15016
|
#
|
14971
15017
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -15002,7 +15048,8 @@ module Aws::RDS
|
|
15002
15048
|
:monitoring_role_arn,
|
15003
15049
|
:enable_performance_insights,
|
15004
15050
|
:performance_insights_kms_key_id,
|
15005
|
-
:performance_insights_retention_period
|
15051
|
+
:performance_insights_retention_period,
|
15052
|
+
:serverless_v2_scaling_configuration)
|
15006
15053
|
SENSITIVE = []
|
15007
15054
|
include Aws::Structure
|
15008
15055
|
end
|
@@ -19088,6 +19135,10 @@ module Aws::RDS
|
|
19088
19135
|
# copy_tags_to_snapshot: false,
|
19089
19136
|
# domain: "String",
|
19090
19137
|
# domain_iam_role_name: "String",
|
19138
|
+
# serverless_v2_scaling_configuration: {
|
19139
|
+
# min_capacity: 1.0,
|
19140
|
+
# max_capacity: 1.0,
|
19141
|
+
# },
|
19091
19142
|
# }
|
19092
19143
|
#
|
19093
19144
|
# @!attribute [rw] availability_zones
|
@@ -19427,6 +19478,18 @@ module Aws::RDS
|
|
19427
19478
|
# the Directory Service.
|
19428
19479
|
# @return [String]
|
19429
19480
|
#
|
19481
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
19482
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
19483
|
+
# cluster.
|
19484
|
+
#
|
19485
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
19486
|
+
# the *Amazon Aurora User Guide*.
|
19487
|
+
#
|
19488
|
+
#
|
19489
|
+
#
|
19490
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
19491
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
19492
|
+
#
|
19430
19493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
19431
19494
|
#
|
19432
19495
|
class RestoreDBClusterFromS3Message < Struct.new(
|
@@ -19460,7 +19523,8 @@ module Aws::RDS
|
|
19460
19523
|
:deletion_protection,
|
19461
19524
|
:copy_tags_to_snapshot,
|
19462
19525
|
:domain,
|
19463
|
-
:domain_iam_role_name
|
19526
|
+
:domain_iam_role_name,
|
19527
|
+
:serverless_v2_scaling_configuration)
|
19464
19528
|
SENSITIVE = []
|
19465
19529
|
include Aws::Structure
|
19466
19530
|
end
|
@@ -19546,6 +19610,10 @@ module Aws::RDS
|
|
19546
19610
|
# storage_type: "String",
|
19547
19611
|
# iops: 1,
|
19548
19612
|
# publicly_accessible: false,
|
19613
|
+
# serverless_v2_scaling_configuration: {
|
19614
|
+
# min_capacity: 1.0,
|
19615
|
+
# max_capacity: 1.0,
|
19616
|
+
# },
|
19549
19617
|
# }
|
19550
19618
|
#
|
19551
19619
|
# @!attribute [rw] availability_zones
|
@@ -19971,6 +20039,18 @@ module Aws::RDS
|
|
19971
20039
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
19972
20040
|
# @return [Boolean]
|
19973
20041
|
#
|
20042
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
20043
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
20044
|
+
# cluster.
|
20045
|
+
#
|
20046
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
20047
|
+
# the *Amazon Aurora User Guide*.
|
20048
|
+
#
|
20049
|
+
#
|
20050
|
+
#
|
20051
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
20052
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
20053
|
+
#
|
19974
20054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
19975
20055
|
#
|
19976
20056
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -19999,7 +20079,8 @@ module Aws::RDS
|
|
19999
20079
|
:db_cluster_instance_class,
|
20000
20080
|
:storage_type,
|
20001
20081
|
:iops,
|
20002
|
-
:publicly_accessible
|
20082
|
+
:publicly_accessible,
|
20083
|
+
:serverless_v2_scaling_configuration)
|
20003
20084
|
SENSITIVE = []
|
20004
20085
|
include Aws::Structure
|
20005
20086
|
end
|
@@ -20084,6 +20165,10 @@ module Aws::RDS
|
|
20084
20165
|
# storage_type: "String",
|
20085
20166
|
# publicly_accessible: false,
|
20086
20167
|
# iops: 1,
|
20168
|
+
# serverless_v2_scaling_configuration: {
|
20169
|
+
# min_capacity: 1.0,
|
20170
|
+
# max_capacity: 1.0,
|
20171
|
+
# },
|
20087
20172
|
# }
|
20088
20173
|
#
|
20089
20174
|
# @!attribute [rw] db_cluster_identifier
|
@@ -20472,6 +20557,18 @@ module Aws::RDS
|
|
20472
20557
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
20473
20558
|
# @return [Integer]
|
20474
20559
|
#
|
20560
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
20561
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
20562
|
+
# cluster.
|
20563
|
+
#
|
20564
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
20565
|
+
# the *Amazon Aurora User Guide*.
|
20566
|
+
#
|
20567
|
+
#
|
20568
|
+
#
|
20569
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
20570
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
20571
|
+
#
|
20475
20572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
20476
20573
|
#
|
20477
20574
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -20499,7 +20596,8 @@ module Aws::RDS
|
|
20499
20596
|
:db_cluster_instance_class,
|
20500
20597
|
:storage_type,
|
20501
20598
|
:publicly_accessible,
|
20502
|
-
:iops
|
20599
|
+
:iops,
|
20600
|
+
:serverless_v2_scaling_configuration)
|
20503
20601
|
SENSITIVE = []
|
20504
20602
|
include Aws::Structure
|
20505
20603
|
end
|
@@ -22457,6 +22555,80 @@ module Aws::RDS
|
|
22457
22555
|
include Aws::Structure
|
22458
22556
|
end
|
22459
22557
|
|
22558
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
22559
|
+
# cluster.
|
22560
|
+
#
|
22561
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
22562
|
+
# the *Amazon Aurora User Guide*.
|
22563
|
+
#
|
22564
|
+
#
|
22565
|
+
#
|
22566
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
22567
|
+
#
|
22568
|
+
# @note When making an API call, you may pass ServerlessV2ScalingConfiguration
|
22569
|
+
# data as a hash:
|
22570
|
+
#
|
22571
|
+
# {
|
22572
|
+
# min_capacity: 1.0,
|
22573
|
+
# max_capacity: 1.0,
|
22574
|
+
# }
|
22575
|
+
#
|
22576
|
+
# @!attribute [rw] min_capacity
|
22577
|
+
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
22578
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22579
|
+
# half-step increments, such as 8, 8.5, 9, and so on. The smallest
|
22580
|
+
# value that you can use is 0.5.
|
22581
|
+
# @return [Float]
|
22582
|
+
#
|
22583
|
+
# @!attribute [rw] max_capacity
|
22584
|
+
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
22585
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22586
|
+
# half-step increments, such as 40, 40.5, 41, and so on. The largest
|
22587
|
+
# value that you can use is 128.
|
22588
|
+
# @return [Float]
|
22589
|
+
#
|
22590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfiguration AWS API Documentation
|
22591
|
+
#
|
22592
|
+
class ServerlessV2ScalingConfiguration < Struct.new(
|
22593
|
+
:min_capacity,
|
22594
|
+
:max_capacity)
|
22595
|
+
SENSITIVE = []
|
22596
|
+
include Aws::Structure
|
22597
|
+
end
|
22598
|
+
|
22599
|
+
# Shows the scaling configuration for an Aurora Serverless v2 DB
|
22600
|
+
# cluster.
|
22601
|
+
#
|
22602
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
22603
|
+
# the *Amazon Aurora User Guide*.
|
22604
|
+
#
|
22605
|
+
#
|
22606
|
+
#
|
22607
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
22608
|
+
#
|
22609
|
+
# @!attribute [rw] min_capacity
|
22610
|
+
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
22611
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22612
|
+
# half-step increments, such as 8, 8.5, 9, and so on. The smallest
|
22613
|
+
# value that you can use is 0.5.
|
22614
|
+
# @return [Float]
|
22615
|
+
#
|
22616
|
+
# @!attribute [rw] max_capacity
|
22617
|
+
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
22618
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22619
|
+
# half-step increments, such as 40, 40.5, 41, and so on. The largest
|
22620
|
+
# value that you can use is 128.
|
22621
|
+
# @return [Float]
|
22622
|
+
#
|
22623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfigurationInfo AWS API Documentation
|
22624
|
+
#
|
22625
|
+
class ServerlessV2ScalingConfigurationInfo < Struct.new(
|
22626
|
+
:min_capacity,
|
22627
|
+
:max_capacity)
|
22628
|
+
SENSITIVE = []
|
22629
|
+
include Aws::Structure
|
22630
|
+
end
|
22631
|
+
|
22460
22632
|
# You have exceeded the maximum number of accounts that you can share a
|
22461
22633
|
# manual DB snapshot with.
|
22462
22634
|
#
|
data/lib/aws-sdk-rds.rb
CHANGED
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.144.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: 2022-04-
|
11
|
+
date: 2022-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|