aws-sdk-rds 1.260.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +61 -12
- data/lib/aws-sdk-rds/client_api.rb +9 -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 +43 -3
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/db_cluster.rbs +5 -0
- data/sig/db_instance.rbs +6 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +8 -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,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.260.0 (2024-11-20)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.261.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -3356,6 +3356,9 @@ module Aws::RDS
|
|
|
3356
3356
|
#
|
|
3357
3357
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
3358
3358
|
#
|
|
3359
|
+
# @option params [String] :database_insights_mode
|
|
3360
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
3361
|
+
#
|
|
3359
3362
|
# @option params [Boolean] :enable_performance_insights
|
|
3360
3363
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
|
3361
3364
|
#
|
|
@@ -3758,6 +3761,7 @@ module Aws::RDS
|
|
|
3758
3761
|
# auto_minor_version_upgrade: false,
|
|
3759
3762
|
# monitoring_interval: 1,
|
|
3760
3763
|
# monitoring_role_arn: "String",
|
|
3764
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
3761
3765
|
# enable_performance_insights: false,
|
|
3762
3766
|
# performance_insights_kms_key_id: "String",
|
|
3763
3767
|
# performance_insights_retention_period: 1,
|
|
@@ -3898,6 +3902,7 @@ module Aws::RDS
|
|
|
3898
3902
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
3899
3903
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
3900
3904
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
3905
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
3901
3906
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
3902
3907
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
3903
3908
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -5353,6 +5358,9 @@ module Aws::RDS
|
|
|
5353
5358
|
#
|
|
5354
5359
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
5355
5360
|
#
|
|
5361
|
+
# @option params [String] :database_insights_mode
|
|
5362
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
5363
|
+
#
|
|
5356
5364
|
# @option params [Boolean] :enable_performance_insights
|
|
5357
5365
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
5358
5366
|
# For more information, see [Using Amazon Performance Insights][1] in
|
|
@@ -5838,6 +5846,7 @@ module Aws::RDS
|
|
|
5838
5846
|
# promotion_tier: 1,
|
|
5839
5847
|
# timezone: "String",
|
|
5840
5848
|
# enable_iam_database_authentication: false,
|
|
5849
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
5841
5850
|
# enable_performance_insights: false,
|
|
5842
5851
|
# performance_insights_kms_key_id: "String",
|
|
5843
5852
|
# performance_insights_retention_period: 1,
|
|
@@ -5979,6 +5988,7 @@ module Aws::RDS
|
|
|
5979
5988
|
# resp.db_instance.db_instance_arn #=> String
|
|
5980
5989
|
# resp.db_instance.timezone #=> String
|
|
5981
5990
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
5991
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
5982
5992
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
5983
5993
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
5984
5994
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -6416,6 +6426,9 @@ module Aws::RDS
|
|
|
6416
6426
|
#
|
|
6417
6427
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
6418
6428
|
#
|
|
6429
|
+
# @option params [String] :database_insights_mode
|
|
6430
|
+
# Specifies the mode of Database Insights.
|
|
6431
|
+
#
|
|
6419
6432
|
# @option params [Boolean] :enable_performance_insights
|
|
6420
6433
|
# Specifies whether to enable Performance Insights for the read replica.
|
|
6421
6434
|
#
|
|
@@ -6780,6 +6793,7 @@ module Aws::RDS
|
|
|
6780
6793
|
# kms_key_id: "String",
|
|
6781
6794
|
# pre_signed_url: "String",
|
|
6782
6795
|
# enable_iam_database_authentication: false,
|
|
6796
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
6783
6797
|
# enable_performance_insights: false,
|
|
6784
6798
|
# performance_insights_kms_key_id: "String",
|
|
6785
6799
|
# performance_insights_retention_period: 1,
|
|
@@ -6927,6 +6941,7 @@ module Aws::RDS
|
|
|
6927
6941
|
# resp.db_instance.db_instance_arn #=> String
|
|
6928
6942
|
# resp.db_instance.timezone #=> String
|
|
6929
6943
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
6944
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
6930
6945
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
6931
6946
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
6932
6947
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -9269,6 +9284,7 @@ module Aws::RDS
|
|
|
9269
9284
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
9270
9285
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
9271
9286
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
9287
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
9272
9288
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
9273
9289
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
9274
9290
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -9845,6 +9861,7 @@ module Aws::RDS
|
|
|
9845
9861
|
# resp.db_instance.db_instance_arn #=> String
|
|
9846
9862
|
# resp.db_instance.timezone #=> String
|
|
9847
9863
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
9864
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
9848
9865
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
9849
9866
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
9850
9867
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -12713,6 +12730,7 @@ module Aws::RDS
|
|
|
12713
12730
|
# resp.db_clusters[0].auto_minor_version_upgrade #=> Boolean
|
|
12714
12731
|
# resp.db_clusters[0].monitoring_interval #=> Integer
|
|
12715
12732
|
# resp.db_clusters[0].monitoring_role_arn #=> String
|
|
12733
|
+
# resp.db_clusters[0].database_insights_mode #=> String, one of "standard", "advanced"
|
|
12716
12734
|
# resp.db_clusters[0].performance_insights_enabled #=> Boolean
|
|
12717
12735
|
# resp.db_clusters[0].performance_insights_kms_key_id #=> String
|
|
12718
12736
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
|
@@ -13430,6 +13448,7 @@ module Aws::RDS
|
|
|
13430
13448
|
# resp.db_instances[0].db_instance_arn #=> String
|
|
13431
13449
|
# resp.db_instances[0].timezone #=> String
|
|
13432
13450
|
# resp.db_instances[0].iam_database_authentication_enabled #=> Boolean
|
|
13451
|
+
# resp.db_instances[0].database_insights_mode #=> String, one of "standard", "advanced"
|
|
13433
13452
|
# resp.db_instances[0].performance_insights_enabled #=> Boolean
|
|
13434
13453
|
# resp.db_instances[0].performance_insights_kms_key_id #=> String
|
|
13435
13454
|
# resp.db_instances[0].performance_insights_retention_period #=> Integer
|
|
@@ -17645,10 +17664,10 @@ module Aws::RDS
|
|
|
17645
17664
|
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
17646
17665
|
# Aurora User Guide*.
|
|
17647
17666
|
#
|
|
17648
|
-
# <note markdown="1"> This operation applies only to Aurora
|
|
17649
|
-
#
|
|
17650
|
-
#
|
|
17651
|
-
#
|
|
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.
|
|
17652
17671
|
#
|
|
17653
17672
|
# </note>
|
|
17654
17673
|
#
|
|
@@ -17790,10 +17809,10 @@ module Aws::RDS
|
|
|
17790
17809
|
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
17791
17810
|
# Aurora User Guide*.
|
|
17792
17811
|
#
|
|
17793
|
-
# <note markdown="1"> This operation applies only to Aurora
|
|
17794
|
-
#
|
|
17795
|
-
#
|
|
17796
|
-
#
|
|
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.
|
|
17797
17816
|
#
|
|
17798
17817
|
# </note>
|
|
17799
17818
|
#
|
|
@@ -18029,6 +18048,7 @@ module Aws::RDS
|
|
|
18029
18048
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
18030
18049
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
18031
18050
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
18051
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
18032
18052
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
18033
18053
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
18034
18054
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -19095,9 +19115,9 @@ module Aws::RDS
|
|
|
19095
19115
|
# Aurora User Guide*.
|
|
19096
19116
|
#
|
|
19097
19117
|
# <note markdown="1"> This parameter applies only to Aurora Serverless v1 DB clusters. To
|
|
19098
|
-
# enable or disable the HTTP endpoint for an Aurora
|
|
19099
|
-
#
|
|
19100
|
-
#
|
|
19118
|
+
# enable or disable the HTTP endpoint for an Aurora Serverless v2 or
|
|
19119
|
+
# provisioned DB cluster, use the `EnableHttpEndpoint` and
|
|
19120
|
+
# `DisableHttpEndpoint` operations.
|
|
19101
19121
|
#
|
|
19102
19122
|
# </note>
|
|
19103
19123
|
#
|
|
@@ -19238,6 +19258,9 @@ module Aws::RDS
|
|
|
19238
19258
|
#
|
|
19239
19259
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
|
19240
19260
|
#
|
|
19261
|
+
# @option params [String] :database_insights_mode
|
|
19262
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
19263
|
+
#
|
|
19241
19264
|
# @option params [Boolean] :enable_performance_insights
|
|
19242
19265
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
|
19243
19266
|
#
|
|
@@ -19593,6 +19616,7 @@ module Aws::RDS
|
|
|
19593
19616
|
# auto_minor_version_upgrade: false,
|
|
19594
19617
|
# monitoring_interval: 1,
|
|
19595
19618
|
# monitoring_role_arn: "String",
|
|
19619
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
19596
19620
|
# enable_performance_insights: false,
|
|
19597
19621
|
# performance_insights_kms_key_id: "String",
|
|
19598
19622
|
# performance_insights_retention_period: 1,
|
|
@@ -19733,6 +19757,7 @@ module Aws::RDS
|
|
|
19733
19757
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
19734
19758
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
19735
19759
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
19760
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
19736
19761
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
19737
19762
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
19738
19763
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -20845,6 +20870,9 @@ module Aws::RDS
|
|
|
20845
20870
|
#
|
|
20846
20871
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
20847
20872
|
#
|
|
20873
|
+
# @option params [String] :database_insights_mode
|
|
20874
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
20875
|
+
#
|
|
20848
20876
|
# @option params [Boolean] :enable_performance_insights
|
|
20849
20877
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
20850
20878
|
#
|
|
@@ -21294,6 +21322,7 @@ module Aws::RDS
|
|
|
21294
21322
|
# disable_domain: false,
|
|
21295
21323
|
# promotion_tier: 1,
|
|
21296
21324
|
# enable_iam_database_authentication: false,
|
|
21325
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
21297
21326
|
# enable_performance_insights: false,
|
|
21298
21327
|
# performance_insights_kms_key_id: "String",
|
|
21299
21328
|
# performance_insights_retention_period: 1,
|
|
@@ -21441,6 +21470,7 @@ module Aws::RDS
|
|
|
21441
21470
|
# resp.db_instance.db_instance_arn #=> String
|
|
21442
21471
|
# resp.db_instance.timezone #=> String
|
|
21443
21472
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
21473
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
21444
21474
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
21445
21475
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
21446
21476
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -23258,6 +23288,7 @@ module Aws::RDS
|
|
|
23258
23288
|
# resp.db_instance.db_instance_arn #=> String
|
|
23259
23289
|
# resp.db_instance.timezone #=> String
|
|
23260
23290
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
23291
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23261
23292
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
23262
23293
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
23263
23294
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -23460,6 +23491,7 @@ module Aws::RDS
|
|
|
23460
23491
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
23461
23492
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
23462
23493
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
23494
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23463
23495
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
23464
23496
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
23465
23497
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -23762,6 +23794,7 @@ module Aws::RDS
|
|
|
23762
23794
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
23763
23795
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
23764
23796
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
23797
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23765
23798
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
23766
23799
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
23767
23800
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -23981,6 +24014,7 @@ module Aws::RDS
|
|
|
23981
24014
|
# resp.db_instance.db_instance_arn #=> String
|
|
23982
24015
|
# resp.db_instance.timezone #=> String
|
|
23983
24016
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
24017
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
23984
24018
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
23985
24019
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
23986
24020
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -25352,6 +25386,7 @@ module Aws::RDS
|
|
|
25352
25386
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
25353
25387
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
25354
25388
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
25389
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
25355
25390
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
25356
25391
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
25357
25392
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -26173,6 +26208,7 @@ module Aws::RDS
|
|
|
26173
26208
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
26174
26209
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
26175
26210
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
26211
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
26176
26212
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
26177
26213
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
26178
26214
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -26973,6 +27009,7 @@ module Aws::RDS
|
|
|
26973
27009
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
26974
27010
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
26975
27011
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
27012
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
26976
27013
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
26977
27014
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
26978
27015
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -27837,6 +27874,7 @@ module Aws::RDS
|
|
|
27837
27874
|
# resp.db_instance.db_instance_arn #=> String
|
|
27838
27875
|
# resp.db_instance.timezone #=> String
|
|
27839
27876
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
27877
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
27840
27878
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
27841
27879
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
27842
27880
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -28246,6 +28284,9 @@ module Aws::RDS
|
|
|
28246
28284
|
#
|
|
28247
28285
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM
|
|
28248
28286
|
#
|
|
28287
|
+
# @option params [String] :database_insights_mode
|
|
28288
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
28289
|
+
#
|
|
28249
28290
|
# @option params [Boolean] :enable_performance_insights
|
|
28250
28291
|
# Specifies whether to enable Performance Insights for the DB instance.
|
|
28251
28292
|
#
|
|
@@ -28498,6 +28539,7 @@ module Aws::RDS
|
|
|
28498
28539
|
# s3_bucket_name: "String", # required
|
|
28499
28540
|
# s3_prefix: "String",
|
|
28500
28541
|
# s3_ingestion_role_arn: "String", # required
|
|
28542
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
|
28501
28543
|
# enable_performance_insights: false,
|
|
28502
28544
|
# performance_insights_kms_key_id: "String",
|
|
28503
28545
|
# performance_insights_retention_period: 1,
|
|
@@ -28635,6 +28677,7 @@ module Aws::RDS
|
|
|
28635
28677
|
# resp.db_instance.db_instance_arn #=> String
|
|
28636
28678
|
# resp.db_instance.timezone #=> String
|
|
28637
28679
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
28680
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
28638
28681
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
28639
28682
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
28640
28683
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -29592,6 +29635,7 @@ module Aws::RDS
|
|
|
29592
29635
|
# resp.db_instance.db_instance_arn #=> String
|
|
29593
29636
|
# resp.db_instance.timezone #=> String
|
|
29594
29637
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
29638
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
29595
29639
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
29596
29640
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
29597
29641
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -30022,6 +30066,7 @@ module Aws::RDS
|
|
|
30022
30066
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
30023
30067
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
30024
30068
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
30069
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
30025
30070
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
30026
30071
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
30027
30072
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -30213,6 +30258,7 @@ module Aws::RDS
|
|
|
30213
30258
|
# resp.db_instance.db_instance_arn #=> String
|
|
30214
30259
|
# resp.db_instance.timezone #=> String
|
|
30215
30260
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
30261
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
30216
30262
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
30217
30263
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
30218
30264
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -30865,6 +30911,7 @@ module Aws::RDS
|
|
|
30865
30911
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
|
30866
30912
|
# resp.db_cluster.monitoring_interval #=> Integer
|
|
30867
30913
|
# resp.db_cluster.monitoring_role_arn #=> String
|
|
30914
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
|
30868
30915
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
|
30869
30916
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
|
30870
30917
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
@@ -31063,6 +31110,7 @@ module Aws::RDS
|
|
|
31063
31110
|
# resp.db_instance.db_instance_arn #=> String
|
|
31064
31111
|
# resp.db_instance.timezone #=> String
|
|
31065
31112
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
31113
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
31066
31114
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
31067
31115
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
31068
31116
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -31669,6 +31717,7 @@ module Aws::RDS
|
|
|
31669
31717
|
# resp.db_instance.db_instance_arn #=> String
|
|
31670
31718
|
# resp.db_instance.timezone #=> String
|
|
31671
31719
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
|
31720
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
|
31672
31721
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
|
31673
31722
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
|
31674
31723
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
|
@@ -31745,7 +31794,7 @@ module Aws::RDS
|
|
|
31745
31794
|
tracer: tracer
|
|
31746
31795
|
)
|
|
31747
31796
|
context[:gem_name] = 'aws-sdk-rds'
|
|
31748
|
-
context[:gem_version] = '1.
|
|
31797
|
+
context[:gem_version] = '1.261.0'
|
|
31749
31798
|
Seahorse::Client::Request.new(handlers, context)
|
|
31750
31799
|
end
|
|
31751
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')
|
|
@@ -1074,6 +1075,7 @@ module Aws::RDS
|
|
|
1074
1075
|
CreateDBClusterMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
|
1075
1076
|
CreateDBClusterMessage.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
|
1076
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"))
|
|
1077
1079
|
CreateDBClusterMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
1078
1080
|
CreateDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1079
1081
|
CreateDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1154,6 +1156,7 @@ module Aws::RDS
|
|
|
1154
1156
|
CreateDBInstanceMessage.add_member(:promotion_tier, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PromotionTier"))
|
|
1155
1157
|
CreateDBInstanceMessage.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
|
|
1156
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"))
|
|
1157
1160
|
CreateDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
1158
1161
|
CreateDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1159
1162
|
CreateDBInstanceMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1196,6 +1199,7 @@ module Aws::RDS
|
|
|
1196
1199
|
CreateDBInstanceReadReplicaMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
1197
1200
|
CreateDBInstanceReadReplicaMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
|
1198
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"))
|
|
1199
1203
|
CreateDBInstanceReadReplicaMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
1200
1204
|
CreateDBInstanceReadReplicaMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1201
1205
|
CreateDBInstanceReadReplicaMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1434,6 +1438,7 @@ module Aws::RDS
|
|
|
1434
1438
|
DBCluster.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoMinorVersionUpgrade"))
|
|
1435
1439
|
DBCluster.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
|
1436
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"))
|
|
1437
1442
|
DBCluster.add_member(:performance_insights_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PerformanceInsightsEnabled"))
|
|
1438
1443
|
DBCluster.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1439
1444
|
DBCluster.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -1746,6 +1751,7 @@ module Aws::RDS
|
|
|
1746
1751
|
DBInstance.add_member(:db_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceArn"))
|
|
1747
1752
|
DBInstance.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
|
|
1748
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"))
|
|
1749
1755
|
DBInstance.add_member(:performance_insights_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PerformanceInsightsEnabled"))
|
|
1750
1756
|
DBInstance.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1751
1757
|
DBInstance.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -3092,6 +3098,7 @@ module Aws::RDS
|
|
|
3092
3098
|
ModifyDBClusterMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
|
3093
3099
|
ModifyDBClusterMessage.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
|
3094
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"))
|
|
3095
3102
|
ModifyDBClusterMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
3096
3103
|
ModifyDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3097
3104
|
ModifyDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -3162,6 +3169,7 @@ module Aws::RDS
|
|
|
3162
3169
|
ModifyDBInstanceMessage.add_member(:disable_domain, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DisableDomain"))
|
|
3163
3170
|
ModifyDBInstanceMessage.add_member(:promotion_tier, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PromotionTier"))
|
|
3164
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"))
|
|
3165
3173
|
ModifyDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
3166
3174
|
ModifyDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3167
3175
|
ModifyDBInstanceMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
@@ -3956,6 +3964,7 @@ module Aws::RDS
|
|
|
3956
3964
|
RestoreDBInstanceFromS3Message.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketName"))
|
|
3957
3965
|
RestoreDBInstanceFromS3Message.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: String, location_name: "S3Prefix"))
|
|
3958
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"))
|
|
3959
3968
|
RestoreDBInstanceFromS3Message.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
|
3960
3969
|
RestoreDBInstanceFromS3Message.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3961
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
|
@@ -2886,6 +2886,10 @@ module Aws::RDS
|
|
|
2886
2886
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
2887
2887
|
# @return [String]
|
|
2888
2888
|
#
|
|
2889
|
+
# @!attribute [rw] database_insights_mode
|
|
2890
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
2891
|
+
# @return [String]
|
|
2892
|
+
#
|
|
2889
2893
|
# @!attribute [rw] enable_performance_insights
|
|
2890
2894
|
# Specifies whether to turn on Performance Insights for the DB
|
|
2891
2895
|
# cluster.
|
|
@@ -3157,6 +3161,7 @@ module Aws::RDS
|
|
|
3157
3161
|
:auto_minor_version_upgrade,
|
|
3158
3162
|
:monitoring_interval,
|
|
3159
3163
|
:monitoring_role_arn,
|
|
3164
|
+
:database_insights_mode,
|
|
3160
3165
|
:enable_performance_insights,
|
|
3161
3166
|
:performance_insights_kms_key_id,
|
|
3162
3167
|
:performance_insights_retention_period,
|
|
@@ -4403,6 +4408,10 @@ module Aws::RDS
|
|
|
4403
4408
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
4404
4409
|
# @return [Boolean]
|
|
4405
4410
|
#
|
|
4411
|
+
# @!attribute [rw] database_insights_mode
|
|
4412
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
4413
|
+
# @return [String]
|
|
4414
|
+
#
|
|
4406
4415
|
# @!attribute [rw] enable_performance_insights
|
|
4407
4416
|
# Specifies whether to enable Performance Insights for the DB
|
|
4408
4417
|
# instance. For more information, see [Using Amazon Performance
|
|
@@ -4791,6 +4800,7 @@ module Aws::RDS
|
|
|
4791
4800
|
:promotion_tier,
|
|
4792
4801
|
:timezone,
|
|
4793
4802
|
:enable_iam_database_authentication,
|
|
4803
|
+
:database_insights_mode,
|
|
4794
4804
|
:enable_performance_insights,
|
|
4795
4805
|
:performance_insights_kms_key_id,
|
|
4796
4806
|
:performance_insights_retention_period,
|
|
@@ -5197,6 +5207,10 @@ module Aws::RDS
|
|
|
5197
5207
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
5198
5208
|
# @return [Boolean]
|
|
5199
5209
|
#
|
|
5210
|
+
# @!attribute [rw] database_insights_mode
|
|
5211
|
+
# Specifies the mode of Database Insights.
|
|
5212
|
+
# @return [String]
|
|
5213
|
+
#
|
|
5200
5214
|
# @!attribute [rw] enable_performance_insights
|
|
5201
5215
|
# Specifies whether to enable Performance Insights for the read
|
|
5202
5216
|
# replica.
|
|
@@ -5562,6 +5576,7 @@ module Aws::RDS
|
|
|
5562
5576
|
:kms_key_id,
|
|
5563
5577
|
:pre_signed_url,
|
|
5564
5578
|
:enable_iam_database_authentication,
|
|
5579
|
+
:database_insights_mode,
|
|
5565
5580
|
:enable_performance_insights,
|
|
5566
5581
|
:performance_insights_kms_key_id,
|
|
5567
5582
|
:performance_insights_retention_period,
|
|
@@ -7163,6 +7178,10 @@ module Aws::RDS
|
|
|
7163
7178
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7164
7179
|
# @return [String]
|
|
7165
7180
|
#
|
|
7181
|
+
# @!attribute [rw] database_insights_mode
|
|
7182
|
+
# The mode of Database Insights that is enabled for the cluster.
|
|
7183
|
+
# @return [String]
|
|
7184
|
+
#
|
|
7166
7185
|
# @!attribute [rw] performance_insights_enabled
|
|
7167
7186
|
# Indicates whether Performance Insights is enabled for the DB
|
|
7168
7187
|
# cluster.
|
|
@@ -7373,6 +7392,7 @@ module Aws::RDS
|
|
|
7373
7392
|
:auto_minor_version_upgrade,
|
|
7374
7393
|
:monitoring_interval,
|
|
7375
7394
|
:monitoring_role_arn,
|
|
7395
|
+
:database_insights_mode,
|
|
7376
7396
|
:performance_insights_enabled,
|
|
7377
7397
|
:performance_insights_kms_key_id,
|
|
7378
7398
|
:performance_insights_retention_period,
|
|
@@ -9036,6 +9056,10 @@ module Aws::RDS
|
|
|
9036
9056
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.Aurora_Fea_Regions_DB-eng.Feature.IAMdbauth.html
|
|
9037
9057
|
# @return [Boolean]
|
|
9038
9058
|
#
|
|
9059
|
+
# @!attribute [rw] database_insights_mode
|
|
9060
|
+
# The mode of Database Insights that is enabled for the instance.
|
|
9061
|
+
# @return [String]
|
|
9062
|
+
#
|
|
9039
9063
|
# @!attribute [rw] performance_insights_enabled
|
|
9040
9064
|
# Indicates whether Performance Insights is enabled for the DB
|
|
9041
9065
|
# instance.
|
|
@@ -9363,6 +9387,7 @@ module Aws::RDS
|
|
|
9363
9387
|
:db_instance_arn,
|
|
9364
9388
|
:timezone,
|
|
9365
9389
|
:iam_database_authentication_enabled,
|
|
9390
|
+
:database_insights_mode,
|
|
9366
9391
|
:performance_insights_enabled,
|
|
9367
9392
|
:performance_insights_kms_key_id,
|
|
9368
9393
|
:performance_insights_retention_period,
|
|
@@ -17587,9 +17612,9 @@ module Aws::RDS
|
|
|
17587
17612
|
# Aurora User Guide*.
|
|
17588
17613
|
#
|
|
17589
17614
|
# <note markdown="1"> This parameter applies only to Aurora Serverless v1 DB clusters. To
|
|
17590
|
-
# enable or disable the HTTP endpoint for an Aurora
|
|
17591
|
-
#
|
|
17592
|
-
# `
|
|
17615
|
+
# enable or disable the HTTP endpoint for an Aurora Serverless v2 or
|
|
17616
|
+
# provisioned DB cluster, use the `EnableHttpEndpoint` and
|
|
17617
|
+
# `DisableHttpEndpoint` operations.
|
|
17593
17618
|
#
|
|
17594
17619
|
# </note>
|
|
17595
17620
|
#
|
|
@@ -17740,6 +17765,10 @@ module Aws::RDS
|
|
|
17740
17765
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
|
17741
17766
|
# @return [String]
|
|
17742
17767
|
#
|
|
17768
|
+
# @!attribute [rw] database_insights_mode
|
|
17769
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
|
17770
|
+
# @return [String]
|
|
17771
|
+
#
|
|
17743
17772
|
# @!attribute [rw] enable_performance_insights
|
|
17744
17773
|
# Specifies whether to turn on Performance Insights for the DB
|
|
17745
17774
|
# cluster.
|
|
@@ -18022,6 +18051,7 @@ module Aws::RDS
|
|
|
18022
18051
|
:auto_minor_version_upgrade,
|
|
18023
18052
|
:monitoring_interval,
|
|
18024
18053
|
:monitoring_role_arn,
|
|
18054
|
+
:database_insights_mode,
|
|
18025
18055
|
:enable_performance_insights,
|
|
18026
18056
|
:performance_insights_kms_key_id,
|
|
18027
18057
|
:performance_insights_retention_period,
|
|
@@ -18961,6 +18991,10 @@ module Aws::RDS
|
|
|
18961
18991
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
|
18962
18992
|
# @return [Boolean]
|
|
18963
18993
|
#
|
|
18994
|
+
# @!attribute [rw] database_insights_mode
|
|
18995
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
18996
|
+
# @return [String]
|
|
18997
|
+
#
|
|
18964
18998
|
# @!attribute [rw] enable_performance_insights
|
|
18965
18999
|
# Specifies whether to enable Performance Insights for the DB
|
|
18966
19000
|
# instance.
|
|
@@ -19381,6 +19415,7 @@ module Aws::RDS
|
|
|
19381
19415
|
:disable_domain,
|
|
19382
19416
|
:promotion_tier,
|
|
19383
19417
|
:enable_iam_database_authentication,
|
|
19418
|
+
:database_insights_mode,
|
|
19384
19419
|
:enable_performance_insights,
|
|
19385
19420
|
:performance_insights_kms_key_id,
|
|
19386
19421
|
:performance_insights_retention_period,
|
|
@@ -25444,6 +25479,10 @@ module Aws::RDS
|
|
|
25444
25479
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM
|
|
25445
25480
|
# @return [String]
|
|
25446
25481
|
#
|
|
25482
|
+
# @!attribute [rw] database_insights_mode
|
|
25483
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
|
25484
|
+
# @return [String]
|
|
25485
|
+
#
|
|
25447
25486
|
# @!attribute [rw] enable_performance_insights
|
|
25448
25487
|
# Specifies whether to enable Performance Insights for the DB
|
|
25449
25488
|
# instance.
|
|
@@ -25705,6 +25744,7 @@ module Aws::RDS
|
|
|
25705
25744
|
:s3_bucket_name,
|
|
25706
25745
|
:s3_prefix,
|
|
25707
25746
|
:s3_ingestion_role_arn,
|
|
25747
|
+
:database_insights_mode,
|
|
25708
25748
|
:enable_performance_insights,
|
|
25709
25749
|
:performance_insights_kms_key_id,
|
|
25710
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
|
@@ -431,6 +431,7 @@ module Aws
|
|
|
431
431
|
?auto_minor_version_upgrade: bool,
|
|
432
432
|
?monitoring_interval: ::Integer,
|
|
433
433
|
?monitoring_role_arn: ::String,
|
|
434
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
434
435
|
?enable_performance_insights: bool,
|
|
435
436
|
?performance_insights_kms_key_id: ::String,
|
|
436
437
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -571,6 +572,7 @@ module Aws
|
|
|
571
572
|
?promotion_tier: ::Integer,
|
|
572
573
|
?timezone: ::String,
|
|
573
574
|
?enable_iam_database_authentication: bool,
|
|
575
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
574
576
|
?enable_performance_insights: bool,
|
|
575
577
|
?performance_insights_kms_key_id: ::String,
|
|
576
578
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -630,6 +632,7 @@ module Aws
|
|
|
630
632
|
?kms_key_id: ::String,
|
|
631
633
|
?pre_signed_url: ::String,
|
|
632
634
|
?enable_iam_database_authentication: bool,
|
|
635
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
633
636
|
?enable_performance_insights: bool,
|
|
634
637
|
?performance_insights_kms_key_id: ::String,
|
|
635
638
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -2304,6 +2307,7 @@ module Aws
|
|
|
2304
2307
|
?auto_minor_version_upgrade: bool,
|
|
2305
2308
|
?monitoring_interval: ::Integer,
|
|
2306
2309
|
?monitoring_role_arn: ::String,
|
|
2310
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
2307
2311
|
?enable_performance_insights: bool,
|
|
2308
2312
|
?performance_insights_kms_key_id: ::String,
|
|
2309
2313
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -2429,6 +2433,7 @@ module Aws
|
|
|
2429
2433
|
?disable_domain: bool,
|
|
2430
2434
|
?promotion_tier: ::Integer,
|
|
2431
2435
|
?enable_iam_database_authentication: bool,
|
|
2436
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
2432
2437
|
?enable_performance_insights: bool,
|
|
2433
2438
|
?performance_insights_kms_key_id: ::String,
|
|
2434
2439
|
?performance_insights_retention_period: ::Integer,
|
|
@@ -3203,6 +3208,7 @@ module Aws
|
|
|
3203
3208
|
s3_bucket_name: ::String,
|
|
3204
3209
|
?s3_prefix: ::String,
|
|
3205
3210
|
s3_ingestion_role_arn: ::String,
|
|
3211
|
+
?database_insights_mode: ("standard" | "advanced"),
|
|
3206
3212
|
?enable_performance_insights: bool,
|
|
3207
3213
|
?performance_insights_kms_key_id: ::String,
|
|
3208
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
|
@@ -386,6 +386,7 @@ module Aws::RDS
|
|
|
386
386
|
attr_accessor auto_minor_version_upgrade: bool
|
|
387
387
|
attr_accessor monitoring_interval: ::Integer
|
|
388
388
|
attr_accessor monitoring_role_arn: ::String
|
|
389
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
389
390
|
attr_accessor enable_performance_insights: bool
|
|
390
391
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
391
392
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -478,6 +479,7 @@ module Aws::RDS
|
|
|
478
479
|
attr_accessor promotion_tier: ::Integer
|
|
479
480
|
attr_accessor timezone: ::String
|
|
480
481
|
attr_accessor enable_iam_database_authentication: bool
|
|
482
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
481
483
|
attr_accessor enable_performance_insights: bool
|
|
482
484
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
483
485
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -522,6 +524,7 @@ module Aws::RDS
|
|
|
522
524
|
attr_accessor kms_key_id: ::String
|
|
523
525
|
attr_accessor pre_signed_url: ::String
|
|
524
526
|
attr_accessor enable_iam_database_authentication: bool
|
|
527
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
525
528
|
attr_accessor enable_performance_insights: bool
|
|
526
529
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
527
530
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -816,6 +819,7 @@ module Aws::RDS
|
|
|
816
819
|
attr_accessor auto_minor_version_upgrade: bool
|
|
817
820
|
attr_accessor monitoring_interval: ::Integer
|
|
818
821
|
attr_accessor monitoring_role_arn: ::String
|
|
822
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
819
823
|
attr_accessor performance_insights_enabled: bool
|
|
820
824
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
821
825
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -1165,6 +1169,7 @@ module Aws::RDS
|
|
|
1165
1169
|
attr_accessor db_instance_arn: ::String
|
|
1166
1170
|
attr_accessor timezone: ::String
|
|
1167
1171
|
attr_accessor iam_database_authentication_enabled: bool
|
|
1172
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
1168
1173
|
attr_accessor performance_insights_enabled: bool
|
|
1169
1174
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
1170
1175
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -2854,6 +2859,7 @@ module Aws::RDS
|
|
|
2854
2859
|
attr_accessor auto_minor_version_upgrade: bool
|
|
2855
2860
|
attr_accessor monitoring_interval: ::Integer
|
|
2856
2861
|
attr_accessor monitoring_role_arn: ::String
|
|
2862
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
2857
2863
|
attr_accessor enable_performance_insights: bool
|
|
2858
2864
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
2859
2865
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -2934,6 +2940,7 @@ module Aws::RDS
|
|
|
2934
2940
|
attr_accessor disable_domain: bool
|
|
2935
2941
|
attr_accessor promotion_tier: ::Integer
|
|
2936
2942
|
attr_accessor enable_iam_database_authentication: bool
|
|
2943
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
2937
2944
|
attr_accessor enable_performance_insights: bool
|
|
2938
2945
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
2939
2946
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
@@ -3863,6 +3870,7 @@ module Aws::RDS
|
|
|
3863
3870
|
attr_accessor s3_bucket_name: ::String
|
|
3864
3871
|
attr_accessor s3_prefix: ::String
|
|
3865
3872
|
attr_accessor s3_ingestion_role_arn: ::String
|
|
3873
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
3866
3874
|
attr_accessor enable_performance_insights: bool
|
|
3867
3875
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
3868
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
|