aws-sdk-rds 1.274.0 → 1.277.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +126 -43
- data/lib/aws-sdk-rds/client_api.rb +192 -145
- data/lib/aws-sdk-rds/db_cluster.rb +9 -9
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +4 -4
- data/lib/aws-sdk-rds/db_instance.rb +5 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +2 -2
- data/lib/aws-sdk-rds/resource.rb +6 -6
- data/lib/aws-sdk-rds/types.rb +207 -42
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +14 -0
- data/sig/types.rbs +28 -0
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38960c1b5efc5a4692b108cfcfdc07688621b31ba67b1472aa898fe7f39d99cc
|
4
|
+
data.tar.gz: 85812b05a92cbc735471041ec4b373c060854537a4c95d4e1e8d72aeef8bb4f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5186860e43058020d47430cf0b76ffd128e1fd03efc23934c65f318749b0b4ef43c4dd6a8f693f29e42812ed0e637d8958f5881a2a3847c9cbf3569b2bb6183c
|
7
|
+
data.tar.gz: 6c9e5c3021e326267652c94ddca71b91b25d9f31f147869ea2916ecbe7ac8e46c245403607254b1a40158295027d8fe75ebed817bb9f1dbc16a58dbee9a0f0b1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.277.0 (2025-05-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces the new DescribeDBMajorEngineVersions API for describing the properties of specific major versions of database engines.
|
8
|
+
|
9
|
+
1.276.0 (2025-05-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.275.0 (2025-05-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.274.0 (2025-04-24)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.277.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -202,8 +202,7 @@ module Aws::RDS
|
|
202
202
|
# accepted modes and the configuration defaults that are included.
|
203
203
|
#
|
204
204
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
205
|
-
#
|
206
|
-
# to default service endpoint when available.
|
205
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
207
206
|
#
|
208
207
|
# @option options [Boolean] :disable_request_compression (false)
|
209
208
|
# When set to 'true' the request body will not be compressed
|
@@ -3577,11 +3576,11 @@ module Aws::RDS
|
|
3577
3576
|
# support for that engine version. For more information, see the
|
3578
3577
|
# following sections:
|
3579
3578
|
#
|
3580
|
-
# * Amazon Aurora - [
|
3581
|
-
# *Amazon Aurora User Guide*
|
3579
|
+
# * Amazon Aurora - [Amazon RDS Extended Support with Amazon Aurora][1]
|
3580
|
+
# in the *Amazon Aurora User Guide*
|
3582
3581
|
#
|
3583
|
-
# * Amazon RDS - [
|
3584
|
-
# RDS User Guide*
|
3582
|
+
# * Amazon RDS - [Amazon RDS Extended Support with Amazon RDS][2] in the
|
3583
|
+
# *Amazon RDS User Guide*
|
3585
3584
|
#
|
3586
3585
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3587
3586
|
#
|
@@ -5714,8 +5713,8 @@ module Aws::RDS
|
|
5714
5713
|
# You can use this setting to enroll your DB instance into Amazon RDS
|
5715
5714
|
# Extended Support. With RDS Extended Support, you can run the selected
|
5716
5715
|
# major engine version on your DB instance past the end of standard
|
5717
|
-
# support for that engine version. For more information, see [
|
5718
|
-
# Amazon RDS
|
5716
|
+
# support for that engine version. For more information, see [Amazon RDS
|
5717
|
+
# Extended Support with Amazon RDS][1] in the *Amazon RDS User Guide*.
|
5719
5718
|
#
|
5720
5719
|
# Valid Values: `open-source-rds-extended-support |
|
5721
5720
|
# open-source-rds-extended-support-disabled`
|
@@ -8195,8 +8194,9 @@ module Aws::RDS
|
|
8195
8194
|
# You can use this setting to enroll your global cluster into Amazon RDS
|
8196
8195
|
# Extended Support. With RDS Extended Support, you can run the selected
|
8197
8196
|
# major engine version on your global cluster past the end of standard
|
8198
|
-
# support for that engine version. For more information, see [
|
8199
|
-
#
|
8197
|
+
# support for that engine version. For more information, see [Amazon RDS
|
8198
|
+
# Extended Support with Amazon Aurora][1] in the *Amazon Aurora User
|
8199
|
+
# Guide*.
|
8200
8200
|
#
|
8201
8201
|
# Valid Values: `open-source-rds-extended-support |
|
8202
8202
|
# open-source-rds-extended-support-disabled`
|
@@ -13737,6 +13737,103 @@ module Aws::RDS
|
|
13737
13737
|
req.send_request(options)
|
13738
13738
|
end
|
13739
13739
|
|
13740
|
+
# Describes the properties of specific major versions of DB engines.
|
13741
|
+
#
|
13742
|
+
# @option params [String] :engine
|
13743
|
+
# The database engine to return major version details for.
|
13744
|
+
#
|
13745
|
+
# Valid Values:
|
13746
|
+
#
|
13747
|
+
# * `aurora-mysql`
|
13748
|
+
#
|
13749
|
+
# * `aurora-postgresql`
|
13750
|
+
#
|
13751
|
+
# * `custom-sqlserver-ee`
|
13752
|
+
#
|
13753
|
+
# * `custom-sqlserver-se`
|
13754
|
+
#
|
13755
|
+
# * `custom-sqlserver-web`
|
13756
|
+
#
|
13757
|
+
# * `db2-ae`
|
13758
|
+
#
|
13759
|
+
# * `db2-se`
|
13760
|
+
#
|
13761
|
+
# * `mariadb`
|
13762
|
+
#
|
13763
|
+
# * `mysql`
|
13764
|
+
#
|
13765
|
+
# * `oracle-ee`
|
13766
|
+
#
|
13767
|
+
# * `oracle-ee-cdb`
|
13768
|
+
#
|
13769
|
+
# * `oracle-se2`
|
13770
|
+
#
|
13771
|
+
# * `oracle-se2-cdb`
|
13772
|
+
#
|
13773
|
+
# * `postgres`
|
13774
|
+
#
|
13775
|
+
# * `sqlserver-ee`
|
13776
|
+
#
|
13777
|
+
# * `sqlserver-se`
|
13778
|
+
#
|
13779
|
+
# * `sqlserver-ex`
|
13780
|
+
#
|
13781
|
+
# * `sqlserver-web`
|
13782
|
+
#
|
13783
|
+
# @option params [String] :major_engine_version
|
13784
|
+
# A specific database major engine version to return details for.
|
13785
|
+
#
|
13786
|
+
# Example: `8.4`
|
13787
|
+
#
|
13788
|
+
# @option params [String] :marker
|
13789
|
+
# An optional pagination token provided by a previous request. If this
|
13790
|
+
# parameter is specified, the response includes only records beyond the
|
13791
|
+
# marker, up to the value specified by `MaxRecords`.
|
13792
|
+
#
|
13793
|
+
# @option params [Integer] :max_records
|
13794
|
+
# The maximum number of records to include in the response. If more than
|
13795
|
+
# the `MaxRecords` value is available, a pagination token called a
|
13796
|
+
# marker is included in the response so you can retrieve the remaining
|
13797
|
+
# results.
|
13798
|
+
#
|
13799
|
+
# Default: 100
|
13800
|
+
#
|
13801
|
+
# @return [Types::DescribeDBMajorEngineVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13802
|
+
#
|
13803
|
+
# * {Types::DescribeDBMajorEngineVersionsResponse#db_major_engine_versions #db_major_engine_versions} => Array<Types::DBMajorEngineVersion>
|
13804
|
+
# * {Types::DescribeDBMajorEngineVersionsResponse#marker #marker} => String
|
13805
|
+
#
|
13806
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
13807
|
+
#
|
13808
|
+
# @example Request syntax with placeholder values
|
13809
|
+
#
|
13810
|
+
# resp = client.describe_db_major_engine_versions({
|
13811
|
+
# engine: "Engine",
|
13812
|
+
# major_engine_version: "MajorEngineVersion",
|
13813
|
+
# marker: "Marker",
|
13814
|
+
# max_records: 1,
|
13815
|
+
# })
|
13816
|
+
#
|
13817
|
+
# @example Response structure
|
13818
|
+
#
|
13819
|
+
# resp.db_major_engine_versions #=> Array
|
13820
|
+
# resp.db_major_engine_versions[0].engine #=> String
|
13821
|
+
# resp.db_major_engine_versions[0].major_engine_version #=> String
|
13822
|
+
# resp.db_major_engine_versions[0].supported_engine_lifecycles #=> Array
|
13823
|
+
# resp.db_major_engine_versions[0].supported_engine_lifecycles[0].lifecycle_support_name #=> String, one of "open-source-rds-standard-support", "open-source-rds-extended-support"
|
13824
|
+
# resp.db_major_engine_versions[0].supported_engine_lifecycles[0].lifecycle_support_start_date #=> Time
|
13825
|
+
# resp.db_major_engine_versions[0].supported_engine_lifecycles[0].lifecycle_support_end_date #=> Time
|
13826
|
+
# resp.marker #=> String
|
13827
|
+
#
|
13828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBMajorEngineVersions AWS API Documentation
|
13829
|
+
#
|
13830
|
+
# @overload describe_db_major_engine_versions(params = {})
|
13831
|
+
# @param [Hash] params ({})
|
13832
|
+
def describe_db_major_engine_versions(params = {}, options = {})
|
13833
|
+
req = build_request(:describe_db_major_engine_versions, params)
|
13834
|
+
req.send_request(options)
|
13835
|
+
end
|
13836
|
+
|
13740
13837
|
# Returns a list of `DBParameterGroup` descriptions. If a
|
13741
13838
|
# `DBParameterGroupName` is specified, the list will contain only the
|
13742
13839
|
# description of the specified DB parameter group.
|
@@ -25404,11 +25501,11 @@ module Aws::RDS
|
|
25404
25501
|
# support for that engine version. For more information, see the
|
25405
25502
|
# following sections:
|
25406
25503
|
#
|
25407
|
-
# * Amazon Aurora - [
|
25408
|
-
# *Amazon Aurora User Guide*
|
25504
|
+
# * Amazon Aurora - [Amazon RDS Extended Support with Amazon Aurora][1]
|
25505
|
+
# in the *Amazon Aurora User Guide*
|
25409
25506
|
#
|
25410
|
-
# * Amazon RDS - [
|
25411
|
-
# RDS User Guide*
|
25507
|
+
# * Amazon RDS - [Amazon RDS Extended Support with Amazon RDS][2] in the
|
25508
|
+
# *Amazon RDS User Guide*
|
25412
25509
|
#
|
25413
25510
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
25414
25511
|
#
|
@@ -26222,11 +26319,11 @@ module Aws::RDS
|
|
26222
26319
|
# support for that engine version. For more information, see the
|
26223
26320
|
# following sections:
|
26224
26321
|
#
|
26225
|
-
# * Amazon Aurora - [
|
26226
|
-
# *Amazon Aurora User Guide*
|
26322
|
+
# * Amazon Aurora - [Amazon RDS Extended Support with Amazon Aurora][1]
|
26323
|
+
# in the *Amazon Aurora User Guide*
|
26227
26324
|
#
|
26228
|
-
# * Amazon RDS - [
|
26229
|
-
# RDS User Guide*
|
26325
|
+
# * Amazon RDS - [Amazon RDS Extended Support with Amazon RDS][2] in the
|
26326
|
+
# *Amazon RDS User Guide*
|
26230
26327
|
#
|
26231
26328
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
26232
26329
|
#
|
@@ -27030,11 +27127,11 @@ module Aws::RDS
|
|
27030
27127
|
# support for that engine version. For more information, see the
|
27031
27128
|
# following sections:
|
27032
27129
|
#
|
27033
|
-
# * Amazon Aurora - [
|
27034
|
-
# *Amazon Aurora User Guide*
|
27130
|
+
# * Amazon Aurora - [Amazon RDS Extended Support with Amazon Aurora][1]
|
27131
|
+
# in the *Amazon Aurora User Guide*
|
27035
27132
|
#
|
27036
|
-
# * Amazon RDS - [
|
27037
|
-
# RDS User Guide*
|
27133
|
+
# * Amazon RDS - [Amazon RDS Extended Support with Amazon RDS][2] in the
|
27134
|
+
# *Amazon RDS User Guide*
|
27038
27135
|
#
|
27039
27136
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
27040
27137
|
#
|
@@ -27941,8 +28038,8 @@ module Aws::RDS
|
|
27941
28038
|
# You can use this setting to enroll your DB instance into Amazon RDS
|
27942
28039
|
# Extended Support. With RDS Extended Support, you can run the selected
|
27943
28040
|
# major engine version on your DB instance past the end of standard
|
27944
|
-
# support for that engine version. For more information, see [
|
27945
|
-
# Amazon RDS
|
28041
|
+
# support for that engine version. For more information, see [Amazon RDS
|
28042
|
+
# Extended Support with Amazon RDS][1] in the *Amazon RDS User Guide*.
|
27946
28043
|
#
|
27947
28044
|
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
27948
28045
|
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
@@ -28828,8 +28925,8 @@ module Aws::RDS
|
|
28828
28925
|
# You can use this setting to enroll your DB instance into Amazon RDS
|
28829
28926
|
# Extended Support. With RDS Extended Support, you can run the selected
|
28830
28927
|
# major engine version on your DB instance past the end of standard
|
28831
|
-
# support for that engine version. For more information, see [
|
28832
|
-
# Amazon RDS
|
28928
|
+
# support for that engine version. For more information, see [Amazon RDS
|
28929
|
+
# Extended Support Amazon RDS][1] in the *Amazon RDS User Guide*.
|
28833
28930
|
#
|
28834
28931
|
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
28835
28932
|
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
@@ -29704,8 +29801,8 @@ module Aws::RDS
|
|
29704
29801
|
# You can use this setting to enroll your DB instance into Amazon RDS
|
29705
29802
|
# Extended Support. With RDS Extended Support, you can run the selected
|
29706
29803
|
# major engine version on your DB instance past the end of standard
|
29707
|
-
# support for that engine version. For more information, see [
|
29708
|
-
# Amazon RDS
|
29804
|
+
# support for that engine version. For more information, see [Amazon RDS
|
29805
|
+
# Extended Support with Amazon RDS][1] in the *Amazon RDS User Guide*.
|
29709
29806
|
#
|
29710
29807
|
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
29711
29808
|
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
@@ -30947,24 +31044,10 @@ module Aws::RDS
|
|
30947
31044
|
# operations. These can be set in the Amazon Web Services KMS key
|
30948
31045
|
# policy:
|
30949
31046
|
#
|
30950
|
-
# * kms:Encrypt
|
30951
|
-
#
|
30952
|
-
# * kms:Decrypt
|
30953
|
-
#
|
30954
|
-
# * kms:GenerateDataKey
|
30955
|
-
#
|
30956
|
-
# * kms:GenerateDataKeyWithoutPlaintext
|
30957
|
-
#
|
30958
|
-
# * kms:ReEncryptFrom
|
30959
|
-
#
|
30960
|
-
# * kms:ReEncryptTo
|
30961
|
-
#
|
30962
31047
|
# * kms:CreateGrant
|
30963
31048
|
#
|
30964
31049
|
# * kms:DescribeKey
|
30965
31050
|
#
|
30966
|
-
# * kms:RetireGrant
|
30967
|
-
#
|
30968
31051
|
# @option params [String] :s3_prefix
|
30969
31052
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
30970
31053
|
# exported data.
|
@@ -32202,7 +32285,7 @@ module Aws::RDS
|
|
32202
32285
|
tracer: tracer
|
32203
32286
|
)
|
32204
32287
|
context[:gem_name] = 'aws-sdk-rds'
|
32205
|
-
context[:gem_version] = '1.
|
32288
|
+
context[:gem_version] = '1.277.0'
|
32206
32289
|
Seahorse::Client::Request.new(handlers, context)
|
32207
32290
|
end
|
32208
32291
|
|