aws-sdk-bedrockruntime 1.1.0 → 1.2.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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockruntime/client.rb +1 -1
- data/lib/aws-sdk-bedrockruntime/types.rb +10 -5
- data/lib/aws-sdk-bedrockruntime.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a79c0b98c5238dc930554e2ac96ffaff97d2019beb4e63163121da0bea54d9da
|
|
4
|
+
data.tar.gz: e268bf991b9b4adee940c3038af1d4bddd30b98c7788e0e75f3c39897aa757ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec50eb1b8b40f00813209c6059ab8a0c0b36b6d608eb020b0cd09e6aa850b7e1a3aa23cef329a8cc4dc513739d9c66a33765e3acdb3014084d9a74957e15fbda
|
|
7
|
+
data.tar.gz: 879a2cc4d9ccfbb6ed92c8bfcb669b1557cc9c1bc0c3f58cf60d07d1b47365b89869ef16b02ff02832a3d37e9201542e04ca9c31ceef945915c0b58b13c03236
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.2.0 (2023-11-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
* Issue - Fix exception handling with event streaming operations.
|
|
10
|
+
|
|
4
11
|
1.1.0 (2023-10-02)
|
|
5
12
|
------------------
|
|
6
13
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.2.0
|
|
@@ -704,7 +704,7 @@ module Aws::BedrockRuntime
|
|
|
704
704
|
params: params,
|
|
705
705
|
config: config)
|
|
706
706
|
context[:gem_name] = 'aws-sdk-bedrockruntime'
|
|
707
|
-
context[:gem_version] = '1.
|
|
707
|
+
context[:gem_version] = '1.2.0'
|
|
708
708
|
Seahorse::Client::Request.new(handlers, context)
|
|
709
709
|
end
|
|
710
710
|
|
|
@@ -31,7 +31,8 @@ module Aws::BedrockRuntime
|
|
|
31
31
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/InternalServerException AWS API Documentation
|
|
32
32
|
#
|
|
33
33
|
class InternalServerException < Struct.new(
|
|
34
|
-
:message
|
|
34
|
+
:message,
|
|
35
|
+
:event_type)
|
|
35
36
|
SENSITIVE = []
|
|
36
37
|
include Aws::Structure
|
|
37
38
|
end
|
|
@@ -207,7 +208,8 @@ module Aws::BedrockRuntime
|
|
|
207
208
|
class ModelStreamErrorException < Struct.new(
|
|
208
209
|
:message,
|
|
209
210
|
:original_message,
|
|
210
|
-
:original_status_code
|
|
211
|
+
:original_status_code,
|
|
212
|
+
:event_type)
|
|
211
213
|
SENSITIVE = []
|
|
212
214
|
include Aws::Structure
|
|
213
215
|
end
|
|
@@ -221,7 +223,8 @@ module Aws::BedrockRuntime
|
|
|
221
223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/ModelTimeoutException AWS API Documentation
|
|
222
224
|
#
|
|
223
225
|
class ModelTimeoutException < Struct.new(
|
|
224
|
-
:message
|
|
226
|
+
:message,
|
|
227
|
+
:event_type)
|
|
225
228
|
SENSITIVE = []
|
|
226
229
|
include Aws::Structure
|
|
227
230
|
end
|
|
@@ -277,7 +280,8 @@ module Aws::BedrockRuntime
|
|
|
277
280
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/ThrottlingException AWS API Documentation
|
|
278
281
|
#
|
|
279
282
|
class ThrottlingException < Struct.new(
|
|
280
|
-
:message
|
|
283
|
+
:message,
|
|
284
|
+
:event_type)
|
|
281
285
|
SENSITIVE = []
|
|
282
286
|
include Aws::Structure
|
|
283
287
|
end
|
|
@@ -291,7 +295,8 @@ module Aws::BedrockRuntime
|
|
|
291
295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/ValidationException AWS API Documentation
|
|
292
296
|
#
|
|
293
297
|
class ValidationException < Struct.new(
|
|
294
|
-
:message
|
|
298
|
+
:message,
|
|
299
|
+
:event_type)
|
|
295
300
|
SENSITIVE = []
|
|
296
301
|
include Aws::Structure
|
|
297
302
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-11-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|