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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 666f16d542f0c5c2abefc35e69bfd1cd43ed72f24bcadbcf937e293501ea8c98
4
- data.tar.gz: a226fd2b85bbf7b7f51d138f7fef44c5c558b2aaa933b4345b48ada663858352
3
+ metadata.gz: a79c0b98c5238dc930554e2ac96ffaff97d2019beb4e63163121da0bea54d9da
4
+ data.tar.gz: e268bf991b9b4adee940c3038af1d4bddd30b98c7788e0e75f3c39897aa757ba
5
5
  SHA512:
6
- metadata.gz: 5bda1b39c6a60cee585cb2bb30c966072ee6d20b0f0f1649d388b8abd3eeb47583c34ebe41ce2b8c6a86ad62756a0f0b3d2997eddbfaeff0ff8adca682be1f0b
7
- data.tar.gz: 22cfca82fa323b952fd3800c35067730c5897e1d33901cb2e3279d7abfbe189f891f6dd829b7ff0b39258b051eaea67b610f1eaf2bf1be001746328b85ec29df
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.0
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.1.0'
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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-bedrockruntime/event_streams'
53
53
  # @!group service
54
54
  module Aws::BedrockRuntime
55
55
 
56
- GEM_VERSION = '1.1.0'
56
+ GEM_VERSION = '1.2.0'
57
57
 
58
58
  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.1.0
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-10-02 00:00:00.000000000 Z
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