aws-sdk-dynamodb 1.146.0 → 1.147.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +19 -9
- data/lib/aws-sdk-dynamodb.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: 9be3405f43a9b6e340e691f2675017855ca3e777dd156099f6c3901b1aba3979
|
4
|
+
data.tar.gz: 0cb8de909d805311c8df8ca6d8e1681eb306dff41038f47f1ff329db7fa294cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5978d2baca7cf59c0c8b6415bb7b9460328af0cfc128cb8ce1818feaf50b5d704471f5340ddc61cec9e187f2a03732cc775ef94e02fa660ddeadd2cb64bba3d
|
7
|
+
data.tar.gz: d0b2029e325252f1ca3baea167d0781a19416f392d299e240560b810b19821df8cb574d8b360cdc87aa816720f06eb189c98e3dda12910e92cdf7e20b612872a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.147.0
|
@@ -101,7 +101,7 @@ module Aws::DynamoDB
|
|
101
101
|
# class name or an instance of a plugin class.
|
102
102
|
#
|
103
103
|
# @option options [required, Aws::CredentialProvider] :credentials
|
104
|
-
# Your AWS credentials. This can be an instance of any one of the
|
104
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
105
105
|
# following classes:
|
106
106
|
#
|
107
107
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -134,18 +134,23 @@ module Aws::DynamoDB
|
|
134
134
|
# locations will be searched for credentials:
|
135
135
|
#
|
136
136
|
# * `Aws.config[:credentials]`
|
137
|
+
#
|
137
138
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
138
139
|
# `:account_id` options.
|
139
|
-
#
|
140
|
-
#
|
140
|
+
#
|
141
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
142
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
143
|
+
#
|
141
144
|
# * `~/.aws/credentials`
|
145
|
+
#
|
142
146
|
# * `~/.aws/config`
|
147
|
+
#
|
143
148
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
144
149
|
# are very aggressive. Construct and pass an instance of
|
145
150
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
146
151
|
# enable retries and extended timeouts. Instance profile credential
|
147
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
148
|
-
# to true
|
152
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
153
|
+
# to `true`.
|
149
154
|
#
|
150
155
|
# @option options [required, String] :region
|
151
156
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +178,11 @@ module Aws::DynamoDB
|
|
173
178
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
174
179
|
# not retry instead of sleeping.
|
175
180
|
#
|
181
|
+
# @option options [Array<String>] :auth_scheme_preference
|
182
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
183
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
184
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :client_side_monitoring (false)
|
177
187
|
# When `true`, client-side metrics will be collected for all API requests from
|
178
188
|
# this client.
|
@@ -265,8 +275,8 @@ module Aws::DynamoDB
|
|
265
275
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
266
276
|
#
|
267
277
|
# @option options [String] :profile ("default")
|
268
|
-
# Used when loading credentials from the shared credentials file
|
269
|
-
#
|
278
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
279
|
+
# When not specified, 'default' is used.
|
270
280
|
#
|
271
281
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
272
282
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -396,7 +406,7 @@ module Aws::DynamoDB
|
|
396
406
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
397
407
|
#
|
398
408
|
# @option options [Aws::TokenProvider] :token_provider
|
399
|
-
#
|
409
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
400
410
|
# following classes:
|
401
411
|
#
|
402
412
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -8664,7 +8674,7 @@ module Aws::DynamoDB
|
|
8664
8674
|
tracer: tracer
|
8665
8675
|
)
|
8666
8676
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8667
|
-
context[:gem_version] = '1.
|
8677
|
+
context[:gem_version] = '1.147.0'
|
8668
8678
|
Seahorse::Client::Request.new(handlers, context)
|
8669
8679
|
end
|
8670
8680
|
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
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-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.147.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
|