aws-sdk-rds 1.265.0 → 1.272.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +141 -116
- data/lib/aws-sdk-rds/db_cluster.rb +35 -20
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -4
- data/lib/aws-sdk-rds/db_instance.rb +21 -21
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-rds/errors.rb +205 -0
- data/lib/aws-sdk-rds/resource.rb +17 -15
- data/lib/aws-sdk-rds/types.rb +102 -65
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -502,13 +502,14 @@ module Aws::RDS
|
|
502
502
|
#
|
503
503
|
# The following values are valid for each DB engine:
|
504
504
|
#
|
505
|
-
# * Aurora MySQL - `audit | error | general | slowquery
|
505
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery |
|
506
|
+
# iam-db-auth-error`
|
506
507
|
#
|
507
|
-
# * Aurora PostgreSQL - `postgresql`
|
508
|
+
# * Aurora PostgreSQL - `instance | postgresql | iam-db-auth-error`
|
508
509
|
#
|
509
|
-
# * RDS for MySQL - `error | general | slowquery`
|
510
|
+
# * RDS for MySQL - `error | general | slowquery | iam-db-auth-error`
|
510
511
|
#
|
511
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
512
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
512
513
|
#
|
513
514
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
514
515
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -778,7 +779,7 @@ module Aws::RDS
|
|
778
779
|
# `PerformanceInsightsEnabled` parameter to `true` and the
|
779
780
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
780
781
|
#
|
781
|
-
# Valid for Cluster Type: Aurora DB clusters
|
782
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
782
783
|
# @option options [Boolean] :enable_performance_insights
|
783
784
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
784
785
|
#
|
@@ -1903,7 +1904,7 @@ module Aws::RDS
|
|
1903
1904
|
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
1904
1905
|
#
|
1905
1906
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
1906
|
-
# `
|
1907
|
+
# `gp3`.
|
1907
1908
|
# @option options [String] :tde_credential_arn
|
1908
1909
|
# The ARN from the key store with which to associate the instance for
|
1909
1910
|
# TDE encryption.
|
@@ -2093,10 +2094,8 @@ module Aws::RDS
|
|
2093
2094
|
# @option options [String] :database_insights_mode
|
2094
2095
|
# The mode of Database Insights to enable for the DB instance.
|
2095
2096
|
#
|
2096
|
-
#
|
2097
|
-
#
|
2098
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
2099
|
-
# changed.
|
2097
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
2098
|
+
# can't change this value.
|
2100
2099
|
#
|
2101
2100
|
# </note>
|
2102
2101
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2155,17 +2154,19 @@ module Aws::RDS
|
|
2155
2154
|
#
|
2156
2155
|
# The following values are valid for each DB engine:
|
2157
2156
|
#
|
2158
|
-
# * RDS for Db2 - `diag.log | notify.log`
|
2157
|
+
# * RDS for Db2 - `diag.log | notify.log | iam-db-auth-error`
|
2159
2158
|
#
|
2160
|
-
# * RDS for MariaDB - `audit | error | general | slowquery
|
2159
|
+
# * RDS for MariaDB - `audit | error | general | slowquery |
|
2160
|
+
# iam-db-auth-error`
|
2161
2161
|
#
|
2162
2162
|
# * RDS for Microsoft SQL Server - `agent | error`
|
2163
2163
|
#
|
2164
|
-
# * RDS for MySQL - `audit | error | general | slowquery
|
2164
|
+
# * RDS for MySQL - `audit | error | general | slowquery |
|
2165
|
+
# iam-db-auth-error`
|
2165
2166
|
#
|
2166
2167
|
# * RDS for Oracle - `alert | audit | listener | trace | oemagent`
|
2167
2168
|
#
|
2168
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
2169
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
2169
2170
|
#
|
2170
2171
|
#
|
2171
2172
|
#
|
@@ -2283,7 +2284,8 @@ module Aws::RDS
|
|
2283
2284
|
#
|
2284
2285
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2285
2286
|
# @option options [Integer] :storage_throughput
|
2286
|
-
# The storage throughput value for the
|
2287
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
2288
|
+
# DB instance.
|
2287
2289
|
#
|
2288
2290
|
# This setting applies only to the `gp3` storage type.
|
2289
2291
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1086,12 +1086,17 @@ module Aws::RDS
|
|
1086
1086
|
# @return [Array<String>]
|
1087
1087
|
#
|
1088
1088
|
# @!attribute [rw] init_query
|
1089
|
-
#
|
1090
|
-
#
|
1091
|
-
#
|
1092
|
-
#
|
1093
|
-
#
|
1094
|
-
#
|
1089
|
+
# Add an initialization query, or modify the current one. You can
|
1090
|
+
# specify one or more SQL statements for the proxy to run when opening
|
1091
|
+
# each new database connection. The setting is typically used with
|
1092
|
+
# `SET` statements to make sure that each connection has identical
|
1093
|
+
# settings. Make sure that the query you add is valid. To include
|
1094
|
+
# multiple variables in a single `SET` statement, use comma
|
1095
|
+
# separators.
|
1096
|
+
#
|
1097
|
+
# For example: `SET variable1=value1, variable2=value2`
|
1098
|
+
#
|
1099
|
+
# For multiple statements, use semicolons as the separator.
|
1095
1100
|
#
|
1096
1101
|
# Default: no initialization query
|
1097
1102
|
# @return [String]
|
@@ -2593,13 +2598,14 @@ module Aws::RDS
|
|
2593
2598
|
#
|
2594
2599
|
# The following values are valid for each DB engine:
|
2595
2600
|
#
|
2596
|
-
# * Aurora MySQL - `audit | error | general | slowquery
|
2601
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery |
|
2602
|
+
# iam-db-auth-error`
|
2597
2603
|
#
|
2598
|
-
# * Aurora PostgreSQL - `postgresql`
|
2604
|
+
# * Aurora PostgreSQL - `instance | postgresql | iam-db-auth-error`
|
2599
2605
|
#
|
2600
|
-
# * RDS for MySQL - `error | general | slowquery`
|
2606
|
+
# * RDS for MySQL - `error | general | slowquery | iam-db-auth-error`
|
2601
2607
|
#
|
2602
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
2608
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
2603
2609
|
#
|
2604
2610
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2605
2611
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -2907,7 +2913,7 @@ module Aws::RDS
|
|
2907
2913
|
# `PerformanceInsightsEnabled` parameter to `true` and the
|
2908
2914
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
2909
2915
|
#
|
2910
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2916
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2911
2917
|
# @return [String]
|
2912
2918
|
#
|
2913
2919
|
# @!attribute [rw] enable_performance_insights
|
@@ -4204,7 +4210,7 @@ module Aws::RDS
|
|
4204
4210
|
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
4205
4211
|
#
|
4206
4212
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
4207
|
-
# `
|
4213
|
+
# `gp3`.
|
4208
4214
|
# @return [String]
|
4209
4215
|
#
|
4210
4216
|
# @!attribute [rw] tde_credential_arn
|
@@ -4431,10 +4437,8 @@ module Aws::RDS
|
|
4431
4437
|
# @!attribute [rw] database_insights_mode
|
4432
4438
|
# The mode of Database Insights to enable for the DB instance.
|
4433
4439
|
#
|
4434
|
-
#
|
4435
|
-
#
|
4436
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
4437
|
-
# changed.
|
4440
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
4441
|
+
# can't change this value.
|
4438
4442
|
#
|
4439
4443
|
# </note>
|
4440
4444
|
# @return [String]
|
@@ -4502,17 +4506,19 @@ module Aws::RDS
|
|
4502
4506
|
#
|
4503
4507
|
# The following values are valid for each DB engine:
|
4504
4508
|
#
|
4505
|
-
# * RDS for Db2 - `diag.log | notify.log`
|
4509
|
+
# * RDS for Db2 - `diag.log | notify.log | iam-db-auth-error`
|
4506
4510
|
#
|
4507
|
-
# * RDS for MariaDB - `audit | error | general | slowquery
|
4511
|
+
# * RDS for MariaDB - `audit | error | general | slowquery |
|
4512
|
+
# iam-db-auth-error`
|
4508
4513
|
#
|
4509
4514
|
# * RDS for Microsoft SQL Server - `agent | error`
|
4510
4515
|
#
|
4511
|
-
# * RDS for MySQL - `audit | error | general | slowquery
|
4516
|
+
# * RDS for MySQL - `audit | error | general | slowquery |
|
4517
|
+
# iam-db-auth-error`
|
4512
4518
|
#
|
4513
4519
|
# * RDS for Oracle - `alert | audit | listener | trace | oemagent`
|
4514
4520
|
#
|
4515
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
4521
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
4516
4522
|
#
|
4517
4523
|
#
|
4518
4524
|
#
|
@@ -4647,7 +4653,8 @@ module Aws::RDS
|
|
4647
4653
|
# @return [String]
|
4648
4654
|
#
|
4649
4655
|
# @!attribute [rw] storage_throughput
|
4650
|
-
# The storage throughput value
|
4656
|
+
# The storage throughput value, in mebibyte per second (MiBps), for
|
4657
|
+
# the DB instance.
|
4651
4658
|
#
|
4652
4659
|
# This setting applies only to the `gp3` storage type.
|
4653
4660
|
#
|
@@ -5071,7 +5078,7 @@ module Aws::RDS
|
|
5071
5078
|
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
5072
5079
|
#
|
5073
5080
|
# Default: `io1` if the `Iops` parameter is specified. Otherwise,
|
5074
|
-
# `
|
5081
|
+
# `gp3`.
|
5075
5082
|
# @return [String]
|
5076
5083
|
#
|
5077
5084
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -5237,7 +5244,7 @@ module Aws::RDS
|
|
5237
5244
|
# @!attribute [rw] database_insights_mode
|
5238
5245
|
# The mode of Database Insights to enable for the read replica.
|
5239
5246
|
#
|
5240
|
-
# <note markdown="1">
|
5247
|
+
# <note markdown="1"> This setting isn't supported.
|
5241
5248
|
#
|
5242
5249
|
# </note>
|
5243
5250
|
# @return [String]
|
@@ -6533,13 +6540,13 @@ module Aws::RDS
|
|
6533
6540
|
# @!attribute [rw] data_filter
|
6534
6541
|
# Data filtering options for the integration. For more information,
|
6535
6542
|
# see [Data filtering for Aurora zero-ETL integrations with Amazon
|
6536
|
-
# Redshift][1]
|
6537
|
-
#
|
6538
|
-
# Valid for: Integrations with Aurora MySQL source DB clusters only
|
6543
|
+
# Redshift][1] or [Data filtering for Amazon RDS zero-ETL integrations
|
6544
|
+
# with Amazon Redshift][2].
|
6539
6545
|
#
|
6540
6546
|
#
|
6541
6547
|
#
|
6542
6548
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html
|
6549
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html
|
6543
6550
|
# @return [String]
|
6544
6551
|
#
|
6545
6552
|
# @!attribute [rw] description
|
@@ -6802,11 +6809,9 @@ module Aws::RDS
|
|
6802
6809
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
6803
6810
|
#
|
6804
6811
|
# @!attribute [rw] allocated_storage
|
6805
|
-
#
|
6806
|
-
#
|
6807
|
-
#
|
6808
|
-
# storage size isn't fixed, but instead automatically adjusts as
|
6809
|
-
# needed.
|
6812
|
+
# `AllocatedStorage` specifies the allocated storage size in gibibytes
|
6813
|
+
# (GiB). For Aurora, `AllocatedStorage` can vary because Aurora DB
|
6814
|
+
# cluster storage size adjusts as needed.
|
6810
6815
|
# @return [Integer]
|
6811
6816
|
#
|
6812
6817
|
# @!attribute [rw] availability_zones
|
@@ -6988,6 +6993,18 @@ module Aws::RDS
|
|
6988
6993
|
#
|
6989
6994
|
# @!attribute [rw] clone_group_id
|
6990
6995
|
# The ID of the clone group with which the DB cluster is associated.
|
6996
|
+
# For newly created clusters, the ID is typically null.
|
6997
|
+
#
|
6998
|
+
# If you clone a DB cluster when the ID is null, the operation
|
6999
|
+
# populates the ID value for the source cluster and the clone because
|
7000
|
+
# both clusters become part of the same clone group. Even if you
|
7001
|
+
# delete the clone cluster, the clone group ID remains for the
|
7002
|
+
# lifetime of the source cluster to show that it was used in a cloning
|
7003
|
+
# operation.
|
7004
|
+
#
|
7005
|
+
# For PITR, the clone group ID is inherited from the source cluster.
|
7006
|
+
# For snapshot restore operations, the clone group ID isn't inherited
|
7007
|
+
# from the source cluster.
|
6991
7008
|
# @return [String]
|
6992
7009
|
#
|
6993
7010
|
# @!attribute [rw] cluster_create_time
|
@@ -11586,7 +11603,8 @@ module Aws::RDS
|
|
11586
11603
|
# Specifies whether to remove automated backups immediately after the
|
11587
11604
|
# DB cluster is deleted. This parameter isn't case-sensitive. The
|
11588
11605
|
# default is to remove automated backups immediately after the DB
|
11589
|
-
# cluster is deleted
|
11606
|
+
# cluster is deleted, unless the Amazon Web Services Backup policy
|
11607
|
+
# specifies a point-in-time restore rule.
|
11590
11608
|
# @return [Boolean]
|
11591
11609
|
#
|
11592
11610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterMessage AWS API Documentation
|
@@ -17512,13 +17530,14 @@ module Aws::RDS
|
|
17512
17530
|
#
|
17513
17531
|
# The following values are valid for each DB engine:
|
17514
17532
|
#
|
17515
|
-
# * Aurora MySQL - `audit | error | general | slowquery
|
17533
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery |
|
17534
|
+
# iam-db-auth-error`
|
17516
17535
|
#
|
17517
|
-
# * Aurora PostgreSQL - `postgresql`
|
17536
|
+
# * Aurora PostgreSQL - `instance | postgresql | iam-db-auth-error`
|
17518
17537
|
#
|
17519
|
-
# * RDS for MySQL - `error | general | slowquery`
|
17538
|
+
# * RDS for MySQL - `error | general | slowquery | iam-db-auth-error`
|
17520
17539
|
#
|
17521
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
17540
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
17522
17541
|
#
|
17523
17542
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
17524
17543
|
# see [ Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -17825,7 +17844,7 @@ module Aws::RDS
|
|
17825
17844
|
# If you change the value from `advanced` to `standard`, you must set
|
17826
17845
|
# the `PerformanceInsightsEnabled` parameter to `false`.
|
17827
17846
|
#
|
17828
|
-
# Valid for Cluster Type: Aurora DB clusters
|
17847
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
17829
17848
|
# @return [String]
|
17830
17849
|
#
|
17831
17850
|
# @!attribute [rw] enable_performance_insights
|
@@ -19056,10 +19075,8 @@ module Aws::RDS
|
|
19056
19075
|
# Specifies the mode of Database Insights to enable for the DB
|
19057
19076
|
# instance.
|
19058
19077
|
#
|
19059
|
-
#
|
19060
|
-
#
|
19061
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
19062
|
-
# changed.
|
19078
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
19079
|
+
# can't change this value.
|
19063
19080
|
#
|
19064
19081
|
# </note>
|
19065
19082
|
# @return [String]
|
@@ -19127,13 +19144,14 @@ module Aws::RDS
|
|
19127
19144
|
#
|
19128
19145
|
# The following values are valid for each DB engine:
|
19129
19146
|
#
|
19130
|
-
# * Aurora MySQL - `audit | error | general | slowquery
|
19147
|
+
# * Aurora MySQL - `audit | error | general | slowquery |
|
19148
|
+
# iam-db-auth-error`
|
19131
19149
|
#
|
19132
|
-
# * Aurora PostgreSQL - `postgresql`
|
19150
|
+
# * Aurora PostgreSQL - `postgresql | iam-db-auth-error`
|
19133
19151
|
#
|
19134
|
-
# * RDS for MySQL - `error | general | slowquery`
|
19152
|
+
# * RDS for MySQL - `error | general | slowquery | iam-db-auth-error`
|
19135
19153
|
#
|
19136
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
19154
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
19137
19155
|
#
|
19138
19156
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
19139
19157
|
# see [ Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -19742,6 +19760,8 @@ module Aws::RDS
|
|
19742
19760
|
# begin with a letter and must contain only ASCII letters, digits, and
|
19743
19761
|
# hyphens; it can't end with a hyphen or contain two consecutive
|
19744
19762
|
# hyphens.
|
19763
|
+
#
|
19764
|
+
# You can't rename the `default` target group.
|
19745
19765
|
# @return [String]
|
19746
19766
|
#
|
19747
19767
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyTargetGroupRequest AWS API Documentation
|
@@ -20193,11 +20213,13 @@ module Aws::RDS
|
|
20193
20213
|
# @!attribute [rw] data_filter
|
20194
20214
|
# A new data filter for the integration. For more information, see
|
20195
20215
|
# [Data filtering for Aurora zero-ETL integrations with Amazon
|
20196
|
-
# Redshift][1]
|
20216
|
+
# Redshift][1] or [Data filtering for Amazon RDS zero-ETL integrations
|
20217
|
+
# with Amazon Redshift][2].
|
20197
20218
|
#
|
20198
20219
|
#
|
20199
20220
|
#
|
20200
20221
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html
|
20222
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html
|
20201
20223
|
# @return [String]
|
20202
20224
|
#
|
20203
20225
|
# @!attribute [rw] description
|
@@ -22991,15 +23013,26 @@ module Aws::RDS
|
|
22991
23013
|
#
|
22992
23014
|
# **Aurora MySQL**
|
22993
23015
|
#
|
22994
|
-
# Possible values are `audit`, `error`, `general`,
|
23016
|
+
# Possible values are `audit`, `error`, `general`, `instance`,
|
23017
|
+
# `slowquery`, and `iam-db-auth-error`.
|
23018
|
+
#
|
23019
|
+
# **Aurora PostgreSQL**
|
23020
|
+
#
|
23021
|
+
# Possible value are `instance`, `postgresql`, and
|
23022
|
+
# `iam-db-auth-error`.
|
23023
|
+
#
|
23024
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
23025
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
23026
|
+
# *Amazon RDS User Guide*.
|
22995
23027
|
#
|
22996
23028
|
# For more information about exporting CloudWatch Logs for Amazon
|
22997
|
-
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][
|
23029
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
22998
23030
|
# in the *Amazon Aurora User Guide*.
|
22999
23031
|
#
|
23000
23032
|
#
|
23001
23033
|
#
|
23002
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
23034
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
23035
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
23003
23036
|
# @return [Array<String>]
|
23004
23037
|
#
|
23005
23038
|
# @!attribute [rw] deletion_protection
|
@@ -23467,19 +23500,23 @@ module Aws::RDS
|
|
23467
23500
|
#
|
23468
23501
|
# **RDS for MySQL**
|
23469
23502
|
#
|
23470
|
-
# Possible values are `error`, `general`,
|
23503
|
+
# Possible values are `error`, `general`, `slowquery`, and
|
23504
|
+
# `iam-db-auth-error`.
|
23471
23505
|
#
|
23472
23506
|
# **RDS for PostgreSQL**
|
23473
23507
|
#
|
23474
|
-
# Possible values are `postgresql` and
|
23508
|
+
# Possible values are `postgresql`, `upgrade`, and
|
23509
|
+
# `iam-db-auth-error`.
|
23475
23510
|
#
|
23476
23511
|
# **Aurora MySQL**
|
23477
23512
|
#
|
23478
|
-
# Possible values are `audit`, `error`, `general`,
|
23513
|
+
# Possible values are `audit`, `error`, `general`, `instance`,
|
23514
|
+
# `slowquery`, and `iam-db-auth-error`.
|
23479
23515
|
#
|
23480
23516
|
# **Aurora PostgreSQL**
|
23481
23517
|
#
|
23482
|
-
# Possible value
|
23518
|
+
# Possible value are `instance`, `postgresql`, and
|
23519
|
+
# `iam-db-auth-error`.
|
23483
23520
|
#
|
23484
23521
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
23485
23522
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -24074,19 +24111,23 @@ module Aws::RDS
|
|
24074
24111
|
#
|
24075
24112
|
# **RDS for MySQL**
|
24076
24113
|
#
|
24077
|
-
# Possible values are `error`, `general`,
|
24114
|
+
# Possible values are `error`, `general`, `slowquery`, and
|
24115
|
+
# `iam-db-auth-error`.
|
24078
24116
|
#
|
24079
24117
|
# **RDS for PostgreSQL**
|
24080
24118
|
#
|
24081
|
-
# Possible values are `postgresql` and
|
24119
|
+
# Possible values are `postgresql`, `upgrade`, and
|
24120
|
+
# `iam-db-auth-error`.
|
24082
24121
|
#
|
24083
24122
|
# **Aurora MySQL**
|
24084
24123
|
#
|
24085
|
-
# Possible values are `audit`, `error`, `general`,
|
24124
|
+
# Possible values are `audit`, `error`, `general`, `instance`,
|
24125
|
+
# `slowquery`, and `iam-db-auth-error`.
|
24086
24126
|
#
|
24087
24127
|
# **Aurora PostgreSQL**
|
24088
24128
|
#
|
24089
|
-
# Possible value
|
24129
|
+
# Possible value are `instance`, `postgresql`, and
|
24130
|
+
# `iam-db-auth-error`.
|
24090
24131
|
#
|
24091
24132
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
24092
24133
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -24741,7 +24782,7 @@ module Aws::RDS
|
|
24741
24782
|
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
24742
24783
|
# for the `Iops` parameter.
|
24743
24784
|
#
|
24744
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise `
|
24785
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp3`
|
24745
24786
|
# @return [String]
|
24746
24787
|
#
|
24747
24788
|
# @!attribute [rw] tde_credential_arn
|
@@ -25580,10 +25621,8 @@ module Aws::RDS
|
|
25580
25621
|
# Specifies the mode of Database Insights to enable for the DB
|
25581
25622
|
# instance.
|
25582
25623
|
#
|
25583
|
-
#
|
25584
|
-
#
|
25585
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
25586
|
-
# changed.
|
25624
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
25625
|
+
# can't change this value.
|
25587
25626
|
#
|
25588
25627
|
# </note>
|
25589
25628
|
# @return [String]
|
@@ -26169,7 +26208,7 @@ module Aws::RDS
|
|
26169
26208
|
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
26170
26209
|
#
|
26171
26210
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
26172
|
-
# `
|
26211
|
+
# `gp3`.
|
26173
26212
|
#
|
26174
26213
|
# Constraints:
|
26175
26214
|
#
|
@@ -28319,8 +28358,6 @@ module Aws::RDS
|
|
28319
28358
|
# @!attribute [rw] iam_auth
|
28320
28359
|
# Whether to require or disallow Amazon Web Services Identity and
|
28321
28360
|
# Access Management (IAM) authentication for connections to the proxy.
|
28322
|
-
# The `ENABLED` value is valid only for proxies with RDS for Microsoft
|
28323
|
-
# SQL Server.
|
28324
28361
|
# @return [String]
|
28325
28362
|
#
|
28326
28363
|
# @!attribute [rw] client_password_auth_type
|
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.272.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> 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.272.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: 2025-
|
11
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|