aws-sdk-bedrockagentcorecontrol 1.26.0 → 1.27.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: 7cfe8ac00cdd47ad0c7a1dfc42b6a0fa7453b9fb32709210fd3a5eac1598a6ea
4
- data.tar.gz: 85208fc15cfc5e0b2cfb3f5861d80e553467cb11112b013460fe64ccce4310ca
3
+ metadata.gz: 62de68088b3c24d52ef6d54485a738cdd23e942dede9f1cc9f7093db1071445f
4
+ data.tar.gz: d296d267691401323f95d2910753b2fe3033eee0a988a2f0f21a93902b406654
5
5
  SHA512:
6
- metadata.gz: e9f3593bb1d2ab80e47479c740d70e875a7a46f2f9493327e6a4d82aaf601f169091a4a71364cf8b31d28f351038cb3996c3f171a41ffa6b67f76876284b9406
7
- data.tar.gz: 0d035d4b40854b48eaca6b0515dea9265f80bef7d34f8393bbb26c732a2b8e157d3d778186c7d136da181b4a8d1bbfb3dcad93bc54109e7e1272bc255cb1a503
6
+ metadata.gz: 854c31c4bca4b2c2a1d9aab957db4877514d79071f6f1129e42c6286064065e05e6c4870e179b7285450ec7f1c602e8ef9b2df0d28bb462c2f8cc8fe20ea3193
7
+ data.tar.gz: ce62718721bf164af0b2ec03e1404e46282f2e951d0a602da17dc5f14498e73d76f017522d9558198d4f000e6aa2868374f960a2b56082cf33a9d25e06226040
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2026-03-10)
5
+ ------------------
6
+
7
+ * Feature - Adding first class support for AG-UI protocol in AgentCore Runtime.
8
+
4
9
  1.26.0 (2026-03-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.27.0
@@ -586,7 +586,7 @@ module Aws::BedrockAgentCoreControl
586
586
  # request_header_allowlist: ["HeaderName"],
587
587
  # },
588
588
  # protocol_configuration: {
589
- # server_protocol: "MCP", # required, accepts MCP, HTTP, A2A
589
+ # server_protocol: "MCP", # required, accepts MCP, HTTP, A2A, AGUI
590
590
  # },
591
591
  # lifecycle_configuration: {
592
592
  # idle_runtime_session_timeout: 1,
@@ -2999,7 +2999,7 @@ module Aws::BedrockAgentCoreControl
2999
2999
  # resp.agent_runtime_artifact.code_configuration.runtime #=> String, one of "PYTHON_3_10", "PYTHON_3_11", "PYTHON_3_12", "PYTHON_3_13", "PYTHON_3_14"
3000
3000
  # resp.agent_runtime_artifact.code_configuration.entry_point #=> Array
3001
3001
  # resp.agent_runtime_artifact.code_configuration.entry_point[0] #=> String
3002
- # resp.protocol_configuration.server_protocol #=> String, one of "MCP", "HTTP", "A2A"
3002
+ # resp.protocol_configuration.server_protocol #=> String, one of "MCP", "HTTP", "A2A", "AGUI"
3003
3003
  # resp.environment_variables #=> Hash
3004
3004
  # resp.environment_variables["EnvironmentVariableKey"] #=> String
3005
3005
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
@@ -5492,7 +5492,7 @@ module Aws::BedrockAgentCoreControl
5492
5492
  # request_header_allowlist: ["HeaderName"],
5493
5493
  # },
5494
5494
  # protocol_configuration: {
5495
- # server_protocol: "MCP", # required, accepts MCP, HTTP, A2A
5495
+ # server_protocol: "MCP", # required, accepts MCP, HTTP, A2A, AGUI
5496
5496
  # },
5497
5497
  # lifecycle_configuration: {
5498
5498
  # idle_runtime_session_timeout: 1,
@@ -6951,7 +6951,7 @@ module Aws::BedrockAgentCoreControl
6951
6951
  tracer: tracer
6952
6952
  )
6953
6953
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
6954
- context[:gem_version] = '1.26.0'
6954
+ context[:gem_version] = '1.27.0'
6955
6955
  Seahorse::Client::Request.new(handlers, context)
6956
6956
  end
6957
6957
 
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.26.0'
58
+ GEM_VERSION = '1.27.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -141,7 +141,7 @@ module Aws
141
141
  request_header_allowlist: Array[::String]?
142
142
  },
143
143
  ?protocol_configuration: {
144
- server_protocol: ("MCP" | "HTTP" | "A2A")
144
+ server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
145
145
  },
146
146
  ?lifecycle_configuration: {
147
147
  idle_runtime_session_timeout: ::Integer?,
@@ -1749,7 +1749,7 @@ module Aws
1749
1749
  request_header_allowlist: Array[::String]?
1750
1750
  },
1751
1751
  ?protocol_configuration: {
1752
- server_protocol: ("MCP" | "HTTP" | "A2A")
1752
+ server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
1753
1753
  },
1754
1754
  ?lifecycle_configuration: {
1755
1755
  idle_runtime_session_timeout: ::Integer?,
data/sig/types.rbs CHANGED
@@ -2335,7 +2335,7 @@ module Aws::BedrockAgentCoreControl
2335
2335
  end
2336
2336
 
2337
2337
  class ProtocolConfiguration
2338
- attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A")
2338
+ attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
2339
2339
  SENSITIVE: []
2340
2340
  end
2341
2341
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services