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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +4 -4
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +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: 62de68088b3c24d52ef6d54485a738cdd23e942dede9f1cc9f7093db1071445f
|
|
4
|
+
data.tar.gz: d296d267691401323f95d2910753b2fe3033eee0a988a2f0f21a93902b406654
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 854c31c4bca4b2c2a1d9aab957db4877514d79071f6f1129e42c6286064065e05e6c4870e179b7285450ec7f1c602e8ef9b2df0d28bb462c2f8cc8fe20ea3193
|
|
7
|
+
data.tar.gz: ce62718721bf164af0b2ec03e1404e46282f2e951d0a602da17dc5f14498e73d76f017522d9558198d4f000e6aa2868374f960a2b56082cf33a9d25e06226040
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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.
|
|
6954
|
+
context[:gem_version] = '1.27.0'
|
|
6955
6955
|
Seahorse::Client::Request.new(handlers, context)
|
|
6956
6956
|
end
|
|
6957
6957
|
|
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
|
|