aws-sdk-bedrockagentcorecontrol 1.6.0 → 1.8.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +83 -58
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +24 -13
- data/lib/aws-sdk-bedrockagentcorecontrol/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +108 -59
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +34 -24
- data/sig/types.rbs +28 -18
- 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: f5203809c78cd5b5ac6fd73dc9757bd9883a15cbb8499d42525844778d7624f3
|
4
|
+
data.tar.gz: 77b6fc63de4d82bd5b66ca16a14d2e81f73b191a187797bc8a43839c305b2e17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88698755e91898f770cd02a4d3b8d172dc1d8754355d6fa6680e5b2205c745a73b6f23c7a8b5127476743123aa3fec406cc9f52991180ec3ee95e29bb4e07dce
|
7
|
+
data.tar.gz: 6c4aa040def431316ed84e2b6419b1af72829d076342300074b159fc0b3b96e024b03f816e55c212a27e8fa14b4ab4ea616a58fbd0dc0a46ed9713696eadedb7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.8.0 (2025-10-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding support for authorizer type AWS_IAM to AgentCore Control Gateway.
|
8
|
+
|
9
|
+
1.7.0 (2025-10-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for VM lifecycle configuration parameters and A2A protocol
|
13
|
+
|
4
14
|
1.6.0 (2025-09-30)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -481,9 +481,6 @@ module Aws::BedrockAgentCoreControl
|
|
481
481
|
# @option params [required, String] :agent_runtime_name
|
482
482
|
# The name of the AgentCore Runtime.
|
483
483
|
#
|
484
|
-
# @option params [String] :description
|
485
|
-
# The description of the AgentCore Runtime.
|
486
|
-
#
|
487
484
|
# @option params [required, Types::AgentRuntimeArtifact] :agent_runtime_artifact
|
488
485
|
# The artifact of the AgentCore Runtime.
|
489
486
|
#
|
@@ -493,10 +490,6 @@ module Aws::BedrockAgentCoreControl
|
|
493
490
|
# @option params [required, Types::NetworkConfiguration] :network_configuration
|
494
491
|
# The network configuration for the AgentCore Runtime.
|
495
492
|
#
|
496
|
-
# @option params [Types::ProtocolConfiguration] :protocol_configuration
|
497
|
-
# The protocol configuration for an agent runtime. This structure
|
498
|
-
# defines how the agent runtime communicates with clients.
|
499
|
-
#
|
500
493
|
# @option params [String] :client_token
|
501
494
|
# A unique, case-sensitive identifier to ensure idempotency of the
|
502
495
|
# request.
|
@@ -504,8 +497,8 @@ module Aws::BedrockAgentCoreControl
|
|
504
497
|
# **A suitable default value is auto-generated.** You should normally
|
505
498
|
# not need to pass this option.**
|
506
499
|
#
|
507
|
-
# @option params [
|
508
|
-
#
|
500
|
+
# @option params [String] :description
|
501
|
+
# The description of the AgentCore Runtime.
|
509
502
|
#
|
510
503
|
# @option params [Types::AuthorizerConfiguration] :authorizer_configuration
|
511
504
|
# The authorizer configuration for the AgentCore Runtime.
|
@@ -514,6 +507,16 @@ module Aws::BedrockAgentCoreControl
|
|
514
507
|
# Configuration for HTTP request headers that will be passed through to
|
515
508
|
# the runtime.
|
516
509
|
#
|
510
|
+
# @option params [Types::ProtocolConfiguration] :protocol_configuration
|
511
|
+
# The protocol configuration for an agent runtime. This structure
|
512
|
+
# defines how the agent runtime communicates with clients.
|
513
|
+
#
|
514
|
+
# @option params [Types::LifecycleConfiguration] :lifecycle_configuration
|
515
|
+
# The life cycle configuration for the AgentCore Runtime.
|
516
|
+
#
|
517
|
+
# @option params [Hash<String,String>] :environment_variables
|
518
|
+
# Environment variables to set in the AgentCore Runtime environment.
|
519
|
+
#
|
517
520
|
# @option params [Hash<String,String>] :tags
|
518
521
|
# A map of tag keys and values to assign to the agent runtime. Tags
|
519
522
|
# enable you to categorize your resources in different ways, for
|
@@ -532,7 +535,6 @@ module Aws::BedrockAgentCoreControl
|
|
532
535
|
#
|
533
536
|
# resp = client.create_agent_runtime({
|
534
537
|
# agent_runtime_name: "AgentRuntimeName", # required
|
535
|
-
# description: "Description",
|
536
538
|
# agent_runtime_artifact: { # required
|
537
539
|
# container_configuration: {
|
538
540
|
# container_uri: "RuntimeContainerUri", # required
|
@@ -546,13 +548,8 @@ module Aws::BedrockAgentCoreControl
|
|
546
548
|
# subnets: ["SubnetId"], # required
|
547
549
|
# },
|
548
550
|
# },
|
549
|
-
# protocol_configuration: {
|
550
|
-
# server_protocol: "MCP", # required, accepts MCP, HTTP
|
551
|
-
# },
|
552
551
|
# client_token: "ClientToken",
|
553
|
-
#
|
554
|
-
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
555
|
-
# },
|
552
|
+
# description: "Description",
|
556
553
|
# authorizer_configuration: {
|
557
554
|
# custom_jwt_authorizer: {
|
558
555
|
# discovery_url: "DiscoveryUrl", # required
|
@@ -563,6 +560,16 @@ module Aws::BedrockAgentCoreControl
|
|
563
560
|
# request_header_configuration: {
|
564
561
|
# request_header_allowlist: ["HeaderName"],
|
565
562
|
# },
|
563
|
+
# protocol_configuration: {
|
564
|
+
# server_protocol: "MCP", # required, accepts MCP, HTTP, A2A
|
565
|
+
# },
|
566
|
+
# lifecycle_configuration: {
|
567
|
+
# idle_runtime_session_timeout: 1,
|
568
|
+
# max_lifetime: 1,
|
569
|
+
# },
|
570
|
+
# environment_variables: {
|
571
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
572
|
+
# },
|
566
573
|
# tags: {
|
567
574
|
# "TagKey" => "TagValue",
|
568
575
|
# },
|
@@ -886,7 +893,7 @@ module Aws::BedrockAgentCoreControl
|
|
886
893
|
# @option params [required, String] :authorizer_type
|
887
894
|
# The type of authorizer to use for the gateway.
|
888
895
|
#
|
889
|
-
# @option params [
|
896
|
+
# @option params [Types::AuthorizerConfiguration] :authorizer_configuration
|
890
897
|
# The authorizer configuration for the gateway.
|
891
898
|
#
|
892
899
|
# @option params [String] :kms_key_arn
|
@@ -942,8 +949,8 @@ module Aws::BedrockAgentCoreControl
|
|
942
949
|
# search_type: "SEMANTIC", # accepts SEMANTIC
|
943
950
|
# },
|
944
951
|
# },
|
945
|
-
# authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT
|
946
|
-
# authorizer_configuration: {
|
952
|
+
# authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM
|
953
|
+
# authorizer_configuration: {
|
947
954
|
# custom_jwt_authorizer: {
|
948
955
|
# discovery_url: "DiscoveryUrl", # required
|
949
956
|
# allowed_audience: ["AllowedAudience"],
|
@@ -975,7 +982,7 @@ module Aws::BedrockAgentCoreControl
|
|
975
982
|
# resp.protocol_configuration.mcp.supported_versions[0] #=> String
|
976
983
|
# resp.protocol_configuration.mcp.instructions #=> String
|
977
984
|
# resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
|
978
|
-
# resp.authorizer_type #=> String, one of "CUSTOM_JWT"
|
985
|
+
# resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
979
986
|
# resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
980
987
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
981
988
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
@@ -1221,6 +1228,11 @@ module Aws::BedrockAgentCoreControl
|
|
1221
1228
|
# The memory strategies to use for this memory. Strategies define how
|
1222
1229
|
# information is extracted, processed, and consolidated.
|
1223
1230
|
#
|
1231
|
+
# @option params [Hash<String,String>] :tags
|
1232
|
+
# A map of tag keys and values to assign to an AgentCore Memory. Tags
|
1233
|
+
# enable you to categorize your resources in different ways, for
|
1234
|
+
# example, by purpose, owner, or environment.
|
1235
|
+
#
|
1224
1236
|
# @return [Types::CreateMemoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1225
1237
|
#
|
1226
1238
|
# * {Types::CreateMemoryOutput#memory #memory} => Types::Memory
|
@@ -1286,6 +1298,9 @@ module Aws::BedrockAgentCoreControl
|
|
1286
1298
|
# },
|
1287
1299
|
# },
|
1288
1300
|
# ],
|
1301
|
+
# tags: {
|
1302
|
+
# "TagKey" => "TagValue",
|
1303
|
+
# },
|
1289
1304
|
# })
|
1290
1305
|
#
|
1291
1306
|
# @example Response structure
|
@@ -1785,21 +1800,22 @@ module Aws::BedrockAgentCoreControl
|
|
1785
1800
|
# @return [Types::GetAgentRuntimeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1786
1801
|
#
|
1787
1802
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_arn #agent_runtime_arn} => String
|
1788
|
-
# * {Types::GetAgentRuntimeResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
1789
1803
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_name #agent_runtime_name} => String
|
1790
|
-
# * {Types::GetAgentRuntimeResponse#description #description} => String
|
1791
1804
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_id #agent_runtime_id} => String
|
1792
1805
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_version #agent_runtime_version} => String
|
1793
1806
|
# * {Types::GetAgentRuntimeResponse#created_at #created_at} => Time
|
1794
1807
|
# * {Types::GetAgentRuntimeResponse#last_updated_at #last_updated_at} => Time
|
1795
1808
|
# * {Types::GetAgentRuntimeResponse#role_arn #role_arn} => String
|
1796
|
-
# * {Types::GetAgentRuntimeResponse#agent_runtime_artifact #agent_runtime_artifact} => Types::AgentRuntimeArtifact
|
1797
1809
|
# * {Types::GetAgentRuntimeResponse#network_configuration #network_configuration} => Types::NetworkConfiguration
|
1810
|
+
# * {Types::GetAgentRuntimeResponse#status #status} => String
|
1811
|
+
# * {Types::GetAgentRuntimeResponse#lifecycle_configuration #lifecycle_configuration} => Types::LifecycleConfiguration
|
1812
|
+
# * {Types::GetAgentRuntimeResponse#description #description} => String
|
1813
|
+
# * {Types::GetAgentRuntimeResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
1814
|
+
# * {Types::GetAgentRuntimeResponse#agent_runtime_artifact #agent_runtime_artifact} => Types::AgentRuntimeArtifact
|
1798
1815
|
# * {Types::GetAgentRuntimeResponse#protocol_configuration #protocol_configuration} => Types::ProtocolConfiguration
|
1799
1816
|
# * {Types::GetAgentRuntimeResponse#environment_variables #environment_variables} => Hash<String,String>
|
1800
1817
|
# * {Types::GetAgentRuntimeResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
1801
1818
|
# * {Types::GetAgentRuntimeResponse#request_header_configuration #request_header_configuration} => Types::RequestHeaderConfiguration
|
1802
|
-
# * {Types::GetAgentRuntimeResponse#status #status} => String
|
1803
1819
|
#
|
1804
1820
|
# @example Request syntax with placeholder values
|
1805
1821
|
#
|
@@ -1811,21 +1827,24 @@ module Aws::BedrockAgentCoreControl
|
|
1811
1827
|
# @example Response structure
|
1812
1828
|
#
|
1813
1829
|
# resp.agent_runtime_arn #=> String
|
1814
|
-
# resp.workload_identity_details.workload_identity_arn #=> String
|
1815
1830
|
# resp.agent_runtime_name #=> String
|
1816
|
-
# resp.description #=> String
|
1817
1831
|
# resp.agent_runtime_id #=> String
|
1818
1832
|
# resp.agent_runtime_version #=> String
|
1819
1833
|
# resp.created_at #=> Time
|
1820
1834
|
# resp.last_updated_at #=> Time
|
1821
1835
|
# resp.role_arn #=> String
|
1822
|
-
# resp.agent_runtime_artifact.container_configuration.container_uri #=> String
|
1823
1836
|
# resp.network_configuration.network_mode #=> String, one of "PUBLIC", "VPC"
|
1824
1837
|
# resp.network_configuration.network_mode_config.security_groups #=> Array
|
1825
1838
|
# resp.network_configuration.network_mode_config.security_groups[0] #=> String
|
1826
1839
|
# resp.network_configuration.network_mode_config.subnets #=> Array
|
1827
1840
|
# resp.network_configuration.network_mode_config.subnets[0] #=> String
|
1828
|
-
# resp.
|
1841
|
+
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
1842
|
+
# resp.lifecycle_configuration.idle_runtime_session_timeout #=> Integer
|
1843
|
+
# resp.lifecycle_configuration.max_lifetime #=> Integer
|
1844
|
+
# resp.description #=> String
|
1845
|
+
# resp.workload_identity_details.workload_identity_arn #=> String
|
1846
|
+
# resp.agent_runtime_artifact.container_configuration.container_uri #=> String
|
1847
|
+
# resp.protocol_configuration.server_protocol #=> String, one of "MCP", "HTTP", "A2A"
|
1829
1848
|
# resp.environment_variables #=> Hash
|
1830
1849
|
# resp.environment_variables["EnvironmentVariableKey"] #=> String
|
1831
1850
|
# resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
@@ -1835,7 +1854,6 @@ module Aws::BedrockAgentCoreControl
|
|
1835
1854
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
1836
1855
|
# resp.request_header_configuration.request_header_allowlist #=> Array
|
1837
1856
|
# resp.request_header_configuration.request_header_allowlist[0] #=> String
|
1838
|
-
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
1839
1857
|
#
|
1840
1858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntime AWS API Documentation
|
1841
1859
|
#
|
@@ -2088,7 +2106,7 @@ module Aws::BedrockAgentCoreControl
|
|
2088
2106
|
# resp.protocol_configuration.mcp.supported_versions[0] #=> String
|
2089
2107
|
# resp.protocol_configuration.mcp.instructions #=> String
|
2090
2108
|
# resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
|
2091
|
-
# resp.authorizer_type #=> String, one of "CUSTOM_JWT"
|
2109
|
+
# resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
2092
2110
|
# resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
2093
2111
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
2094
2112
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
@@ -2769,7 +2787,7 @@ module Aws::BedrockAgentCoreControl
|
|
2769
2787
|
# resp.items[0].description #=> String
|
2770
2788
|
# resp.items[0].created_at #=> Time
|
2771
2789
|
# resp.items[0].updated_at #=> Time
|
2772
|
-
# resp.items[0].authorizer_type #=> String, one of "CUSTOM_JWT"
|
2790
|
+
# resp.items[0].authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
2773
2791
|
# resp.items[0].protocol_type #=> String, one of "MCP"
|
2774
2792
|
# resp.next_token #=> String
|
2775
2793
|
#
|
@@ -3054,9 +3072,6 @@ module Aws::BedrockAgentCoreControl
|
|
3054
3072
|
# @option params [required, String] :agent_runtime_id
|
3055
3073
|
# The unique identifier of the AgentCore Runtime to update.
|
3056
3074
|
#
|
3057
|
-
# @option params [String] :description
|
3058
|
-
# The updated description of the AgentCore Runtime.
|
3059
|
-
#
|
3060
3075
|
# @option params [required, Types::AgentRuntimeArtifact] :agent_runtime_artifact
|
3061
3076
|
# The updated artifact of the AgentCore Runtime.
|
3062
3077
|
#
|
@@ -3067,27 +3082,33 @@ module Aws::BedrockAgentCoreControl
|
|
3067
3082
|
# @option params [required, Types::NetworkConfiguration] :network_configuration
|
3068
3083
|
# The updated network configuration for the AgentCore Runtime.
|
3069
3084
|
#
|
3085
|
+
# @option params [String] :description
|
3086
|
+
# The updated description of the AgentCore Runtime.
|
3087
|
+
#
|
3088
|
+
# @option params [Types::AuthorizerConfiguration] :authorizer_configuration
|
3089
|
+
# The updated authorizer configuration for the AgentCore Runtime.
|
3090
|
+
#
|
3091
|
+
# @option params [Types::RequestHeaderConfiguration] :request_header_configuration
|
3092
|
+
# The updated configuration for HTTP request headers that will be passed
|
3093
|
+
# through to the runtime.
|
3094
|
+
#
|
3070
3095
|
# @option params [Types::ProtocolConfiguration] :protocol_configuration
|
3071
3096
|
# The protocol configuration for an agent runtime. This structure
|
3072
3097
|
# defines how the agent runtime communicates with clients.
|
3073
3098
|
#
|
3074
|
-
# @option params [
|
3075
|
-
#
|
3076
|
-
# request.
|
3077
|
-
#
|
3078
|
-
# **A suitable default value is auto-generated.** You should normally
|
3079
|
-
# not need to pass this option.**
|
3099
|
+
# @option params [Types::LifecycleConfiguration] :lifecycle_configuration
|
3100
|
+
# The updated life cycle configuration for the AgentCore Runtime.
|
3080
3101
|
#
|
3081
3102
|
# @option params [Hash<String,String>] :environment_variables
|
3082
3103
|
# Updated environment variables to set in the AgentCore Runtime
|
3083
3104
|
# environment.
|
3084
3105
|
#
|
3085
|
-
# @option params [
|
3086
|
-
#
|
3106
|
+
# @option params [String] :client_token
|
3107
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
3108
|
+
# request.
|
3087
3109
|
#
|
3088
|
-
#
|
3089
|
-
#
|
3090
|
-
# through to the runtime.
|
3110
|
+
# **A suitable default value is auto-generated.** You should normally
|
3111
|
+
# not need to pass this option.**
|
3091
3112
|
#
|
3092
3113
|
# @return [Types::UpdateAgentRuntimeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3093
3114
|
#
|
@@ -3103,7 +3124,6 @@ module Aws::BedrockAgentCoreControl
|
|
3103
3124
|
#
|
3104
3125
|
# resp = client.update_agent_runtime({
|
3105
3126
|
# agent_runtime_id: "AgentRuntimeId", # required
|
3106
|
-
# description: "Description",
|
3107
3127
|
# agent_runtime_artifact: { # required
|
3108
3128
|
# container_configuration: {
|
3109
3129
|
# container_uri: "RuntimeContainerUri", # required
|
@@ -3117,13 +3137,7 @@ module Aws::BedrockAgentCoreControl
|
|
3117
3137
|
# subnets: ["SubnetId"], # required
|
3118
3138
|
# },
|
3119
3139
|
# },
|
3120
|
-
#
|
3121
|
-
# server_protocol: "MCP", # required, accepts MCP, HTTP
|
3122
|
-
# },
|
3123
|
-
# client_token: "ClientToken",
|
3124
|
-
# environment_variables: {
|
3125
|
-
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
3126
|
-
# },
|
3140
|
+
# description: "Description",
|
3127
3141
|
# authorizer_configuration: {
|
3128
3142
|
# custom_jwt_authorizer: {
|
3129
3143
|
# discovery_url: "DiscoveryUrl", # required
|
@@ -3134,6 +3148,17 @@ module Aws::BedrockAgentCoreControl
|
|
3134
3148
|
# request_header_configuration: {
|
3135
3149
|
# request_header_allowlist: ["HeaderName"],
|
3136
3150
|
# },
|
3151
|
+
# protocol_configuration: {
|
3152
|
+
# server_protocol: "MCP", # required, accepts MCP, HTTP, A2A
|
3153
|
+
# },
|
3154
|
+
# lifecycle_configuration: {
|
3155
|
+
# idle_runtime_session_timeout: 1,
|
3156
|
+
# max_lifetime: 1,
|
3157
|
+
# },
|
3158
|
+
# environment_variables: {
|
3159
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
3160
|
+
# },
|
3161
|
+
# client_token: "ClientToken",
|
3137
3162
|
# })
|
3138
3163
|
#
|
3139
3164
|
# @example Response structure
|
@@ -3282,7 +3307,7 @@ module Aws::BedrockAgentCoreControl
|
|
3282
3307
|
# @option params [required, String] :authorizer_type
|
3283
3308
|
# The updated authorizer type for the gateway.
|
3284
3309
|
#
|
3285
|
-
# @option params [
|
3310
|
+
# @option params [Types::AuthorizerConfiguration] :authorizer_configuration
|
3286
3311
|
# The updated authorizer configuration for the gateway.
|
3287
3312
|
#
|
3288
3313
|
# @option params [String] :kms_key_arn
|
@@ -3333,8 +3358,8 @@ module Aws::BedrockAgentCoreControl
|
|
3333
3358
|
# search_type: "SEMANTIC", # accepts SEMANTIC
|
3334
3359
|
# },
|
3335
3360
|
# },
|
3336
|
-
# authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT
|
3337
|
-
# authorizer_configuration: {
|
3361
|
+
# authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM
|
3362
|
+
# authorizer_configuration: {
|
3338
3363
|
# custom_jwt_authorizer: {
|
3339
3364
|
# discovery_url: "DiscoveryUrl", # required
|
3340
3365
|
# allowed_audience: ["AllowedAudience"],
|
@@ -3363,7 +3388,7 @@ module Aws::BedrockAgentCoreControl
|
|
3363
3388
|
# resp.protocol_configuration.mcp.supported_versions[0] #=> String
|
3364
3389
|
# resp.protocol_configuration.mcp.instructions #=> String
|
3365
3390
|
# resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
|
3366
|
-
# resp.authorizer_type #=> String, one of "CUSTOM_JWT"
|
3391
|
+
# resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
3367
3392
|
# resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
3368
3393
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
3369
3394
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
@@ -3920,7 +3945,7 @@ module Aws::BedrockAgentCoreControl
|
|
3920
3945
|
tracer: tracer
|
3921
3946
|
)
|
3922
3947
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
3923
|
-
context[:gem_version] = '1.
|
3948
|
+
context[:gem_version] = '1.8.0'
|
3924
3949
|
Seahorse::Client::Request.new(handlers, context)
|
3925
3950
|
end
|
3926
3951
|
|
@@ -190,6 +190,9 @@ module Aws::BedrockAgentCoreControl
|
|
190
190
|
KmsConfiguration = Shapes::StructureShape.new(name: 'KmsConfiguration')
|
191
191
|
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
192
192
|
LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
|
193
|
+
LifecycleConfiguration = Shapes::StructureShape.new(name: 'LifecycleConfiguration')
|
194
|
+
LifecycleConfigurationIdleRuntimeSessionTimeoutInteger = Shapes::IntegerShape.new(name: 'LifecycleConfigurationIdleRuntimeSessionTimeoutInteger')
|
195
|
+
LifecycleConfigurationMaxLifetimeInteger = Shapes::IntegerShape.new(name: 'LifecycleConfigurationMaxLifetimeInteger')
|
193
196
|
ListAgentRuntimeEndpointsRequest = Shapes::StructureShape.new(name: 'ListAgentRuntimeEndpointsRequest')
|
194
197
|
ListAgentRuntimeEndpointsResponse = Shapes::StructureShape.new(name: 'ListAgentRuntimeEndpointsResponse')
|
195
198
|
ListAgentRuntimeVersionsRequest = Shapes::StructureShape.new(name: 'ListAgentRuntimeVersionsRequest')
|
@@ -511,15 +514,16 @@ module Aws::BedrockAgentCoreControl
|
|
511
514
|
CreateAgentRuntimeEndpointResponse.struct_class = Types::CreateAgentRuntimeEndpointResponse
|
512
515
|
|
513
516
|
CreateAgentRuntimeRequest.add_member(:agent_runtime_name, Shapes::ShapeRef.new(shape: AgentRuntimeName, required: true, location_name: "agentRuntimeName"))
|
514
|
-
CreateAgentRuntimeRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
515
517
|
CreateAgentRuntimeRequest.add_member(:agent_runtime_artifact, Shapes::ShapeRef.new(shape: AgentRuntimeArtifact, required: true, location_name: "agentRuntimeArtifact"))
|
516
518
|
CreateAgentRuntimeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
517
519
|
CreateAgentRuntimeRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
518
|
-
CreateAgentRuntimeRequest.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: ProtocolConfiguration, location_name: "protocolConfiguration"))
|
519
520
|
CreateAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
520
|
-
CreateAgentRuntimeRequest.add_member(:
|
521
|
+
CreateAgentRuntimeRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
521
522
|
CreateAgentRuntimeRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
522
523
|
CreateAgentRuntimeRequest.add_member(:request_header_configuration, Shapes::ShapeRef.new(shape: RequestHeaderConfiguration, location_name: "requestHeaderConfiguration"))
|
524
|
+
CreateAgentRuntimeRequest.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: ProtocolConfiguration, location_name: "protocolConfiguration"))
|
525
|
+
CreateAgentRuntimeRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "lifecycleConfiguration"))
|
526
|
+
CreateAgentRuntimeRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
523
527
|
CreateAgentRuntimeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
524
528
|
CreateAgentRuntimeRequest.struct_class = Types::CreateAgentRuntimeRequest
|
525
529
|
|
@@ -576,7 +580,7 @@ module Aws::BedrockAgentCoreControl
|
|
576
580
|
CreateGatewayRequest.add_member(:protocol_type, Shapes::ShapeRef.new(shape: GatewayProtocolType, required: true, location_name: "protocolType"))
|
577
581
|
CreateGatewayRequest.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: GatewayProtocolConfiguration, location_name: "protocolConfiguration"))
|
578
582
|
CreateGatewayRequest.add_member(:authorizer_type, Shapes::ShapeRef.new(shape: AuthorizerType, required: true, location_name: "authorizerType"))
|
579
|
-
CreateGatewayRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration,
|
583
|
+
CreateGatewayRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
580
584
|
CreateGatewayRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
581
585
|
CreateGatewayRequest.add_member(:exception_level, Shapes::ShapeRef.new(shape: ExceptionLevel, location_name: "exceptionLevel"))
|
582
586
|
CreateGatewayRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
@@ -628,6 +632,7 @@ module Aws::BedrockAgentCoreControl
|
|
628
632
|
CreateMemoryInput.add_member(:memory_execution_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "memoryExecutionRoleArn"))
|
629
633
|
CreateMemoryInput.add_member(:event_expiry_duration, Shapes::ShapeRef.new(shape: CreateMemoryInputEventExpiryDurationInteger, required: true, location_name: "eventExpiryDuration"))
|
630
634
|
CreateMemoryInput.add_member(:memory_strategies, Shapes::ShapeRef.new(shape: MemoryStrategyInputList, location_name: "memoryStrategies"))
|
635
|
+
CreateMemoryInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
631
636
|
CreateMemoryInput.struct_class = Types::CreateMemoryInput
|
632
637
|
|
633
638
|
CreateMemoryOutput.add_member(:memory, Shapes::ShapeRef.new(shape: Memory, location_name: "memory"))
|
@@ -864,21 +869,22 @@ module Aws::BedrockAgentCoreControl
|
|
864
869
|
GetAgentRuntimeRequest.struct_class = Types::GetAgentRuntimeRequest
|
865
870
|
|
866
871
|
GetAgentRuntimeResponse.add_member(:agent_runtime_arn, Shapes::ShapeRef.new(shape: AgentRuntimeArn, required: true, location_name: "agentRuntimeArn"))
|
867
|
-
GetAgentRuntimeResponse.add_member(:workload_identity_details, Shapes::ShapeRef.new(shape: WorkloadIdentityDetails, location_name: "workloadIdentityDetails"))
|
868
872
|
GetAgentRuntimeResponse.add_member(:agent_runtime_name, Shapes::ShapeRef.new(shape: AgentRuntimeName, required: true, location_name: "agentRuntimeName"))
|
869
|
-
GetAgentRuntimeResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
870
873
|
GetAgentRuntimeResponse.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location_name: "agentRuntimeId"))
|
871
874
|
GetAgentRuntimeResponse.add_member(:agent_runtime_version, Shapes::ShapeRef.new(shape: AgentRuntimeVersion, required: true, location_name: "agentRuntimeVersion"))
|
872
875
|
GetAgentRuntimeResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
873
876
|
GetAgentRuntimeResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
874
877
|
GetAgentRuntimeResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
875
|
-
GetAgentRuntimeResponse.add_member(:agent_runtime_artifact, Shapes::ShapeRef.new(shape: AgentRuntimeArtifact, location_name: "agentRuntimeArtifact"))
|
876
878
|
GetAgentRuntimeResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
879
|
+
GetAgentRuntimeResponse.add_member(:status, Shapes::ShapeRef.new(shape: AgentRuntimeStatus, required: true, location_name: "status"))
|
880
|
+
GetAgentRuntimeResponse.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, required: true, location_name: "lifecycleConfiguration"))
|
881
|
+
GetAgentRuntimeResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
882
|
+
GetAgentRuntimeResponse.add_member(:workload_identity_details, Shapes::ShapeRef.new(shape: WorkloadIdentityDetails, location_name: "workloadIdentityDetails"))
|
883
|
+
GetAgentRuntimeResponse.add_member(:agent_runtime_artifact, Shapes::ShapeRef.new(shape: AgentRuntimeArtifact, location_name: "agentRuntimeArtifact"))
|
877
884
|
GetAgentRuntimeResponse.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: ProtocolConfiguration, location_name: "protocolConfiguration"))
|
878
885
|
GetAgentRuntimeResponse.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
879
886
|
GetAgentRuntimeResponse.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
880
887
|
GetAgentRuntimeResponse.add_member(:request_header_configuration, Shapes::ShapeRef.new(shape: RequestHeaderConfiguration, location_name: "requestHeaderConfiguration"))
|
881
|
-
GetAgentRuntimeResponse.add_member(:status, Shapes::ShapeRef.new(shape: AgentRuntimeStatus, required: true, location_name: "status"))
|
882
888
|
GetAgentRuntimeResponse.struct_class = Types::GetAgentRuntimeResponse
|
883
889
|
|
884
890
|
GetApiKeyCredentialProviderRequest.add_member(:name, Shapes::ShapeRef.new(shape: CredentialProviderName, required: true, location_name: "name"))
|
@@ -1017,6 +1023,10 @@ module Aws::BedrockAgentCoreControl
|
|
1017
1023
|
KmsConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
1018
1024
|
KmsConfiguration.struct_class = Types::KmsConfiguration
|
1019
1025
|
|
1026
|
+
LifecycleConfiguration.add_member(:idle_runtime_session_timeout, Shapes::ShapeRef.new(shape: LifecycleConfigurationIdleRuntimeSessionTimeoutInteger, location_name: "idleRuntimeSessionTimeout"))
|
1027
|
+
LifecycleConfiguration.add_member(:max_lifetime, Shapes::ShapeRef.new(shape: LifecycleConfigurationMaxLifetimeInteger, location_name: "maxLifetime"))
|
1028
|
+
LifecycleConfiguration.struct_class = Types::LifecycleConfiguration
|
1029
|
+
|
1020
1030
|
ListAgentRuntimeEndpointsRequest.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location: "uri", location_name: "agentRuntimeId"))
|
1021
1031
|
ListAgentRuntimeEndpointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
1022
1032
|
ListAgentRuntimeEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
@@ -1498,15 +1508,16 @@ module Aws::BedrockAgentCoreControl
|
|
1498
1508
|
UpdateAgentRuntimeEndpointResponse.struct_class = Types::UpdateAgentRuntimeEndpointResponse
|
1499
1509
|
|
1500
1510
|
UpdateAgentRuntimeRequest.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location: "uri", location_name: "agentRuntimeId"))
|
1501
|
-
UpdateAgentRuntimeRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
1502
1511
|
UpdateAgentRuntimeRequest.add_member(:agent_runtime_artifact, Shapes::ShapeRef.new(shape: AgentRuntimeArtifact, required: true, location_name: "agentRuntimeArtifact"))
|
1503
1512
|
UpdateAgentRuntimeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
1504
1513
|
UpdateAgentRuntimeRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
1505
|
-
UpdateAgentRuntimeRequest.add_member(:
|
1506
|
-
UpdateAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
1507
|
-
UpdateAgentRuntimeRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
1514
|
+
UpdateAgentRuntimeRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
1508
1515
|
UpdateAgentRuntimeRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
1509
1516
|
UpdateAgentRuntimeRequest.add_member(:request_header_configuration, Shapes::ShapeRef.new(shape: RequestHeaderConfiguration, location_name: "requestHeaderConfiguration"))
|
1517
|
+
UpdateAgentRuntimeRequest.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: ProtocolConfiguration, location_name: "protocolConfiguration"))
|
1518
|
+
UpdateAgentRuntimeRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "lifecycleConfiguration"))
|
1519
|
+
UpdateAgentRuntimeRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
1520
|
+
UpdateAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
1510
1521
|
UpdateAgentRuntimeRequest.struct_class = Types::UpdateAgentRuntimeRequest
|
1511
1522
|
|
1512
1523
|
UpdateAgentRuntimeResponse.add_member(:agent_runtime_arn, Shapes::ShapeRef.new(shape: AgentRuntimeArn, required: true, location_name: "agentRuntimeArn"))
|
@@ -1536,7 +1547,7 @@ module Aws::BedrockAgentCoreControl
|
|
1536
1547
|
UpdateGatewayRequest.add_member(:protocol_type, Shapes::ShapeRef.new(shape: GatewayProtocolType, required: true, location_name: "protocolType"))
|
1537
1548
|
UpdateGatewayRequest.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: GatewayProtocolConfiguration, location_name: "protocolConfiguration"))
|
1538
1549
|
UpdateGatewayRequest.add_member(:authorizer_type, Shapes::ShapeRef.new(shape: AuthorizerType, required: true, location_name: "authorizerType"))
|
1539
|
-
UpdateGatewayRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration,
|
1550
|
+
UpdateGatewayRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
1540
1551
|
UpdateGatewayRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
1541
1552
|
UpdateGatewayRequest.add_member(:exception_level, Shapes::ShapeRef.new(shape: ExceptionLevel, location_name: "exceptionLevel"))
|
1542
1553
|
UpdateGatewayRequest.struct_class = Types::UpdateGatewayRequest
|
@@ -13,22 +13,22 @@ module Aws::BedrockAgentCoreControl
|
|
13
13
|
# @!attribute region
|
14
14
|
# The AWS region used to dispatch the request.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [string]
|
17
17
|
#
|
18
18
|
# @!attribute use_dual_stack
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [boolean]
|
22
22
|
#
|
23
23
|
# @!attribute use_fips
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [boolean]
|
27
27
|
#
|
28
28
|
# @!attribute endpoint
|
29
29
|
# Override the endpoint used to send this request
|
30
30
|
#
|
31
|
-
# @return [
|
31
|
+
# @return [string]
|
32
32
|
#
|
33
33
|
EndpointParameters = Struct.new(
|
34
34
|
:region,
|
@@ -550,10 +550,6 @@ module Aws::BedrockAgentCoreControl
|
|
550
550
|
# The name of the AgentCore Runtime.
|
551
551
|
# @return [String]
|
552
552
|
#
|
553
|
-
# @!attribute [rw] description
|
554
|
-
# The description of the AgentCore Runtime.
|
555
|
-
# @return [String]
|
556
|
-
#
|
557
553
|
# @!attribute [rw] agent_runtime_artifact
|
558
554
|
# The artifact of the AgentCore Runtime.
|
559
555
|
# @return [Types::AgentRuntimeArtifact]
|
@@ -567,11 +563,6 @@ module Aws::BedrockAgentCoreControl
|
|
567
563
|
# The network configuration for the AgentCore Runtime.
|
568
564
|
# @return [Types::NetworkConfiguration]
|
569
565
|
#
|
570
|
-
# @!attribute [rw] protocol_configuration
|
571
|
-
# The protocol configuration for an agent runtime. This structure
|
572
|
-
# defines how the agent runtime communicates with clients.
|
573
|
-
# @return [Types::ProtocolConfiguration]
|
574
|
-
#
|
575
566
|
# @!attribute [rw] client_token
|
576
567
|
# A unique, case-sensitive identifier to ensure idempotency of the
|
577
568
|
# request.
|
@@ -580,9 +571,9 @@ module Aws::BedrockAgentCoreControl
|
|
580
571
|
# not need to pass this option.
|
581
572
|
# @return [String]
|
582
573
|
#
|
583
|
-
# @!attribute [rw]
|
584
|
-
#
|
585
|
-
# @return [
|
574
|
+
# @!attribute [rw] description
|
575
|
+
# The description of the AgentCore Runtime.
|
576
|
+
# @return [String]
|
586
577
|
#
|
587
578
|
# @!attribute [rw] authorizer_configuration
|
588
579
|
# The authorizer configuration for the AgentCore Runtime.
|
@@ -593,6 +584,19 @@ module Aws::BedrockAgentCoreControl
|
|
593
584
|
# to the runtime.
|
594
585
|
# @return [Types::RequestHeaderConfiguration]
|
595
586
|
#
|
587
|
+
# @!attribute [rw] protocol_configuration
|
588
|
+
# The protocol configuration for an agent runtime. This structure
|
589
|
+
# defines how the agent runtime communicates with clients.
|
590
|
+
# @return [Types::ProtocolConfiguration]
|
591
|
+
#
|
592
|
+
# @!attribute [rw] lifecycle_configuration
|
593
|
+
# The life cycle configuration for the AgentCore Runtime.
|
594
|
+
# @return [Types::LifecycleConfiguration]
|
595
|
+
#
|
596
|
+
# @!attribute [rw] environment_variables
|
597
|
+
# Environment variables to set in the AgentCore Runtime environment.
|
598
|
+
# @return [Hash<String,String>]
|
599
|
+
#
|
596
600
|
# @!attribute [rw] tags
|
597
601
|
# A map of tag keys and values to assign to the agent runtime. Tags
|
598
602
|
# enable you to categorize your resources in different ways, for
|
@@ -603,15 +607,16 @@ module Aws::BedrockAgentCoreControl
|
|
603
607
|
#
|
604
608
|
class CreateAgentRuntimeRequest < Struct.new(
|
605
609
|
:agent_runtime_name,
|
606
|
-
:description,
|
607
610
|
:agent_runtime_artifact,
|
608
611
|
:role_arn,
|
609
612
|
:network_configuration,
|
610
|
-
:protocol_configuration,
|
611
613
|
:client_token,
|
612
|
-
:
|
614
|
+
:description,
|
613
615
|
:authorizer_configuration,
|
614
616
|
:request_header_configuration,
|
617
|
+
:protocol_configuration,
|
618
|
+
:lifecycle_configuration,
|
619
|
+
:environment_variables,
|
615
620
|
:tags)
|
616
621
|
SENSITIVE = [:description, :environment_variables]
|
617
622
|
include Aws::Structure
|
@@ -1185,6 +1190,12 @@ module Aws::BedrockAgentCoreControl
|
|
1185
1190
|
# information is extracted, processed, and consolidated.
|
1186
1191
|
# @return [Array<Types::MemoryStrategyInput>]
|
1187
1192
|
#
|
1193
|
+
# @!attribute [rw] tags
|
1194
|
+
# A map of tag keys and values to assign to an AgentCore Memory. Tags
|
1195
|
+
# enable you to categorize your resources in different ways, for
|
1196
|
+
# example, by purpose, owner, or environment.
|
1197
|
+
# @return [Hash<String,String>]
|
1198
|
+
#
|
1188
1199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateMemoryInput AWS API Documentation
|
1189
1200
|
#
|
1190
1201
|
class CreateMemoryInput < Struct.new(
|
@@ -1194,7 +1205,8 @@ module Aws::BedrockAgentCoreControl
|
|
1194
1205
|
:encryption_key_arn,
|
1195
1206
|
:memory_execution_role_arn,
|
1196
1207
|
:event_expiry_duration,
|
1197
|
-
:memory_strategies
|
1208
|
+
:memory_strategies,
|
1209
|
+
:tags)
|
1198
1210
|
SENSITIVE = [:description]
|
1199
1211
|
include Aws::Structure
|
1200
1212
|
end
|
@@ -2159,18 +2171,10 @@ module Aws::BedrockAgentCoreControl
|
|
2159
2171
|
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
2160
2172
|
# @return [String]
|
2161
2173
|
#
|
2162
|
-
# @!attribute [rw] workload_identity_details
|
2163
|
-
# The workload identity details for the AgentCore Runtime.
|
2164
|
-
# @return [Types::WorkloadIdentityDetails]
|
2165
|
-
#
|
2166
2174
|
# @!attribute [rw] agent_runtime_name
|
2167
2175
|
# The name of the AgentCore Runtime.
|
2168
2176
|
# @return [String]
|
2169
2177
|
#
|
2170
|
-
# @!attribute [rw] description
|
2171
|
-
# The description of the AgentCore Runtime.
|
2172
|
-
# @return [String]
|
2173
|
-
#
|
2174
2178
|
# @!attribute [rw] agent_runtime_id
|
2175
2179
|
# The unique identifier of the AgentCore Runtime.
|
2176
2180
|
# @return [String]
|
@@ -2192,14 +2196,30 @@ module Aws::BedrockAgentCoreControl
|
|
2192
2196
|
# Runtime.
|
2193
2197
|
# @return [String]
|
2194
2198
|
#
|
2195
|
-
# @!attribute [rw] agent_runtime_artifact
|
2196
|
-
# The artifact of the AgentCore Runtime.
|
2197
|
-
# @return [Types::AgentRuntimeArtifact]
|
2198
|
-
#
|
2199
2199
|
# @!attribute [rw] network_configuration
|
2200
2200
|
# The network configuration for the AgentCore Runtime.
|
2201
2201
|
# @return [Types::NetworkConfiguration]
|
2202
2202
|
#
|
2203
|
+
# @!attribute [rw] status
|
2204
|
+
# The current status of the AgentCore Runtime.
|
2205
|
+
# @return [String]
|
2206
|
+
#
|
2207
|
+
# @!attribute [rw] lifecycle_configuration
|
2208
|
+
# The life cycle configuration for the AgentCore Runtime.
|
2209
|
+
# @return [Types::LifecycleConfiguration]
|
2210
|
+
#
|
2211
|
+
# @!attribute [rw] description
|
2212
|
+
# The description of the AgentCore Runtime.
|
2213
|
+
# @return [String]
|
2214
|
+
#
|
2215
|
+
# @!attribute [rw] workload_identity_details
|
2216
|
+
# The workload identity details for the AgentCore Runtime.
|
2217
|
+
# @return [Types::WorkloadIdentityDetails]
|
2218
|
+
#
|
2219
|
+
# @!attribute [rw] agent_runtime_artifact
|
2220
|
+
# The artifact of the AgentCore Runtime.
|
2221
|
+
# @return [Types::AgentRuntimeArtifact]
|
2222
|
+
#
|
2203
2223
|
# @!attribute [rw] protocol_configuration
|
2204
2224
|
# The protocol configuration for an agent runtime. This structure
|
2205
2225
|
# defines how the agent runtime communicates with clients.
|
@@ -2218,29 +2238,26 @@ module Aws::BedrockAgentCoreControl
|
|
2218
2238
|
# to the runtime.
|
2219
2239
|
# @return [Types::RequestHeaderConfiguration]
|
2220
2240
|
#
|
2221
|
-
# @!attribute [rw] status
|
2222
|
-
# The current status of the AgentCore Runtime.
|
2223
|
-
# @return [String]
|
2224
|
-
#
|
2225
2241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeResponse AWS API Documentation
|
2226
2242
|
#
|
2227
2243
|
class GetAgentRuntimeResponse < Struct.new(
|
2228
2244
|
:agent_runtime_arn,
|
2229
|
-
:workload_identity_details,
|
2230
2245
|
:agent_runtime_name,
|
2231
|
-
:description,
|
2232
2246
|
:agent_runtime_id,
|
2233
2247
|
:agent_runtime_version,
|
2234
2248
|
:created_at,
|
2235
2249
|
:last_updated_at,
|
2236
2250
|
:role_arn,
|
2237
|
-
:agent_runtime_artifact,
|
2238
2251
|
:network_configuration,
|
2252
|
+
:status,
|
2253
|
+
:lifecycle_configuration,
|
2254
|
+
:description,
|
2255
|
+
:workload_identity_details,
|
2256
|
+
:agent_runtime_artifact,
|
2239
2257
|
:protocol_configuration,
|
2240
2258
|
:environment_variables,
|
2241
2259
|
:authorizer_configuration,
|
2242
|
-
:request_header_configuration
|
2243
|
-
:status)
|
2260
|
+
:request_header_configuration)
|
2244
2261
|
SENSITIVE = [:description, :environment_variables]
|
2245
2262
|
include Aws::Structure
|
2246
2263
|
end
|
@@ -2881,6 +2898,33 @@ module Aws::BedrockAgentCoreControl
|
|
2881
2898
|
include Aws::Structure
|
2882
2899
|
end
|
2883
2900
|
|
2901
|
+
# LifecycleConfiguration lets you manage the lifecycle of runtime
|
2902
|
+
# sessions and resources in AgentCore Runtime. This configuration helps
|
2903
|
+
# optimize resource utilization by automatically cleaning up idle
|
2904
|
+
# sessions and preventing long-running instances from consuming
|
2905
|
+
# resources indefinitely.
|
2906
|
+
#
|
2907
|
+
# @!attribute [rw] idle_runtime_session_timeout
|
2908
|
+
# Timeout in seconds for idle runtime sessions. When a session remains
|
2909
|
+
# idle for this duration, it will be automatically terminated.
|
2910
|
+
# Default: 900 seconds (15 minutes).
|
2911
|
+
# @return [Integer]
|
2912
|
+
#
|
2913
|
+
# @!attribute [rw] max_lifetime
|
2914
|
+
# Maximum lifetime for the instance in seconds. Once reached,
|
2915
|
+
# instances will be automatically terminated and replaced. Default:
|
2916
|
+
# 28800 seconds (8 hours).
|
2917
|
+
# @return [Integer]
|
2918
|
+
#
|
2919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LifecycleConfiguration AWS API Documentation
|
2920
|
+
#
|
2921
|
+
class LifecycleConfiguration < Struct.new(
|
2922
|
+
:idle_runtime_session_timeout,
|
2923
|
+
:max_lifetime)
|
2924
|
+
SENSITIVE = []
|
2925
|
+
include Aws::Structure
|
2926
|
+
end
|
2927
|
+
|
2884
2928
|
# @!attribute [rw] agent_runtime_id
|
2885
2929
|
# The unique identifier of the AgentCore Runtime to list endpoints
|
2886
2930
|
# for.
|
@@ -4852,10 +4896,6 @@ module Aws::BedrockAgentCoreControl
|
|
4852
4896
|
# The unique identifier of the AgentCore Runtime to update.
|
4853
4897
|
# @return [String]
|
4854
4898
|
#
|
4855
|
-
# @!attribute [rw] description
|
4856
|
-
# The updated description of the AgentCore Runtime.
|
4857
|
-
# @return [String]
|
4858
|
-
#
|
4859
4899
|
# @!attribute [rw] agent_runtime_artifact
|
4860
4900
|
# The updated artifact of the AgentCore Runtime.
|
4861
4901
|
# @return [Types::AgentRuntimeArtifact]
|
@@ -4869,46 +4909,55 @@ module Aws::BedrockAgentCoreControl
|
|
4869
4909
|
# The updated network configuration for the AgentCore Runtime.
|
4870
4910
|
# @return [Types::NetworkConfiguration]
|
4871
4911
|
#
|
4912
|
+
# @!attribute [rw] description
|
4913
|
+
# The updated description of the AgentCore Runtime.
|
4914
|
+
# @return [String]
|
4915
|
+
#
|
4916
|
+
# @!attribute [rw] authorizer_configuration
|
4917
|
+
# The updated authorizer configuration for the AgentCore Runtime.
|
4918
|
+
# @return [Types::AuthorizerConfiguration]
|
4919
|
+
#
|
4920
|
+
# @!attribute [rw] request_header_configuration
|
4921
|
+
# The updated configuration for HTTP request headers that will be
|
4922
|
+
# passed through to the runtime.
|
4923
|
+
# @return [Types::RequestHeaderConfiguration]
|
4924
|
+
#
|
4872
4925
|
# @!attribute [rw] protocol_configuration
|
4873
4926
|
# The protocol configuration for an agent runtime. This structure
|
4874
4927
|
# defines how the agent runtime communicates with clients.
|
4875
4928
|
# @return [Types::ProtocolConfiguration]
|
4876
4929
|
#
|
4877
|
-
# @!attribute [rw]
|
4878
|
-
#
|
4879
|
-
#
|
4880
|
-
#
|
4881
|
-
# **A suitable default value is auto-generated.** You should normally
|
4882
|
-
# not need to pass this option.
|
4883
|
-
# @return [String]
|
4930
|
+
# @!attribute [rw] lifecycle_configuration
|
4931
|
+
# The updated life cycle configuration for the AgentCore Runtime.
|
4932
|
+
# @return [Types::LifecycleConfiguration]
|
4884
4933
|
#
|
4885
4934
|
# @!attribute [rw] environment_variables
|
4886
4935
|
# Updated environment variables to set in the AgentCore Runtime
|
4887
4936
|
# environment.
|
4888
4937
|
# @return [Hash<String,String>]
|
4889
4938
|
#
|
4890
|
-
# @!attribute [rw]
|
4891
|
-
#
|
4892
|
-
#
|
4939
|
+
# @!attribute [rw] client_token
|
4940
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
4941
|
+
# request.
|
4893
4942
|
#
|
4894
|
-
#
|
4895
|
-
#
|
4896
|
-
#
|
4897
|
-
# @return [Types::RequestHeaderConfiguration]
|
4943
|
+
# **A suitable default value is auto-generated.** You should normally
|
4944
|
+
# not need to pass this option.
|
4945
|
+
# @return [String]
|
4898
4946
|
#
|
4899
4947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeRequest AWS API Documentation
|
4900
4948
|
#
|
4901
4949
|
class UpdateAgentRuntimeRequest < Struct.new(
|
4902
4950
|
:agent_runtime_id,
|
4903
|
-
:description,
|
4904
4951
|
:agent_runtime_artifact,
|
4905
4952
|
:role_arn,
|
4906
4953
|
:network_configuration,
|
4954
|
+
:description,
|
4955
|
+
:authorizer_configuration,
|
4956
|
+
:request_header_configuration,
|
4907
4957
|
:protocol_configuration,
|
4908
|
-
:
|
4958
|
+
:lifecycle_configuration,
|
4909
4959
|
:environment_variables,
|
4910
|
-
:
|
4911
|
-
:request_header_configuration)
|
4960
|
+
:client_token)
|
4912
4961
|
SENSITIVE = [:description, :environment_variables]
|
4913
4962
|
include Aws::Structure
|
4914
4963
|
end
|
data/sig/client.rbs
CHANGED
@@ -90,7 +90,6 @@ module Aws
|
|
90
90
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_agent_runtime-instance_method
|
91
91
|
def create_agent_runtime: (
|
92
92
|
agent_runtime_name: ::String,
|
93
|
-
?description: ::String,
|
94
93
|
agent_runtime_artifact: {
|
95
94
|
container_configuration: {
|
96
95
|
container_uri: ::String
|
@@ -104,11 +103,8 @@ module Aws
|
|
104
103
|
subnets: Array[::String]
|
105
104
|
}?
|
106
105
|
},
|
107
|
-
?protocol_configuration: {
|
108
|
-
server_protocol: ("MCP" | "HTTP")
|
109
|
-
},
|
110
106
|
?client_token: ::String,
|
111
|
-
?
|
107
|
+
?description: ::String,
|
112
108
|
?authorizer_configuration: {
|
113
109
|
custom_jwt_authorizer: {
|
114
110
|
discovery_url: ::String,
|
@@ -119,6 +115,14 @@ module Aws
|
|
119
115
|
?request_header_configuration: {
|
120
116
|
request_header_allowlist: Array[::String]?
|
121
117
|
},
|
118
|
+
?protocol_configuration: {
|
119
|
+
server_protocol: ("MCP" | "HTTP" | "A2A")
|
120
|
+
},
|
121
|
+
?lifecycle_configuration: {
|
122
|
+
idle_runtime_session_timeout: ::Integer?,
|
123
|
+
max_lifetime: ::Integer?
|
124
|
+
},
|
125
|
+
?environment_variables: Hash[::String, ::String],
|
122
126
|
?tags: Hash[::String, ::String]
|
123
127
|
) -> _CreateAgentRuntimeResponseSuccess
|
124
128
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentRuntimeResponseSuccess
|
@@ -224,7 +228,7 @@ module Aws
|
|
224
228
|
def role_arn: () -> ::String
|
225
229
|
def protocol_type: () -> ("MCP")
|
226
230
|
def protocol_configuration: () -> Types::GatewayProtocolConfiguration
|
227
|
-
def authorizer_type: () -> ("CUSTOM_JWT")
|
231
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
228
232
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
229
233
|
def kms_key_arn: () -> ::String
|
230
234
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
@@ -244,8 +248,8 @@ module Aws
|
|
244
248
|
search_type: ("SEMANTIC")?
|
245
249
|
}?
|
246
250
|
},
|
247
|
-
authorizer_type: ("CUSTOM_JWT"),
|
248
|
-
authorizer_configuration: {
|
251
|
+
authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
|
252
|
+
?authorizer_configuration: {
|
249
253
|
custom_jwt_authorizer: {
|
250
254
|
discovery_url: ::String,
|
251
255
|
allowed_audience: Array[::String]?,
|
@@ -408,7 +412,8 @@ module Aws
|
|
408
412
|
}?
|
409
413
|
}?
|
410
414
|
},
|
411
|
-
]
|
415
|
+
],
|
416
|
+
?tags: Hash[::String, ::String]
|
412
417
|
) -> _CreateMemoryResponseSuccess
|
413
418
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMemoryResponseSuccess
|
414
419
|
|
@@ -589,21 +594,22 @@ module Aws
|
|
589
594
|
interface _GetAgentRuntimeResponseSuccess
|
590
595
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAgentRuntimeResponse]
|
591
596
|
def agent_runtime_arn: () -> ::String
|
592
|
-
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
593
597
|
def agent_runtime_name: () -> ::String
|
594
|
-
def description: () -> ::String
|
595
598
|
def agent_runtime_id: () -> ::String
|
596
599
|
def agent_runtime_version: () -> ::String
|
597
600
|
def created_at: () -> ::Time
|
598
601
|
def last_updated_at: () -> ::Time
|
599
602
|
def role_arn: () -> ::String
|
600
|
-
def agent_runtime_artifact: () -> Types::AgentRuntimeArtifact
|
601
603
|
def network_configuration: () -> Types::NetworkConfiguration
|
604
|
+
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
605
|
+
def lifecycle_configuration: () -> Types::LifecycleConfiguration
|
606
|
+
def description: () -> ::String
|
607
|
+
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
608
|
+
def agent_runtime_artifact: () -> Types::AgentRuntimeArtifact
|
602
609
|
def protocol_configuration: () -> Types::ProtocolConfiguration
|
603
610
|
def environment_variables: () -> ::Hash[::String, ::String]
|
604
611
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
605
612
|
def request_header_configuration: () -> Types::RequestHeaderConfiguration
|
606
|
-
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
607
613
|
end
|
608
614
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime-instance_method
|
609
615
|
def get_agent_runtime: (
|
@@ -700,7 +706,7 @@ module Aws
|
|
700
706
|
def role_arn: () -> ::String
|
701
707
|
def protocol_type: () -> ("MCP")
|
702
708
|
def protocol_configuration: () -> Types::GatewayProtocolConfiguration
|
703
|
-
def authorizer_type: () -> ("CUSTOM_JWT")
|
709
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
704
710
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
705
711
|
def kms_key_arn: () -> ::String
|
706
712
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
@@ -980,7 +986,6 @@ module Aws
|
|
980
986
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_agent_runtime-instance_method
|
981
987
|
def update_agent_runtime: (
|
982
988
|
agent_runtime_id: ::String,
|
983
|
-
?description: ::String,
|
984
989
|
agent_runtime_artifact: {
|
985
990
|
container_configuration: {
|
986
991
|
container_uri: ::String
|
@@ -994,11 +999,7 @@ module Aws
|
|
994
999
|
subnets: Array[::String]
|
995
1000
|
}?
|
996
1001
|
},
|
997
|
-
?
|
998
|
-
server_protocol: ("MCP" | "HTTP")
|
999
|
-
},
|
1000
|
-
?client_token: ::String,
|
1001
|
-
?environment_variables: Hash[::String, ::String],
|
1002
|
+
?description: ::String,
|
1002
1003
|
?authorizer_configuration: {
|
1003
1004
|
custom_jwt_authorizer: {
|
1004
1005
|
discovery_url: ::String,
|
@@ -1008,7 +1009,16 @@ module Aws
|
|
1008
1009
|
},
|
1009
1010
|
?request_header_configuration: {
|
1010
1011
|
request_header_allowlist: Array[::String]?
|
1011
|
-
}
|
1012
|
+
},
|
1013
|
+
?protocol_configuration: {
|
1014
|
+
server_protocol: ("MCP" | "HTTP" | "A2A")
|
1015
|
+
},
|
1016
|
+
?lifecycle_configuration: {
|
1017
|
+
idle_runtime_session_timeout: ::Integer?,
|
1018
|
+
max_lifetime: ::Integer?
|
1019
|
+
},
|
1020
|
+
?environment_variables: Hash[::String, ::String],
|
1021
|
+
?client_token: ::String
|
1012
1022
|
) -> _UpdateAgentRuntimeResponseSuccess
|
1013
1023
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentRuntimeResponseSuccess
|
1014
1024
|
|
@@ -1061,7 +1071,7 @@ module Aws
|
|
1061
1071
|
def role_arn: () -> ::String
|
1062
1072
|
def protocol_type: () -> ("MCP")
|
1063
1073
|
def protocol_configuration: () -> Types::GatewayProtocolConfiguration
|
1064
|
-
def authorizer_type: () -> ("CUSTOM_JWT")
|
1074
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
1065
1075
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
1066
1076
|
def kms_key_arn: () -> ::String
|
1067
1077
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
@@ -1081,8 +1091,8 @@ module Aws
|
|
1081
1091
|
search_type: ("SEMANTIC")?
|
1082
1092
|
}?
|
1083
1093
|
},
|
1084
|
-
authorizer_type: ("CUSTOM_JWT"),
|
1085
|
-
authorizer_configuration: {
|
1094
|
+
authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
|
1095
|
+
?authorizer_configuration: {
|
1086
1096
|
custom_jwt_authorizer: {
|
1087
1097
|
discovery_url: ::String,
|
1088
1098
|
allowed_audience: Array[::String]?,
|
data/sig/types.rbs
CHANGED
@@ -171,15 +171,16 @@ module Aws::BedrockAgentCoreControl
|
|
171
171
|
|
172
172
|
class CreateAgentRuntimeRequest
|
173
173
|
attr_accessor agent_runtime_name: ::String
|
174
|
-
attr_accessor description: ::String
|
175
174
|
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
176
175
|
attr_accessor role_arn: ::String
|
177
176
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
178
|
-
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
179
177
|
attr_accessor client_token: ::String
|
180
|
-
attr_accessor
|
178
|
+
attr_accessor description: ::String
|
181
179
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
182
180
|
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
181
|
+
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
182
|
+
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
183
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
183
184
|
attr_accessor tags: ::Hash[::String, ::String]
|
184
185
|
SENSITIVE: [:description, :environment_variables]
|
185
186
|
end
|
@@ -251,7 +252,7 @@ module Aws::BedrockAgentCoreControl
|
|
251
252
|
attr_accessor role_arn: ::String
|
252
253
|
attr_accessor protocol_type: ("MCP")
|
253
254
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
254
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
255
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
255
256
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
256
257
|
attr_accessor kms_key_arn: ::String
|
257
258
|
attr_accessor exception_level: ("DEBUG")
|
@@ -272,7 +273,7 @@ module Aws::BedrockAgentCoreControl
|
|
272
273
|
attr_accessor role_arn: ::String
|
273
274
|
attr_accessor protocol_type: ("MCP")
|
274
275
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
275
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
276
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
276
277
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
277
278
|
attr_accessor kms_key_arn: ::String
|
278
279
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
@@ -312,6 +313,7 @@ module Aws::BedrockAgentCoreControl
|
|
312
313
|
attr_accessor memory_execution_role_arn: ::String
|
313
314
|
attr_accessor event_expiry_duration: ::Integer
|
314
315
|
attr_accessor memory_strategies: ::Array[Types::MemoryStrategyInput]
|
316
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
315
317
|
SENSITIVE: [:description]
|
316
318
|
end
|
317
319
|
|
@@ -627,7 +629,7 @@ module Aws::BedrockAgentCoreControl
|
|
627
629
|
attr_accessor description: ::String
|
628
630
|
attr_accessor created_at: ::Time
|
629
631
|
attr_accessor updated_at: ::Time
|
630
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
632
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
631
633
|
attr_accessor protocol_type: ("MCP")
|
632
634
|
SENSITIVE: [:name, :description]
|
633
635
|
end
|
@@ -661,21 +663,22 @@ module Aws::BedrockAgentCoreControl
|
|
661
663
|
|
662
664
|
class GetAgentRuntimeResponse
|
663
665
|
attr_accessor agent_runtime_arn: ::String
|
664
|
-
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
665
666
|
attr_accessor agent_runtime_name: ::String
|
666
|
-
attr_accessor description: ::String
|
667
667
|
attr_accessor agent_runtime_id: ::String
|
668
668
|
attr_accessor agent_runtime_version: ::String
|
669
669
|
attr_accessor created_at: ::Time
|
670
670
|
attr_accessor last_updated_at: ::Time
|
671
671
|
attr_accessor role_arn: ::String
|
672
|
-
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
673
672
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
673
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
674
|
+
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
675
|
+
attr_accessor description: ::String
|
676
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
677
|
+
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
674
678
|
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
675
679
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
676
680
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
677
681
|
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
678
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
679
682
|
SENSITIVE: [:description, :environment_variables]
|
680
683
|
end
|
681
684
|
|
@@ -750,7 +753,7 @@ module Aws::BedrockAgentCoreControl
|
|
750
753
|
attr_accessor role_arn: ::String
|
751
754
|
attr_accessor protocol_type: ("MCP")
|
752
755
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
753
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
756
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
754
757
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
755
758
|
attr_accessor kms_key_arn: ::String
|
756
759
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
@@ -863,6 +866,12 @@ module Aws::BedrockAgentCoreControl
|
|
863
866
|
SENSITIVE: []
|
864
867
|
end
|
865
868
|
|
869
|
+
class LifecycleConfiguration
|
870
|
+
attr_accessor idle_runtime_session_timeout: ::Integer
|
871
|
+
attr_accessor max_lifetime: ::Integer
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
866
875
|
class ListAgentRuntimeEndpointsRequest
|
867
876
|
attr_accessor agent_runtime_id: ::String
|
868
877
|
attr_accessor max_results: ::Integer
|
@@ -1249,7 +1258,7 @@ module Aws::BedrockAgentCoreControl
|
|
1249
1258
|
end
|
1250
1259
|
|
1251
1260
|
class ProtocolConfiguration
|
1252
|
-
attr_accessor server_protocol: ("MCP" | "HTTP")
|
1261
|
+
attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A")
|
1253
1262
|
SENSITIVE: []
|
1254
1263
|
end
|
1255
1264
|
|
@@ -1517,15 +1526,16 @@ module Aws::BedrockAgentCoreControl
|
|
1517
1526
|
|
1518
1527
|
class UpdateAgentRuntimeRequest
|
1519
1528
|
attr_accessor agent_runtime_id: ::String
|
1520
|
-
attr_accessor description: ::String
|
1521
1529
|
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
1522
1530
|
attr_accessor role_arn: ::String
|
1523
1531
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
1524
|
-
attr_accessor
|
1525
|
-
attr_accessor client_token: ::String
|
1526
|
-
attr_accessor environment_variables: ::Hash[::String, ::String]
|
1532
|
+
attr_accessor description: ::String
|
1527
1533
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1528
1534
|
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
1535
|
+
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
1536
|
+
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
1537
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
1538
|
+
attr_accessor client_token: ::String
|
1529
1539
|
SENSITIVE: [:description, :environment_variables]
|
1530
1540
|
end
|
1531
1541
|
|
@@ -1562,7 +1572,7 @@ module Aws::BedrockAgentCoreControl
|
|
1562
1572
|
attr_accessor role_arn: ::String
|
1563
1573
|
attr_accessor protocol_type: ("MCP")
|
1564
1574
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
1565
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
1575
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
1566
1576
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1567
1577
|
attr_accessor kms_key_arn: ::String
|
1568
1578
|
attr_accessor exception_level: ("DEBUG")
|
@@ -1582,7 +1592,7 @@ module Aws::BedrockAgentCoreControl
|
|
1582
1592
|
attr_accessor role_arn: ::String
|
1583
1593
|
attr_accessor protocol_type: ("MCP")
|
1584
1594
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
1585
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
1595
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
1586
1596
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1587
1597
|
attr_accessor kms_key_arn: ::String
|
1588
1598
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|