aws-sdk-rds 1.259.0 → 1.261.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 +100 -15
- data/lib/aws-sdk-rds/client_api.rb +14 -0
- data/lib/aws-sdk-rds/db_cluster.rb +15 -3
- data/lib/aws-sdk-rds/db_instance.rb +15 -0
- data/lib/aws-sdk-rds/resource.rb +6 -0
- data/lib/aws-sdk-rds/types.rb +85 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +11 -1
- data/sig/db_cluster.rbs +5 -0
- data/sig/db_instance.rbs +6 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +12 -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: 7fc3f448f2c2dd6d030832f1ba2c24add093d786d281932240ca8326ed8f0f8c
|
|
4
|
+
data.tar.gz: 77da9d110e4f7bae28fd5799da831c66217e2c0069b0922d2759d818303c8637
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd9151882c73c5554d4392cbe68b2d594909e81a336d918216c4e71191594a38be970ec840be561d37eb14b561f439347eb1342994d28d7af483be9adb21bae1
|
|
7
|
+
data.tar.gz: 62108ffb203717200cb813967696d92d2d4d231942713c22eb0b3cbe4f96abcef2c6030324b2ef73ec441ec47673e218437b467472fae8401f7540fb033e496c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.261.0 (2024-12-02)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon RDS supports CloudWatch Database Insights. You can use the SDK to create, modify, and describe the DatabaseInsightsMode for your DB instances and clusters.
|
|
8
|
+
|
|
9
|
+
1.260.0 (2024-11-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for scale storage on the DB instance using a Blue/Green Deployment.
|
|
13
|
+
|
|
4
14
|
1.259.0 (2024-11-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.261.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -2075,9 +2075,8 @@ module Aws::RDS
|
|
|
2075
2075
|
# A blue/green deployment creates a staging environment that copies the
|
|
2076
2076
|
# production environment. In a blue/green deployment, the blue
|
|
2077
2077
|
# environment is the current production environment. The green
|
|
2078
|
-
# environment is the staging environment
|
|
2079
|
-
#
|
|
2080
|
-
# replication.
|
|
2078
|
+
# environment is the staging environment, and it stays in sync with the
|
|
2079
|
+
# current production environment.
|
|
2081
2080
|
#
|
|
2082
2081
|
# You can make changes to the databases in the green environment without
|
|
2083
2082
|
# affecting production workloads. For example, you can upgrade the major
|
|
@@ -2160,6 +2159,39 @@ module Aws::RDS
|
|
|
2160
2159
|
#
|
|
2161
2160
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
|
2162
2161
|
#
|
|
2162
|
+
# @option params [Integer] :target_iops
|
|
2163
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
|
2164
|
+
# allocate for the green DB instance. For information about valid IOPS
|
|
2165
|
+
# values, see [Amazon RDS DB instance storage][1] in the *Amazon RDS
|
|
2166
|
+
# User Guide*.
|
|
2167
|
+
#
|
|
2168
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
2169
|
+
#
|
|
2170
|
+
#
|
|
2171
|
+
#
|
|
2172
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
|
2173
|
+
#
|
|
2174
|
+
# @option params [String] :target_storage_type
|
|
2175
|
+
# The storage type to associate with the green DB instance.
|
|
2176
|
+
#
|
|
2177
|
+
# Valid Values: `gp2 | gp3 | io1 | io2`
|
|
2178
|
+
#
|
|
2179
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
2180
|
+
#
|
|
2181
|
+
# @option params [Integer] :target_allocated_storage
|
|
2182
|
+
# The amount of storage in gibibytes (GiB) to allocate for the green DB
|
|
2183
|
+
# instance. You can choose to increase or decrease the allocated storage
|
|
2184
|
+
# on the green DB instance.
|
|
2185
|
+
#
|
|
2186
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
2187
|
+
#
|
|
2188
|
+
# @option params [Integer] :target_storage_throughput
|
|
2189
|
+
# The storage throughput value for the green DB instance.
|
|
2190
|
+
#
|
|
2191
|
+
# This setting applies only to the `gp3` storage type.
|
|
2192
|
+
#
|
|
2193
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
2194
|
+
#
|
|
2163
2195
|
# @return [Types::CreateBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2164
2196
|
#
|
|
2165
2197
|
# * {Types::CreateBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
|
|
@@ -2302,6 +2334,10 @@ module Aws::RDS
|
|
|
2302
2334
|
# ],
|
|
2303
2335
|
# target_db_instance_class: "TargetDBInstanceClass",
|
|
2304
2336
|
# upgrade_target_storage_config: false,
|
|
2337
|
+
# target_iops: 1,
|
|
2338
|
+
# target_storage_type: "TargetStorageType",
|
|
2339
|
+
# target_allocated_storage: 1,
|
|
2340
|
+
# target_storage_throughput: 1,
|
|
2305
2341
|
# })
|
|
2306
2342
|
#
|
|
2307
2343
|
# @example Response structure
|
|
@@ -3320,6 +3356,9 @@ module Aws::RDS
|
|
|
3320
3356
|
#
|
|
3321
3357
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
3322
3358
|
#
|
|
3359
|
+
# @option params [String] :database_insights_mode
|
|
3360
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
3361
|
+
#
|
|
3323
3362
|
# @option params [Boolean] :enable_performance_insights
|
|
3324
3363
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
|
3325
3364
|
#
|
|
@@ -3722,6 +3761,7 @@ module Aws::RDS
|
|
|
3722
3761
|
# auto_minor_version_upgrade: false,
|
|
3723
3762
|
# monitoring_interval: 1,
|
|
3724
3763
|
# monitoring_role_arn: "String",
|
|
3764
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
3725
3765
|
# enable_performance_insights: false,
|
|
3726
3766
|
# performance_insights_kms_key_id: "String",
|
|
3727
3767
|
# performance_insights_retention_period: 1,
|
|
@@ -3862,6 +3902,7 @@ module Aws::RDS
|
|
|
3862
3902
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
3863
3903
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
3864
3904
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
3905
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
3865
3906
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
3866
3907
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
3867
3908
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -5317,6 +5358,9 @@ module Aws::RDS
|
|
|
5317
5358
|
#
|
|
5318
5359
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
5319
5360
|
#
|
|
5361
|
+
# @option params [String] :database_insights_mode
|
|
5362
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
5363
|
+
#
|
|
5320
5364
|
# @option params [Boolean] :enable_performance_insights
|
|
5321
5365
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
5322
5366
|
# For more information, see [Using Amazon Performance Insights][1] in
|
|
@@ -5802,6 +5846,7 @@ module Aws::RDS
|
|
|
5802
5846
|
# promotion_tier: 1,
|
|
5803
5847
|
# timezone: "String",
|
|
5804
5848
|
# enable_iam_database_authentication: false,
|
|
5849
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
5805
5850
|
# enable_performance_insights: false,
|
|
5806
5851
|
# performance_insights_kms_key_id: "String",
|
|
5807
5852
|
# performance_insights_retention_period: 1,
|
|
@@ -5943,6 +5988,7 @@ module Aws::RDS
|
|
|
5943
5988
|
# resp.db_instance.db_instance_arn #=> String
|
|
5944
5989
|
# resp.db_instance.timezone #=> String
|
|
5945
5990
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
5991
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
5946
5992
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
5947
5993
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
5948
5994
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -6380,6 +6426,9 @@ module Aws::RDS
|
|
|
6380
6426
|
#
|
|
6381
6427
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
6382
6428
|
#
|
|
6429
|
+
# @option params [String] :database_insights_mode
|
|
6430
|
+
# Specifies the mode of Database Insights.
|
|
6431
|
+
#
|
|
6383
6432
|
# @option params [Boolean] :enable_performance_insights
|
|
6384
6433
|
# Specifies whether to enable Performance Insights for the read replica.
|
|
6385
6434
|
#
|
|
@@ -6744,6 +6793,7 @@ module Aws::RDS
|
|
|
6744
6793
|
# kms_key_id: "String",
|
|
6745
6794
|
# pre_signed_url: "String",
|
|
6746
6795
|
# enable_iam_database_authentication: false,
|
|
6796
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
6747
6797
|
# enable_performance_insights: false,
|
|
6748
6798
|
# performance_insights_kms_key_id: "String",
|
|
6749
6799
|
# performance_insights_retention_period: 1,
|
|
@@ -6891,6 +6941,7 @@ module Aws::RDS
|
|
|
6891
6941
|
# resp.db_instance.db_instance_arn #=> String
|
|
6892
6942
|
# resp.db_instance.timezone #=> String
|
|
6893
6943
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
6944
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
6894
6945
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
6895
6946
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
6896
6947
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -9233,6 +9284,7 @@ module Aws::RDS
|
|
|
9233
9284
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
9234
9285
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
9235
9286
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
9287
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
9236
9288
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
9237
9289
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
9238
9290
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -9809,6 +9861,7 @@ module Aws::RDS
|
|
|
9809
9861
|
# resp.db_instance.db_instance_arn #=> String
|
|
9810
9862
|
# resp.db_instance.timezone #=> String
|
|
9811
9863
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
9864
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
9812
9865
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
9813
9866
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
9814
9867
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -12677,6 +12730,7 @@ module Aws::RDS
|
|
|
12677
12730
|
# resp.db_clusters[0].auto_minor_version_upgrade #=> Boolean
|
|
12678
12731
|
# resp.db_clusters[0].monitoring_interval #=> Integer
|
|
12679
12732
|
# resp.db_clusters[0].monitoring_role_arn #=> String
|
|
12733
|
+
# resp.db_clusters[0].database_insights_mode #=> String, one of "standard", "advanced"
|
|
12680
12734
|
# resp.db_clusters[0].performance_insights_enabled #=> Boolean
|
|
12681
12735
|
# resp.db_clusters[0].performance_insights_kms_key_id #=> String
|
|
12682
12736
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
|
@@ -13394,6 +13448,7 @@ module Aws::RDS
|
|
|
13394
13448
|
# resp.db_instances[0].db_instance_arn #=> String
|
|
13395
13449
|
# resp.db_instances[0].timezone #=> String
|
|
13396
13450
|
# resp.db_instances[0].iam_database_authentication_enabled #=> Boolean
|
|
13451
|
+
# resp.db_instances[0].database_insights_mode #=> String, one of "standard", "advanced"
|
|
13397
13452
|
# resp.db_instances[0].performance_insights_enabled #=> Boolean
|
|
13398
13453
|
# resp.db_instances[0].performance_insights_kms_key_id #=> String
|
|
13399
13454
|
# resp.db_instances[0].performance_insights_retention_period #=> Integer
|
|
@@ -17609,10 +17664,10 @@ module Aws::RDS
|
|
|
17609
17664
|
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
17610
17665
|
# Aurora User Guide*.
|
|
17611
17666
|
#
|
|
17612
|
-
# <note markdown="1"> This operation applies only to Aurora
|
|
17613
|
-
#
|
|
17614
|
-
#
|
|
17615
|
-
#
|
|
17667
|
+
# <note markdown="1"> This operation applies only to Aurora Serverless v2 and provisioned DB
|
|
17668
|
+
# clusters. To disable the HTTP endpoint for Aurora Serverless v1 DB
|
|
17669
|
+
# clusters, use the `EnableHttpEndpoint` parameter of the
|
|
17670
|
+
# `ModifyDBCluster` operation.
|
|
17616
17671
|
#
|
|
17617
17672
|
# </note>
|
|
17618
17673
|
#
|
|
@@ -17754,10 +17809,10 @@ module Aws::RDS
|
|
|
17754
17809
|
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
17755
17810
|
# Aurora User Guide*.
|
|
17756
17811
|
#
|
|
17757
|
-
# <note markdown="1"> This operation applies only to Aurora
|
|
17758
|
-
#
|
|
17759
|
-
#
|
|
17760
|
-
#
|
|
17812
|
+
# <note markdown="1"> This operation applies only to Aurora Serverless v2 and provisioned DB
|
|
17813
|
+
# clusters. To enable the HTTP endpoint for Aurora Serverless v1 DB
|
|
17814
|
+
# clusters, use the `EnableHttpEndpoint` parameter of the
|
|
17815
|
+
# `ModifyDBCluster` operation.
|
|
17761
17816
|
#
|
|
17762
17817
|
# </note>
|
|
17763
17818
|
#
|
|
@@ -17993,6 +18048,7 @@ module Aws::RDS
|
|
|
17993
18048
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
17994
18049
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
17995
18050
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
18051
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
17996
18052
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
17997
18053
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
17998
18054
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -19059,9 +19115,9 @@ module Aws::RDS
|
|
|
19059
19115
|
# Aurora User Guide*.
|
|
19060
19116
|
#
|
|
19061
19117
|
# <note markdown="1"> This parameter applies only to Aurora Serverless v1 DB clusters. To
|
|
19062
|
-
# enable or disable the HTTP endpoint for an Aurora
|
|
19063
|
-
#
|
|
19064
|
-
#
|
|
19118
|
+
# enable or disable the HTTP endpoint for an Aurora Serverless v2 or
|
|
19119
|
+
# provisioned DB cluster, use the `EnableHttpEndpoint` and
|
|
19120
|
+
# `DisableHttpEndpoint` operations.
|
|
19065
19121
|
#
|
|
19066
19122
|
# </note>
|
|
19067
19123
|
#
|
|
@@ -19202,6 +19258,9 @@ module Aws::RDS
|
|
|
19202
19258
|
#
|
|
19203
19259
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
|
19204
19260
|
#
|
|
19261
|
+
# @option params [String] :database_insights_mode
|
|
19262
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
19263
|
+
#
|
|
19205
19264
|
# @option params [Boolean] :enable_performance_insights
|
|
19206
19265
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
|
19207
19266
|
#
|
|
@@ -19557,6 +19616,7 @@ module Aws::RDS
|
|
|
19557
19616
|
# auto_minor_version_upgrade: false,
|
|
19558
19617
|
# monitoring_interval: 1,
|
|
19559
19618
|
# monitoring_role_arn: "String",
|
|
19619
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
19560
19620
|
# enable_performance_insights: false,
|
|
19561
19621
|
# performance_insights_kms_key_id: "String",
|
|
19562
19622
|
# performance_insights_retention_period: 1,
|
|
@@ -19697,6 +19757,7 @@ module Aws::RDS
|
|
|
19697
19757
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
19698
19758
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
19699
19759
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
19760
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
19700
19761
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
19701
19762
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
19702
19763
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -20809,6 +20870,9 @@ module Aws::RDS
|
|
|
20809
20870
|
#
|
|
20810
20871
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
20811
20872
|
#
|
|
20873
|
+
# @option params [String] :database_insights_mode
|
|
20874
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
20875
|
+
#
|
|
20812
20876
|
# @option params [Boolean] :enable_performance_insights
|
|
20813
20877
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
20814
20878
|
#
|
|
@@ -21258,6 +21322,7 @@ module Aws::RDS
|
|
|
21258
21322
|
# disable_domain: false,
|
|
21259
21323
|
# promotion_tier: 1,
|
|
21260
21324
|
# enable_iam_database_authentication: false,
|
|
21325
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
21261
21326
|
# enable_performance_insights: false,
|
|
21262
21327
|
# performance_insights_kms_key_id: "String",
|
|
21263
21328
|
# performance_insights_retention_period: 1,
|
|
@@ -21405,6 +21470,7 @@ module Aws::RDS
|
|
|
21405
21470
|
# resp.db_instance.db_instance_arn #=> String
|
|
21406
21471
|
# resp.db_instance.timezone #=> String
|
|
21407
21472
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
21473
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
21408
21474
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
21409
21475
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
21410
21476
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -23222,6 +23288,7 @@ module Aws::RDS
|
|
|
23222
23288
|
# resp.db_instance.db_instance_arn #=> String
|
|
23223
23289
|
# resp.db_instance.timezone #=> String
|
|
23224
23290
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
23291
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23225
23292
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
23226
23293
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
23227
23294
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -23424,6 +23491,7 @@ module Aws::RDS
|
|
|
23424
23491
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
23425
23492
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
23426
23493
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
23494
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23427
23495
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
23428
23496
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
23429
23497
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -23726,6 +23794,7 @@ module Aws::RDS
|
|
|
23726
23794
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
23727
23795
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
23728
23796
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
23797
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23729
23798
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
23730
23799
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
23731
23800
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -23945,6 +24014,7 @@ module Aws::RDS
|
|
|
23945
24014
|
# resp.db_instance.db_instance_arn #=> String
|
|
23946
24015
|
# resp.db_instance.timezone #=> String
|
|
23947
24016
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
24017
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23948
24018
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
23949
24019
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
23950
24020
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -25316,6 +25386,7 @@ module Aws::RDS
|
|
|
25316
25386
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
25317
25387
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
25318
25388
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
25389
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
25319
25390
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
25320
25391
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
25321
25392
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -26137,6 +26208,7 @@ module Aws::RDS
|
|
|
26137
26208
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
26138
26209
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
26139
26210
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
26211
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
26140
26212
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
26141
26213
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
26142
26214
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -26937,6 +27009,7 @@ module Aws::RDS
|
|
|
26937
27009
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
26938
27010
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
26939
27011
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
27012
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
26940
27013
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
26941
27014
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
26942
27015
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -27801,6 +27874,7 @@ module Aws::RDS
|
|
|
27801
27874
|
# resp.db_instance.db_instance_arn #=> String
|
|
27802
27875
|
# resp.db_instance.timezone #=> String
|
|
27803
27876
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
27877
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
27804
27878
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
27805
27879
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
27806
27880
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -28210,6 +28284,9 @@ module Aws::RDS
|
|
|
28210
28284
|
#
|
|
28211
28285
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM
|
|
28212
28286
|
#
|
|
28287
|
+
# @option params [String] :database_insights_mode
|
|
28288
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
28289
|
+
#
|
|
28213
28290
|
# @option params [Boolean] :enable_performance_insights
|
|
28214
28291
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
28215
28292
|
#
|
|
@@ -28462,6 +28539,7 @@ module Aws::RDS
|
|
|
28462
28539
|
# s3_bucket_name: "String", # required
|
|
28463
28540
|
# s3_prefix: "String",
|
|
28464
28541
|
# s3_ingestion_role_arn: "String", # required
|
|
28542
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
28465
28543
|
# enable_performance_insights: false,
|
|
28466
28544
|
# performance_insights_kms_key_id: "String",
|
|
28467
28545
|
# performance_insights_retention_period: 1,
|
|
@@ -28599,6 +28677,7 @@ module Aws::RDS
|
|
|
28599
28677
|
# resp.db_instance.db_instance_arn #=> String
|
|
28600
28678
|
# resp.db_instance.timezone #=> String
|
|
28601
28679
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
28680
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
28602
28681
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
28603
28682
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
28604
28683
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -29556,6 +29635,7 @@ module Aws::RDS
|
|
|
29556
29635
|
# resp.db_instance.db_instance_arn #=> String
|
|
29557
29636
|
# resp.db_instance.timezone #=> String
|
|
29558
29637
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
29638
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
29559
29639
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
29560
29640
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
29561
29641
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -29986,6 +30066,7 @@ module Aws::RDS
|
|
|
29986
30066
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
29987
30067
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
29988
30068
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
30069
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
29989
30070
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
29990
30071
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
29991
30072
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -30177,6 +30258,7 @@ module Aws::RDS
|
|
|
30177
30258
|
# resp.db_instance.db_instance_arn #=> String
|
|
30178
30259
|
# resp.db_instance.timezone #=> String
|
|
30179
30260
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
30261
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
30180
30262
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
30181
30263
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
30182
30264
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -30829,6 +30911,7 @@ module Aws::RDS
|
|
|
30829
30911
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
30830
30912
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
30831
30913
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
30914
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
30832
30915
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
30833
30916
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
30834
30917
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -31027,6 +31110,7 @@ module Aws::RDS
|
|
|
31027
31110
|
# resp.db_instance.db_instance_arn #=> String
|
|
31028
31111
|
# resp.db_instance.timezone #=> String
|
|
31029
31112
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
31113
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
31030
31114
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
31031
31115
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
31032
31116
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -31633,6 +31717,7 @@ module Aws::RDS
|
|
|
31633
31717
|
# resp.db_instance.db_instance_arn #=> String
|
|
31634
31718
|
# resp.db_instance.timezone #=> String
|
|
31635
31719
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
31720
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
31636
31721
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
31637
31722
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
31638
31723
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -31709,7 +31794,7 @@ module Aws::RDS
|
|
|
31709
31794
|
tracer: tracer
|
|
31710
31795
|
)
|
|
31711
31796
|
context[:gem_name] = 'aws-sdk-rds'
|
|
31712
|
-
context[:gem_version] = '1.
|
|
31797
|
+
context[:gem_version] = '1.261.0'
|
|
31713
31798
|
Seahorse::Client::Request.new(handlers, context)
|
|
31714
31799
|
end
|
|
31715
31800
|
|
|
@@ -279,6 +279,7 @@ module Aws::RDS
|
|
|
279
279
|
DBUpgradeDependencyFailureFault = Shapes::StructureShape.new(name: 'DBUpgradeDependencyFailureFault', error: {"code"=>"DBUpgradeDependencyFailure", "httpStatusCode"=>400, "senderFault"=>true})
|
|
280
280
|
DataFilter = Shapes::StringShape.new(name: 'DataFilter')
|
|
281
281
|
DatabaseArn = Shapes::StringShape.new(name: 'DatabaseArn')
|
|
282
|
+
DatabaseInsightsMode = Shapes::StringShape.new(name: 'DatabaseInsightsMode')
|
|
282
283
|
DeleteBlueGreenDeploymentRequest = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentRequest')
|
|
283
284
|
DeleteBlueGreenDeploymentResponse = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentResponse')
|
|
284
285
|
DeleteCustomDBEngineVersionMessage = Shapes::StructureShape.new(name: 'DeleteCustomDBEngineVersionMessage')
|
|
@@ -738,6 +739,7 @@ module Aws::RDS
|
|
|
738
739
|
TargetList = Shapes::ListShape.new(name: 'TargetList')
|
|
739
740
|
TargetRole = Shapes::StringShape.new(name: 'TargetRole')
|
|
740
741
|
TargetState = Shapes::StringShape.new(name: 'TargetState')
|
|
742
|
+
TargetStorageType = Shapes::StringShape.new(name: 'TargetStorageType')
|
|
741
743
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
|
742
744
|
TenantDatabase = Shapes::StructureShape.new(name: 'TenantDatabase')
|
|
743
745
|
TenantDatabaseAlreadyExistsFault = Shapes::StructureShape.new(name: 'TenantDatabaseAlreadyExistsFault', error: {"code"=>"TenantDatabaseAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
|
|
@@ -999,6 +1001,10 @@ module Aws::RDS
|
|
|
999
1001
|
CreateBlueGreenDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
1000
1002
|
CreateBlueGreenDeploymentRequest.add_member(:target_db_instance_class, Shapes::ShapeRef.new(shape: TargetDBInstanceClass, location_name: "TargetDBInstanceClass"))
|
|
1001
1003
|
CreateBlueGreenDeploymentRequest.add_member(:upgrade_target_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeTargetStorageConfig"))
|
|
1004
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetIops"))
|
|
1005
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_storage_type, Shapes::ShapeRef.new(shape: TargetStorageType, location_name: "TargetStorageType"))
|
|
1006
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetAllocatedStorage"))
|
|
1007
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetStorageThroughput"))
|
|
1002
1008
|
CreateBlueGreenDeploymentRequest.struct_class = Types::CreateBlueGreenDeploymentRequest
|
|
1003
1009
|
|
|
1004
1010
|
CreateBlueGreenDeploymentResponse.add_member(:blue_green_deployment, Shapes::ShapeRef.new(shape: BlueGreenDeployment, location_name: "BlueGreenDeployment"))
|
|
@@ -1069,6 +1075,7 @@ module Aws::RDS
|
|
|
1069
1075
|
CreateDBClusterMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
|
1070
1076
|
CreateDBClusterMessage.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
|
1071
1077
|
CreateDBClusterMessage.add_member(:monitoring_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "MonitoringRoleArn"))
|
|
1078
|
+
CreateDBClusterMessage.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
1072
1079
|
CreateDBClusterMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
1073
1080
|
CreateDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1074
1081
|
CreateDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1149,6 +1156,7 @@ module Aws::RDS
|
|
|
1149
1156
|
CreateDBInstanceMessage.add_member(:promotion_tier, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PromotionTier"))
|
|
1150
1157
|
CreateDBInstanceMessage.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
|
|
1151
1158
|
CreateDBInstanceMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
|
1159
|
+
CreateDBInstanceMessage.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
1152
1160
|
CreateDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
1153
1161
|
CreateDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1154
1162
|
CreateDBInstanceMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1191,6 +1199,7 @@ module Aws::RDS
|
|
|
1191
1199
|
CreateDBInstanceReadReplicaMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
1192
1200
|
CreateDBInstanceReadReplicaMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
|
1193
1201
|
CreateDBInstanceReadReplicaMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
|
1202
|
+
CreateDBInstanceReadReplicaMessage.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
1194
1203
|
CreateDBInstanceReadReplicaMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
1195
1204
|
CreateDBInstanceReadReplicaMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1196
1205
|
CreateDBInstanceReadReplicaMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1429,6 +1438,7 @@ module Aws::RDS
|
|
|
1429
1438
|
DBCluster.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoMinorVersionUpgrade"))
|
|
1430
1439
|
DBCluster.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
|
1431
1440
|
DBCluster.add_member(:monitoring_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "MonitoringRoleArn"))
|
|
1441
|
+
DBCluster.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
1432
1442
|
DBCluster.add_member(:performance_insights_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PerformanceInsightsEnabled"))
|
|
1433
1443
|
DBCluster.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1434
1444
|
DBCluster.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1741,6 +1751,7 @@ module Aws::RDS
|
|
|
1741
1751
|
DBInstance.add_member(:db_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceArn"))
|
|
1742
1752
|
DBInstance.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
|
|
1743
1753
|
DBInstance.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
|
1754
|
+
DBInstance.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
1744
1755
|
DBInstance.add_member(:performance_insights_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PerformanceInsightsEnabled"))
|
|
1745
1756
|
DBInstance.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1746
1757
|
DBInstance.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -3087,6 +3098,7 @@ module Aws::RDS
|
|
|
3087
3098
|
ModifyDBClusterMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
|
3088
3099
|
ModifyDBClusterMessage.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
|
3089
3100
|
ModifyDBClusterMessage.add_member(:monitoring_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "MonitoringRoleArn"))
|
|
3101
|
+
ModifyDBClusterMessage.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
3090
3102
|
ModifyDBClusterMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
3091
3103
|
ModifyDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3092
3104
|
ModifyDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -3157,6 +3169,7 @@ module Aws::RDS
|
|
|
3157
3169
|
ModifyDBInstanceMessage.add_member(:disable_domain, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DisableDomain"))
|
|
3158
3170
|
ModifyDBInstanceMessage.add_member(:promotion_tier, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PromotionTier"))
|
|
3159
3171
|
ModifyDBInstanceMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
|
3172
|
+
ModifyDBInstanceMessage.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
3160
3173
|
ModifyDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
3161
3174
|
ModifyDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3162
3175
|
ModifyDBInstanceMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -3951,6 +3964,7 @@ module Aws::RDS
|
|
|
3951
3964
|
RestoreDBInstanceFromS3Message.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketName"))
|
|
3952
3965
|
RestoreDBInstanceFromS3Message.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: String, location_name: "S3Prefix"))
|
|
3953
3966
|
RestoreDBInstanceFromS3Message.add_member(:s3_ingestion_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3IngestionRoleArn"))
|
|
3967
|
+
RestoreDBInstanceFromS3Message.add_member(:database_insights_mode, Shapes::ShapeRef.new(shape: DatabaseInsightsMode, location_name: "DatabaseInsightsMode"))
|
|
3954
3968
|
RestoreDBInstanceFromS3Message.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
3955
3969
|
RestoreDBInstanceFromS3Message.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3956
3970
|
RestoreDBInstanceFromS3Message.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -565,6 +565,12 @@ module Aws::RDS
|
|
|
565
565
|
data[:monitoring_role_arn]
|
|
566
566
|
end
|
|
567
567
|
|
|
568
|
+
# The mode of Database Insights that is enabled for the cluster.
|
|
569
|
+
# @return [String]
|
|
570
|
+
def database_insights_mode
|
|
571
|
+
data[:database_insights_mode]
|
|
572
|
+
end
|
|
573
|
+
|
|
568
574
|
# Indicates whether Performance Insights is enabled for the DB cluster.
|
|
569
575
|
#
|
|
570
576
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
@@ -932,6 +938,7 @@ module Aws::RDS
|
|
|
932
938
|
# auto_minor_version_upgrade: false,
|
|
933
939
|
# monitoring_interval: 1,
|
|
934
940
|
# monitoring_role_arn: "String",
|
|
941
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
935
942
|
# enable_performance_insights: false,
|
|
936
943
|
# performance_insights_kms_key_id: "String",
|
|
937
944
|
# performance_insights_retention_period: 1,
|
|
@@ -1596,6 +1603,8 @@ module Aws::RDS
|
|
|
1596
1603
|
#
|
|
1597
1604
|
#
|
|
1598
1605
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
1606
|
+
# @option options [String] :database_insights_mode
|
|
1607
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
1599
1608
|
# @option options [Boolean] :enable_performance_insights
|
|
1600
1609
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
|
1601
1610
|
#
|
|
@@ -1970,6 +1979,7 @@ module Aws::RDS
|
|
|
1970
1979
|
# auto_minor_version_upgrade: false,
|
|
1971
1980
|
# monitoring_interval: 1,
|
|
1972
1981
|
# monitoring_role_arn: "String",
|
|
1982
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
1973
1983
|
# enable_performance_insights: false,
|
|
1974
1984
|
# performance_insights_kms_key_id: "String",
|
|
1975
1985
|
# performance_insights_retention_period: 1,
|
|
@@ -2286,9 +2296,9 @@ module Aws::RDS
|
|
|
2286
2296
|
# Aurora User Guide*.
|
|
2287
2297
|
#
|
|
2288
2298
|
# <note markdown="1"> This parameter applies only to Aurora Serverless v1 DB clusters. To
|
|
2289
|
-
# enable or disable the HTTP endpoint for an Aurora
|
|
2290
|
-
#
|
|
2291
|
-
#
|
|
2299
|
+
# enable or disable the HTTP endpoint for an Aurora Serverless v2 or
|
|
2300
|
+
# provisioned DB cluster, use the `EnableHttpEndpoint` and
|
|
2301
|
+
# `DisableHttpEndpoint` operations.
|
|
2292
2302
|
#
|
|
2293
2303
|
# </note>
|
|
2294
2304
|
#
|
|
@@ -2419,6 +2429,8 @@ module Aws::RDS
|
|
|
2419
2429
|
#
|
|
2420
2430
|
#
|
|
2421
2431
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
|
2432
|
+
# @option options [String] :database_insights_mode
|
|
2433
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
2422
2434
|
# @option options [Boolean] :enable_performance_insights
|
|
2423
2435
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
|
2424
2436
|
#
|
|
@@ -461,6 +461,12 @@ module Aws::RDS
|
|
|
461
461
|
data[:iam_database_authentication_enabled]
|
|
462
462
|
end
|
|
463
463
|
|
|
464
|
+
# The mode of Database Insights that is enabled for the instance.
|
|
465
|
+
# @return [String]
|
|
466
|
+
def database_insights_mode
|
|
467
|
+
data[:database_insights_mode]
|
|
468
|
+
end
|
|
469
|
+
|
|
464
470
|
# Indicates whether Performance Insights is enabled for the DB instance.
|
|
465
471
|
# @return [Boolean]
|
|
466
472
|
def performance_insights_enabled
|
|
@@ -988,6 +994,7 @@ module Aws::RDS
|
|
|
988
994
|
# promotion_tier: 1,
|
|
989
995
|
# timezone: "String",
|
|
990
996
|
# enable_iam_database_authentication: false,
|
|
997
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
991
998
|
# enable_performance_insights: false,
|
|
992
999
|
# performance_insights_kms_key_id: "String",
|
|
993
1000
|
# performance_insights_retention_period: 1,
|
|
@@ -1935,6 +1942,8 @@ module Aws::RDS
|
|
|
1935
1942
|
#
|
|
1936
1943
|
#
|
|
1937
1944
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
1945
|
+
# @option options [String] :database_insights_mode
|
|
1946
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
1938
1947
|
# @option options [Boolean] :enable_performance_insights
|
|
1939
1948
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
1940
1949
|
# For more information, see [Using Amazon Performance Insights][1] in
|
|
@@ -2276,6 +2285,7 @@ module Aws::RDS
|
|
|
2276
2285
|
# kms_key_id: "String",
|
|
2277
2286
|
# pre_signed_url: "String",
|
|
2278
2287
|
# enable_iam_database_authentication: false,
|
|
2288
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
2279
2289
|
# enable_performance_insights: false,
|
|
2280
2290
|
# performance_insights_kms_key_id: "String",
|
|
2281
2291
|
# performance_insights_retention_period: 1,
|
|
@@ -2605,6 +2615,8 @@ module Aws::RDS
|
|
|
2605
2615
|
#
|
|
2606
2616
|
#
|
|
2607
2617
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
2618
|
+
# @option options [String] :database_insights_mode
|
|
2619
|
+
# Specifies the mode of Database Insights.
|
|
2608
2620
|
# @option options [Boolean] :enable_performance_insights
|
|
2609
2621
|
# Specifies whether to enable Performance Insights for the read replica.
|
|
2610
2622
|
#
|
|
@@ -3059,6 +3071,7 @@ module Aws::RDS
|
|
|
3059
3071
|
# disable_domain: false,
|
|
3060
3072
|
# promotion_tier: 1,
|
|
3061
3073
|
# enable_iam_database_authentication: false,
|
|
3074
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
3062
3075
|
# enable_performance_insights: false,
|
|
3063
3076
|
# performance_insights_kms_key_id: "String",
|
|
3064
3077
|
# performance_insights_retention_period: 1,
|
|
@@ -3772,6 +3785,8 @@ module Aws::RDS
|
|
|
3772
3785
|
#
|
|
3773
3786
|
#
|
|
3774
3787
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
3788
|
+
# @option options [String] :database_insights_mode
|
|
3789
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
3775
3790
|
# @option options [Boolean] :enable_performance_insights
|
|
3776
3791
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
3777
3792
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -96,6 +96,7 @@ module Aws::RDS
|
|
|
96
96
|
# auto_minor_version_upgrade: false,
|
|
97
97
|
# monitoring_interval: 1,
|
|
98
98
|
# monitoring_role_arn: "String",
|
|
99
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
99
100
|
# enable_performance_insights: false,
|
|
100
101
|
# performance_insights_kms_key_id: "String",
|
|
101
102
|
# performance_insights_retention_period: 1,
|
|
@@ -776,6 +777,8 @@ module Aws::RDS
|
|
|
776
777
|
#
|
|
777
778
|
#
|
|
778
779
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
780
|
+
# @option options [String] :database_insights_mode
|
|
781
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
779
782
|
# @option options [Boolean] :enable_performance_insights
|
|
780
783
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
|
781
784
|
#
|
|
@@ -1126,6 +1129,7 @@ module Aws::RDS
|
|
|
1126
1129
|
# promotion_tier: 1,
|
|
1127
1130
|
# timezone: "String",
|
|
1128
1131
|
# enable_iam_database_authentication: false,
|
|
1132
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
1129
1133
|
# enable_performance_insights: false,
|
|
1130
1134
|
# performance_insights_kms_key_id: "String",
|
|
1131
1135
|
# performance_insights_retention_period: 1,
|
|
@@ -2086,6 +2090,8 @@ module Aws::RDS
|
|
|
2086
2090
|
#
|
|
2087
2091
|
#
|
|
2088
2092
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
2093
|
+
# @option options [String] :database_insights_mode
|
|
2094
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
2089
2095
|
# @option options [Boolean] :enable_performance_insights
|
|
2090
2096
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
2091
2097
|
# For more information, see [Using Amazon Performance Insights][1] in
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -1860,6 +1860,43 @@ module Aws::RDS
|
|
|
1860
1860
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
|
1861
1861
|
# @return [Boolean]
|
|
1862
1862
|
#
|
|
1863
|
+
# @!attribute [rw] target_iops
|
|
1864
|
+
# The amount of Provisioned IOPS (input/output operations per second)
|
|
1865
|
+
# to allocate for the green DB instance. For information about valid
|
|
1866
|
+
# IOPS values, see [Amazon RDS DB instance storage][1] in the *Amazon
|
|
1867
|
+
# RDS User Guide*.
|
|
1868
|
+
#
|
|
1869
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
1870
|
+
#
|
|
1871
|
+
#
|
|
1872
|
+
#
|
|
1873
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
|
1874
|
+
# @return [Integer]
|
|
1875
|
+
#
|
|
1876
|
+
# @!attribute [rw] target_storage_type
|
|
1877
|
+
# The storage type to associate with the green DB instance.
|
|
1878
|
+
#
|
|
1879
|
+
# Valid Values: `gp2 | gp3 | io1 | io2`
|
|
1880
|
+
#
|
|
1881
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
1882
|
+
# @return [String]
|
|
1883
|
+
#
|
|
1884
|
+
# @!attribute [rw] target_allocated_storage
|
|
1885
|
+
# The amount of storage in gibibytes (GiB) to allocate for the green
|
|
1886
|
+
# DB instance. You can choose to increase or decrease the allocated
|
|
1887
|
+
# storage on the green DB instance.
|
|
1888
|
+
#
|
|
1889
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
1890
|
+
# @return [Integer]
|
|
1891
|
+
#
|
|
1892
|
+
# @!attribute [rw] target_storage_throughput
|
|
1893
|
+
# The storage throughput value for the green DB instance.
|
|
1894
|
+
#
|
|
1895
|
+
# This setting applies only to the `gp3` storage type.
|
|
1896
|
+
#
|
|
1897
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
|
1898
|
+
# @return [Integer]
|
|
1899
|
+
#
|
|
1863
1900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeploymentRequest AWS API Documentation
|
|
1864
1901
|
#
|
|
1865
1902
|
class CreateBlueGreenDeploymentRequest < Struct.new(
|
|
@@ -1870,7 +1907,11 @@ module Aws::RDS
|
|
|
1870
1907
|
:target_db_cluster_parameter_group_name,
|
|
1871
1908
|
:tags,
|
|
1872
1909
|
:target_db_instance_class,
|
|
1873
|
-
:upgrade_target_storage_config
|
|
1910
|
+
:upgrade_target_storage_config,
|
|
1911
|
+
:target_iops,
|
|
1912
|
+
:target_storage_type,
|
|
1913
|
+
:target_allocated_storage,
|
|
1914
|
+
:target_storage_throughput)
|
|
1874
1915
|
SENSITIVE = []
|
|
1875
1916
|
include Aws::Structure
|
|
1876
1917
|
end
|
|
@@ -2845,6 +2886,10 @@ module Aws::RDS
|
|
|
2845
2886
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
2846
2887
|
# @return [String]
|
|
2847
2888
|
#
|
|
2889
|
+
# @!attribute [rw] database_insights_mode
|
|
2890
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
2891
|
+
# @return [String]
|
|
2892
|
+
#
|
|
2848
2893
|
# @!attribute [rw] enable_performance_insights
|
|
2849
2894
|
# Specifies whether to turn on Performance Insights for the DB
|
|
2850
2895
|
# cluster.
|
|
@@ -3116,6 +3161,7 @@ module Aws::RDS
|
|
|
3116
3161
|
:auto_minor_version_upgrade,
|
|
3117
3162
|
:monitoring_interval,
|
|
3118
3163
|
:monitoring_role_arn,
|
|
3164
|
+
:database_insights_mode,
|
|
3119
3165
|
:enable_performance_insights,
|
|
3120
3166
|
:performance_insights_kms_key_id,
|
|
3121
3167
|
:performance_insights_retention_period,
|
|
@@ -4362,6 +4408,10 @@ module Aws::RDS
|
|
|
4362
4408
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
4363
4409
|
# @return [Boolean]
|
|
4364
4410
|
#
|
|
4411
|
+
# @!attribute [rw] database_insights_mode
|
|
4412
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
4413
|
+
# @return [String]
|
|
4414
|
+
#
|
|
4365
4415
|
# @!attribute [rw] enable_performance_insights
|
|
4366
4416
|
# Specifies whether to enable Performance Insights for the DB
|
|
4367
4417
|
# instance. For more information, see [Using Amazon Performance
|
|
@@ -4750,6 +4800,7 @@ module Aws::RDS
|
|
|
4750
4800
|
:promotion_tier,
|
|
4751
4801
|
:timezone,
|
|
4752
4802
|
:enable_iam_database_authentication,
|
|
4803
|
+
:database_insights_mode,
|
|
4753
4804
|
:enable_performance_insights,
|
|
4754
4805
|
:performance_insights_kms_key_id,
|
|
4755
4806
|
:performance_insights_retention_period,
|
|
@@ -5156,6 +5207,10 @@ module Aws::RDS
|
|
|
5156
5207
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
5157
5208
|
# @return [Boolean]
|
|
5158
5209
|
#
|
|
5210
|
+
# @!attribute [rw] database_insights_mode
|
|
5211
|
+
# Specifies the mode of Database Insights.
|
|
5212
|
+
# @return [String]
|
|
5213
|
+
#
|
|
5159
5214
|
# @!attribute [rw] enable_performance_insights
|
|
5160
5215
|
# Specifies whether to enable Performance Insights for the read
|
|
5161
5216
|
# replica.
|
|
@@ -5521,6 +5576,7 @@ module Aws::RDS
|
|
|
5521
5576
|
:kms_key_id,
|
|
5522
5577
|
:pre_signed_url,
|
|
5523
5578
|
:enable_iam_database_authentication,
|
|
5579
|
+
:database_insights_mode,
|
|
5524
5580
|
:enable_performance_insights,
|
|
5525
5581
|
:performance_insights_kms_key_id,
|
|
5526
5582
|
:performance_insights_retention_period,
|
|
@@ -7122,6 +7178,10 @@ module Aws::RDS
|
|
|
7122
7178
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7123
7179
|
# @return [String]
|
|
7124
7180
|
#
|
|
7181
|
+
# @!attribute [rw] database_insights_mode
|
|
7182
|
+
# The mode of Database Insights that is enabled for the cluster.
|
|
7183
|
+
# @return [String]
|
|
7184
|
+
#
|
|
7125
7185
|
# @!attribute [rw] performance_insights_enabled
|
|
7126
7186
|
# Indicates whether Performance Insights is enabled for the DB
|
|
7127
7187
|
# cluster.
|
|
@@ -7332,6 +7392,7 @@ module Aws::RDS
|
|
|
7332
7392
|
:auto_minor_version_upgrade,
|
|
7333
7393
|
:monitoring_interval,
|
|
7334
7394
|
:monitoring_role_arn,
|
|
7395
|
+
:database_insights_mode,
|
|
7335
7396
|
:performance_insights_enabled,
|
|
7336
7397
|
:performance_insights_kms_key_id,
|
|
7337
7398
|
:performance_insights_retention_period,
|
|
@@ -8995,6 +9056,10 @@ module Aws::RDS
|
|
|
8995
9056
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.Aurora_Fea_Regions_DB-eng.Feature.IAMdbauth.html
|
|
8996
9057
|
# @return [Boolean]
|
|
8997
9058
|
#
|
|
9059
|
+
# @!attribute [rw] database_insights_mode
|
|
9060
|
+
# The mode of Database Insights that is enabled for the instance.
|
|
9061
|
+
# @return [String]
|
|
9062
|
+
#
|
|
8998
9063
|
# @!attribute [rw] performance_insights_enabled
|
|
8999
9064
|
# Indicates whether Performance Insights is enabled for the DB
|
|
9000
9065
|
# instance.
|
|
@@ -9322,6 +9387,7 @@ module Aws::RDS
|
|
|
9322
9387
|
:db_instance_arn,
|
|
9323
9388
|
:timezone,
|
|
9324
9389
|
:iam_database_authentication_enabled,
|
|
9390
|
+
:database_insights_mode,
|
|
9325
9391
|
:performance_insights_enabled,
|
|
9326
9392
|
:performance_insights_kms_key_id,
|
|
9327
9393
|
:performance_insights_retention_period,
|
|
@@ -17546,9 +17612,9 @@ module Aws::RDS
|
|
|
17546
17612
|
# Aurora User Guide*.
|
|
17547
17613
|
#
|
|
17548
17614
|
# <note markdown="1"> This parameter applies only to Aurora Serverless v1 DB clusters. To
|
|
17549
|
-
# enable or disable the HTTP endpoint for an Aurora
|
|
17550
|
-
#
|
|
17551
|
-
# `
|
|
17615
|
+
# enable or disable the HTTP endpoint for an Aurora Serverless v2 or
|
|
17616
|
+
# provisioned DB cluster, use the `EnableHttpEndpoint` and
|
|
17617
|
+
# `DisableHttpEndpoint` operations.
|
|
17552
17618
|
#
|
|
17553
17619
|
# </note>
|
|
17554
17620
|
#
|
|
@@ -17699,6 +17765,10 @@ module Aws::RDS
|
|
|
17699
17765
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
|
17700
17766
|
# @return [String]
|
|
17701
17767
|
#
|
|
17768
|
+
# @!attribute [rw] database_insights_mode
|
|
17769
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
17770
|
+
# @return [String]
|
|
17771
|
+
#
|
|
17702
17772
|
# @!attribute [rw] enable_performance_insights
|
|
17703
17773
|
# Specifies whether to turn on Performance Insights for the DB
|
|
17704
17774
|
# cluster.
|
|
@@ -17981,6 +18051,7 @@ module Aws::RDS
|
|
|
17981
18051
|
:auto_minor_version_upgrade,
|
|
17982
18052
|
:monitoring_interval,
|
|
17983
18053
|
:monitoring_role_arn,
|
|
18054
|
+
:database_insights_mode,
|
|
17984
18055
|
:enable_performance_insights,
|
|
17985
18056
|
:performance_insights_kms_key_id,
|
|
17986
18057
|
:performance_insights_retention_period,
|
|
@@ -18920,6 +18991,10 @@ module Aws::RDS
|
|
|
18920
18991
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
18921
18992
|
# @return [Boolean]
|
|
18922
18993
|
#
|
|
18994
|
+
# @!attribute [rw] database_insights_mode
|
|
18995
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
18996
|
+
# @return [String]
|
|
18997
|
+
#
|
|
18923
18998
|
# @!attribute [rw] enable_performance_insights
|
|
18924
18999
|
# Specifies whether to enable Performance Insights for the DB
|
|
18925
19000
|
# instance.
|
|
@@ -19340,6 +19415,7 @@ module Aws::RDS
|
|
|
19340
19415
|
:disable_domain,
|
|
19341
19416
|
:promotion_tier,
|
|
19342
19417
|
:enable_iam_database_authentication,
|
|
19418
|
+
:database_insights_mode,
|
|
19343
19419
|
:enable_performance_insights,
|
|
19344
19420
|
:performance_insights_kms_key_id,
|
|
19345
19421
|
:performance_insights_retention_period,
|
|
@@ -25403,6 +25479,10 @@ module Aws::RDS
|
|
|
25403
25479
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM
|
|
25404
25480
|
# @return [String]
|
|
25405
25481
|
#
|
|
25482
|
+
# @!attribute [rw] database_insights_mode
|
|
25483
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
25484
|
+
# @return [String]
|
|
25485
|
+
#
|
|
25406
25486
|
# @!attribute [rw] enable_performance_insights
|
|
25407
25487
|
# Specifies whether to enable Performance Insights for the DB
|
|
25408
25488
|
# instance.
|
|
@@ -25664,6 +25744,7 @@ module Aws::RDS
|
|
|
25664
25744
|
:s3_bucket_name,
|
|
25665
25745
|
:s3_prefix,
|
|
25666
25746
|
:s3_ingestion_role_arn,
|
|
25747
|
+
:database_insights_mode,
|
|
25667
25748
|
:enable_performance_insights,
|
|
25668
25749
|
:performance_insights_kms_key_id,
|
|
25669
25750
|
:performance_insights_retention_period,
|
data/lib/aws-sdk-rds.rb
CHANGED
|
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
|
82
82
|
|
|
83
|
-
GEM_VERSION = '1.
|
|
83
|
+
GEM_VERSION = '1.261.0'
|
|
84
84
|
|
|
85
85
|
end
|
|
86
86
|
|
data/sig/client.rbs
CHANGED
|
@@ -300,7 +300,11 @@ module Aws
|
|
|
300
300
|
},
|
|
301
301
|
],
|
|
302
302
|
?target_db_instance_class: ::String,
|
|
303
|
-
?upgrade_target_storage_config: bool
|
|
303
|
+
?upgrade_target_storage_config: bool,
|
|
304
|
+
?target_iops: ::Integer,
|
|
305
|
+
?target_storage_type: ::String,
|
|
306
|
+
?target_allocated_storage: ::Integer,
|
|
307
|
+
?target_storage_throughput: ::Integer
|
|
304
308
|
) -> _CreateBlueGreenDeploymentResponseSuccess
|
|
305
309
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBlueGreenDeploymentResponseSuccess
|
|
306
310
|
|
|
@@ -427,6 +431,7 @@ module Aws
|
|
|
427
431
|
?auto_minor_version_upgrade: bool,
|
|
428
432
|
?monitoring_interval: ::Integer,
|
|
429
433
|
?monitoring_role_arn: ::String,
|
|
434
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
430
435
|
?enable_performance_insights: bool,
|
|
431
436
|
?performance_insights_kms_key_id: ::String,
|
|
432
437
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -567,6 +572,7 @@ module Aws
|
|
|
567
572
|
?promotion_tier: ::Integer,
|
|
568
573
|
?timezone: ::String,
|
|
569
574
|
?enable_iam_database_authentication: bool,
|
|
575
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
570
576
|
?enable_performance_insights: bool,
|
|
571
577
|
?performance_insights_kms_key_id: ::String,
|
|
572
578
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -626,6 +632,7 @@ module Aws
|
|
|
626
632
|
?kms_key_id: ::String,
|
|
627
633
|
?pre_signed_url: ::String,
|
|
628
634
|
?enable_iam_database_authentication: bool,
|
|
635
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
629
636
|
?enable_performance_insights: bool,
|
|
630
637
|
?performance_insights_kms_key_id: ::String,
|
|
631
638
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -2300,6 +2307,7 @@ module Aws
|
|
|
2300
2307
|
?auto_minor_version_upgrade: bool,
|
|
2301
2308
|
?monitoring_interval: ::Integer,
|
|
2302
2309
|
?monitoring_role_arn: ::String,
|
|
2310
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
2303
2311
|
?enable_performance_insights: bool,
|
|
2304
2312
|
?performance_insights_kms_key_id: ::String,
|
|
2305
2313
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -2425,6 +2433,7 @@ module Aws
|
|
|
2425
2433
|
?disable_domain: bool,
|
|
2426
2434
|
?promotion_tier: ::Integer,
|
|
2427
2435
|
?enable_iam_database_authentication: bool,
|
|
2436
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
2428
2437
|
?enable_performance_insights: bool,
|
|
2429
2438
|
?performance_insights_kms_key_id: ::String,
|
|
2430
2439
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -3199,6 +3208,7 @@ module Aws
|
|
|
3199
3208
|
s3_bucket_name: ::String,
|
|
3200
3209
|
?s3_prefix: ::String,
|
|
3201
3210
|
s3_ingestion_role_arn: ::String,
|
|
3211
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
3202
3212
|
?enable_performance_insights: bool,
|
|
3203
3213
|
?performance_insights_kms_key_id: ::String,
|
|
3204
3214
|
?performance_insights_retention_period: ::Integer,
|
data/sig/db_cluster.rbs
CHANGED
|
@@ -213,6 +213,9 @@ module Aws
|
|
|
213
213
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#monitoring_role_arn-instance_method
|
|
214
214
|
def monitoring_role_arn: () -> ::String
|
|
215
215
|
|
|
216
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#database_insights_mode-instance_method
|
|
217
|
+
def database_insights_mode: () -> ("standard" | "advanced")
|
|
218
|
+
|
|
216
219
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#performance_insights_enabled-instance_method
|
|
217
220
|
def performance_insights_enabled: () -> bool
|
|
218
221
|
|
|
@@ -330,6 +333,7 @@ module Aws
|
|
|
330
333
|
?auto_minor_version_upgrade: bool,
|
|
331
334
|
?monitoring_interval: ::Integer,
|
|
332
335
|
?monitoring_role_arn: ::String,
|
|
336
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
333
337
|
?enable_performance_insights: bool,
|
|
334
338
|
?performance_insights_kms_key_id: ::String,
|
|
335
339
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -419,6 +423,7 @@ module Aws
|
|
|
419
423
|
?auto_minor_version_upgrade: bool,
|
|
420
424
|
?monitoring_interval: ::Integer,
|
|
421
425
|
?monitoring_role_arn: ::String,
|
|
426
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
422
427
|
?enable_performance_insights: bool,
|
|
423
428
|
?performance_insights_kms_key_id: ::String,
|
|
424
429
|
?performance_insights_retention_period: ::Integer,
|
data/sig/db_instance.rbs
CHANGED
|
@@ -171,6 +171,9 @@ module Aws
|
|
|
171
171
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#iam_database_authentication_enabled-instance_method
|
|
172
172
|
def iam_database_authentication_enabled: () -> bool
|
|
173
173
|
|
|
174
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#database_insights_mode-instance_method
|
|
175
|
+
def database_insights_mode: () -> ("standard" | "advanced")
|
|
176
|
+
|
|
174
177
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#performance_insights_enabled-instance_method
|
|
175
178
|
def performance_insights_enabled: () -> bool
|
|
176
179
|
|
|
@@ -336,6 +339,7 @@ module Aws
|
|
|
336
339
|
?promotion_tier: ::Integer,
|
|
337
340
|
?timezone: ::String,
|
|
338
341
|
?enable_iam_database_authentication: bool,
|
|
342
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
339
343
|
?enable_performance_insights: bool,
|
|
340
344
|
?performance_insights_kms_key_id: ::String,
|
|
341
345
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -390,6 +394,7 @@ module Aws
|
|
|
390
394
|
?kms_key_id: ::String,
|
|
391
395
|
?pre_signed_url: ::String,
|
|
392
396
|
?enable_iam_database_authentication: bool,
|
|
397
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
393
398
|
?enable_performance_insights: bool,
|
|
394
399
|
?performance_insights_kms_key_id: ::String,
|
|
395
400
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -482,6 +487,7 @@ module Aws
|
|
|
482
487
|
?disable_domain: bool,
|
|
483
488
|
?promotion_tier: ::Integer,
|
|
484
489
|
?enable_iam_database_authentication: bool,
|
|
490
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
485
491
|
?enable_performance_insights: bool,
|
|
486
492
|
?performance_insights_kms_key_id: ::String,
|
|
487
493
|
?performance_insights_retention_period: ::Integer,
|
data/sig/resource.rbs
CHANGED
|
@@ -137,6 +137,7 @@ module Aws
|
|
|
137
137
|
?auto_minor_version_upgrade: bool,
|
|
138
138
|
?monitoring_interval: ::Integer,
|
|
139
139
|
?monitoring_role_arn: ::String,
|
|
140
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
140
141
|
?enable_performance_insights: bool,
|
|
141
142
|
?performance_insights_kms_key_id: ::String,
|
|
142
143
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -223,6 +224,7 @@ module Aws
|
|
|
223
224
|
?promotion_tier: ::Integer,
|
|
224
225
|
?timezone: ::String,
|
|
225
226
|
?enable_iam_database_authentication: bool,
|
|
227
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
226
228
|
?enable_performance_insights: bool,
|
|
227
229
|
?performance_insights_kms_key_id: ::String,
|
|
228
230
|
?performance_insights_retention_period: ::Integer,
|
data/sig/types.rbs
CHANGED
|
@@ -303,6 +303,10 @@ module Aws::RDS
|
|
|
303
303
|
attr_accessor tags: ::Array[Types::Tag]
|
|
304
304
|
attr_accessor target_db_instance_class: ::String
|
|
305
305
|
attr_accessor upgrade_target_storage_config: bool
|
|
306
|
+
attr_accessor target_iops: ::Integer
|
|
307
|
+
attr_accessor target_storage_type: ::String
|
|
308
|
+
attr_accessor target_allocated_storage: ::Integer
|
|
309
|
+
attr_accessor target_storage_throughput: ::Integer
|
|
306
310
|
SENSITIVE: []
|
|
307
311
|
end
|
|
308
312
|
|
|
@@ -382,6 +386,7 @@ module Aws::RDS
|
|
|
382
386
|
attr_accessor auto_minor_version_upgrade: bool
|
|
383
387
|
attr_accessor monitoring_interval: ::Integer
|
|
384
388
|
attr_accessor monitoring_role_arn: ::String
|
|
389
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
385
390
|
attr_accessor enable_performance_insights: bool
|
|
386
391
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
387
392
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -474,6 +479,7 @@ module Aws::RDS
|
|
|
474
479
|
attr_accessor promotion_tier: ::Integer
|
|
475
480
|
attr_accessor timezone: ::String
|
|
476
481
|
attr_accessor enable_iam_database_authentication: bool
|
|
482
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
477
483
|
attr_accessor enable_performance_insights: bool
|
|
478
484
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
479
485
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -518,6 +524,7 @@ module Aws::RDS
|
|
|
518
524
|
attr_accessor kms_key_id: ::String
|
|
519
525
|
attr_accessor pre_signed_url: ::String
|
|
520
526
|
attr_accessor enable_iam_database_authentication: bool
|
|
527
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
521
528
|
attr_accessor enable_performance_insights: bool
|
|
522
529
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
523
530
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -812,6 +819,7 @@ module Aws::RDS
|
|
|
812
819
|
attr_accessor auto_minor_version_upgrade: bool
|
|
813
820
|
attr_accessor monitoring_interval: ::Integer
|
|
814
821
|
attr_accessor monitoring_role_arn: ::String
|
|
822
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
815
823
|
attr_accessor performance_insights_enabled: bool
|
|
816
824
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
817
825
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -1161,6 +1169,7 @@ module Aws::RDS
|
|
|
1161
1169
|
attr_accessor db_instance_arn: ::String
|
|
1162
1170
|
attr_accessor timezone: ::String
|
|
1163
1171
|
attr_accessor iam_database_authentication_enabled: bool
|
|
1172
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
1164
1173
|
attr_accessor performance_insights_enabled: bool
|
|
1165
1174
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
1166
1175
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -2850,6 +2859,7 @@ module Aws::RDS
|
|
|
2850
2859
|
attr_accessor auto_minor_version_upgrade: bool
|
|
2851
2860
|
attr_accessor monitoring_interval: ::Integer
|
|
2852
2861
|
attr_accessor monitoring_role_arn: ::String
|
|
2862
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
2853
2863
|
attr_accessor enable_performance_insights: bool
|
|
2854
2864
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
2855
2865
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -2930,6 +2940,7 @@ module Aws::RDS
|
|
|
2930
2940
|
attr_accessor disable_domain: bool
|
|
2931
2941
|
attr_accessor promotion_tier: ::Integer
|
|
2932
2942
|
attr_accessor enable_iam_database_authentication: bool
|
|
2943
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
2933
2944
|
attr_accessor enable_performance_insights: bool
|
|
2934
2945
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
2935
2946
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -3859,6 +3870,7 @@ module Aws::RDS
|
|
|
3859
3870
|
attr_accessor s3_bucket_name: ::String
|
|
3860
3871
|
attr_accessor s3_prefix: ::String
|
|
3861
3872
|
attr_accessor s3_ingestion_role_arn: ::String
|
|
3873
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
3862
3874
|
attr_accessor enable_performance_insights: bool
|
|
3863
3875
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
3864
3876
|
attr_accessor performance_insights_retention_period: ::Integer
|
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.261.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-12-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|