aws-sdk-bedrock 1.46.0 → 1.53.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrock/client.rb +484 -10
- data/lib/aws-sdk-bedrock/client_api.rb +309 -7
- data/lib/aws-sdk-bedrock/types.rb +846 -22
- data/lib/aws-sdk-bedrock.rb +1 -1
- data/sig/client.rbs +184 -9
- data/sig/types.rbs +219 -7
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d949463ffa3761ba4c843b884658ce2833c3f0ceaaeeb4d99a952bb15a866635
|
4
|
+
data.tar.gz: 795c2cc017319a18581c041f81db7f4ba041bd1345071baebd022aa2c58fac0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd4c231fd4c2b626085a79708ab2d16e2b08c55f805c8fef2383be0b6926492a5d6d8a0657bb1a5b65ccf199c913321ccc0567ec48263317f0ff457f0a908257
|
7
|
+
data.tar.gz: '0875fe8ddbd14c58019cc256e67369ef0d7584c72a587c85e3f4ea5a50bf912bc309189ec1f85ec0f3de5ad4ef038f3b7ffecfdcceee7cca78a16692e791791c'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,41 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.53.0 (2025-06-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for API Keys, Re-Ranker, implicit filter for RAG / KB evaluation for Bedrock APIs.
|
8
|
+
|
9
|
+
1.52.0 (2025-06-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - We are making ListFoundationModelAgreementOffers, DeleteFoundationModelAgreement, CreateFoundationModelAgreement, GetFoundationModelAvailability, PutUseCaseForModelAccess and GetUseCaseForModelAccess APIs public, previously they were console.
|
13
|
+
|
14
|
+
1.51.0 (2025-06-20)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Add support for tiers in Content Filters and Denied Topics for Amazon Bedrock Guardrails.
|
18
|
+
|
19
|
+
1.50.0 (2025-06-19)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release of the SDK has the API and documentation for the createcustommodel API. This feature lets you copy a trained model into Amazon Bedrock for inference.
|
23
|
+
|
24
|
+
1.49.0 (2025-06-17)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - This release of the SDK has the API and documentation for the createcustommodel API. This feature lets you copy a trained model into Amazon Bedrock for inference.
|
28
|
+
|
29
|
+
1.48.0 (2025-06-16)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - This release of the SDK has the API and documentation for the createcustommodel API. This feature lets you copy a Amazon SageMaker trained Amazon Nova model into Amazon Bedrock for inference.
|
33
|
+
|
34
|
+
1.47.0 (2025-06-02)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
38
|
+
|
4
39
|
1.46.0 (2025-05-13)
|
5
40
|
------------------
|
6
41
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.0
|