aws-sdk-rdsdataservice 1.86.0 → 1.88.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-rdsdataservice/client.rb +18 -8
- data/lib/aws-sdk-rdsdataservice/client_api.rb +5 -5
- data/lib/aws-sdk-rdsdataservice/types.rb +18 -5
- data/lib/aws-sdk-rdsdataservice.rb +1 -1
- 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: 0f84439e6445191a5376a8866c65fda7c01750afbd29e7ec6dbec11e000ad7e8
|
|
4
|
+
data.tar.gz: bb3f40f0b08abef198716c158b4369a7d61d69fbb9ba5712eb0b1e4b20142295
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 297cc91637e74aecdbd210b112203e9bd3b354b3afdc162c1c97f25d4c56d4953aa39dec78b2be543d0a9e585f802e7d1a4abb0a46d7b60df6fc75e0e4765bbb
|
|
7
|
+
data.tar.gz: 596685fa7192778dbbb84e23696a0570dee3d3834747b8ae6c6163f158d4186d61e997074d5e722b29c35ec5f35d3a6bfeb2e3b3152f90d4664ac64c05dbe121
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.88.0 (2026-05-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - RDS Data API arrays (longValues, doubleValues, stringValues, booleanValues) in ExecuteStatement responses now correctly support null elements. Runtime change for JS v3 and .NET. Compile-time change for C plus plus, .NET, Kotlin, Rust. No impact for Java, Python, Ruby, PHP, Go.
|
|
8
|
+
|
|
9
|
+
1.87.0 (2026-05-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.86.0 (2026-05-19)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.88.0
|
|
@@ -199,7 +199,7 @@ module Aws::RDSDataService
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::RDSDataService
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -832,6 +830,18 @@ module Aws::RDSDataService
|
|
|
832
830
|
# For information about creating the secret, see [Create a database
|
|
833
831
|
# secret][1].
|
|
834
832
|
#
|
|
833
|
+
# <note markdown="1"> When you use the CLI on Linux to reference a secret created in the RDS
|
|
834
|
+
# console, the ARN might include special characters like `rds!cluster`.
|
|
835
|
+
# If you enclose the ARN in double quotes, the `!` character might
|
|
836
|
+
# trigger a shell expansion error, such as `-bash: !cluster: event not
|
|
837
|
+
# found`. To avoid this, escape the exclamation mark (\\!) in the ARN or
|
|
838
|
+
# enclose the entire ARN in single quotes (') instead of double quotes.
|
|
839
|
+
#
|
|
840
|
+
# Alternatively, disable shell history expansion by running `set +H`
|
|
841
|
+
# before you execute the command.
|
|
842
|
+
#
|
|
843
|
+
# </note>
|
|
844
|
+
#
|
|
835
845
|
#
|
|
836
846
|
#
|
|
837
847
|
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/create_database_secret.html
|
|
@@ -1066,7 +1076,7 @@ module Aws::RDSDataService
|
|
|
1066
1076
|
tracer: tracer
|
|
1067
1077
|
)
|
|
1068
1078
|
context[:gem_name] = 'aws-sdk-rdsdataservice'
|
|
1069
|
-
context[:gem_version] = '1.
|
|
1079
|
+
context[:gem_version] = '1.88.0'
|
|
1070
1080
|
Seahorse::Client::Request.new(handlers, context)
|
|
1071
1081
|
end
|
|
1072
1082
|
|
|
@@ -375,8 +375,8 @@ module Aws::RDSDataService
|
|
|
375
375
|
o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
|
|
376
376
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
|
|
377
377
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateException)
|
|
378
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
379
378
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
379
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
380
380
|
o.errors << Shapes::ShapeRef.new(shape: DatabaseNotFoundException)
|
|
381
381
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
382
382
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
@@ -398,8 +398,8 @@ module Aws::RDSDataService
|
|
|
398
398
|
o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
|
|
399
399
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
|
|
400
400
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateException)
|
|
401
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
402
401
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
402
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
403
403
|
o.errors << Shapes::ShapeRef.new(shape: DatabaseNotFoundException)
|
|
404
404
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
405
405
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
@@ -420,8 +420,8 @@ module Aws::RDSDataService
|
|
|
420
420
|
o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
|
|
421
421
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
|
|
422
422
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateException)
|
|
423
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
424
423
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
424
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
425
425
|
o.errors << Shapes::ShapeRef.new(shape: DatabaseNotFoundException)
|
|
426
426
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
427
427
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
@@ -458,8 +458,8 @@ module Aws::RDSDataService
|
|
|
458
458
|
o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
|
|
459
459
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
|
|
460
460
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateException)
|
|
461
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
462
461
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
462
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
463
463
|
o.errors << Shapes::ShapeRef.new(shape: DatabaseNotFoundException)
|
|
464
464
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
465
465
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
@@ -481,8 +481,8 @@ module Aws::RDSDataService
|
|
|
481
481
|
o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
|
|
482
482
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
|
|
483
483
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateException)
|
|
484
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
485
484
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
485
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
|
|
486
486
|
o.errors << Shapes::ShapeRef.new(shape: DatabaseNotFoundException)
|
|
487
487
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
488
488
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
@@ -30,23 +30,23 @@ module Aws::RDSDataService
|
|
|
30
30
|
# @note ArrayValue is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ArrayValue corresponding to the set member.
|
|
31
31
|
#
|
|
32
32
|
# @!attribute [rw] boolean_values
|
|
33
|
-
# An array of Boolean values.
|
|
33
|
+
# An array of Boolean values. Can contain null values.
|
|
34
34
|
# @return [Array<Boolean>]
|
|
35
35
|
#
|
|
36
36
|
# @!attribute [rw] long_values
|
|
37
|
-
# An array of integers.
|
|
37
|
+
# An array of integers. Can contain null values.
|
|
38
38
|
# @return [Array<Integer>]
|
|
39
39
|
#
|
|
40
40
|
# @!attribute [rw] double_values
|
|
41
|
-
# An array of floating-point numbers.
|
|
41
|
+
# An array of floating-point numbers. Can contain null values.
|
|
42
42
|
# @return [Array<Float>]
|
|
43
43
|
#
|
|
44
44
|
# @!attribute [rw] string_values
|
|
45
|
-
# An array of strings.
|
|
45
|
+
# An array of strings. Can contain null values.
|
|
46
46
|
# @return [Array<String>]
|
|
47
47
|
#
|
|
48
48
|
# @!attribute [rw] array_values
|
|
49
|
-
# An array of arrays.
|
|
49
|
+
# An array of arrays. Can contain null values.
|
|
50
50
|
# @return [Array<Types::ArrayValue>]
|
|
51
51
|
#
|
|
52
52
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-data-2018-08-01/ArrayValue AWS API Documentation
|
|
@@ -466,6 +466,19 @@ module Aws::RDSDataService
|
|
|
466
466
|
# For information about creating the secret, see [Create a database
|
|
467
467
|
# secret][1].
|
|
468
468
|
#
|
|
469
|
+
# <note markdown="1"> When you use the CLI on Linux to reference a secret created in the
|
|
470
|
+
# RDS console, the ARN might include special characters like
|
|
471
|
+
# `rds!cluster`. If you enclose the ARN in double quotes, the `!`
|
|
472
|
+
# character might trigger a shell expansion error, such as `-bash:
|
|
473
|
+
# !cluster: event not found`. To avoid this, escape the exclamation
|
|
474
|
+
# mark (\\!) in the ARN or enclose the entire ARN in single quotes
|
|
475
|
+
# (') instead of double quotes.
|
|
476
|
+
#
|
|
477
|
+
# Alternatively, disable shell history expansion by running `set +H`
|
|
478
|
+
# before you execute the command.
|
|
479
|
+
#
|
|
480
|
+
# </note>
|
|
481
|
+
#
|
|
469
482
|
#
|
|
470
483
|
#
|
|
471
484
|
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/create_database_secret.html
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-rdsdataservice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.88.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.248.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.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|