aws-sdk-rds 1.282.0 → 1.284.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +21 -15
- data/lib/aws-sdk-rds/db_instance.rb +2 -6
- data/lib/aws-sdk-rds/errors.rb +0 -1
- data/lib/aws-sdk-rds/resource.rb +2 -6
- data/lib/aws-sdk-rds/types.rb +2 -6
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 214d597996d0a0eba56aa3bab01b7f69c4d3ba7901623553b656529606e05174
|
4
|
+
data.tar.gz: 4bfdcde630b6fd31c96317acdfbb2299db542147e929269e1952955c73ac3a37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76ad01f4b3db4dba9044596926d8c1517fef37fd42d883fface4e6ed96148db019ff2b05b599b215654dc56c1a4152a614f4fb01b8452e14bb188291041edce7
|
7
|
+
data.tar.gz: 317ad9e2f3aaaa53c63e8429dfd0748813755340afd1dca1269e27e22e3fcf5a21f20b0226d4b2ee49e414b75fd6e78068c6ab107cfd9eab6c17169943eb3334
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.284.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.283.0 (2025-07-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon RDS Custom for Oracle now supports multi-AZ database instances.
|
13
|
+
|
4
14
|
1.282.0 (2025-06-27)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.284.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -97,7 +97,7 @@ module Aws::RDS
|
|
97
97
|
# class name or an instance of a plugin class.
|
98
98
|
#
|
99
99
|
# @option options [required, Aws::CredentialProvider] :credentials
|
100
|
-
# Your AWS credentials. This can be an instance of any one of the
|
100
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
101
101
|
# following classes:
|
102
102
|
#
|
103
103
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -130,18 +130,23 @@ module Aws::RDS
|
|
130
130
|
# locations will be searched for credentials:
|
131
131
|
#
|
132
132
|
# * `Aws.config[:credentials]`
|
133
|
+
#
|
133
134
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
134
135
|
# `:account_id` options.
|
135
|
-
#
|
136
|
-
#
|
136
|
+
#
|
137
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
138
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
139
|
+
#
|
137
140
|
# * `~/.aws/credentials`
|
141
|
+
#
|
138
142
|
# * `~/.aws/config`
|
143
|
+
#
|
139
144
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
140
145
|
# are very aggressive. Construct and pass an instance of
|
141
146
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
142
147
|
# enable retries and extended timeouts. Instance profile credential
|
143
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
144
|
-
# to true
|
148
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
149
|
+
# to `true`.
|
145
150
|
#
|
146
151
|
# @option options [required, String] :region
|
147
152
|
# The AWS region to connect to. The configured `:region` is
|
@@ -169,6 +174,11 @@ module Aws::RDS
|
|
169
174
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
170
175
|
# not retry instead of sleeping.
|
171
176
|
#
|
177
|
+
# @option options [Array<String>] :auth_scheme_preference
|
178
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
179
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
180
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
181
|
+
#
|
172
182
|
# @option options [Boolean] :client_side_monitoring (false)
|
173
183
|
# When `true`, client-side metrics will be collected for all API requests from
|
174
184
|
# this client.
|
@@ -255,8 +265,8 @@ module Aws::RDS
|
|
255
265
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
256
266
|
#
|
257
267
|
# @option options [String] :profile ("default")
|
258
|
-
# Used when loading credentials from the shared credentials file
|
259
|
-
#
|
268
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
269
|
+
# When not specified, 'default' is used.
|
260
270
|
#
|
261
271
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
262
272
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -369,7 +379,7 @@ module Aws::RDS
|
|
369
379
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
370
380
|
#
|
371
381
|
# @option options [Aws::TokenProvider] :token_provider
|
372
|
-
#
|
382
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
373
383
|
# following classes:
|
374
384
|
#
|
375
385
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -4978,12 +4988,8 @@ module Aws::RDS
|
|
4978
4988
|
# set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
|
4979
4989
|
# deployment.
|
4980
4990
|
#
|
4981
|
-
# This setting doesn't apply to the
|
4982
|
-
#
|
4983
|
-
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
4984
|
-
# the DB cluster.)
|
4985
|
-
#
|
4986
|
-
# * RDS Custom
|
4991
|
+
# This setting doesn't apply to Amazon Aurora because the DB instance
|
4992
|
+
# Availability Zones (AZs) are managed by the DB cluster.
|
4987
4993
|
#
|
4988
4994
|
# @option params [String] :engine_version
|
4989
4995
|
# The version number of the database engine to use.
|
@@ -32411,7 +32417,7 @@ module Aws::RDS
|
|
32411
32417
|
tracer: tracer
|
32412
32418
|
)
|
32413
32419
|
context[:gem_name] = 'aws-sdk-rds'
|
32414
|
-
context[:gem_version] = '1.
|
32420
|
+
context[:gem_version] = '1.284.0'
|
32415
32421
|
Seahorse::Client::Request.new(handlers, context)
|
32416
32422
|
end
|
32417
32423
|
|
@@ -1551,12 +1551,8 @@ module Aws::RDS
|
|
1551
1551
|
# set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
|
1552
1552
|
# deployment.
|
1553
1553
|
#
|
1554
|
-
# This setting doesn't apply to the
|
1555
|
-
#
|
1556
|
-
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
1557
|
-
# the DB cluster.)
|
1558
|
-
#
|
1559
|
-
# * RDS Custom
|
1554
|
+
# This setting doesn't apply to Amazon Aurora because the DB instance
|
1555
|
+
# Availability Zones (AZs) are managed by the DB cluster.
|
1560
1556
|
# @option options [String] :engine_version
|
1561
1557
|
# The version number of the database engine to use.
|
1562
1558
|
#
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -243,7 +243,6 @@ module Aws::RDS
|
|
243
243
|
#
|
244
244
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
245
245
|
# if they are not defined above.
|
246
|
-
# Some existing error classes may use a different class name than the one documented.
|
247
246
|
module Errors
|
248
247
|
|
249
248
|
extend Aws::Errors::DynamicErrors
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1696,12 +1696,8 @@ module Aws::RDS
|
|
1696
1696
|
# set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
|
1697
1697
|
# deployment.
|
1698
1698
|
#
|
1699
|
-
# This setting doesn't apply to the
|
1700
|
-
#
|
1701
|
-
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
1702
|
-
# the DB cluster.)
|
1703
|
-
#
|
1704
|
-
# * RDS Custom
|
1699
|
+
# This setting doesn't apply to Amazon Aurora because the DB instance
|
1700
|
+
# Availability Zones (AZs) are managed by the DB cluster.
|
1705
1701
|
# @option options [String] :engine_version
|
1706
1702
|
# The version number of the database engine to use.
|
1707
1703
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -4012,12 +4012,8 @@ module Aws::RDS
|
|
4012
4012
|
# can't set the `AvailabilityZone` parameter if the DB instance is a
|
4013
4013
|
# Multi-AZ deployment.
|
4014
4014
|
#
|
4015
|
-
# This setting doesn't apply to the
|
4016
|
-
#
|
4017
|
-
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
4018
|
-
# the DB cluster.)
|
4019
|
-
#
|
4020
|
-
# * RDS Custom
|
4015
|
+
# This setting doesn't apply to Amazon Aurora because the DB instance
|
4016
|
+
# Availability Zones (AZs) are managed by the DB cluster.
|
4021
4017
|
# @return [Boolean]
|
4022
4018
|
#
|
4023
4019
|
# @!attribute [rw] engine_version
|
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.284.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.284.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|