aws-sdk-bedrockruntime 1.53.0 → 1.55.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-bedrockruntime/async_client.rb +10 -13
- data/lib/aws-sdk-bedrockruntime/client.rb +562 -13
- data/lib/aws-sdk-bedrockruntime/client_api.rb +128 -0
- data/lib/aws-sdk-bedrockruntime/types.rb +417 -1
- data/lib/aws-sdk-bedrockruntime.rb +1 -1
- data/sig/types.rbs +122 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9af0f25bcb9504ed88858f4caba87550cba176b9d0ba57c870a2e75591dae247
|
4
|
+
data.tar.gz: 1605fe229bb6acd9136b6a5f74945e85faa7d1e4f01fc6e918b3ce48225b6787
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f58eddfd11b11be9b7bc21683005611d78e1218e90d5fada2ed149fe61d043f604e05bb9684d741bffec3399c4779aa527bd4fe87fae565a6d8fc3e1295aa81
|
7
|
+
data.tar.gz: 2ff5b14c7c4d1b610d8fa69239471de5def77d64d4f9d1486c1f9c12eb3837ec8e1933de824b9f8586909dc5c87b006b780e2227d37172c51f1ee8f78e3b7264
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.55.0 (2025-08-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for Automated Reasoning checks output models for the Amazon Bedrock Guardrails ApplyGuardrail API.
|
8
|
+
|
9
|
+
1.54.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.53.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.55.0
|
@@ -90,8 +90,8 @@ module Aws::BedrockRuntime
|
|
90
90
|
# class name or an instance of a plugin class.
|
91
91
|
#
|
92
92
|
# @option options [required, Aws::CredentialProvider] :credentials
|
93
|
-
# Your AWS credentials used for authentication. This can be
|
94
|
-
# following classes:
|
93
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
94
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
95
95
|
#
|
96
96
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
97
97
|
# credentials.
|
@@ -119,8 +119,7 @@ module Aws::BedrockRuntime
|
|
119
119
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
120
120
|
# from the Cognito Identity service.
|
121
121
|
#
|
122
|
-
# When `:credentials` are not configured directly, the following
|
123
|
-
# locations will be searched for credentials:
|
122
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
124
123
|
#
|
125
124
|
# * `Aws.config[:credentials]`
|
126
125
|
#
|
@@ -134,12 +133,10 @@ module Aws::BedrockRuntime
|
|
134
133
|
#
|
135
134
|
# * `~/.aws/config`
|
136
135
|
#
|
137
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
|
-
#
|
139
|
-
#
|
140
|
-
#
|
141
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
142
|
-
# to `true`.
|
136
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
137
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
138
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
139
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
143
140
|
#
|
144
141
|
# @option options [required, String] :region
|
145
142
|
# The AWS region to connect to. The configured `:region` is
|
@@ -339,8 +336,8 @@ module Aws::BedrockRuntime
|
|
339
336
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
340
337
|
#
|
341
338
|
# @option options [Aws::TokenProvider] :token_provider
|
342
|
-
# Your Bearer token used for authentication. This can be
|
343
|
-
# following classes:
|
339
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
340
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
344
341
|
#
|
345
342
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
346
343
|
# tokens.
|
@@ -624,7 +621,7 @@ module Aws::BedrockRuntime
|
|
624
621
|
tracer: tracer
|
625
622
|
)
|
626
623
|
context[:gem_name] = 'aws-sdk-bedrockruntime'
|
627
|
-
context[:gem_version] = '1.
|
624
|
+
context[:gem_version] = '1.55.0'
|
628
625
|
Seahorse::Client::Request.new(handlers, context)
|
629
626
|
end
|
630
627
|
|