aws-sdk-bedrockagentcorecontrol 1.5.0 → 1.7.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 +95 -48
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +23 -11
- data/lib/aws-sdk-bedrockagentcorecontrol/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +115 -60
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +29 -18
- data/sig/types.rbs +23 -12
- 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: e65fb8392daeafcb484a0e265e16bf83b58aaacea8fe443e947a6f462ad4be45
|
4
|
+
data.tar.gz: 25e94a5a1d5fb762336af8be45c62b945aec17c5623cb7ca061ccaaef08862c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fb1c4e799db90cd98bdb9f5eab04902c2fc55cb1ce5569fc644ed7ed91e82d241089ae9084774877f0ce13edc6fa3c9bc49c609368af63b0da6b373534371de
|
7
|
+
data.tar.gz: 1f4d70cb801f68a68051b6a717ec8c5e79fce12f4837af317b279562c54018f1572c02285944788496b37ccd4554c9a468c5764618c100f2ebf41a418659800e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.7.0 (2025-10-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for VM lifecycle configuration parameters and A2A protocol
|
8
|
+
|
9
|
+
1.6.0 (2025-09-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Tagging support for AgentCore Gateway
|
13
|
+
|
4
14
|
1.5.0 (2025-09-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.7.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
|
# },
|
@@ -903,6 +910,10 @@ module Aws::BedrockAgentCoreControl
|
|
903
910
|
# * If the value is omitted, a generic error message is returned to the
|
904
911
|
# end user.
|
905
912
|
#
|
913
|
+
# @option params [Hash<String,String>] :tags
|
914
|
+
# A map of key-value pairs to associate with the gateway as metadata
|
915
|
+
# tags.
|
916
|
+
#
|
906
917
|
# @return [Types::CreateGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
907
918
|
#
|
908
919
|
# * {Types::CreateGatewayResponse#gateway_arn #gateway_arn} => String
|
@@ -948,6 +959,9 @@ module Aws::BedrockAgentCoreControl
|
|
948
959
|
# },
|
949
960
|
# kms_key_arn: "KmsKeyArn",
|
950
961
|
# exception_level: "DEBUG", # accepts DEBUG
|
962
|
+
# tags: {
|
963
|
+
# "TagKey" => "TagValue",
|
964
|
+
# },
|
951
965
|
# })
|
952
966
|
#
|
953
967
|
# @example Response structure
|
@@ -1214,6 +1228,11 @@ module Aws::BedrockAgentCoreControl
|
|
1214
1228
|
# The memory strategies to use for this memory. Strategies define how
|
1215
1229
|
# information is extracted, processed, and consolidated.
|
1216
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
|
+
#
|
1217
1236
|
# @return [Types::CreateMemoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1218
1237
|
#
|
1219
1238
|
# * {Types::CreateMemoryOutput#memory #memory} => Types::Memory
|
@@ -1279,6 +1298,9 @@ module Aws::BedrockAgentCoreControl
|
|
1279
1298
|
# },
|
1280
1299
|
# },
|
1281
1300
|
# ],
|
1301
|
+
# tags: {
|
1302
|
+
# "TagKey" => "TagValue",
|
1303
|
+
# },
|
1282
1304
|
# })
|
1283
1305
|
#
|
1284
1306
|
# @example Response structure
|
@@ -1778,21 +1800,22 @@ module Aws::BedrockAgentCoreControl
|
|
1778
1800
|
# @return [Types::GetAgentRuntimeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1779
1801
|
#
|
1780
1802
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_arn #agent_runtime_arn} => String
|
1781
|
-
# * {Types::GetAgentRuntimeResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
1782
1803
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_name #agent_runtime_name} => String
|
1783
|
-
# * {Types::GetAgentRuntimeResponse#description #description} => String
|
1784
1804
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_id #agent_runtime_id} => String
|
1785
1805
|
# * {Types::GetAgentRuntimeResponse#agent_runtime_version #agent_runtime_version} => String
|
1786
1806
|
# * {Types::GetAgentRuntimeResponse#created_at #created_at} => Time
|
1787
1807
|
# * {Types::GetAgentRuntimeResponse#last_updated_at #last_updated_at} => Time
|
1788
1808
|
# * {Types::GetAgentRuntimeResponse#role_arn #role_arn} => String
|
1789
|
-
# * {Types::GetAgentRuntimeResponse#agent_runtime_artifact #agent_runtime_artifact} => Types::AgentRuntimeArtifact
|
1790
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
|
1791
1815
|
# * {Types::GetAgentRuntimeResponse#protocol_configuration #protocol_configuration} => Types::ProtocolConfiguration
|
1792
1816
|
# * {Types::GetAgentRuntimeResponse#environment_variables #environment_variables} => Hash<String,String>
|
1793
1817
|
# * {Types::GetAgentRuntimeResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
1794
1818
|
# * {Types::GetAgentRuntimeResponse#request_header_configuration #request_header_configuration} => Types::RequestHeaderConfiguration
|
1795
|
-
# * {Types::GetAgentRuntimeResponse#status #status} => String
|
1796
1819
|
#
|
1797
1820
|
# @example Request syntax with placeholder values
|
1798
1821
|
#
|
@@ -1804,21 +1827,24 @@ module Aws::BedrockAgentCoreControl
|
|
1804
1827
|
# @example Response structure
|
1805
1828
|
#
|
1806
1829
|
# resp.agent_runtime_arn #=> String
|
1807
|
-
# resp.workload_identity_details.workload_identity_arn #=> String
|
1808
1830
|
# resp.agent_runtime_name #=> String
|
1809
|
-
# resp.description #=> String
|
1810
1831
|
# resp.agent_runtime_id #=> String
|
1811
1832
|
# resp.agent_runtime_version #=> String
|
1812
1833
|
# resp.created_at #=> Time
|
1813
1834
|
# resp.last_updated_at #=> Time
|
1814
1835
|
# resp.role_arn #=> String
|
1815
|
-
# resp.agent_runtime_artifact.container_configuration.container_uri #=> String
|
1816
1836
|
# resp.network_configuration.network_mode #=> String, one of "PUBLIC", "VPC"
|
1817
1837
|
# resp.network_configuration.network_mode_config.security_groups #=> Array
|
1818
1838
|
# resp.network_configuration.network_mode_config.security_groups[0] #=> String
|
1819
1839
|
# resp.network_configuration.network_mode_config.subnets #=> Array
|
1820
1840
|
# resp.network_configuration.network_mode_config.subnets[0] #=> String
|
1821
|
-
# 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"
|
1822
1848
|
# resp.environment_variables #=> Hash
|
1823
1849
|
# resp.environment_variables["EnvironmentVariableKey"] #=> String
|
1824
1850
|
# resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
@@ -1828,7 +1854,6 @@ module Aws::BedrockAgentCoreControl
|
|
1828
1854
|
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
1829
1855
|
# resp.request_header_configuration.request_header_allowlist #=> Array
|
1830
1856
|
# resp.request_header_configuration.request_header_allowlist[0] #=> String
|
1831
|
-
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
1832
1857
|
#
|
1833
1858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntime AWS API Documentation
|
1834
1859
|
#
|
@@ -2863,6 +2888,11 @@ module Aws::BedrockAgentCoreControl
|
|
2863
2888
|
|
2864
2889
|
# Lists the tags associated with the specified resource.
|
2865
2890
|
#
|
2891
|
+
# <note markdown="1"> This feature is currently available only for AgentCore Runtime,
|
2892
|
+
# Browser, Code Interpreter tool, and Gateway.
|
2893
|
+
#
|
2894
|
+
# </note>
|
2895
|
+
#
|
2866
2896
|
# @option params [required, String] :resource_arn
|
2867
2897
|
# The Amazon Resource Name (ARN) of the resource for which you want to
|
2868
2898
|
# list tags.
|
@@ -2975,6 +3005,11 @@ module Aws::BedrockAgentCoreControl
|
|
2975
3005
|
# request parameters, they are not changed. When a resource is deleted,
|
2976
3006
|
# the tags associated with that resource are also deleted.
|
2977
3007
|
#
|
3008
|
+
# <note markdown="1"> This feature is currently available only for AgentCore Runtime,
|
3009
|
+
# Browser, Code Interpreter tool, and Gateway.
|
3010
|
+
#
|
3011
|
+
# </note>
|
3012
|
+
#
|
2978
3013
|
# @option params [required, String] :resource_arn
|
2979
3014
|
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
2980
3015
|
#
|
@@ -3003,6 +3038,11 @@ module Aws::BedrockAgentCoreControl
|
|
3003
3038
|
|
3004
3039
|
# Removes the specified tags from the specified resource.
|
3005
3040
|
#
|
3041
|
+
# <note markdown="1"> This feature is currently available only for AgentCore Runtime,
|
3042
|
+
# Browser, Code Interpreter tool, and Gateway.
|
3043
|
+
#
|
3044
|
+
# </note>
|
3045
|
+
#
|
3006
3046
|
# @option params [required, String] :resource_arn
|
3007
3047
|
# The Amazon Resource Name (ARN) of the resource that you want to untag.
|
3008
3048
|
#
|
@@ -3032,9 +3072,6 @@ module Aws::BedrockAgentCoreControl
|
|
3032
3072
|
# @option params [required, String] :agent_runtime_id
|
3033
3073
|
# The unique identifier of the AgentCore Runtime to update.
|
3034
3074
|
#
|
3035
|
-
# @option params [String] :description
|
3036
|
-
# The updated description of the AgentCore Runtime.
|
3037
|
-
#
|
3038
3075
|
# @option params [required, Types::AgentRuntimeArtifact] :agent_runtime_artifact
|
3039
3076
|
# The updated artifact of the AgentCore Runtime.
|
3040
3077
|
#
|
@@ -3045,27 +3082,33 @@ module Aws::BedrockAgentCoreControl
|
|
3045
3082
|
# @option params [required, Types::NetworkConfiguration] :network_configuration
|
3046
3083
|
# The updated network configuration for the AgentCore Runtime.
|
3047
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
|
+
#
|
3048
3095
|
# @option params [Types::ProtocolConfiguration] :protocol_configuration
|
3049
3096
|
# The protocol configuration for an agent runtime. This structure
|
3050
3097
|
# defines how the agent runtime communicates with clients.
|
3051
3098
|
#
|
3052
|
-
# @option params [
|
3053
|
-
#
|
3054
|
-
# request.
|
3055
|
-
#
|
3056
|
-
# **A suitable default value is auto-generated.** You should normally
|
3057
|
-
# not need to pass this option.**
|
3099
|
+
# @option params [Types::LifecycleConfiguration] :lifecycle_configuration
|
3100
|
+
# The updated life cycle configuration for the AgentCore Runtime.
|
3058
3101
|
#
|
3059
3102
|
# @option params [Hash<String,String>] :environment_variables
|
3060
3103
|
# Updated environment variables to set in the AgentCore Runtime
|
3061
3104
|
# environment.
|
3062
3105
|
#
|
3063
|
-
# @option params [
|
3064
|
-
#
|
3106
|
+
# @option params [String] :client_token
|
3107
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
3108
|
+
# request.
|
3065
3109
|
#
|
3066
|
-
#
|
3067
|
-
#
|
3068
|
-
# through to the runtime.
|
3110
|
+
# **A suitable default value is auto-generated.** You should normally
|
3111
|
+
# not need to pass this option.**
|
3069
3112
|
#
|
3070
3113
|
# @return [Types::UpdateAgentRuntimeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3071
3114
|
#
|
@@ -3081,7 +3124,6 @@ module Aws::BedrockAgentCoreControl
|
|
3081
3124
|
#
|
3082
3125
|
# resp = client.update_agent_runtime({
|
3083
3126
|
# agent_runtime_id: "AgentRuntimeId", # required
|
3084
|
-
# description: "Description",
|
3085
3127
|
# agent_runtime_artifact: { # required
|
3086
3128
|
# container_configuration: {
|
3087
3129
|
# container_uri: "RuntimeContainerUri", # required
|
@@ -3095,13 +3137,7 @@ module Aws::BedrockAgentCoreControl
|
|
3095
3137
|
# subnets: ["SubnetId"], # required
|
3096
3138
|
# },
|
3097
3139
|
# },
|
3098
|
-
#
|
3099
|
-
# server_protocol: "MCP", # required, accepts MCP, HTTP
|
3100
|
-
# },
|
3101
|
-
# client_token: "ClientToken",
|
3102
|
-
# environment_variables: {
|
3103
|
-
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
3104
|
-
# },
|
3140
|
+
# description: "Description",
|
3105
3141
|
# authorizer_configuration: {
|
3106
3142
|
# custom_jwt_authorizer: {
|
3107
3143
|
# discovery_url: "DiscoveryUrl", # required
|
@@ -3112,6 +3148,17 @@ module Aws::BedrockAgentCoreControl
|
|
3112
3148
|
# request_header_configuration: {
|
3113
3149
|
# request_header_allowlist: ["HeaderName"],
|
3114
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",
|
3115
3162
|
# })
|
3116
3163
|
#
|
3117
3164
|
# @example Response structure
|
@@ -3898,7 +3945,7 @@ module Aws::BedrockAgentCoreControl
|
|
3898
3945
|
tracer: tracer
|
3899
3946
|
)
|
3900
3947
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
3901
|
-
context[:gem_version] = '1.
|
3948
|
+
context[:gem_version] = '1.7.0'
|
3902
3949
|
Seahorse::Client::Request.new(handlers, context)
|
3903
3950
|
end
|
3904
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
|
|
@@ -579,6 +583,7 @@ module Aws::BedrockAgentCoreControl
|
|
579
583
|
CreateGatewayRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, required: true, 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"))
|
586
|
+
CreateGatewayRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
582
587
|
CreateGatewayRequest.struct_class = Types::CreateGatewayRequest
|
583
588
|
|
584
589
|
CreateGatewayResponse.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayArn, required: true, location_name: "gatewayArn"))
|
@@ -627,6 +632,7 @@ module Aws::BedrockAgentCoreControl
|
|
627
632
|
CreateMemoryInput.add_member(:memory_execution_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "memoryExecutionRoleArn"))
|
628
633
|
CreateMemoryInput.add_member(:event_expiry_duration, Shapes::ShapeRef.new(shape: CreateMemoryInputEventExpiryDurationInteger, required: true, location_name: "eventExpiryDuration"))
|
629
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"))
|
630
636
|
CreateMemoryInput.struct_class = Types::CreateMemoryInput
|
631
637
|
|
632
638
|
CreateMemoryOutput.add_member(:memory, Shapes::ShapeRef.new(shape: Memory, location_name: "memory"))
|
@@ -863,21 +869,22 @@ module Aws::BedrockAgentCoreControl
|
|
863
869
|
GetAgentRuntimeRequest.struct_class = Types::GetAgentRuntimeRequest
|
864
870
|
|
865
871
|
GetAgentRuntimeResponse.add_member(:agent_runtime_arn, Shapes::ShapeRef.new(shape: AgentRuntimeArn, required: true, location_name: "agentRuntimeArn"))
|
866
|
-
GetAgentRuntimeResponse.add_member(:workload_identity_details, Shapes::ShapeRef.new(shape: WorkloadIdentityDetails, location_name: "workloadIdentityDetails"))
|
867
872
|
GetAgentRuntimeResponse.add_member(:agent_runtime_name, Shapes::ShapeRef.new(shape: AgentRuntimeName, required: true, location_name: "agentRuntimeName"))
|
868
|
-
GetAgentRuntimeResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
869
873
|
GetAgentRuntimeResponse.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location_name: "agentRuntimeId"))
|
870
874
|
GetAgentRuntimeResponse.add_member(:agent_runtime_version, Shapes::ShapeRef.new(shape: AgentRuntimeVersion, required: true, location_name: "agentRuntimeVersion"))
|
871
875
|
GetAgentRuntimeResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
872
876
|
GetAgentRuntimeResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
873
877
|
GetAgentRuntimeResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
874
|
-
GetAgentRuntimeResponse.add_member(:agent_runtime_artifact, Shapes::ShapeRef.new(shape: AgentRuntimeArtifact, location_name: "agentRuntimeArtifact"))
|
875
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"))
|
876
884
|
GetAgentRuntimeResponse.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: ProtocolConfiguration, location_name: "protocolConfiguration"))
|
877
885
|
GetAgentRuntimeResponse.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
878
886
|
GetAgentRuntimeResponse.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
879
887
|
GetAgentRuntimeResponse.add_member(:request_header_configuration, Shapes::ShapeRef.new(shape: RequestHeaderConfiguration, location_name: "requestHeaderConfiguration"))
|
880
|
-
GetAgentRuntimeResponse.add_member(:status, Shapes::ShapeRef.new(shape: AgentRuntimeStatus, required: true, location_name: "status"))
|
881
888
|
GetAgentRuntimeResponse.struct_class = Types::GetAgentRuntimeResponse
|
882
889
|
|
883
890
|
GetApiKeyCredentialProviderRequest.add_member(:name, Shapes::ShapeRef.new(shape: CredentialProviderName, required: true, location_name: "name"))
|
@@ -1016,6 +1023,10 @@ module Aws::BedrockAgentCoreControl
|
|
1016
1023
|
KmsConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
1017
1024
|
KmsConfiguration.struct_class = Types::KmsConfiguration
|
1018
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
|
+
|
1019
1030
|
ListAgentRuntimeEndpointsRequest.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location: "uri", location_name: "agentRuntimeId"))
|
1020
1031
|
ListAgentRuntimeEndpointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
1021
1032
|
ListAgentRuntimeEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
@@ -1497,15 +1508,16 @@ module Aws::BedrockAgentCoreControl
|
|
1497
1508
|
UpdateAgentRuntimeEndpointResponse.struct_class = Types::UpdateAgentRuntimeEndpointResponse
|
1498
1509
|
|
1499
1510
|
UpdateAgentRuntimeRequest.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location: "uri", location_name: "agentRuntimeId"))
|
1500
|
-
UpdateAgentRuntimeRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
1501
1511
|
UpdateAgentRuntimeRequest.add_member(:agent_runtime_artifact, Shapes::ShapeRef.new(shape: AgentRuntimeArtifact, required: true, location_name: "agentRuntimeArtifact"))
|
1502
1512
|
UpdateAgentRuntimeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
1503
1513
|
UpdateAgentRuntimeRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
1504
|
-
UpdateAgentRuntimeRequest.add_member(:
|
1505
|
-
UpdateAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
1506
|
-
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"))
|
1507
1515
|
UpdateAgentRuntimeRequest.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
1508
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}))
|
1509
1521
|
UpdateAgentRuntimeRequest.struct_class = Types::UpdateAgentRuntimeRequest
|
1510
1522
|
|
1511
1523
|
UpdateAgentRuntimeResponse.add_member(:agent_runtime_arn, Shapes::ShapeRef.new(shape: AgentRuntimeArn, required: true, location_name: "agentRuntimeArn"))
|
@@ -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
|
@@ -915,6 +920,11 @@ module Aws::BedrockAgentCoreControl
|
|
915
920
|
# the end user.
|
916
921
|
# @return [String]
|
917
922
|
#
|
923
|
+
# @!attribute [rw] tags
|
924
|
+
# A map of key-value pairs to associate with the gateway as metadata
|
925
|
+
# tags.
|
926
|
+
# @return [Hash<String,String>]
|
927
|
+
#
|
918
928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRequest AWS API Documentation
|
919
929
|
#
|
920
930
|
class CreateGatewayRequest < Struct.new(
|
@@ -927,7 +937,8 @@ module Aws::BedrockAgentCoreControl
|
|
927
937
|
:authorizer_type,
|
928
938
|
:authorizer_configuration,
|
929
939
|
:kms_key_arn,
|
930
|
-
:exception_level
|
940
|
+
:exception_level,
|
941
|
+
:tags)
|
931
942
|
SENSITIVE = [:name, :description]
|
932
943
|
include Aws::Structure
|
933
944
|
end
|
@@ -1179,6 +1190,12 @@ module Aws::BedrockAgentCoreControl
|
|
1179
1190
|
# information is extracted, processed, and consolidated.
|
1180
1191
|
# @return [Array<Types::MemoryStrategyInput>]
|
1181
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
|
+
#
|
1182
1199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateMemoryInput AWS API Documentation
|
1183
1200
|
#
|
1184
1201
|
class CreateMemoryInput < Struct.new(
|
@@ -1188,7 +1205,8 @@ module Aws::BedrockAgentCoreControl
|
|
1188
1205
|
:encryption_key_arn,
|
1189
1206
|
:memory_execution_role_arn,
|
1190
1207
|
:event_expiry_duration,
|
1191
|
-
:memory_strategies
|
1208
|
+
:memory_strategies,
|
1209
|
+
:tags)
|
1192
1210
|
SENSITIVE = [:description]
|
1193
1211
|
include Aws::Structure
|
1194
1212
|
end
|
@@ -2153,18 +2171,10 @@ module Aws::BedrockAgentCoreControl
|
|
2153
2171
|
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
2154
2172
|
# @return [String]
|
2155
2173
|
#
|
2156
|
-
# @!attribute [rw] workload_identity_details
|
2157
|
-
# The workload identity details for the AgentCore Runtime.
|
2158
|
-
# @return [Types::WorkloadIdentityDetails]
|
2159
|
-
#
|
2160
2174
|
# @!attribute [rw] agent_runtime_name
|
2161
2175
|
# The name of the AgentCore Runtime.
|
2162
2176
|
# @return [String]
|
2163
2177
|
#
|
2164
|
-
# @!attribute [rw] description
|
2165
|
-
# The description of the AgentCore Runtime.
|
2166
|
-
# @return [String]
|
2167
|
-
#
|
2168
2178
|
# @!attribute [rw] agent_runtime_id
|
2169
2179
|
# The unique identifier of the AgentCore Runtime.
|
2170
2180
|
# @return [String]
|
@@ -2186,14 +2196,30 @@ module Aws::BedrockAgentCoreControl
|
|
2186
2196
|
# Runtime.
|
2187
2197
|
# @return [String]
|
2188
2198
|
#
|
2189
|
-
# @!attribute [rw] agent_runtime_artifact
|
2190
|
-
# The artifact of the AgentCore Runtime.
|
2191
|
-
# @return [Types::AgentRuntimeArtifact]
|
2192
|
-
#
|
2193
2199
|
# @!attribute [rw] network_configuration
|
2194
2200
|
# The network configuration for the AgentCore Runtime.
|
2195
2201
|
# @return [Types::NetworkConfiguration]
|
2196
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
|
+
#
|
2197
2223
|
# @!attribute [rw] protocol_configuration
|
2198
2224
|
# The protocol configuration for an agent runtime. This structure
|
2199
2225
|
# defines how the agent runtime communicates with clients.
|
@@ -2212,29 +2238,26 @@ module Aws::BedrockAgentCoreControl
|
|
2212
2238
|
# to the runtime.
|
2213
2239
|
# @return [Types::RequestHeaderConfiguration]
|
2214
2240
|
#
|
2215
|
-
# @!attribute [rw] status
|
2216
|
-
# The current status of the AgentCore Runtime.
|
2217
|
-
# @return [String]
|
2218
|
-
#
|
2219
2241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeResponse AWS API Documentation
|
2220
2242
|
#
|
2221
2243
|
class GetAgentRuntimeResponse < Struct.new(
|
2222
2244
|
:agent_runtime_arn,
|
2223
|
-
:workload_identity_details,
|
2224
2245
|
:agent_runtime_name,
|
2225
|
-
:description,
|
2226
2246
|
:agent_runtime_id,
|
2227
2247
|
:agent_runtime_version,
|
2228
2248
|
:created_at,
|
2229
2249
|
:last_updated_at,
|
2230
2250
|
:role_arn,
|
2231
|
-
:agent_runtime_artifact,
|
2232
2251
|
:network_configuration,
|
2252
|
+
:status,
|
2253
|
+
:lifecycle_configuration,
|
2254
|
+
:description,
|
2255
|
+
:workload_identity_details,
|
2256
|
+
:agent_runtime_artifact,
|
2233
2257
|
:protocol_configuration,
|
2234
2258
|
:environment_variables,
|
2235
2259
|
:authorizer_configuration,
|
2236
|
-
:request_header_configuration
|
2237
|
-
:status)
|
2260
|
+
:request_header_configuration)
|
2238
2261
|
SENSITIVE = [:description, :environment_variables]
|
2239
2262
|
include Aws::Structure
|
2240
2263
|
end
|
@@ -2875,6 +2898,33 @@ module Aws::BedrockAgentCoreControl
|
|
2875
2898
|
include Aws::Structure
|
2876
2899
|
end
|
2877
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
|
+
|
2878
2928
|
# @!attribute [rw] agent_runtime_id
|
2879
2929
|
# The unique identifier of the AgentCore Runtime to list endpoints
|
2880
2930
|
# for.
|
@@ -4846,10 +4896,6 @@ module Aws::BedrockAgentCoreControl
|
|
4846
4896
|
# The unique identifier of the AgentCore Runtime to update.
|
4847
4897
|
# @return [String]
|
4848
4898
|
#
|
4849
|
-
# @!attribute [rw] description
|
4850
|
-
# The updated description of the AgentCore Runtime.
|
4851
|
-
# @return [String]
|
4852
|
-
#
|
4853
4899
|
# @!attribute [rw] agent_runtime_artifact
|
4854
4900
|
# The updated artifact of the AgentCore Runtime.
|
4855
4901
|
# @return [Types::AgentRuntimeArtifact]
|
@@ -4863,46 +4909,55 @@ module Aws::BedrockAgentCoreControl
|
|
4863
4909
|
# The updated network configuration for the AgentCore Runtime.
|
4864
4910
|
# @return [Types::NetworkConfiguration]
|
4865
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
|
+
#
|
4866
4925
|
# @!attribute [rw] protocol_configuration
|
4867
4926
|
# The protocol configuration for an agent runtime. This structure
|
4868
4927
|
# defines how the agent runtime communicates with clients.
|
4869
4928
|
# @return [Types::ProtocolConfiguration]
|
4870
4929
|
#
|
4871
|
-
# @!attribute [rw]
|
4872
|
-
#
|
4873
|
-
#
|
4874
|
-
#
|
4875
|
-
# **A suitable default value is auto-generated.** You should normally
|
4876
|
-
# not need to pass this option.
|
4877
|
-
# @return [String]
|
4930
|
+
# @!attribute [rw] lifecycle_configuration
|
4931
|
+
# The updated life cycle configuration for the AgentCore Runtime.
|
4932
|
+
# @return [Types::LifecycleConfiguration]
|
4878
4933
|
#
|
4879
4934
|
# @!attribute [rw] environment_variables
|
4880
4935
|
# Updated environment variables to set in the AgentCore Runtime
|
4881
4936
|
# environment.
|
4882
4937
|
# @return [Hash<String,String>]
|
4883
4938
|
#
|
4884
|
-
# @!attribute [rw]
|
4885
|
-
#
|
4886
|
-
#
|
4939
|
+
# @!attribute [rw] client_token
|
4940
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
4941
|
+
# request.
|
4887
4942
|
#
|
4888
|
-
#
|
4889
|
-
#
|
4890
|
-
#
|
4891
|
-
# @return [Types::RequestHeaderConfiguration]
|
4943
|
+
# **A suitable default value is auto-generated.** You should normally
|
4944
|
+
# not need to pass this option.
|
4945
|
+
# @return [String]
|
4892
4946
|
#
|
4893
4947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeRequest AWS API Documentation
|
4894
4948
|
#
|
4895
4949
|
class UpdateAgentRuntimeRequest < Struct.new(
|
4896
4950
|
:agent_runtime_id,
|
4897
|
-
:description,
|
4898
4951
|
:agent_runtime_artifact,
|
4899
4952
|
:role_arn,
|
4900
4953
|
:network_configuration,
|
4954
|
+
:description,
|
4955
|
+
:authorizer_configuration,
|
4956
|
+
:request_header_configuration,
|
4901
4957
|
:protocol_configuration,
|
4902
|
-
:
|
4958
|
+
:lifecycle_configuration,
|
4903
4959
|
:environment_variables,
|
4904
|
-
:
|
4905
|
-
:request_header_configuration)
|
4960
|
+
:client_token)
|
4906
4961
|
SENSITIVE = [:description, :environment_variables]
|
4907
4962
|
include Aws::Structure
|
4908
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
|
@@ -253,7 +257,8 @@ module Aws
|
|
253
257
|
}?
|
254
258
|
},
|
255
259
|
?kms_key_arn: ::String,
|
256
|
-
?exception_level: ("DEBUG")
|
260
|
+
?exception_level: ("DEBUG"),
|
261
|
+
?tags: Hash[::String, ::String]
|
257
262
|
) -> _CreateGatewayResponseSuccess
|
258
263
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
|
259
264
|
|
@@ -407,7 +412,8 @@ module Aws
|
|
407
412
|
}?
|
408
413
|
}?
|
409
414
|
},
|
410
|
-
]
|
415
|
+
],
|
416
|
+
?tags: Hash[::String, ::String]
|
411
417
|
) -> _CreateMemoryResponseSuccess
|
412
418
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMemoryResponseSuccess
|
413
419
|
|
@@ -588,21 +594,22 @@ module Aws
|
|
588
594
|
interface _GetAgentRuntimeResponseSuccess
|
589
595
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAgentRuntimeResponse]
|
590
596
|
def agent_runtime_arn: () -> ::String
|
591
|
-
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
592
597
|
def agent_runtime_name: () -> ::String
|
593
|
-
def description: () -> ::String
|
594
598
|
def agent_runtime_id: () -> ::String
|
595
599
|
def agent_runtime_version: () -> ::String
|
596
600
|
def created_at: () -> ::Time
|
597
601
|
def last_updated_at: () -> ::Time
|
598
602
|
def role_arn: () -> ::String
|
599
|
-
def agent_runtime_artifact: () -> Types::AgentRuntimeArtifact
|
600
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
|
601
609
|
def protocol_configuration: () -> Types::ProtocolConfiguration
|
602
610
|
def environment_variables: () -> ::Hash[::String, ::String]
|
603
611
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
604
612
|
def request_header_configuration: () -> Types::RequestHeaderConfiguration
|
605
|
-
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
606
613
|
end
|
607
614
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime-instance_method
|
608
615
|
def get_agent_runtime: (
|
@@ -979,7 +986,6 @@ module Aws
|
|
979
986
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_agent_runtime-instance_method
|
980
987
|
def update_agent_runtime: (
|
981
988
|
agent_runtime_id: ::String,
|
982
|
-
?description: ::String,
|
983
989
|
agent_runtime_artifact: {
|
984
990
|
container_configuration: {
|
985
991
|
container_uri: ::String
|
@@ -993,11 +999,7 @@ module Aws
|
|
993
999
|
subnets: Array[::String]
|
994
1000
|
}?
|
995
1001
|
},
|
996
|
-
?
|
997
|
-
server_protocol: ("MCP" | "HTTP")
|
998
|
-
},
|
999
|
-
?client_token: ::String,
|
1000
|
-
?environment_variables: Hash[::String, ::String],
|
1002
|
+
?description: ::String,
|
1001
1003
|
?authorizer_configuration: {
|
1002
1004
|
custom_jwt_authorizer: {
|
1003
1005
|
discovery_url: ::String,
|
@@ -1007,7 +1009,16 @@ module Aws
|
|
1007
1009
|
},
|
1008
1010
|
?request_header_configuration: {
|
1009
1011
|
request_header_allowlist: Array[::String]?
|
1010
|
-
}
|
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
|
1011
1022
|
) -> _UpdateAgentRuntimeResponseSuccess
|
1012
1023
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentRuntimeResponseSuccess
|
1013
1024
|
|
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
|
@@ -255,6 +256,7 @@ module Aws::BedrockAgentCoreControl
|
|
255
256
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
256
257
|
attr_accessor kms_key_arn: ::String
|
257
258
|
attr_accessor exception_level: ("DEBUG")
|
259
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
258
260
|
SENSITIVE: [:name, :description]
|
259
261
|
end
|
260
262
|
|
@@ -311,6 +313,7 @@ module Aws::BedrockAgentCoreControl
|
|
311
313
|
attr_accessor memory_execution_role_arn: ::String
|
312
314
|
attr_accessor event_expiry_duration: ::Integer
|
313
315
|
attr_accessor memory_strategies: ::Array[Types::MemoryStrategyInput]
|
316
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
314
317
|
SENSITIVE: [:description]
|
315
318
|
end
|
316
319
|
|
@@ -660,21 +663,22 @@ module Aws::BedrockAgentCoreControl
|
|
660
663
|
|
661
664
|
class GetAgentRuntimeResponse
|
662
665
|
attr_accessor agent_runtime_arn: ::String
|
663
|
-
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
664
666
|
attr_accessor agent_runtime_name: ::String
|
665
|
-
attr_accessor description: ::String
|
666
667
|
attr_accessor agent_runtime_id: ::String
|
667
668
|
attr_accessor agent_runtime_version: ::String
|
668
669
|
attr_accessor created_at: ::Time
|
669
670
|
attr_accessor last_updated_at: ::Time
|
670
671
|
attr_accessor role_arn: ::String
|
671
|
-
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
672
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
|
673
678
|
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
674
679
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
675
680
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
676
681
|
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
677
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
678
682
|
SENSITIVE: [:description, :environment_variables]
|
679
683
|
end
|
680
684
|
|
@@ -862,6 +866,12 @@ module Aws::BedrockAgentCoreControl
|
|
862
866
|
SENSITIVE: []
|
863
867
|
end
|
864
868
|
|
869
|
+
class LifecycleConfiguration
|
870
|
+
attr_accessor idle_runtime_session_timeout: ::Integer
|
871
|
+
attr_accessor max_lifetime: ::Integer
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
865
875
|
class ListAgentRuntimeEndpointsRequest
|
866
876
|
attr_accessor agent_runtime_id: ::String
|
867
877
|
attr_accessor max_results: ::Integer
|
@@ -1248,7 +1258,7 @@ module Aws::BedrockAgentCoreControl
|
|
1248
1258
|
end
|
1249
1259
|
|
1250
1260
|
class ProtocolConfiguration
|
1251
|
-
attr_accessor server_protocol: ("MCP" | "HTTP")
|
1261
|
+
attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A")
|
1252
1262
|
SENSITIVE: []
|
1253
1263
|
end
|
1254
1264
|
|
@@ -1516,15 +1526,16 @@ module Aws::BedrockAgentCoreControl
|
|
1516
1526
|
|
1517
1527
|
class UpdateAgentRuntimeRequest
|
1518
1528
|
attr_accessor agent_runtime_id: ::String
|
1519
|
-
attr_accessor description: ::String
|
1520
1529
|
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
1521
1530
|
attr_accessor role_arn: ::String
|
1522
1531
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
1523
|
-
attr_accessor
|
1524
|
-
attr_accessor client_token: ::String
|
1525
|
-
attr_accessor environment_variables: ::Hash[::String, ::String]
|
1532
|
+
attr_accessor description: ::String
|
1526
1533
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1527
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
|
1528
1539
|
SENSITIVE: [:description, :environment_variables]
|
1529
1540
|
end
|
1530
1541
|
|