aws-sdk-bedrock 1.13.0 → 1.15.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-bedrock/client.rb +594 -40
- data/lib/aws-sdk-bedrock/client_api.rb +288 -1
- data/lib/aws-sdk-bedrock/endpoints.rb +98 -0
- data/lib/aws-sdk-bedrock/plugins/endpoints.rb +14 -0
- data/lib/aws-sdk-bedrock/types.rb +816 -19
- data/lib/aws-sdk-bedrock.rb +1 -1
- data/sig/client.rbs +143 -1
- data/sig/types.rbs +189 -0
- 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: 71b57b036d4bff754036e14f76bde5e12ae9164f34a9c09ec048c18908e09aca
|
4
|
+
data.tar.gz: 108f1bf0c1c775a9787fc39f254546d44ed8ec475f7768ba4aa2bbb4407bcf45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: def49baa91fa2eab41787c106c36432eacdf6e4ef2e12528f099f85800f1ca072f73e36d465906bdc0645ba16acce35d3d97c1add7e0a8eb6fcef81407e08d26
|
7
|
+
data.tar.gz: 0a41eb93740dcb8b82cf7fcfc33755ae38a4e6f2f53e16d7f6e9dc4b7bbb70dd46a9111ec3bc36dceb071786d8adef1aeecd0e5eadaa74ea154b9ce5a84e0a4e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2024-08-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon Bedrock Batch Inference/ Model Invocation is a feature which allows customers to asynchronously run inference on a large set of records/files stored in S3.
|
8
|
+
|
9
|
+
1.14.0 (2024-08-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - API and Documentation for Bedrock Model Copy feature. This feature lets you share and copy a custom model from one region to another or one account to another.
|
13
|
+
|
4
14
|
1.13.0 (2024-07-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|