aws-sdk-bedrockagentcore 1.37.0 → 1.38.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcore/client.rb +1 -1
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +2 -0
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- 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: aabd01ef4bec777b901eed7dcbbad7bd230e509ef740d503eb89dcca0c4af927
|
|
4
|
+
data.tar.gz: 4ce2c9f94733747d99fc3a29b2a2bc4d949c45ab6be924ce72f7e5400209afb0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4bc819d989573c32a986e43c6381610efee83e92d8e4371a26ae6626a48b02571f31a475cd1d2357c8a0874bb5fe066f3bbbd23f78f74637ad684661e6faf503
|
|
7
|
+
data.tar.gz: 8f44f67a5562dbcddb98cef18031248473d007df9298fcbf250db6696bb2eefe7b7d45e05b6cec94baff478c4e6b087a92875f6d0c29fe94c5ff1501d80b0c32
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.38.0 (2026-06-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add RetryableConflictException (HTTP 409) to InvokeAgentRuntimeCommand and GetAgentCard to prevent orphaned VMs during concurrent session access. The SDK automatically retries this exception with backoff. Enforcement is not yet active and will be enabled in a future service update.
|
|
8
|
+
|
|
4
9
|
1.37.0 (2026-05-28)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.38.0
|
|
@@ -6107,7 +6107,7 @@ module Aws::BedrockAgentCore
|
|
|
6107
6107
|
tracer: tracer
|
|
6108
6108
|
)
|
|
6109
6109
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
6110
|
-
context[:gem_version] = '1.
|
|
6110
|
+
context[:gem_version] = '1.38.0'
|
|
6111
6111
|
Seahorse::Client::Request.new(handlers, context)
|
|
6112
6112
|
end
|
|
6113
6113
|
|
|
@@ -3362,6 +3362,7 @@ module Aws::BedrockAgentCore
|
|
|
3362
3362
|
o.input = Shapes::ShapeRef.new(shape: GetAgentCardRequest)
|
|
3363
3363
|
o.output = Shapes::ShapeRef.new(shape: GetAgentCardResponse)
|
|
3364
3364
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3365
|
+
o.errors << Shapes::ShapeRef.new(shape: RetryableConflictException)
|
|
3365
3366
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3366
3367
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3367
3368
|
o.errors << Shapes::ShapeRef.new(shape: RuntimeClientError)
|
|
@@ -3599,6 +3600,7 @@ module Aws::BedrockAgentCore
|
|
|
3599
3600
|
o.input = Shapes::ShapeRef.new(shape: InvokeAgentRuntimeCommandRequest)
|
|
3600
3601
|
o.output = Shapes::ShapeRef.new(shape: InvokeAgentRuntimeCommandResponse)
|
|
3601
3602
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3603
|
+
o.errors << Shapes::ShapeRef.new(shape: RetryableConflictException)
|
|
3602
3604
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3603
3605
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3604
3606
|
o.errors << Shapes::ShapeRef.new(shape: RuntimeClientError)
|