aws-sdk-bedrockagentcorecontrol 1.31.0 → 1.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +31 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +19 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +74 -6
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +17 -1
- data/sig/types.rbs +20 -0
- 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: f9975ff6e07b2603a70d7dddb6a1459d22ea1eb82d0059fe24c18cfc4f5ebafa
|
|
4
|
+
data.tar.gz: e6748216278f328ce4136e0cc2b95b84d4d862a73f9b39e7d23f75d0752fb70f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a90208b66333089e446ecc09f6e79b062195c17668c6a83811bbfc700652cc509b82318f36607538c7ca257e7f308c445c705b991483da36abbe37dbf0451ed
|
|
7
|
+
data.tar.gz: c0e87a810b2b3d8bc32b317b35dda883c4bdc6bc3bf294d8eaef0bbd486d8421718fe9d3139d4b40ba2bf2a5be5c244032d5c14c531e51afc61cbd3c97255184
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.32.0 (2026-03-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds SDK support for 1) Persist session state in AgentCore Runtime via filesystemConfigurations in CreateAgentRuntime, UpdateAgentRuntime, and GetAgentRuntime APIs, 2) Optional name-based filtering on AgentCore ListBrowserProfiles API.
|
|
8
|
+
|
|
4
9
|
1.31.0 (2026-03-19)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.32.0
|
|
@@ -517,6 +517,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
517
517
|
# @option params [Hash<String,String>] :environment_variables
|
|
518
518
|
# Environment variables to set in the AgentCore Runtime environment.
|
|
519
519
|
#
|
|
520
|
+
# @option params [Array<Types::FilesystemConfiguration>] :filesystem_configurations
|
|
521
|
+
# The filesystem configurations to mount into the AgentCore Runtime. Use
|
|
522
|
+
# filesystem configurations to provide persistent storage to your
|
|
523
|
+
# AgentCore Runtime sessions.
|
|
524
|
+
#
|
|
520
525
|
# @option params [Hash<String,String>] :tags
|
|
521
526
|
# A map of tag keys and values to assign to the agent runtime. Tags
|
|
522
527
|
# enable you to categorize your resources in different ways, for
|
|
@@ -595,6 +600,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
595
600
|
# environment_variables: {
|
|
596
601
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
|
597
602
|
# },
|
|
603
|
+
# filesystem_configurations: [
|
|
604
|
+
# {
|
|
605
|
+
# session_storage: {
|
|
606
|
+
# mount_path: "MountPath", # required
|
|
607
|
+
# },
|
|
608
|
+
# },
|
|
609
|
+
# ],
|
|
598
610
|
# tags: {
|
|
599
611
|
# "TagKey" => "TagValue",
|
|
600
612
|
# },
|
|
@@ -3016,6 +3028,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3016
3028
|
# * {Types::GetAgentRuntimeResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
3017
3029
|
# * {Types::GetAgentRuntimeResponse#request_header_configuration #request_header_configuration} => Types::RequestHeaderConfiguration
|
|
3018
3030
|
# * {Types::GetAgentRuntimeResponse#metadata_configuration #metadata_configuration} => Types::RuntimeMetadataConfiguration
|
|
3031
|
+
# * {Types::GetAgentRuntimeResponse#filesystem_configurations #filesystem_configurations} => Array<Types::FilesystemConfiguration>
|
|
3019
3032
|
#
|
|
3020
3033
|
# @example Request syntax with placeholder values
|
|
3021
3034
|
#
|
|
@@ -3071,6 +3084,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3071
3084
|
# resp.request_header_configuration.request_header_allowlist #=> Array
|
|
3072
3085
|
# resp.request_header_configuration.request_header_allowlist[0] #=> String
|
|
3073
3086
|
# resp.metadata_configuration.require_mmdsv2 #=> Boolean
|
|
3087
|
+
# resp.filesystem_configurations #=> Array
|
|
3088
|
+
# resp.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
3074
3089
|
#
|
|
3075
3090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntime AWS API Documentation
|
|
3076
3091
|
#
|
|
@@ -4356,6 +4371,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4356
4371
|
# @option params [String] :next_token
|
|
4357
4372
|
# A token to retrieve the next page of results.
|
|
4358
4373
|
#
|
|
4374
|
+
# @option params [String] :name
|
|
4375
|
+
# The name of the browser profile to filter results by.
|
|
4376
|
+
#
|
|
4359
4377
|
# @return [Types::ListBrowserProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4360
4378
|
#
|
|
4361
4379
|
# * {Types::ListBrowserProfilesResponse#profile_summaries #profile_summaries} => Array<Types::BrowserProfileSummary>
|
|
@@ -4368,6 +4386,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4368
4386
|
# resp = client.list_browser_profiles({
|
|
4369
4387
|
# max_results: 1,
|
|
4370
4388
|
# next_token: "NextToken",
|
|
4389
|
+
# name: "BrowserProfileName",
|
|
4371
4390
|
# })
|
|
4372
4391
|
#
|
|
4373
4392
|
# @example Response structure
|
|
@@ -5491,6 +5510,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5491
5510
|
# Updated environment variables to set in the AgentCore Runtime
|
|
5492
5511
|
# environment.
|
|
5493
5512
|
#
|
|
5513
|
+
# @option params [Array<Types::FilesystemConfiguration>] :filesystem_configurations
|
|
5514
|
+
# The updated filesystem configurations to mount into the AgentCore
|
|
5515
|
+
# Runtime.
|
|
5516
|
+
#
|
|
5494
5517
|
# @option params [String] :client_token
|
|
5495
5518
|
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
5496
5519
|
# request.
|
|
@@ -5574,6 +5597,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
5574
5597
|
# environment_variables: {
|
|
5575
5598
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
|
5576
5599
|
# },
|
|
5600
|
+
# filesystem_configurations: [
|
|
5601
|
+
# {
|
|
5602
|
+
# session_storage: {
|
|
5603
|
+
# mount_path: "MountPath", # required
|
|
5604
|
+
# },
|
|
5605
|
+
# },
|
|
5606
|
+
# ],
|
|
5577
5607
|
# client_token: "ClientToken",
|
|
5578
5608
|
# })
|
|
5579
5609
|
#
|
|
@@ -7037,7 +7067,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7037
7067
|
tracer: tracer
|
|
7038
7068
|
)
|
|
7039
7069
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
7040
|
-
context[:gem_version] = '1.
|
|
7070
|
+
context[:gem_version] = '1.32.0'
|
|
7041
7071
|
Seahorse::Client::Request.new(handlers, context)
|
|
7042
7072
|
end
|
|
7043
7073
|
|
|
@@ -249,6 +249,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
249
249
|
EvaluatorType = Shapes::StringShape.new(name: 'EvaluatorType')
|
|
250
250
|
ExceptionLevel = Shapes::StringShape.new(name: 'ExceptionLevel')
|
|
251
251
|
ExtractionConfiguration = Shapes::UnionShape.new(name: 'ExtractionConfiguration')
|
|
252
|
+
FilesystemConfiguration = Shapes::UnionShape.new(name: 'FilesystemConfiguration')
|
|
253
|
+
FilesystemConfigurations = Shapes::ListShape.new(name: 'FilesystemConfigurations')
|
|
252
254
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
253
255
|
FilterKeyString = Shapes::StringShape.new(name: 'FilterKeyString')
|
|
254
256
|
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
|
@@ -442,6 +444,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
442
444
|
ModifySelfManagedConfiguration = Shapes::StructureShape.new(name: 'ModifySelfManagedConfiguration')
|
|
443
445
|
ModifySelfManagedConfigurationHistoricalContextWindowSizeInteger = Shapes::IntegerShape.new(name: 'ModifySelfManagedConfigurationHistoricalContextWindowSizeInteger')
|
|
444
446
|
ModifyStrategyConfiguration = Shapes::StructureShape.new(name: 'ModifyStrategyConfiguration')
|
|
447
|
+
MountPath = Shapes::StringShape.new(name: 'MountPath')
|
|
445
448
|
Name = Shapes::StringShape.new(name: 'Name')
|
|
446
449
|
Namespace = Shapes::StringShape.new(name: 'Namespace')
|
|
447
450
|
NamespacesList = Shapes::ListShape.new(name: 'NamespacesList')
|
|
@@ -561,6 +564,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
561
564
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
562
565
|
SessionConfig = Shapes::StructureShape.new(name: 'SessionConfig')
|
|
563
566
|
SessionConfigSessionTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'SessionConfigSessionTimeoutMinutesInteger')
|
|
567
|
+
SessionStorageConfiguration = Shapes::StructureShape.new(name: 'SessionStorageConfiguration')
|
|
564
568
|
SetTokenVaultCMKRequest = Shapes::StructureShape.new(name: 'SetTokenVaultCMKRequest')
|
|
565
569
|
SetTokenVaultCMKResponse = Shapes::StructureShape.new(name: 'SetTokenVaultCMKResponse')
|
|
566
570
|
SlackOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'SlackOauth2ProviderConfigInput')
|
|
@@ -948,6 +952,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
948
952
|
CreateAgentRuntimeRequest.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: ProtocolConfiguration, location_name: "protocolConfiguration"))
|
|
949
953
|
CreateAgentRuntimeRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "lifecycleConfiguration"))
|
|
950
954
|
CreateAgentRuntimeRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
|
955
|
+
CreateAgentRuntimeRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: FilesystemConfigurations, location_name: "filesystemConfigurations"))
|
|
951
956
|
CreateAgentRuntimeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
952
957
|
CreateAgentRuntimeRequest.struct_class = Types::CreateAgentRuntimeRequest
|
|
953
958
|
|
|
@@ -1543,6 +1548,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1543
1548
|
ExtractionConfiguration.add_member_subclass(:unknown, Types::ExtractionConfiguration::Unknown)
|
|
1544
1549
|
ExtractionConfiguration.struct_class = Types::ExtractionConfiguration
|
|
1545
1550
|
|
|
1551
|
+
FilesystemConfiguration.add_member(:session_storage, Shapes::ShapeRef.new(shape: SessionStorageConfiguration, location_name: "sessionStorage"))
|
|
1552
|
+
FilesystemConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1553
|
+
FilesystemConfiguration.add_member_subclass(:session_storage, Types::FilesystemConfiguration::SessionStorage)
|
|
1554
|
+
FilesystemConfiguration.add_member_subclass(:unknown, Types::FilesystemConfiguration::Unknown)
|
|
1555
|
+
FilesystemConfiguration.struct_class = Types::FilesystemConfiguration
|
|
1556
|
+
|
|
1557
|
+
FilesystemConfigurations.member = Shapes::ShapeRef.new(shape: FilesystemConfiguration)
|
|
1558
|
+
|
|
1546
1559
|
Filter.add_member(:key, Shapes::ShapeRef.new(shape: FilterKeyString, required: true, location_name: "key"))
|
|
1547
1560
|
Filter.add_member(:operator, Shapes::ShapeRef.new(shape: FilterOperator, required: true, location_name: "operator"))
|
|
1548
1561
|
Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValue, required: true, location_name: "value"))
|
|
@@ -1653,6 +1666,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1653
1666
|
GetAgentRuntimeResponse.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
|
1654
1667
|
GetAgentRuntimeResponse.add_member(:request_header_configuration, Shapes::ShapeRef.new(shape: RequestHeaderConfiguration, location_name: "requestHeaderConfiguration"))
|
|
1655
1668
|
GetAgentRuntimeResponse.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: RuntimeMetadataConfiguration, location_name: "metadataConfiguration"))
|
|
1669
|
+
GetAgentRuntimeResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: FilesystemConfigurations, location_name: "filesystemConfigurations"))
|
|
1656
1670
|
GetAgentRuntimeResponse.struct_class = Types::GetAgentRuntimeResponse
|
|
1657
1671
|
|
|
1658
1672
|
GetApiKeyCredentialProviderRequest.add_member(:name, Shapes::ShapeRef.new(shape: CredentialProviderName, required: true, location_name: "name"))
|
|
@@ -1997,6 +2011,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1997
2011
|
|
|
1998
2012
|
ListBrowserProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1999
2013
|
ListBrowserProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2014
|
+
ListBrowserProfilesRequest.add_member(:name, Shapes::ShapeRef.new(shape: BrowserProfileName, location_name: "name"))
|
|
2000
2015
|
ListBrowserProfilesRequest.struct_class = Types::ListBrowserProfilesRequest
|
|
2001
2016
|
|
|
2002
2017
|
ListBrowserProfilesResponse.add_member(:profile_summaries, Shapes::ShapeRef.new(shape: BrowserProfileSummaries, required: true, location_name: "profileSummaries"))
|
|
@@ -2606,6 +2621,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2606
2621
|
SessionConfig.add_member(:session_timeout_minutes, Shapes::ShapeRef.new(shape: SessionConfigSessionTimeoutMinutesInteger, required: true, location_name: "sessionTimeoutMinutes"))
|
|
2607
2622
|
SessionConfig.struct_class = Types::SessionConfig
|
|
2608
2623
|
|
|
2624
|
+
SessionStorageConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2625
|
+
SessionStorageConfiguration.struct_class = Types::SessionStorageConfiguration
|
|
2626
|
+
|
|
2609
2627
|
SetTokenVaultCMKRequest.add_member(:token_vault_id, Shapes::ShapeRef.new(shape: TokenVaultIdType, location_name: "tokenVaultId"))
|
|
2610
2628
|
SetTokenVaultCMKRequest.add_member(:kms_configuration, Shapes::ShapeRef.new(shape: KmsConfiguration, required: true, location_name: "kmsConfiguration"))
|
|
2611
2629
|
SetTokenVaultCMKRequest.struct_class = Types::SetTokenVaultCMKRequest
|
|
@@ -2813,6 +2831,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2813
2831
|
UpdateAgentRuntimeRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "lifecycleConfiguration"))
|
|
2814
2832
|
UpdateAgentRuntimeRequest.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: RuntimeMetadataConfiguration, location_name: "metadataConfiguration"))
|
|
2815
2833
|
UpdateAgentRuntimeRequest.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariablesMap, location_name: "environmentVariables"))
|
|
2834
|
+
UpdateAgentRuntimeRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: FilesystemConfigurations, location_name: "filesystemConfigurations"))
|
|
2816
2835
|
UpdateAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2817
2836
|
UpdateAgentRuntimeRequest.struct_class = Types::UpdateAgentRuntimeRequest
|
|
2818
2837
|
|
|
@@ -1185,6 +1185,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1185
1185
|
# Environment variables to set in the AgentCore Runtime environment.
|
|
1186
1186
|
# @return [Hash<String,String>]
|
|
1187
1187
|
#
|
|
1188
|
+
# @!attribute [rw] filesystem_configurations
|
|
1189
|
+
# The filesystem configurations to mount into the AgentCore Runtime.
|
|
1190
|
+
# Use filesystem configurations to provide persistent storage to your
|
|
1191
|
+
# AgentCore Runtime sessions.
|
|
1192
|
+
# @return [Array<Types::FilesystemConfiguration>]
|
|
1193
|
+
#
|
|
1188
1194
|
# @!attribute [rw] tags
|
|
1189
1195
|
# A map of tag keys and values to assign to the agent runtime. Tags
|
|
1190
1196
|
# enable you to categorize your resources in different ways, for
|
|
@@ -1205,6 +1211,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1205
1211
|
:protocol_configuration,
|
|
1206
1212
|
:lifecycle_configuration,
|
|
1207
1213
|
:environment_variables,
|
|
1214
|
+
:filesystem_configurations,
|
|
1208
1215
|
:tags)
|
|
1209
1216
|
SENSITIVE = [:description, :environment_variables]
|
|
1210
1217
|
include Aws::Structure
|
|
@@ -4120,6 +4127,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
4120
4127
|
class Unknown < ExtractionConfiguration; end
|
|
4121
4128
|
end
|
|
4122
4129
|
|
|
4130
|
+
# Configuration for a filesystem that can be mounted into the AgentCore
|
|
4131
|
+
# Runtime.
|
|
4132
|
+
#
|
|
4133
|
+
# @note FilesystemConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
4134
|
+
#
|
|
4135
|
+
# @note FilesystemConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FilesystemConfiguration corresponding to the set member.
|
|
4136
|
+
#
|
|
4137
|
+
# @!attribute [rw] session_storage
|
|
4138
|
+
# Configuration for session storage. Session storage provides
|
|
4139
|
+
# persistent storage that is preserved across AgentCore Runtime
|
|
4140
|
+
# session invocations.
|
|
4141
|
+
# @return [Types::SessionStorageConfiguration]
|
|
4142
|
+
#
|
|
4143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/FilesystemConfiguration AWS API Documentation
|
|
4144
|
+
#
|
|
4145
|
+
class FilesystemConfiguration < Struct.new(
|
|
4146
|
+
:session_storage,
|
|
4147
|
+
:unknown)
|
|
4148
|
+
SENSITIVE = []
|
|
4149
|
+
include Aws::Structure
|
|
4150
|
+
include Aws::Structure::Union
|
|
4151
|
+
|
|
4152
|
+
class SessionStorage < FilesystemConfiguration; end
|
|
4153
|
+
class Unknown < FilesystemConfiguration; end
|
|
4154
|
+
end
|
|
4155
|
+
|
|
4123
4156
|
# The filter that applies conditions to agent traces during online
|
|
4124
4157
|
# evaluation to determine which traces should be evaluated.
|
|
4125
4158
|
#
|
|
@@ -4607,6 +4640,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4607
4640
|
# AgentCore Runtime.
|
|
4608
4641
|
# @return [Types::RuntimeMetadataConfiguration]
|
|
4609
4642
|
#
|
|
4643
|
+
# @!attribute [rw] filesystem_configurations
|
|
4644
|
+
# The filesystem configurations mounted into the AgentCore Runtime.
|
|
4645
|
+
# @return [Array<Types::FilesystemConfiguration>]
|
|
4646
|
+
#
|
|
4610
4647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeResponse AWS API Documentation
|
|
4611
4648
|
#
|
|
4612
4649
|
class GetAgentRuntimeResponse < Struct.new(
|
|
@@ -4628,7 +4665,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4628
4665
|
:environment_variables,
|
|
4629
4666
|
:authorizer_configuration,
|
|
4630
4667
|
:request_header_configuration,
|
|
4631
|
-
:metadata_configuration
|
|
4668
|
+
:metadata_configuration,
|
|
4669
|
+
:filesystem_configurations)
|
|
4632
4670
|
SENSITIVE = [:description, :environment_variables]
|
|
4633
4671
|
include Aws::Structure
|
|
4634
4672
|
end
|
|
@@ -6305,11 +6343,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
6305
6343
|
# A token to retrieve the next page of results.
|
|
6306
6344
|
# @return [String]
|
|
6307
6345
|
#
|
|
6346
|
+
# @!attribute [rw] name
|
|
6347
|
+
# The name of the browser profile to filter results by.
|
|
6348
|
+
# @return [String]
|
|
6349
|
+
#
|
|
6308
6350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListBrowserProfilesRequest AWS API Documentation
|
|
6309
6351
|
#
|
|
6310
6352
|
class ListBrowserProfilesRequest < Struct.new(
|
|
6311
6353
|
:max_results,
|
|
6312
|
-
:next_token
|
|
6354
|
+
:next_token,
|
|
6355
|
+
:name)
|
|
6313
6356
|
SENSITIVE = []
|
|
6314
6357
|
include Aws::Structure
|
|
6315
6358
|
end
|
|
@@ -9037,6 +9080,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
9037
9080
|
include Aws::Structure
|
|
9038
9081
|
end
|
|
9039
9082
|
|
|
9083
|
+
# Configuration for a session storage filesystem mounted into the
|
|
9084
|
+
# AgentCore Runtime. Session storage provides persistent storage that is
|
|
9085
|
+
# preserved across AgentCore Runtime session invocations.
|
|
9086
|
+
#
|
|
9087
|
+
# @!attribute [rw] mount_path
|
|
9088
|
+
# The mount path for the session storage filesystem inside the
|
|
9089
|
+
# AgentCore Runtime. The path must be under `/mnt` with exactly one
|
|
9090
|
+
# subdirectory level (for example, `/mnt/data`).
|
|
9091
|
+
# @return [String]
|
|
9092
|
+
#
|
|
9093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SessionStorageConfiguration AWS API Documentation
|
|
9094
|
+
#
|
|
9095
|
+
class SessionStorageConfiguration < Struct.new(
|
|
9096
|
+
:mount_path)
|
|
9097
|
+
SENSITIVE = []
|
|
9098
|
+
include Aws::Structure
|
|
9099
|
+
end
|
|
9100
|
+
|
|
9040
9101
|
# @!attribute [rw] token_vault_id
|
|
9041
9102
|
# The unique identifier of the token vault to update.
|
|
9042
9103
|
# @return [String]
|
|
@@ -9870,6 +9931,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
9870
9931
|
# environment.
|
|
9871
9932
|
# @return [Hash<String,String>]
|
|
9872
9933
|
#
|
|
9934
|
+
# @!attribute [rw] filesystem_configurations
|
|
9935
|
+
# The updated filesystem configurations to mount into the AgentCore
|
|
9936
|
+
# Runtime.
|
|
9937
|
+
# @return [Array<Types::FilesystemConfiguration>]
|
|
9938
|
+
#
|
|
9873
9939
|
# @!attribute [rw] client_token
|
|
9874
9940
|
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
9875
9941
|
# request.
|
|
@@ -9892,6 +9958,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9892
9958
|
:lifecycle_configuration,
|
|
9893
9959
|
:metadata_configuration,
|
|
9894
9960
|
:environment_variables,
|
|
9961
|
+
:filesystem_configurations,
|
|
9895
9962
|
:client_token)
|
|
9896
9963
|
SENSITIVE = [:description, :environment_variables]
|
|
9897
9964
|
include Aws::Structure
|
|
@@ -10832,10 +10899,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10832
10899
|
include Aws::Structure
|
|
10833
10900
|
end
|
|
10834
10901
|
|
|
10835
|
-
#
|
|
10836
|
-
#
|
|
10837
|
-
#
|
|
10838
|
-
# unchanged.
|
|
10902
|
+
# Wrapper for updating an optional Description field with PATCH
|
|
10903
|
+
# semantics. When present in an update request, the description is
|
|
10904
|
+
# replaced with optionalValue. When absent, the description is left
|
|
10905
|
+
# unchanged. To unset the description, include the wrapper with
|
|
10906
|
+
# optionalValue set to null.
|
|
10839
10907
|
#
|
|
10840
10908
|
# @!attribute [rw] optional_value
|
|
10841
10909
|
# Represents an optional value that is used to update the
|
data/sig/client.rbs
CHANGED
|
@@ -148,6 +148,13 @@ module Aws
|
|
|
148
148
|
max_lifetime: ::Integer?
|
|
149
149
|
},
|
|
150
150
|
?environment_variables: Hash[::String, ::String],
|
|
151
|
+
?filesystem_configurations: Array[
|
|
152
|
+
{
|
|
153
|
+
session_storage: {
|
|
154
|
+
mount_path: ::String
|
|
155
|
+
}?
|
|
156
|
+
},
|
|
157
|
+
],
|
|
151
158
|
?tags: Hash[::String, ::String]
|
|
152
159
|
) -> _CreateAgentRuntimeResponseSuccess
|
|
153
160
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentRuntimeResponseSuccess
|
|
@@ -1086,6 +1093,7 @@ module Aws
|
|
|
1086
1093
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
|
1087
1094
|
def request_header_configuration: () -> Types::RequestHeaderConfiguration
|
|
1088
1095
|
def metadata_configuration: () -> Types::RuntimeMetadataConfiguration
|
|
1096
|
+
def filesystem_configurations: () -> ::Array[Types::FilesystemConfiguration]
|
|
1089
1097
|
end
|
|
1090
1098
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime-instance_method
|
|
1091
1099
|
def get_agent_runtime: (
|
|
@@ -1463,7 +1471,8 @@ module Aws
|
|
|
1463
1471
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_browser_profiles-instance_method
|
|
1464
1472
|
def list_browser_profiles: (
|
|
1465
1473
|
?max_results: ::Integer,
|
|
1466
|
-
?next_token: ::String
|
|
1474
|
+
?next_token: ::String,
|
|
1475
|
+
?name: ::String
|
|
1467
1476
|
) -> _ListBrowserProfilesResponseSuccess
|
|
1468
1477
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBrowserProfilesResponseSuccess
|
|
1469
1478
|
|
|
@@ -1799,6 +1808,13 @@ module Aws
|
|
|
1799
1808
|
require_mmdsv2: bool
|
|
1800
1809
|
},
|
|
1801
1810
|
?environment_variables: Hash[::String, ::String],
|
|
1811
|
+
?filesystem_configurations: Array[
|
|
1812
|
+
{
|
|
1813
|
+
session_storage: {
|
|
1814
|
+
mount_path: ::String
|
|
1815
|
+
}?
|
|
1816
|
+
},
|
|
1817
|
+
],
|
|
1802
1818
|
?client_token: ::String
|
|
1803
1819
|
) -> _UpdateAgentRuntimeResponseSuccess
|
|
1804
1820
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentRuntimeResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -355,6 +355,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
355
355
|
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
|
356
356
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
357
357
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
358
|
+
attr_accessor filesystem_configurations: ::Array[Types::FilesystemConfiguration]
|
|
358
359
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
359
360
|
SENSITIVE: [:description, :environment_variables]
|
|
360
361
|
end
|
|
@@ -1172,6 +1173,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1172
1173
|
end
|
|
1173
1174
|
end
|
|
1174
1175
|
|
|
1176
|
+
class FilesystemConfiguration
|
|
1177
|
+
attr_accessor session_storage: Types::SessionStorageConfiguration
|
|
1178
|
+
attr_accessor unknown: untyped
|
|
1179
|
+
SENSITIVE: []
|
|
1180
|
+
|
|
1181
|
+
class SessionStorage < FilesystemConfiguration
|
|
1182
|
+
end
|
|
1183
|
+
class Unknown < FilesystemConfiguration
|
|
1184
|
+
end
|
|
1185
|
+
end
|
|
1186
|
+
|
|
1175
1187
|
class Filter
|
|
1176
1188
|
attr_accessor key: ::String
|
|
1177
1189
|
attr_accessor operator: ("Equals" | "NotEquals" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Contains" | "NotContains")
|
|
@@ -1301,6 +1313,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1301
1313
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
1302
1314
|
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
|
1303
1315
|
attr_accessor metadata_configuration: Types::RuntimeMetadataConfiguration
|
|
1316
|
+
attr_accessor filesystem_configurations: ::Array[Types::FilesystemConfiguration]
|
|
1304
1317
|
SENSITIVE: [:description, :environment_variables]
|
|
1305
1318
|
end
|
|
1306
1319
|
|
|
@@ -1762,6 +1775,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1762
1775
|
class ListBrowserProfilesRequest
|
|
1763
1776
|
attr_accessor max_results: ::Integer
|
|
1764
1777
|
attr_accessor next_token: ::String
|
|
1778
|
+
attr_accessor name: ::String
|
|
1765
1779
|
SENSITIVE: []
|
|
1766
1780
|
end
|
|
1767
1781
|
|
|
@@ -2591,6 +2605,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2591
2605
|
SENSITIVE: []
|
|
2592
2606
|
end
|
|
2593
2607
|
|
|
2608
|
+
class SessionStorageConfiguration
|
|
2609
|
+
attr_accessor mount_path: ::String
|
|
2610
|
+
SENSITIVE: []
|
|
2611
|
+
end
|
|
2612
|
+
|
|
2594
2613
|
class SetTokenVaultCMKRequest
|
|
2595
2614
|
attr_accessor token_vault_id: ::String
|
|
2596
2615
|
attr_accessor kms_configuration: Types::KmsConfiguration
|
|
@@ -2862,6 +2881,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2862
2881
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
2863
2882
|
attr_accessor metadata_configuration: Types::RuntimeMetadataConfiguration
|
|
2864
2883
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
2884
|
+
attr_accessor filesystem_configurations: ::Array[Types::FilesystemConfiguration]
|
|
2865
2885
|
attr_accessor client_token: ::String
|
|
2866
2886
|
SENSITIVE: [:description, :environment_variables]
|
|
2867
2887
|
end
|