aws-sdk-rds 1.265.0 → 1.267.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +55 -18
- data/lib/aws-sdk-rds/db_cluster.rb +19 -7
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +3 -2
- data/lib/aws-sdk-rds/db_instance.rb +2 -1
- data/lib/aws-sdk-rds/resource.rb +4 -3
- data/lib/aws-sdk-rds/types.rb +37 -12
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c1233f5f8a7daa8f973a771b602965d938835e11d401fa38874a97c9ff999f4
|
4
|
+
data.tar.gz: 242bd1528fd68efc88d41a3ed3819714a8f74834364a9f3d1366b886451ed748
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48f4178a3ab4324cb2f619a67cb2ff425465ae71be5618f4a440941397bd4b8abdc1620148e3def629d2225ba1d8e2a440378aa2eb233e4dc57ef0b6c5f94cd0
|
7
|
+
data.tar.gz: d93df26c83b956404c4fdb5d26999a6f9da387caf6138faa228aa05645c4d11e693d389a84c575974f1667d2780d86d6571524bf93b009254cd6d1095b880f26
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.267.0 (2025-01-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates to Aurora MySQL and Aurora PostgreSQL API pages with instance log type in the create and modify DB Cluster.
|
8
|
+
|
9
|
+
1.266.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.265.0 (2025-01-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.267.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -259,11 +259,34 @@ module Aws::RDS
|
|
259
259
|
# Used when loading credentials from the shared credentials file
|
260
260
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
261
261
|
#
|
262
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
263
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
264
|
+
#
|
265
|
+
# * `when_supported` - (default) When set, a checksum will be
|
266
|
+
# calculated for all request payloads of operations modeled with the
|
267
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
268
|
+
# `requestAlgorithmMember` is modeled.
|
269
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
270
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
271
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
272
|
+
# is modeled and supplied.
|
273
|
+
#
|
262
274
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
263
275
|
# The minimum size in bytes that triggers compression for request
|
264
276
|
# bodies. The value must be non-negative integer value between 0
|
265
277
|
# and 10485780 bytes inclusive.
|
266
278
|
#
|
279
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
280
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
281
|
+
#
|
282
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
283
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
284
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
285
|
+
# are supported.
|
286
|
+
# * `when_required` - When set, checksum validation is not performed on
|
287
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
288
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
289
|
+
#
|
267
290
|
# @option options [Proc] :retry_backoff
|
268
291
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
269
292
|
# This option is only used in the `legacy` retry mode.
|
@@ -3062,9 +3085,9 @@ module Aws::RDS
|
|
3062
3085
|
#
|
3063
3086
|
# The following values are valid for each DB engine:
|
3064
3087
|
#
|
3065
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
3088
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
3066
3089
|
#
|
3067
|
-
# * Aurora PostgreSQL - `postgresql`
|
3090
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
3068
3091
|
#
|
3069
3092
|
# * RDS for MySQL - `error | general | slowquery`
|
3070
3093
|
#
|
@@ -5563,7 +5586,8 @@ module Aws::RDS
|
|
5563
5586
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
5564
5587
|
#
|
5565
5588
|
# @option params [Integer] :storage_throughput
|
5566
|
-
# The storage throughput value for the
|
5589
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
5590
|
+
# DB instance.
|
5567
5591
|
#
|
5568
5592
|
# This setting applies only to the `gp3` storage type.
|
5569
5593
|
#
|
@@ -18997,9 +19021,9 @@ module Aws::RDS
|
|
18997
19021
|
#
|
18998
19022
|
# The following values are valid for each DB engine:
|
18999
19023
|
#
|
19000
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
19024
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
19001
19025
|
#
|
19002
|
-
# * Aurora PostgreSQL - `postgresql`
|
19026
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
19003
19027
|
#
|
19004
19028
|
# * RDS for MySQL - `error | general | slowquery`
|
19005
19029
|
#
|
@@ -25048,15 +25072,25 @@ module Aws::RDS
|
|
25048
25072
|
#
|
25049
25073
|
# **Aurora MySQL**
|
25050
25074
|
#
|
25051
|
-
# Possible values are `audit`, `error`, `general`, and
|
25075
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
25076
|
+
# `slowquery`.
|
25077
|
+
#
|
25078
|
+
# **Aurora PostgreSQL**
|
25079
|
+
#
|
25080
|
+
# Possible value are `instance` and `postgresql`.
|
25081
|
+
#
|
25082
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
25083
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
25084
|
+
# *Amazon RDS User Guide*.
|
25052
25085
|
#
|
25053
25086
|
# For more information about exporting CloudWatch Logs for Amazon
|
25054
|
-
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][
|
25087
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
25055
25088
|
# the *Amazon Aurora User Guide*.
|
25056
25089
|
#
|
25057
25090
|
#
|
25058
25091
|
#
|
25059
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
25092
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
25093
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
25060
25094
|
#
|
25061
25095
|
# @option params [Boolean] :deletion_protection
|
25062
25096
|
# Specifies whether to enable deletion protection for the DB cluster.
|
@@ -25722,11 +25756,12 @@ module Aws::RDS
|
|
25722
25756
|
#
|
25723
25757
|
# **Aurora MySQL**
|
25724
25758
|
#
|
25725
|
-
# Possible values are `audit`, `error`, `general`, and
|
25759
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
25760
|
+
# `slowquery`.
|
25726
25761
|
#
|
25727
25762
|
# **Aurora PostgreSQL**
|
25728
25763
|
#
|
25729
|
-
# Possible value
|
25764
|
+
# Possible value are `instance` and `postgresql`.
|
25730
25765
|
#
|
25731
25766
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
25732
25767
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -26520,11 +26555,12 @@ module Aws::RDS
|
|
26520
26555
|
#
|
26521
26556
|
# **Aurora MySQL**
|
26522
26557
|
#
|
26523
|
-
# Possible values are `audit`, `error`, `general`, and
|
26558
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
26559
|
+
# `slowquery`.
|
26524
26560
|
#
|
26525
26561
|
# **Aurora PostgreSQL**
|
26526
26562
|
#
|
26527
|
-
# Possible value
|
26563
|
+
# Possible value are `instance` and `postgresql`.
|
26528
26564
|
#
|
26529
26565
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
26530
26566
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -31020,11 +31056,12 @@ module Aws::RDS
|
|
31020
31056
|
req.send_request(options)
|
31021
31057
|
end
|
31022
31058
|
|
31023
|
-
# Stops an Amazon RDS DB instance. When you stop a DB
|
31024
|
-
# RDS retains the DB instance's metadata, including
|
31025
|
-
# parameter group, and option group membership. Amazon
|
31026
|
-
# the transaction logs so you can do a point-in-time
|
31027
|
-
# necessary.
|
31059
|
+
# Stops an Amazon RDS DB instance temporarily. When you stop a DB
|
31060
|
+
# instance, Amazon RDS retains the DB instance's metadata, including
|
31061
|
+
# its endpoint, DB parameter group, and option group membership. Amazon
|
31062
|
+
# RDS also retains the transaction logs so you can do a point-in-time
|
31063
|
+
# restore if necessary. The instance restarts automatically after 7
|
31064
|
+
# days.
|
31028
31065
|
#
|
31029
31066
|
# For more information, see [ Stopping an Amazon RDS DB Instance
|
31030
31067
|
# Temporarily][1] in the *Amazon RDS User Guide.*
|
@@ -31871,7 +31908,7 @@ module Aws::RDS
|
|
31871
31908
|
tracer: tracer
|
31872
31909
|
)
|
31873
31910
|
context[:gem_name] = 'aws-sdk-rds'
|
31874
|
-
context[:gem_version] = '1.
|
31911
|
+
context[:gem_version] = '1.267.0'
|
31875
31912
|
Seahorse::Client::Request.new(handlers, context)
|
31876
31913
|
end
|
31877
31914
|
|
@@ -281,7 +281,18 @@ module Aws::RDS
|
|
281
281
|
data[:iam_database_authentication_enabled]
|
282
282
|
end
|
283
283
|
|
284
|
-
# The ID of the clone group with which the DB cluster is associated.
|
284
|
+
# The ID of the clone group with which the DB cluster is associated. For
|
285
|
+
# newly created clusters, the ID is typically null.
|
286
|
+
#
|
287
|
+
# If you clone a DB cluster when the ID is null, the operation populates
|
288
|
+
# the ID value for the source cluster and the clone because both
|
289
|
+
# clusters become part of the same clone group. Even if you delete the
|
290
|
+
# clone cluster, the clone group ID remains for the lifetime of the
|
291
|
+
# source cluster to show that it was used in a cloning operation.
|
292
|
+
#
|
293
|
+
# For PITR, the clone group ID is inherited from the source cluster. For
|
294
|
+
# snapshot restore operations, the clone group ID isn't inherited from
|
295
|
+
# the source cluster.
|
285
296
|
# @return [String]
|
286
297
|
def clone_group_id
|
287
298
|
data[:clone_group_id]
|
@@ -1328,9 +1339,9 @@ module Aws::RDS
|
|
1328
1339
|
#
|
1329
1340
|
# The following values are valid for each DB engine:
|
1330
1341
|
#
|
1331
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
1342
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
1332
1343
|
#
|
1333
|
-
# * Aurora PostgreSQL - `postgresql`
|
1344
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
1334
1345
|
#
|
1335
1346
|
# * RDS for MySQL - `error | general | slowquery`
|
1336
1347
|
#
|
@@ -2164,9 +2175,9 @@ module Aws::RDS
|
|
2164
2175
|
#
|
2165
2176
|
# The following values are valid for each DB engine:
|
2166
2177
|
#
|
2167
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
2178
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
2168
2179
|
#
|
2169
|
-
# * Aurora PostgreSQL - `postgresql`
|
2180
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
2170
2181
|
#
|
2171
2182
|
# * RDS for MySQL - `error | general | slowquery`
|
2172
2183
|
#
|
@@ -2896,11 +2907,12 @@ module Aws::RDS
|
|
2896
2907
|
#
|
2897
2908
|
# **Aurora MySQL**
|
2898
2909
|
#
|
2899
|
-
# Possible values are `audit`, `error`, `general`, and
|
2910
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
2911
|
+
# `slowquery`.
|
2900
2912
|
#
|
2901
2913
|
# **Aurora PostgreSQL**
|
2902
2914
|
#
|
2903
|
-
# Possible value
|
2915
|
+
# Possible value are `instance` and `postgresql`.
|
2904
2916
|
#
|
2905
2917
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2906
2918
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -794,11 +794,12 @@ module Aws::RDS
|
|
794
794
|
#
|
795
795
|
# **Aurora MySQL**
|
796
796
|
#
|
797
|
-
# Possible values are `audit`, `error`, `general`, and
|
797
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
798
|
+
# `slowquery`.
|
798
799
|
#
|
799
800
|
# **Aurora PostgreSQL**
|
800
801
|
#
|
801
|
-
# Possible value
|
802
|
+
# Possible value are `instance` and `postgresql`.
|
802
803
|
#
|
803
804
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
804
805
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -2135,7 +2135,8 @@ module Aws::RDS
|
|
2135
2135
|
#
|
2136
2136
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2137
2137
|
# @option options [Integer] :storage_throughput
|
2138
|
-
# The storage throughput value for the
|
2138
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
2139
|
+
# DB instance.
|
2139
2140
|
#
|
2140
2141
|
# This setting applies only to the `gp3` storage type.
|
2141
2142
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -502,9 +502,9 @@ 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
506
|
#
|
507
|
-
# * Aurora PostgreSQL - `postgresql`
|
507
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
508
508
|
#
|
509
509
|
# * RDS for MySQL - `error | general | slowquery`
|
510
510
|
#
|
@@ -2283,7 +2283,8 @@ module Aws::RDS
|
|
2283
2283
|
#
|
2284
2284
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2285
2285
|
# @option options [Integer] :storage_throughput
|
2286
|
-
# The storage throughput value for the
|
2286
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
2287
|
+
# DB instance.
|
2287
2288
|
#
|
2288
2289
|
# This setting applies only to the `gp3` storage type.
|
2289
2290
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2593,9 +2593,9 @@ module Aws::RDS
|
|
2593
2593
|
#
|
2594
2594
|
# The following values are valid for each DB engine:
|
2595
2595
|
#
|
2596
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
2596
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
2597
2597
|
#
|
2598
|
-
# * Aurora PostgreSQL - `postgresql`
|
2598
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
2599
2599
|
#
|
2600
2600
|
# * RDS for MySQL - `error | general | slowquery`
|
2601
2601
|
#
|
@@ -4647,7 +4647,8 @@ module Aws::RDS
|
|
4647
4647
|
# @return [String]
|
4648
4648
|
#
|
4649
4649
|
# @!attribute [rw] storage_throughput
|
4650
|
-
# The storage throughput value
|
4650
|
+
# The storage throughput value, in mebibyte per second (MiBps), for
|
4651
|
+
# the DB instance.
|
4651
4652
|
#
|
4652
4653
|
# This setting applies only to the `gp3` storage type.
|
4653
4654
|
#
|
@@ -6988,6 +6989,18 @@ module Aws::RDS
|
|
6988
6989
|
#
|
6989
6990
|
# @!attribute [rw] clone_group_id
|
6990
6991
|
# The ID of the clone group with which the DB cluster is associated.
|
6992
|
+
# For newly created clusters, the ID is typically null.
|
6993
|
+
#
|
6994
|
+
# If you clone a DB cluster when the ID is null, the operation
|
6995
|
+
# populates the ID value for the source cluster and the clone because
|
6996
|
+
# both clusters become part of the same clone group. Even if you
|
6997
|
+
# delete the clone cluster, the clone group ID remains for the
|
6998
|
+
# lifetime of the source cluster to show that it was used in a cloning
|
6999
|
+
# operation.
|
7000
|
+
#
|
7001
|
+
# For PITR, the clone group ID is inherited from the source cluster.
|
7002
|
+
# For snapshot restore operations, the clone group ID isn't inherited
|
7003
|
+
# from the source cluster.
|
6991
7004
|
# @return [String]
|
6992
7005
|
#
|
6993
7006
|
# @!attribute [rw] cluster_create_time
|
@@ -17512,9 +17525,9 @@ module Aws::RDS
|
|
17512
17525
|
#
|
17513
17526
|
# The following values are valid for each DB engine:
|
17514
17527
|
#
|
17515
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
17528
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
17516
17529
|
#
|
17517
|
-
# * Aurora PostgreSQL - `postgresql`
|
17530
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
17518
17531
|
#
|
17519
17532
|
# * RDS for MySQL - `error | general | slowquery`
|
17520
17533
|
#
|
@@ -22991,15 +23004,25 @@ module Aws::RDS
|
|
22991
23004
|
#
|
22992
23005
|
# **Aurora MySQL**
|
22993
23006
|
#
|
22994
|
-
# Possible values are `audit`, `error`, `general`, and
|
23007
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
23008
|
+
# `slowquery`.
|
23009
|
+
#
|
23010
|
+
# **Aurora PostgreSQL**
|
23011
|
+
#
|
23012
|
+
# Possible value are `instance` and `postgresql`.
|
23013
|
+
#
|
23014
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
23015
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
23016
|
+
# *Amazon RDS User Guide*.
|
22995
23017
|
#
|
22996
23018
|
# For more information about exporting CloudWatch Logs for Amazon
|
22997
|
-
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][
|
23019
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
22998
23020
|
# in the *Amazon Aurora User Guide*.
|
22999
23021
|
#
|
23000
23022
|
#
|
23001
23023
|
#
|
23002
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
23024
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
23025
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
23003
23026
|
# @return [Array<String>]
|
23004
23027
|
#
|
23005
23028
|
# @!attribute [rw] deletion_protection
|
@@ -23475,11 +23498,12 @@ module Aws::RDS
|
|
23475
23498
|
#
|
23476
23499
|
# **Aurora MySQL**
|
23477
23500
|
#
|
23478
|
-
# Possible values are `audit`, `error`, `general`, and
|
23501
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
23502
|
+
# `slowquery`.
|
23479
23503
|
#
|
23480
23504
|
# **Aurora PostgreSQL**
|
23481
23505
|
#
|
23482
|
-
# Possible value
|
23506
|
+
# Possible value are `instance` and `postgresql`.
|
23483
23507
|
#
|
23484
23508
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
23485
23509
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -24082,11 +24106,12 @@ module Aws::RDS
|
|
24082
24106
|
#
|
24083
24107
|
# **Aurora MySQL**
|
24084
24108
|
#
|
24085
|
-
# Possible values are `audit`, `error`, `general`, and
|
24109
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
24110
|
+
# `slowquery`.
|
24086
24111
|
#
|
24087
24112
|
# **Aurora PostgreSQL**
|
24088
24113
|
#
|
24089
|
-
# Possible value
|
24114
|
+
# Possible value are `instance` and `postgresql`.
|
24090
24115
|
#
|
24091
24116
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
24092
24117
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
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.267.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.267.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-01-
|
11
|
+
date: 2025-01-31 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
|