aws-sdk-bedrockruntime 1.78.0 → 1.79.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-bedrockruntime/async_client.rb +6 -8
- data/lib/aws-sdk-bedrockruntime/client.rb +6 -8
- data/lib/aws-sdk-bedrockruntime.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: 7d3bbe84f8f037ecdb1c19fc5b59ab02efd9a6c4f8d84beb2785a5c125a1a318
|
|
4
|
+
data.tar.gz: 2be001e3bb01bd64fa97de8e71a725c68577900bc2a762ce8c31aff5ca65c815
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f2d2a29d7871e3b21b41e5cb465e75941e0cb50024b8630ec56977d13343948c04bfb0892ebe18951091e9f888a2785d0d8712e05e6390be4802bb6a4edc1b4
|
|
7
|
+
data.tar.gz: 95ddb23a097214f709e8767413c64320f877da9bae93ffe8d6722fb93ae87378efe018038ca9e0db0e7d022bf92f762632806752753cde8573101fe7c959787a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.79.0
|
|
@@ -170,7 +170,7 @@ module Aws::BedrockRuntime
|
|
|
170
170
|
# the required types.
|
|
171
171
|
#
|
|
172
172
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
173
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
173
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
174
174
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
175
175
|
#
|
|
176
176
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -285,17 +285,15 @@ module Aws::BedrockRuntime
|
|
|
285
285
|
# @option options [String] :retry_mode ("legacy")
|
|
286
286
|
# Specifies which retry algorithm to use. Values are:
|
|
287
287
|
#
|
|
288
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
289
|
-
# no retry mode is provided.
|
|
288
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
289
|
+
# value if no retry mode is provided.
|
|
290
290
|
#
|
|
291
291
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
292
292
|
# This includes support for retry quotas, which limit the number of
|
|
293
293
|
# unsuccessful retries a client can make.
|
|
294
294
|
#
|
|
295
|
-
# * `adaptive` -
|
|
296
|
-
#
|
|
297
|
-
# throttling. This is a provisional mode that may change behavior
|
|
298
|
-
# in the future.
|
|
295
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
296
|
+
# `standard` mode along with automatic client side throttling.
|
|
299
297
|
#
|
|
300
298
|
# @option options [String] :sdk_ua_app_id
|
|
301
299
|
# A unique and opaque application ID that is appended to the
|
|
@@ -621,7 +619,7 @@ module Aws::BedrockRuntime
|
|
|
621
619
|
tracer: tracer
|
|
622
620
|
)
|
|
623
621
|
context[:gem_name] = 'aws-sdk-bedrockruntime'
|
|
624
|
-
context[:gem_version] = '1.
|
|
622
|
+
context[:gem_version] = '1.79.0'
|
|
625
623
|
Seahorse::Client::Request.new(handlers, context)
|
|
626
624
|
end
|
|
627
625
|
|
|
@@ -203,7 +203,7 @@ module Aws::BedrockRuntime
|
|
|
203
203
|
# the required types.
|
|
204
204
|
#
|
|
205
205
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
206
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
206
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
207
207
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
208
208
|
#
|
|
209
209
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -336,17 +336,15 @@ module Aws::BedrockRuntime
|
|
|
336
336
|
# @option options [String] :retry_mode ("legacy")
|
|
337
337
|
# Specifies which retry algorithm to use. Values are:
|
|
338
338
|
#
|
|
339
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
340
|
-
# no retry mode is provided.
|
|
339
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
340
|
+
# value if no retry mode is provided.
|
|
341
341
|
#
|
|
342
342
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
343
343
|
# This includes support for retry quotas, which limit the number of
|
|
344
344
|
# unsuccessful retries a client can make.
|
|
345
345
|
#
|
|
346
|
-
# * `adaptive` -
|
|
347
|
-
#
|
|
348
|
-
# throttling. This is a provisional mode that may change behavior
|
|
349
|
-
# in the future.
|
|
346
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
347
|
+
# `standard` mode along with automatic client side throttling.
|
|
350
348
|
#
|
|
351
349
|
# @option options [String] :sdk_ua_app_id
|
|
352
350
|
# A unique and opaque application ID that is appended to the
|
|
@@ -3934,7 +3932,7 @@ module Aws::BedrockRuntime
|
|
|
3934
3932
|
tracer: tracer
|
|
3935
3933
|
)
|
|
3936
3934
|
context[:gem_name] = 'aws-sdk-bedrockruntime'
|
|
3937
|
-
context[:gem_version] = '1.
|
|
3935
|
+
context[:gem_version] = '1.79.0'
|
|
3938
3936
|
Seahorse::Client::Request.new(handlers, context)
|
|
3939
3937
|
end
|
|
3940
3938
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-bedrockruntime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.79.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
|