aws-sdk-bedrockagentcorecontrol 1.30.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +82 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +60 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +200 -6
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +50 -1
- data/sig/types.rbs +64 -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,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.31.0 (2026-03-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for the following new features. 1. Enterprise Policies support for AgentCore Browser Tool. 2. Root CA Configuration support for AgentCore Browser Tool and Code Interpreter.
|
|
13
|
+
|
|
4
14
|
1.30.0 (2026-03-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
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
|
# },
|
|
@@ -758,6 +770,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
758
770
|
# identification using HTTP message signatures for web bot
|
|
759
771
|
# authentication.
|
|
760
772
|
#
|
|
773
|
+
# @option params [Array<Types::BrowserEnterprisePolicy>] :enterprise_policies
|
|
774
|
+
# A list of enterprise policy files for the browser.
|
|
775
|
+
#
|
|
776
|
+
# @option params [Array<Types::Certificate>] :certificates
|
|
777
|
+
# A list of certificates to install in the browser.
|
|
778
|
+
#
|
|
761
779
|
# @option params [String] :client_token
|
|
762
780
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
763
781
|
# completes no more than one time. If this token matches a previous
|
|
@@ -803,6 +821,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
803
821
|
# browser_signing: {
|
|
804
822
|
# enabled: false, # required
|
|
805
823
|
# },
|
|
824
|
+
# enterprise_policies: [
|
|
825
|
+
# {
|
|
826
|
+
# location: { # required
|
|
827
|
+
# s3: {
|
|
828
|
+
# bucket: "S3LocationBucketString", # required
|
|
829
|
+
# prefix: "S3LocationPrefixString", # required
|
|
830
|
+
# version_id: "S3LocationVersionIdString",
|
|
831
|
+
# },
|
|
832
|
+
# },
|
|
833
|
+
# type: "MANAGED", # accepts MANAGED, RECOMMENDED
|
|
834
|
+
# },
|
|
835
|
+
# ],
|
|
836
|
+
# certificates: [
|
|
837
|
+
# {
|
|
838
|
+
# location: { # required
|
|
839
|
+
# secrets_manager: {
|
|
840
|
+
# secret_arn: "ToolSecretArn", # required
|
|
841
|
+
# },
|
|
842
|
+
# },
|
|
843
|
+
# },
|
|
844
|
+
# ],
|
|
806
845
|
# client_token: "ClientToken",
|
|
807
846
|
# tags: {
|
|
808
847
|
# "TagKey" => "TagValue",
|
|
@@ -904,6 +943,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
904
943
|
# The network configuration for the code interpreter. This configuration
|
|
905
944
|
# specifies the network mode for the code interpreter.
|
|
906
945
|
#
|
|
946
|
+
# @option params [Array<Types::Certificate>] :certificates
|
|
947
|
+
# A list of certificates to install in the code interpreter.
|
|
948
|
+
#
|
|
907
949
|
# @option params [String] :client_token
|
|
908
950
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
909
951
|
# completes no more than one time. If this token matches a previous
|
|
@@ -938,6 +980,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
938
980
|
# subnets: ["SubnetId"], # required
|
|
939
981
|
# },
|
|
940
982
|
# },
|
|
983
|
+
# certificates: [
|
|
984
|
+
# {
|
|
985
|
+
# location: { # required
|
|
986
|
+
# secrets_manager: {
|
|
987
|
+
# secret_arn: "ToolSecretArn", # required
|
|
988
|
+
# },
|
|
989
|
+
# },
|
|
990
|
+
# },
|
|
991
|
+
# ],
|
|
941
992
|
# client_token: "ClientToken",
|
|
942
993
|
# tags: {
|
|
943
994
|
# "TagKey" => "TagValue",
|
|
@@ -2977,6 +3028,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2977
3028
|
# * {Types::GetAgentRuntimeResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
2978
3029
|
# * {Types::GetAgentRuntimeResponse#request_header_configuration #request_header_configuration} => Types::RequestHeaderConfiguration
|
|
2979
3030
|
# * {Types::GetAgentRuntimeResponse#metadata_configuration #metadata_configuration} => Types::RuntimeMetadataConfiguration
|
|
3031
|
+
# * {Types::GetAgentRuntimeResponse#filesystem_configurations #filesystem_configurations} => Array<Types::FilesystemConfiguration>
|
|
2980
3032
|
#
|
|
2981
3033
|
# @example Request syntax with placeholder values
|
|
2982
3034
|
#
|
|
@@ -3032,6 +3084,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3032
3084
|
# resp.request_header_configuration.request_header_allowlist #=> Array
|
|
3033
3085
|
# resp.request_header_configuration.request_header_allowlist[0] #=> String
|
|
3034
3086
|
# resp.metadata_configuration.require_mmdsv2 #=> Boolean
|
|
3087
|
+
# resp.filesystem_configurations #=> Array
|
|
3088
|
+
# resp.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
3035
3089
|
#
|
|
3036
3090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntime AWS API Documentation
|
|
3037
3091
|
#
|
|
@@ -3146,6 +3200,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3146
3200
|
# * {Types::GetBrowserResponse#network_configuration #network_configuration} => Types::BrowserNetworkConfiguration
|
|
3147
3201
|
# * {Types::GetBrowserResponse#recording #recording} => Types::RecordingConfig
|
|
3148
3202
|
# * {Types::GetBrowserResponse#browser_signing #browser_signing} => Types::BrowserSigningConfigOutput
|
|
3203
|
+
# * {Types::GetBrowserResponse#enterprise_policies #enterprise_policies} => Array<Types::BrowserEnterprisePolicy>
|
|
3204
|
+
# * {Types::GetBrowserResponse#certificates #certificates} => Array<Types::Certificate>
|
|
3149
3205
|
# * {Types::GetBrowserResponse#status #status} => String
|
|
3150
3206
|
# * {Types::GetBrowserResponse#failure_reason #failure_reason} => String
|
|
3151
3207
|
# * {Types::GetBrowserResponse#created_at #created_at} => Time
|
|
@@ -3174,6 +3230,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
3174
3230
|
# resp.recording.s3_location.prefix #=> String
|
|
3175
3231
|
# resp.recording.s3_location.version_id #=> String
|
|
3176
3232
|
# resp.browser_signing.enabled #=> Boolean
|
|
3233
|
+
# resp.enterprise_policies #=> Array
|
|
3234
|
+
# resp.enterprise_policies[0].location.s3.bucket #=> String
|
|
3235
|
+
# resp.enterprise_policies[0].location.s3.prefix #=> String
|
|
3236
|
+
# resp.enterprise_policies[0].location.s3.version_id #=> String
|
|
3237
|
+
# resp.enterprise_policies[0].type #=> String, one of "MANAGED", "RECOMMENDED"
|
|
3238
|
+
# resp.certificates #=> Array
|
|
3239
|
+
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
3177
3240
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
3178
3241
|
# resp.failure_reason #=> String
|
|
3179
3242
|
# resp.created_at #=> Time
|
|
@@ -3248,6 +3311,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3248
3311
|
# * {Types::GetCodeInterpreterResponse#execution_role_arn #execution_role_arn} => String
|
|
3249
3312
|
# * {Types::GetCodeInterpreterResponse#network_configuration #network_configuration} => Types::CodeInterpreterNetworkConfiguration
|
|
3250
3313
|
# * {Types::GetCodeInterpreterResponse#status #status} => String
|
|
3314
|
+
# * {Types::GetCodeInterpreterResponse#certificates #certificates} => Array<Types::Certificate>
|
|
3251
3315
|
# * {Types::GetCodeInterpreterResponse#failure_reason #failure_reason} => String
|
|
3252
3316
|
# * {Types::GetCodeInterpreterResponse#created_at #created_at} => Time
|
|
3253
3317
|
# * {Types::GetCodeInterpreterResponse#last_updated_at #last_updated_at} => Time
|
|
@@ -3271,6 +3335,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3271
3335
|
# resp.network_configuration.vpc_config.subnets #=> Array
|
|
3272
3336
|
# resp.network_configuration.vpc_config.subnets[0] #=> String
|
|
3273
3337
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
3338
|
+
# resp.certificates #=> Array
|
|
3339
|
+
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
3274
3340
|
# resp.failure_reason #=> String
|
|
3275
3341
|
# resp.created_at #=> Time
|
|
3276
3342
|
# resp.last_updated_at #=> Time
|
|
@@ -4305,6 +4371,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4305
4371
|
# @option params [String] :next_token
|
|
4306
4372
|
# A token to retrieve the next page of results.
|
|
4307
4373
|
#
|
|
4374
|
+
# @option params [String] :name
|
|
4375
|
+
# The name of the browser profile to filter results by.
|
|
4376
|
+
#
|
|
4308
4377
|
# @return [Types::ListBrowserProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4309
4378
|
#
|
|
4310
4379
|
# * {Types::ListBrowserProfilesResponse#profile_summaries #profile_summaries} => Array<Types::BrowserProfileSummary>
|
|
@@ -4317,6 +4386,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4317
4386
|
# resp = client.list_browser_profiles({
|
|
4318
4387
|
# max_results: 1,
|
|
4319
4388
|
# next_token: "NextToken",
|
|
4389
|
+
# name: "BrowserProfileName",
|
|
4320
4390
|
# })
|
|
4321
4391
|
#
|
|
4322
4392
|
# @example Response structure
|
|
@@ -5440,6 +5510,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5440
5510
|
# Updated environment variables to set in the AgentCore Runtime
|
|
5441
5511
|
# environment.
|
|
5442
5512
|
#
|
|
5513
|
+
# @option params [Array<Types::FilesystemConfiguration>] :filesystem_configurations
|
|
5514
|
+
# The updated filesystem configurations to mount into the AgentCore
|
|
5515
|
+
# Runtime.
|
|
5516
|
+
#
|
|
5443
5517
|
# @option params [String] :client_token
|
|
5444
5518
|
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
5445
5519
|
# request.
|
|
@@ -5523,6 +5597,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
5523
5597
|
# environment_variables: {
|
|
5524
5598
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
|
5525
5599
|
# },
|
|
5600
|
+
# filesystem_configurations: [
|
|
5601
|
+
# {
|
|
5602
|
+
# session_storage: {
|
|
5603
|
+
# mount_path: "MountPath", # required
|
|
5604
|
+
# },
|
|
5605
|
+
# },
|
|
5606
|
+
# ],
|
|
5526
5607
|
# client_token: "ClientToken",
|
|
5527
5608
|
# })
|
|
5528
5609
|
#
|
|
@@ -6986,7 +7067,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6986
7067
|
tracer: tracer
|
|
6987
7068
|
)
|
|
6988
7069
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
6989
|
-
context[:gem_version] = '1.
|
|
7070
|
+
context[:gem_version] = '1.32.0'
|
|
6990
7071
|
Seahorse::Client::Request.new(handlers, context)
|
|
6991
7072
|
end
|
|
6992
7073
|
|
|
@@ -68,6 +68,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
68
68
|
BedrockEvaluatorModelConfig = Shapes::StructureShape.new(name: 'BedrockEvaluatorModelConfig')
|
|
69
69
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
70
70
|
BrowserArn = Shapes::StringShape.new(name: 'BrowserArn')
|
|
71
|
+
BrowserEnterprisePolicies = Shapes::ListShape.new(name: 'BrowserEnterprisePolicies')
|
|
72
|
+
BrowserEnterprisePolicy = Shapes::StructureShape.new(name: 'BrowserEnterprisePolicy')
|
|
73
|
+
BrowserEnterprisePolicyType = Shapes::StringShape.new(name: 'BrowserEnterprisePolicyType')
|
|
71
74
|
BrowserId = Shapes::StringShape.new(name: 'BrowserId')
|
|
72
75
|
BrowserNetworkConfiguration = Shapes::StructureShape.new(name: 'BrowserNetworkConfiguration')
|
|
73
76
|
BrowserNetworkMode = Shapes::StringShape.new(name: 'BrowserNetworkMode')
|
|
@@ -87,6 +90,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
87
90
|
CategoricalScaleDefinitionLabelString = Shapes::StringShape.new(name: 'CategoricalScaleDefinitionLabelString')
|
|
88
91
|
CategoricalScaleDefinitions = Shapes::ListShape.new(name: 'CategoricalScaleDefinitions')
|
|
89
92
|
CedarPolicy = Shapes::StructureShape.new(name: 'CedarPolicy')
|
|
93
|
+
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
|
94
|
+
CertificateLocation = Shapes::UnionShape.new(name: 'CertificateLocation')
|
|
95
|
+
Certificates = Shapes::ListShape.new(name: 'Certificates')
|
|
90
96
|
ClaimMatchOperatorType = Shapes::StringShape.new(name: 'ClaimMatchOperatorType')
|
|
91
97
|
ClaimMatchValueType = Shapes::UnionShape.new(name: 'ClaimMatchValueType')
|
|
92
98
|
ClientIdType = Shapes::StringShape.new(name: 'ClientIdType')
|
|
@@ -243,6 +249,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
243
249
|
EvaluatorType = Shapes::StringShape.new(name: 'EvaluatorType')
|
|
244
250
|
ExceptionLevel = Shapes::StringShape.new(name: 'ExceptionLevel')
|
|
245
251
|
ExtractionConfiguration = Shapes::UnionShape.new(name: 'ExtractionConfiguration')
|
|
252
|
+
FilesystemConfiguration = Shapes::UnionShape.new(name: 'FilesystemConfiguration')
|
|
253
|
+
FilesystemConfigurations = Shapes::ListShape.new(name: 'FilesystemConfigurations')
|
|
246
254
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
247
255
|
FilterKeyString = Shapes::StringShape.new(name: 'FilterKeyString')
|
|
248
256
|
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
|
@@ -436,6 +444,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
436
444
|
ModifySelfManagedConfiguration = Shapes::StructureShape.new(name: 'ModifySelfManagedConfiguration')
|
|
437
445
|
ModifySelfManagedConfigurationHistoricalContextWindowSizeInteger = Shapes::IntegerShape.new(name: 'ModifySelfManagedConfigurationHistoricalContextWindowSizeInteger')
|
|
438
446
|
ModifyStrategyConfiguration = Shapes::StructureShape.new(name: 'ModifyStrategyConfiguration')
|
|
447
|
+
MountPath = Shapes::StringShape.new(name: 'MountPath')
|
|
439
448
|
Name = Shapes::StringShape.new(name: 'Name')
|
|
440
449
|
Namespace = Shapes::StringShape.new(name: 'Namespace')
|
|
441
450
|
NamespacesList = Shapes::ListShape.new(name: 'NamespacesList')
|
|
@@ -506,6 +515,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
506
515
|
Resource = Shapes::UnionShape.new(name: 'Resource')
|
|
507
516
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
508
517
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
|
518
|
+
ResourceLocation = Shapes::UnionShape.new(name: 'ResourceLocation')
|
|
509
519
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
510
520
|
ResourceOauth2ReturnUrlListType = Shapes::ListShape.new(name: 'ResourceOauth2ReturnUrlListType')
|
|
511
521
|
ResourceOauth2ReturnUrlType = Shapes::StringShape.new(name: 'ResourceOauth2ReturnUrlType')
|
|
@@ -536,6 +546,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
536
546
|
SearchType = Shapes::StringShape.new(name: 'SearchType')
|
|
537
547
|
Secret = Shapes::StructureShape.new(name: 'Secret')
|
|
538
548
|
SecretArn = Shapes::StringShape.new(name: 'SecretArn')
|
|
549
|
+
SecretsManagerLocation = Shapes::StructureShape.new(name: 'SecretsManagerLocation')
|
|
539
550
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
540
551
|
SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
|
|
541
552
|
SelfManagedConfiguration = Shapes::StructureShape.new(name: 'SelfManagedConfiguration')
|
|
@@ -553,6 +564,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
553
564
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
554
565
|
SessionConfig = Shapes::StructureShape.new(name: 'SessionConfig')
|
|
555
566
|
SessionConfigSessionTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'SessionConfigSessionTimeoutMinutesInteger')
|
|
567
|
+
SessionStorageConfiguration = Shapes::StructureShape.new(name: 'SessionStorageConfiguration')
|
|
556
568
|
SetTokenVaultCMKRequest = Shapes::StructureShape.new(name: 'SetTokenVaultCMKRequest')
|
|
557
569
|
SetTokenVaultCMKResponse = Shapes::StructureShape.new(name: 'SetTokenVaultCMKResponse')
|
|
558
570
|
SlackOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'SlackOauth2ProviderConfigInput')
|
|
@@ -609,6 +621,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
609
621
|
ToolDefinition = Shapes::StructureShape.new(name: 'ToolDefinition')
|
|
610
622
|
ToolDefinitions = Shapes::ListShape.new(name: 'ToolDefinitions')
|
|
611
623
|
ToolSchema = Shapes::UnionShape.new(name: 'ToolSchema')
|
|
624
|
+
ToolSecretArn = Shapes::StringShape.new(name: 'ToolSecretArn')
|
|
612
625
|
TriggerCondition = Shapes::UnionShape.new(name: 'TriggerCondition')
|
|
613
626
|
TriggerConditionInput = Shapes::UnionShape.new(name: 'TriggerConditionInput')
|
|
614
627
|
TriggerConditionInputList = Shapes::ListShape.new(name: 'TriggerConditionInputList')
|
|
@@ -778,6 +791,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
778
791
|
BedrockEvaluatorModelConfig.add_member(:additional_model_request_fields, Shapes::ShapeRef.new(shape: AdditionalModelRequestFields, location_name: "additionalModelRequestFields"))
|
|
779
792
|
BedrockEvaluatorModelConfig.struct_class = Types::BedrockEvaluatorModelConfig
|
|
780
793
|
|
|
794
|
+
BrowserEnterprisePolicies.member = Shapes::ShapeRef.new(shape: BrowserEnterprisePolicy)
|
|
795
|
+
|
|
796
|
+
BrowserEnterprisePolicy.add_member(:location, Shapes::ShapeRef.new(shape: ResourceLocation, required: true, location_name: "location"))
|
|
797
|
+
BrowserEnterprisePolicy.add_member(:type, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicyType, location_name: "type"))
|
|
798
|
+
BrowserEnterprisePolicy.struct_class = Types::BrowserEnterprisePolicy
|
|
799
|
+
|
|
781
800
|
BrowserNetworkConfiguration.add_member(:network_mode, Shapes::ShapeRef.new(shape: BrowserNetworkMode, required: true, location_name: "networkMode"))
|
|
782
801
|
BrowserNetworkConfiguration.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
|
783
802
|
BrowserNetworkConfiguration.struct_class = Types::BrowserNetworkConfiguration
|
|
@@ -822,6 +841,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
822
841
|
CedarPolicy.add_member(:statement, Shapes::ShapeRef.new(shape: Statement, required: true, location_name: "statement"))
|
|
823
842
|
CedarPolicy.struct_class = Types::CedarPolicy
|
|
824
843
|
|
|
844
|
+
Certificate.add_member(:location, Shapes::ShapeRef.new(shape: CertificateLocation, required: true, location_name: "location"))
|
|
845
|
+
Certificate.struct_class = Types::Certificate
|
|
846
|
+
|
|
847
|
+
CertificateLocation.add_member(:secrets_manager, Shapes::ShapeRef.new(shape: SecretsManagerLocation, location_name: "secretsManager"))
|
|
848
|
+
CertificateLocation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
849
|
+
CertificateLocation.add_member_subclass(:secrets_manager, Types::CertificateLocation::SecretsManager)
|
|
850
|
+
CertificateLocation.add_member_subclass(:unknown, Types::CertificateLocation::Unknown)
|
|
851
|
+
CertificateLocation.struct_class = Types::CertificateLocation
|
|
852
|
+
|
|
853
|
+
Certificates.member = Shapes::ShapeRef.new(shape: Certificate)
|
|
854
|
+
|
|
825
855
|
ClaimMatchValueType.add_member(:match_value_string, Shapes::ShapeRef.new(shape: MatchValueString, location_name: "matchValueString"))
|
|
826
856
|
ClaimMatchValueType.add_member(:match_value_string_list, Shapes::ShapeRef.new(shape: MatchValueStringList, location_name: "matchValueStringList"))
|
|
827
857
|
ClaimMatchValueType.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
@@ -922,6 +952,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
922
952
|
CreateAgentRuntimeRequest.add_member(:protocol_configuration, Shapes::ShapeRef.new(shape: ProtocolConfiguration, location_name: "protocolConfiguration"))
|
|
923
953
|
CreateAgentRuntimeRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "lifecycleConfiguration"))
|
|
924
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"))
|
|
925
956
|
CreateAgentRuntimeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
926
957
|
CreateAgentRuntimeRequest.struct_class = Types::CreateAgentRuntimeRequest
|
|
927
958
|
|
|
@@ -961,6 +992,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
961
992
|
CreateBrowserRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
962
993
|
CreateBrowserRequest.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
|
|
963
994
|
CreateBrowserRequest.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigInput, location_name: "browserSigning"))
|
|
995
|
+
CreateBrowserRequest.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
996
|
+
CreateBrowserRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
964
997
|
CreateBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
965
998
|
CreateBrowserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
966
999
|
CreateBrowserRequest.struct_class = Types::CreateBrowserRequest
|
|
@@ -975,6 +1008,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
975
1008
|
CreateCodeInterpreterRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
976
1009
|
CreateCodeInterpreterRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
977
1010
|
CreateCodeInterpreterRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1011
|
+
CreateCodeInterpreterRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
978
1012
|
CreateCodeInterpreterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
979
1013
|
CreateCodeInterpreterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
980
1014
|
CreateCodeInterpreterRequest.struct_class = Types::CreateCodeInterpreterRequest
|
|
@@ -1514,6 +1548,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1514
1548
|
ExtractionConfiguration.add_member_subclass(:unknown, Types::ExtractionConfiguration::Unknown)
|
|
1515
1549
|
ExtractionConfiguration.struct_class = Types::ExtractionConfiguration
|
|
1516
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
|
+
|
|
1517
1559
|
Filter.add_member(:key, Shapes::ShapeRef.new(shape: FilterKeyString, required: true, location_name: "key"))
|
|
1518
1560
|
Filter.add_member(:operator, Shapes::ShapeRef.new(shape: FilterOperator, required: true, location_name: "operator"))
|
|
1519
1561
|
Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValue, required: true, location_name: "value"))
|
|
@@ -1624,6 +1666,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1624
1666
|
GetAgentRuntimeResponse.add_member(:authorizer_configuration, Shapes::ShapeRef.new(shape: AuthorizerConfiguration, location_name: "authorizerConfiguration"))
|
|
1625
1667
|
GetAgentRuntimeResponse.add_member(:request_header_configuration, Shapes::ShapeRef.new(shape: RequestHeaderConfiguration, location_name: "requestHeaderConfiguration"))
|
|
1626
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"))
|
|
1627
1670
|
GetAgentRuntimeResponse.struct_class = Types::GetAgentRuntimeResponse
|
|
1628
1671
|
|
|
1629
1672
|
GetApiKeyCredentialProviderRequest.add_member(:name, Shapes::ShapeRef.new(shape: CredentialProviderName, required: true, location_name: "name"))
|
|
@@ -1662,6 +1705,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1662
1705
|
GetBrowserResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1663
1706
|
GetBrowserResponse.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
|
|
1664
1707
|
GetBrowserResponse.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigOutput, location_name: "browserSigning"))
|
|
1708
|
+
GetBrowserResponse.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
1709
|
+
GetBrowserResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1665
1710
|
GetBrowserResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserStatus, required: true, location_name: "status"))
|
|
1666
1711
|
GetBrowserResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
1667
1712
|
GetBrowserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
@@ -1678,6 +1723,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1678
1723
|
GetCodeInterpreterResponse.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
1679
1724
|
GetCodeInterpreterResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1680
1725
|
GetCodeInterpreterResponse.add_member(:status, Shapes::ShapeRef.new(shape: CodeInterpreterStatus, required: true, location_name: "status"))
|
|
1726
|
+
GetCodeInterpreterResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1681
1727
|
GetCodeInterpreterResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
1682
1728
|
GetCodeInterpreterResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
1683
1729
|
GetCodeInterpreterResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
|
@@ -1965,6 +2011,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1965
2011
|
|
|
1966
2012
|
ListBrowserProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1967
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"))
|
|
1968
2015
|
ListBrowserProfilesRequest.struct_class = Types::ListBrowserProfilesRequest
|
|
1969
2016
|
|
|
1970
2017
|
ListBrowserProfilesResponse.add_member(:profile_summaries, Shapes::ShapeRef.new(shape: BrowserProfileSummaries, required: true, location_name: "profileSummaries"))
|
|
@@ -2468,6 +2515,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2468
2515
|
ResourceLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
2469
2516
|
ResourceLimitExceededException.struct_class = Types::ResourceLimitExceededException
|
|
2470
2517
|
|
|
2518
|
+
ResourceLocation.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3"))
|
|
2519
|
+
ResourceLocation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2520
|
+
ResourceLocation.add_member_subclass(:s3, Types::ResourceLocation::S3)
|
|
2521
|
+
ResourceLocation.add_member_subclass(:unknown, Types::ResourceLocation::Unknown)
|
|
2522
|
+
ResourceLocation.struct_class = Types::ResourceLocation
|
|
2523
|
+
|
|
2471
2524
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
2472
2525
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
2473
2526
|
|
|
@@ -2518,6 +2571,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2518
2571
|
Secret.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, required: true, location_name: "secretArn"))
|
|
2519
2572
|
Secret.struct_class = Types::Secret
|
|
2520
2573
|
|
|
2574
|
+
SecretsManagerLocation.add_member(:secret_arn, Shapes::ShapeRef.new(shape: ToolSecretArn, required: true, location_name: "secretArn"))
|
|
2575
|
+
SecretsManagerLocation.struct_class = Types::SecretsManagerLocation
|
|
2576
|
+
|
|
2521
2577
|
SecurityGroups.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
2522
2578
|
|
|
2523
2579
|
SelfManagedConfiguration.add_member(:trigger_conditions, Shapes::ShapeRef.new(shape: TriggerConditionsList, required: true, location_name: "triggerConditions"))
|
|
@@ -2565,6 +2621,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2565
2621
|
SessionConfig.add_member(:session_timeout_minutes, Shapes::ShapeRef.new(shape: SessionConfigSessionTimeoutMinutesInteger, required: true, location_name: "sessionTimeoutMinutes"))
|
|
2566
2622
|
SessionConfig.struct_class = Types::SessionConfig
|
|
2567
2623
|
|
|
2624
|
+
SessionStorageConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2625
|
+
SessionStorageConfiguration.struct_class = Types::SessionStorageConfiguration
|
|
2626
|
+
|
|
2568
2627
|
SetTokenVaultCMKRequest.add_member(:token_vault_id, Shapes::ShapeRef.new(shape: TokenVaultIdType, location_name: "tokenVaultId"))
|
|
2569
2628
|
SetTokenVaultCMKRequest.add_member(:kms_configuration, Shapes::ShapeRef.new(shape: KmsConfiguration, required: true, location_name: "kmsConfiguration"))
|
|
2570
2629
|
SetTokenVaultCMKRequest.struct_class = Types::SetTokenVaultCMKRequest
|
|
@@ -2772,6 +2831,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2772
2831
|
UpdateAgentRuntimeRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "lifecycleConfiguration"))
|
|
2773
2832
|
UpdateAgentRuntimeRequest.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: RuntimeMetadataConfiguration, location_name: "metadataConfiguration"))
|
|
2774
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"))
|
|
2775
2835
|
UpdateAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2776
2836
|
UpdateAgentRuntimeRequest.struct_class = Types::UpdateAgentRuntimeRequest
|
|
2777
2837
|
|
|
@@ -477,6 +477,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
477
477
|
include Aws::Structure
|
|
478
478
|
end
|
|
479
479
|
|
|
480
|
+
# Browser enterprise policy configuration.
|
|
481
|
+
#
|
|
482
|
+
# @!attribute [rw] location
|
|
483
|
+
# The location of the enterprise policy file.
|
|
484
|
+
# @return [Types::ResourceLocation]
|
|
485
|
+
#
|
|
486
|
+
# @!attribute [rw] type
|
|
487
|
+
# The type of browser enterprise policy. Available values are
|
|
488
|
+
# `MANAGED` and `RECOMMENDED`.
|
|
489
|
+
# @return [String]
|
|
490
|
+
#
|
|
491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserEnterprisePolicy AWS API Documentation
|
|
492
|
+
#
|
|
493
|
+
class BrowserEnterprisePolicy < Struct.new(
|
|
494
|
+
:location,
|
|
495
|
+
:type)
|
|
496
|
+
SENSITIVE = []
|
|
497
|
+
include Aws::Structure
|
|
498
|
+
end
|
|
499
|
+
|
|
480
500
|
# The network configuration for a browser. This structure defines how
|
|
481
501
|
# the browser connects to the network.
|
|
482
502
|
#
|
|
@@ -684,6 +704,43 @@ module Aws::BedrockAgentCoreControl
|
|
|
684
704
|
include Aws::Structure
|
|
685
705
|
end
|
|
686
706
|
|
|
707
|
+
# A certificate to install in the browser or code interpreter.
|
|
708
|
+
#
|
|
709
|
+
# @!attribute [rw] location
|
|
710
|
+
# The location of the certificate.
|
|
711
|
+
# @return [Types::CertificateLocation]
|
|
712
|
+
#
|
|
713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Certificate AWS API Documentation
|
|
714
|
+
#
|
|
715
|
+
class Certificate < Struct.new(
|
|
716
|
+
:location)
|
|
717
|
+
SENSITIVE = []
|
|
718
|
+
include Aws::Structure
|
|
719
|
+
end
|
|
720
|
+
|
|
721
|
+
# The location from which to retrieve a certificate.
|
|
722
|
+
#
|
|
723
|
+
# @note CertificateLocation is a union - when making an API calls you must set exactly one of the members.
|
|
724
|
+
#
|
|
725
|
+
# @note CertificateLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CertificateLocation corresponding to the set member.
|
|
726
|
+
#
|
|
727
|
+
# @!attribute [rw] secrets_manager
|
|
728
|
+
# The Amazon Web Services Secrets Manager location of the certificate.
|
|
729
|
+
# @return [Types::SecretsManagerLocation]
|
|
730
|
+
#
|
|
731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CertificateLocation AWS API Documentation
|
|
732
|
+
#
|
|
733
|
+
class CertificateLocation < Struct.new(
|
|
734
|
+
:secrets_manager,
|
|
735
|
+
:unknown)
|
|
736
|
+
SENSITIVE = []
|
|
737
|
+
include Aws::Structure
|
|
738
|
+
include Aws::Structure::Union
|
|
739
|
+
|
|
740
|
+
class SecretsManager < CertificateLocation; end
|
|
741
|
+
class Unknown < CertificateLocation; end
|
|
742
|
+
end
|
|
743
|
+
|
|
687
744
|
# The value or values to match for.
|
|
688
745
|
#
|
|
689
746
|
# * Include a `matchValueString` with the `EQUALS` operator to specify a
|
|
@@ -1128,6 +1185,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1128
1185
|
# Environment variables to set in the AgentCore Runtime environment.
|
|
1129
1186
|
# @return [Hash<String,String>]
|
|
1130
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
|
+
#
|
|
1131
1194
|
# @!attribute [rw] tags
|
|
1132
1195
|
# A map of tag keys and values to assign to the agent runtime. Tags
|
|
1133
1196
|
# enable you to categorize your resources in different ways, for
|
|
@@ -1148,6 +1211,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1148
1211
|
:protocol_configuration,
|
|
1149
1212
|
:lifecycle_configuration,
|
|
1150
1213
|
:environment_variables,
|
|
1214
|
+
:filesystem_configurations,
|
|
1151
1215
|
:tags)
|
|
1152
1216
|
SENSITIVE = [:description, :environment_variables]
|
|
1153
1217
|
include Aws::Structure
|
|
@@ -1334,6 +1398,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1334
1398
|
# authentication.
|
|
1335
1399
|
# @return [Types::BrowserSigningConfigInput]
|
|
1336
1400
|
#
|
|
1401
|
+
# @!attribute [rw] enterprise_policies
|
|
1402
|
+
# A list of enterprise policy files for the browser.
|
|
1403
|
+
# @return [Array<Types::BrowserEnterprisePolicy>]
|
|
1404
|
+
#
|
|
1405
|
+
# @!attribute [rw] certificates
|
|
1406
|
+
# A list of certificates to install in the browser.
|
|
1407
|
+
# @return [Array<Types::Certificate>]
|
|
1408
|
+
#
|
|
1337
1409
|
# @!attribute [rw] client_token
|
|
1338
1410
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1339
1411
|
# completes no more than one time. If this token matches a previous
|
|
@@ -1359,6 +1431,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1359
1431
|
:network_configuration,
|
|
1360
1432
|
:recording,
|
|
1361
1433
|
:browser_signing,
|
|
1434
|
+
:enterprise_policies,
|
|
1435
|
+
:certificates,
|
|
1362
1436
|
:client_token,
|
|
1363
1437
|
:tags)
|
|
1364
1438
|
SENSITIVE = [:description]
|
|
@@ -1412,6 +1486,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1412
1486
|
# configuration specifies the network mode for the code interpreter.
|
|
1413
1487
|
# @return [Types::CodeInterpreterNetworkConfiguration]
|
|
1414
1488
|
#
|
|
1489
|
+
# @!attribute [rw] certificates
|
|
1490
|
+
# A list of certificates to install in the code interpreter.
|
|
1491
|
+
# @return [Array<Types::Certificate>]
|
|
1492
|
+
#
|
|
1415
1493
|
# @!attribute [rw] client_token
|
|
1416
1494
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1417
1495
|
# completes no more than one time. If this token matches a previous
|
|
@@ -1435,6 +1513,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1435
1513
|
:description,
|
|
1436
1514
|
:execution_role_arn,
|
|
1437
1515
|
:network_configuration,
|
|
1516
|
+
:certificates,
|
|
1438
1517
|
:client_token,
|
|
1439
1518
|
:tags)
|
|
1440
1519
|
SENSITIVE = [:description]
|
|
@@ -4048,6 +4127,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
4048
4127
|
class Unknown < ExtractionConfiguration; end
|
|
4049
4128
|
end
|
|
4050
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
|
+
|
|
4051
4156
|
# The filter that applies conditions to agent traces during online
|
|
4052
4157
|
# evaluation to determine which traces should be evaluated.
|
|
4053
4158
|
#
|
|
@@ -4535,6 +4640,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4535
4640
|
# AgentCore Runtime.
|
|
4536
4641
|
# @return [Types::RuntimeMetadataConfiguration]
|
|
4537
4642
|
#
|
|
4643
|
+
# @!attribute [rw] filesystem_configurations
|
|
4644
|
+
# The filesystem configurations mounted into the AgentCore Runtime.
|
|
4645
|
+
# @return [Array<Types::FilesystemConfiguration>]
|
|
4646
|
+
#
|
|
4538
4647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeResponse AWS API Documentation
|
|
4539
4648
|
#
|
|
4540
4649
|
class GetAgentRuntimeResponse < Struct.new(
|
|
@@ -4556,7 +4665,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4556
4665
|
:environment_variables,
|
|
4557
4666
|
:authorizer_configuration,
|
|
4558
4667
|
:request_header_configuration,
|
|
4559
|
-
:metadata_configuration
|
|
4668
|
+
:metadata_configuration,
|
|
4669
|
+
:filesystem_configurations)
|
|
4560
4670
|
SENSITIVE = [:description, :environment_variables]
|
|
4561
4671
|
include Aws::Structure
|
|
4562
4672
|
end
|
|
@@ -4725,6 +4835,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4725
4835
|
# agent identification is enabled for web bot authentication.
|
|
4726
4836
|
# @return [Types::BrowserSigningConfigOutput]
|
|
4727
4837
|
#
|
|
4838
|
+
# @!attribute [rw] enterprise_policies
|
|
4839
|
+
# The list of enterprise policy files configured for the browser.
|
|
4840
|
+
# @return [Array<Types::BrowserEnterprisePolicy>]
|
|
4841
|
+
#
|
|
4842
|
+
# @!attribute [rw] certificates
|
|
4843
|
+
# The list of certificates configured for the browser.
|
|
4844
|
+
# @return [Array<Types::Certificate>]
|
|
4845
|
+
#
|
|
4728
4846
|
# @!attribute [rw] status
|
|
4729
4847
|
# The current status of the browser.
|
|
4730
4848
|
# @return [String]
|
|
@@ -4752,6 +4870,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4752
4870
|
:network_configuration,
|
|
4753
4871
|
:recording,
|
|
4754
4872
|
:browser_signing,
|
|
4873
|
+
:enterprise_policies,
|
|
4874
|
+
:certificates,
|
|
4755
4875
|
:status,
|
|
4756
4876
|
:failure_reason,
|
|
4757
4877
|
:created_at,
|
|
@@ -4801,6 +4921,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4801
4921
|
# The current status of the code interpreter.
|
|
4802
4922
|
# @return [String]
|
|
4803
4923
|
#
|
|
4924
|
+
# @!attribute [rw] certificates
|
|
4925
|
+
# The list of certificates configured for the code interpreter.
|
|
4926
|
+
# @return [Array<Types::Certificate>]
|
|
4927
|
+
#
|
|
4804
4928
|
# @!attribute [rw] failure_reason
|
|
4805
4929
|
# The reason for failure if the code interpreter is in a failed state.
|
|
4806
4930
|
# @return [String]
|
|
@@ -4823,6 +4947,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4823
4947
|
:execution_role_arn,
|
|
4824
4948
|
:network_configuration,
|
|
4825
4949
|
:status,
|
|
4950
|
+
:certificates,
|
|
4826
4951
|
:failure_reason,
|
|
4827
4952
|
:created_at,
|
|
4828
4953
|
:last_updated_at)
|
|
@@ -6218,11 +6343,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
6218
6343
|
# A token to retrieve the next page of results.
|
|
6219
6344
|
# @return [String]
|
|
6220
6345
|
#
|
|
6346
|
+
# @!attribute [rw] name
|
|
6347
|
+
# The name of the browser profile to filter results by.
|
|
6348
|
+
# @return [String]
|
|
6349
|
+
#
|
|
6221
6350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListBrowserProfilesRequest AWS API Documentation
|
|
6222
6351
|
#
|
|
6223
6352
|
class ListBrowserProfilesRequest < Struct.new(
|
|
6224
6353
|
:max_results,
|
|
6225
|
-
:next_token
|
|
6354
|
+
:next_token,
|
|
6355
|
+
:name)
|
|
6226
6356
|
SENSITIVE = []
|
|
6227
6357
|
include Aws::Structure
|
|
6228
6358
|
end
|
|
@@ -8477,6 +8607,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
8477
8607
|
include Aws::Structure
|
|
8478
8608
|
end
|
|
8479
8609
|
|
|
8610
|
+
# The location of a resource.
|
|
8611
|
+
#
|
|
8612
|
+
# @note ResourceLocation is a union - when making an API calls you must set exactly one of the members.
|
|
8613
|
+
#
|
|
8614
|
+
# @note ResourceLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceLocation corresponding to the set member.
|
|
8615
|
+
#
|
|
8616
|
+
# @!attribute [rw] s3
|
|
8617
|
+
# The Amazon S3 location for storing data. This structure defines
|
|
8618
|
+
# where in Amazon S3 data is stored.
|
|
8619
|
+
# @return [Types::S3Location]
|
|
8620
|
+
#
|
|
8621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLocation AWS API Documentation
|
|
8622
|
+
#
|
|
8623
|
+
class ResourceLocation < Struct.new(
|
|
8624
|
+
:s3,
|
|
8625
|
+
:unknown)
|
|
8626
|
+
SENSITIVE = []
|
|
8627
|
+
include Aws::Structure
|
|
8628
|
+
include Aws::Structure::Union
|
|
8629
|
+
|
|
8630
|
+
class S3 < ResourceLocation; end
|
|
8631
|
+
class Unknown < ResourceLocation; end
|
|
8632
|
+
end
|
|
8633
|
+
|
|
8480
8634
|
# This exception is thrown when a resource referenced by the operation
|
|
8481
8635
|
# does not exist
|
|
8482
8636
|
#
|
|
@@ -8693,6 +8847,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
8693
8847
|
include Aws::Structure
|
|
8694
8848
|
end
|
|
8695
8849
|
|
|
8850
|
+
# The Amazon Web Services Secrets Manager location configuration.
|
|
8851
|
+
#
|
|
8852
|
+
# @!attribute [rw] secret_arn
|
|
8853
|
+
# The ARN of the Amazon Web Services Secrets Manager secret containing
|
|
8854
|
+
# the certificate.
|
|
8855
|
+
# @return [String]
|
|
8856
|
+
#
|
|
8857
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SecretsManagerLocation AWS API Documentation
|
|
8858
|
+
#
|
|
8859
|
+
class SecretsManagerLocation < Struct.new(
|
|
8860
|
+
:secret_arn)
|
|
8861
|
+
SENSITIVE = []
|
|
8862
|
+
include Aws::Structure
|
|
8863
|
+
end
|
|
8864
|
+
|
|
8696
8865
|
# A configuration for a self-managed memory strategy.
|
|
8697
8866
|
#
|
|
8698
8867
|
# @!attribute [rw] trigger_conditions
|
|
@@ -8911,6 +9080,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
8911
9080
|
include Aws::Structure
|
|
8912
9081
|
end
|
|
8913
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
|
+
|
|
8914
9101
|
# @!attribute [rw] token_vault_id
|
|
8915
9102
|
# The unique identifier of the token vault to update.
|
|
8916
9103
|
# @return [String]
|
|
@@ -9744,6 +9931,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
9744
9931
|
# environment.
|
|
9745
9932
|
# @return [Hash<String,String>]
|
|
9746
9933
|
#
|
|
9934
|
+
# @!attribute [rw] filesystem_configurations
|
|
9935
|
+
# The updated filesystem configurations to mount into the AgentCore
|
|
9936
|
+
# Runtime.
|
|
9937
|
+
# @return [Array<Types::FilesystemConfiguration>]
|
|
9938
|
+
#
|
|
9747
9939
|
# @!attribute [rw] client_token
|
|
9748
9940
|
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
9749
9941
|
# request.
|
|
@@ -9766,6 +9958,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9766
9958
|
:lifecycle_configuration,
|
|
9767
9959
|
:metadata_configuration,
|
|
9768
9960
|
:environment_variables,
|
|
9961
|
+
:filesystem_configurations,
|
|
9769
9962
|
:client_token)
|
|
9770
9963
|
SENSITIVE = [:description, :environment_variables]
|
|
9771
9964
|
include Aws::Structure
|
|
@@ -10706,10 +10899,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10706
10899
|
include Aws::Structure
|
|
10707
10900
|
end
|
|
10708
10901
|
|
|
10709
|
-
#
|
|
10710
|
-
#
|
|
10711
|
-
#
|
|
10712
|
-
# 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.
|
|
10713
10907
|
#
|
|
10714
10908
|
# @!attribute [rw] optional_value
|
|
10715
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
|
|
@@ -217,6 +224,27 @@ module Aws
|
|
|
217
224
|
?browser_signing: {
|
|
218
225
|
enabled: bool
|
|
219
226
|
},
|
|
227
|
+
?enterprise_policies: Array[
|
|
228
|
+
{
|
|
229
|
+
location: {
|
|
230
|
+
s3: {
|
|
231
|
+
bucket: ::String,
|
|
232
|
+
prefix: ::String,
|
|
233
|
+
version_id: ::String?
|
|
234
|
+
}?
|
|
235
|
+
},
|
|
236
|
+
type: ("MANAGED" | "RECOMMENDED")?
|
|
237
|
+
},
|
|
238
|
+
],
|
|
239
|
+
?certificates: Array[
|
|
240
|
+
{
|
|
241
|
+
location: {
|
|
242
|
+
secrets_manager: {
|
|
243
|
+
secret_arn: ::String
|
|
244
|
+
}?
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
],
|
|
220
248
|
?client_token: ::String,
|
|
221
249
|
?tags: Hash[::String, ::String]
|
|
222
250
|
) -> _CreateBrowserResponseSuccess
|
|
@@ -257,6 +285,15 @@ module Aws
|
|
|
257
285
|
subnets: Array[::String]
|
|
258
286
|
}?
|
|
259
287
|
},
|
|
288
|
+
?certificates: Array[
|
|
289
|
+
{
|
|
290
|
+
location: {
|
|
291
|
+
secrets_manager: {
|
|
292
|
+
secret_arn: ::String
|
|
293
|
+
}?
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
],
|
|
260
297
|
?client_token: ::String,
|
|
261
298
|
?tags: Hash[::String, ::String]
|
|
262
299
|
) -> _CreateCodeInterpreterResponseSuccess
|
|
@@ -1056,6 +1093,7 @@ module Aws
|
|
|
1056
1093
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
|
1057
1094
|
def request_header_configuration: () -> Types::RequestHeaderConfiguration
|
|
1058
1095
|
def metadata_configuration: () -> Types::RuntimeMetadataConfiguration
|
|
1096
|
+
def filesystem_configurations: () -> ::Array[Types::FilesystemConfiguration]
|
|
1059
1097
|
end
|
|
1060
1098
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime-instance_method
|
|
1061
1099
|
def get_agent_runtime: (
|
|
@@ -1109,6 +1147,8 @@ module Aws
|
|
|
1109
1147
|
def network_configuration: () -> Types::BrowserNetworkConfiguration
|
|
1110
1148
|
def recording: () -> Types::RecordingConfig
|
|
1111
1149
|
def browser_signing: () -> Types::BrowserSigningConfigOutput
|
|
1150
|
+
def enterprise_policies: () -> ::Array[Types::BrowserEnterprisePolicy]
|
|
1151
|
+
def certificates: () -> ::Array[Types::Certificate]
|
|
1112
1152
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1113
1153
|
def failure_reason: () -> ::String
|
|
1114
1154
|
def created_at: () -> ::Time
|
|
@@ -1148,6 +1188,7 @@ module Aws
|
|
|
1148
1188
|
def execution_role_arn: () -> ::String
|
|
1149
1189
|
def network_configuration: () -> Types::CodeInterpreterNetworkConfiguration
|
|
1150
1190
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1191
|
+
def certificates: () -> ::Array[Types::Certificate]
|
|
1151
1192
|
def failure_reason: () -> ::String
|
|
1152
1193
|
def created_at: () -> ::Time
|
|
1153
1194
|
def last_updated_at: () -> ::Time
|
|
@@ -1430,7 +1471,8 @@ module Aws
|
|
|
1430
1471
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_browser_profiles-instance_method
|
|
1431
1472
|
def list_browser_profiles: (
|
|
1432
1473
|
?max_results: ::Integer,
|
|
1433
|
-
?next_token: ::String
|
|
1474
|
+
?next_token: ::String,
|
|
1475
|
+
?name: ::String
|
|
1434
1476
|
) -> _ListBrowserProfilesResponseSuccess
|
|
1435
1477
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBrowserProfilesResponseSuccess
|
|
1436
1478
|
|
|
@@ -1766,6 +1808,13 @@ module Aws
|
|
|
1766
1808
|
require_mmdsv2: bool
|
|
1767
1809
|
},
|
|
1768
1810
|
?environment_variables: Hash[::String, ::String],
|
|
1811
|
+
?filesystem_configurations: Array[
|
|
1812
|
+
{
|
|
1813
|
+
session_storage: {
|
|
1814
|
+
mount_path: ::String
|
|
1815
|
+
}?
|
|
1816
|
+
},
|
|
1817
|
+
],
|
|
1769
1818
|
?client_token: ::String
|
|
1770
1819
|
) -> _UpdateAgentRuntimeResponseSuccess
|
|
1771
1820
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentRuntimeResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -145,6 +145,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
145
145
|
SENSITIVE: []
|
|
146
146
|
end
|
|
147
147
|
|
|
148
|
+
class BrowserEnterprisePolicy
|
|
149
|
+
attr_accessor location: Types::ResourceLocation
|
|
150
|
+
attr_accessor type: ("MANAGED" | "RECOMMENDED")
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
end
|
|
153
|
+
|
|
148
154
|
class BrowserNetworkConfiguration
|
|
149
155
|
attr_accessor network_mode: ("PUBLIC" | "VPC")
|
|
150
156
|
attr_accessor vpc_config: Types::VpcConfig
|
|
@@ -197,6 +203,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
197
203
|
SENSITIVE: []
|
|
198
204
|
end
|
|
199
205
|
|
|
206
|
+
class Certificate
|
|
207
|
+
attr_accessor location: Types::CertificateLocation
|
|
208
|
+
SENSITIVE: []
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
class CertificateLocation
|
|
212
|
+
attr_accessor secrets_manager: Types::SecretsManagerLocation
|
|
213
|
+
attr_accessor unknown: untyped
|
|
214
|
+
SENSITIVE: []
|
|
215
|
+
|
|
216
|
+
class SecretsManager < CertificateLocation
|
|
217
|
+
end
|
|
218
|
+
class Unknown < CertificateLocation
|
|
219
|
+
end
|
|
220
|
+
end
|
|
221
|
+
|
|
200
222
|
class ClaimMatchValueType
|
|
201
223
|
attr_accessor match_value_string: ::String
|
|
202
224
|
attr_accessor match_value_string_list: ::Array[::String]
|
|
@@ -333,6 +355,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
333
355
|
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
|
334
356
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
335
357
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
358
|
+
attr_accessor filesystem_configurations: ::Array[Types::FilesystemConfiguration]
|
|
336
359
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
337
360
|
SENSITIVE: [:description, :environment_variables]
|
|
338
361
|
end
|
|
@@ -384,6 +407,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
384
407
|
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
|
385
408
|
attr_accessor recording: Types::RecordingConfig
|
|
386
409
|
attr_accessor browser_signing: Types::BrowserSigningConfigInput
|
|
410
|
+
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
411
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
387
412
|
attr_accessor client_token: ::String
|
|
388
413
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
389
414
|
SENSITIVE: [:description]
|
|
@@ -402,6 +427,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
402
427
|
attr_accessor description: ::String
|
|
403
428
|
attr_accessor execution_role_arn: ::String
|
|
404
429
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
430
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
405
431
|
attr_accessor client_token: ::String
|
|
406
432
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
407
433
|
SENSITIVE: [:description]
|
|
@@ -1147,6 +1173,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1147
1173
|
end
|
|
1148
1174
|
end
|
|
1149
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
|
+
|
|
1150
1187
|
class Filter
|
|
1151
1188
|
attr_accessor key: ::String
|
|
1152
1189
|
attr_accessor operator: ("Equals" | "NotEquals" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Contains" | "NotContains")
|
|
@@ -1276,6 +1313,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1276
1313
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
1277
1314
|
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
|
1278
1315
|
attr_accessor metadata_configuration: Types::RuntimeMetadataConfiguration
|
|
1316
|
+
attr_accessor filesystem_configurations: ::Array[Types::FilesystemConfiguration]
|
|
1279
1317
|
SENSITIVE: [:description, :environment_variables]
|
|
1280
1318
|
end
|
|
1281
1319
|
|
|
@@ -1326,6 +1364,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1326
1364
|
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
|
1327
1365
|
attr_accessor recording: Types::RecordingConfig
|
|
1328
1366
|
attr_accessor browser_signing: Types::BrowserSigningConfigOutput
|
|
1367
|
+
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
1368
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
1329
1369
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1330
1370
|
attr_accessor failure_reason: ::String
|
|
1331
1371
|
attr_accessor created_at: ::Time
|
|
@@ -1346,6 +1386,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1346
1386
|
attr_accessor execution_role_arn: ::String
|
|
1347
1387
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
1348
1388
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1389
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
1349
1390
|
attr_accessor failure_reason: ::String
|
|
1350
1391
|
attr_accessor created_at: ::Time
|
|
1351
1392
|
attr_accessor last_updated_at: ::Time
|
|
@@ -1734,6 +1775,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1734
1775
|
class ListBrowserProfilesRequest
|
|
1735
1776
|
attr_accessor max_results: ::Integer
|
|
1736
1777
|
attr_accessor next_token: ::String
|
|
1778
|
+
attr_accessor name: ::String
|
|
1737
1779
|
SENSITIVE: []
|
|
1738
1780
|
end
|
|
1739
1781
|
|
|
@@ -2419,6 +2461,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2419
2461
|
SENSITIVE: []
|
|
2420
2462
|
end
|
|
2421
2463
|
|
|
2464
|
+
class ResourceLocation
|
|
2465
|
+
attr_accessor s3: Types::S3Location
|
|
2466
|
+
attr_accessor unknown: untyped
|
|
2467
|
+
SENSITIVE: []
|
|
2468
|
+
|
|
2469
|
+
class S3 < ResourceLocation
|
|
2470
|
+
end
|
|
2471
|
+
class Unknown < ResourceLocation
|
|
2472
|
+
end
|
|
2473
|
+
end
|
|
2474
|
+
|
|
2422
2475
|
class ResourceNotFoundException
|
|
2423
2476
|
attr_accessor message: ::String
|
|
2424
2477
|
SENSITIVE: []
|
|
@@ -2480,6 +2533,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2480
2533
|
SENSITIVE: []
|
|
2481
2534
|
end
|
|
2482
2535
|
|
|
2536
|
+
class SecretsManagerLocation
|
|
2537
|
+
attr_accessor secret_arn: ::String
|
|
2538
|
+
SENSITIVE: []
|
|
2539
|
+
end
|
|
2540
|
+
|
|
2483
2541
|
class SelfManagedConfiguration
|
|
2484
2542
|
attr_accessor trigger_conditions: ::Array[Types::TriggerCondition]
|
|
2485
2543
|
attr_accessor invocation_configuration: Types::InvocationConfiguration
|
|
@@ -2547,6 +2605,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2547
2605
|
SENSITIVE: []
|
|
2548
2606
|
end
|
|
2549
2607
|
|
|
2608
|
+
class SessionStorageConfiguration
|
|
2609
|
+
attr_accessor mount_path: ::String
|
|
2610
|
+
SENSITIVE: []
|
|
2611
|
+
end
|
|
2612
|
+
|
|
2550
2613
|
class SetTokenVaultCMKRequest
|
|
2551
2614
|
attr_accessor token_vault_id: ::String
|
|
2552
2615
|
attr_accessor kms_configuration: Types::KmsConfiguration
|
|
@@ -2818,6 +2881,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2818
2881
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
2819
2882
|
attr_accessor metadata_configuration: Types::RuntimeMetadataConfiguration
|
|
2820
2883
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
2884
|
+
attr_accessor filesystem_configurations: ::Array[Types::FilesystemConfiguration]
|
|
2821
2885
|
attr_accessor client_token: ::String
|
|
2822
2886
|
SENSITIVE: [:description, :environment_variables]
|
|
2823
2887
|
end
|