aws-sdk-bedrockagentcorecontrol 1.57.0 → 1.59.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 +65 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +32 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +134 -1
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +8 -0
- data/sig/params.rbs +15 -1
- data/sig/types.rbs +33 -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: 9a913aa5532331ed8794af0cf7d9154d34e6393e7f4b979e09a59c341a689b1a
|
|
4
|
+
data.tar.gz: af36f8bfdbbf44e8c02e848489ca6cf69f85e158af0a168327f330e9639d60bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77cd9e1a7a9909d76e7b6fb7acba91ab41ae85e46494c260baf1a4817a45c9e74d0e6b338a91aad984e56c01a3ba41f6b21360ec7e2ce4b41f94e7f80a3f92b7
|
|
7
|
+
data.tar.gz: 7677c03a3ccd9712ca87342338ba43116ba7f3405e472d47935e743695e7f685bf9a1fd0f7fb2997258fe5b749b6f5bbe74f9968233aabffcab04bb1488dcb18
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.59.0 (2026-07-23)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for the Bring Your Own Storage(BYOS) feature in AgentCore Browser and Code Interpreter. Enables mounting S3Files and EFS File Systems via Access points.
|
|
8
|
+
|
|
9
|
+
1.58.0 (2026-07-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for specifying a connector version on Gateway targets to pin the connector's tool schema. It also introduces web-search connector version 1.2.0, which adds agent-side domain filtering, published date range filtering, and admin-side domain allowlisting.
|
|
13
|
+
|
|
4
14
|
1.57.0 (2026-07-15)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.59.0
|
|
@@ -921,6 +921,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
921
921
|
# @option params [Array<Types::Certificate>] :certificates
|
|
922
922
|
# A list of certificates to install in the browser.
|
|
923
923
|
#
|
|
924
|
+
# @option params [Array<Types::ToolsFileSystemConfiguration>] :filesystem_configurations
|
|
925
|
+
# The file system configurations to mount into the browser. Use these
|
|
926
|
+
# configurations to mount your own Amazon Simple Storage Service (Amazon
|
|
927
|
+
# S3) Files or Amazon Elastic File System (Amazon EFS) access points.
|
|
928
|
+
# Your sessions can then access your data. If you don't specify this
|
|
929
|
+
# field, no file systems are mounted.
|
|
930
|
+
#
|
|
924
931
|
# @option params [String] :client_token
|
|
925
932
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
926
933
|
# completes no more than one time. If this token matches a previous
|
|
@@ -988,6 +995,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
988
995
|
# },
|
|
989
996
|
# },
|
|
990
997
|
# ],
|
|
998
|
+
# filesystem_configurations: [
|
|
999
|
+
# {
|
|
1000
|
+
# s3_files_configuration: {
|
|
1001
|
+
# access_point_arn: "S3FilesAccessPointArn", # required
|
|
1002
|
+
# mount_path: "MountPath", # required
|
|
1003
|
+
# file_system_arn: "S3FilesFileSystemArn", # required
|
|
1004
|
+
# },
|
|
1005
|
+
# efs_configuration: {
|
|
1006
|
+
# access_point_arn: "EfsAccessPointArn", # required
|
|
1007
|
+
# mount_path: "MountPath", # required
|
|
1008
|
+
# file_system_arn: "EfsFileSystemArn", # required
|
|
1009
|
+
# },
|
|
1010
|
+
# },
|
|
1011
|
+
# ],
|
|
991
1012
|
# client_token: "ClientToken",
|
|
992
1013
|
# tags: {
|
|
993
1014
|
# "TagKey" => "TagValue",
|
|
@@ -1092,6 +1113,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1092
1113
|
# @option params [Array<Types::Certificate>] :certificates
|
|
1093
1114
|
# A list of certificates to install in the code interpreter.
|
|
1094
1115
|
#
|
|
1116
|
+
# @option params [Array<Types::ToolsFileSystemConfiguration>] :filesystem_configurations
|
|
1117
|
+
# The file system configurations to mount into the code interpreter. Use
|
|
1118
|
+
# these configurations to mount your own Amazon Simple Storage Service
|
|
1119
|
+
# (Amazon S3) Files or Amazon Elastic File System (Amazon EFS) access
|
|
1120
|
+
# points. Your sessions can then access your data. If you don't specify
|
|
1121
|
+
# this field, no file systems are mounted.
|
|
1122
|
+
#
|
|
1095
1123
|
# @option params [String] :client_token
|
|
1096
1124
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1097
1125
|
# completes no more than one time. If this token matches a previous
|
|
@@ -1136,6 +1164,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1136
1164
|
# },
|
|
1137
1165
|
# },
|
|
1138
1166
|
# ],
|
|
1167
|
+
# filesystem_configurations: [
|
|
1168
|
+
# {
|
|
1169
|
+
# s3_files_configuration: {
|
|
1170
|
+
# access_point_arn: "S3FilesAccessPointArn", # required
|
|
1171
|
+
# mount_path: "MountPath", # required
|
|
1172
|
+
# file_system_arn: "S3FilesFileSystemArn", # required
|
|
1173
|
+
# },
|
|
1174
|
+
# efs_configuration: {
|
|
1175
|
+
# access_point_arn: "EfsAccessPointArn", # required
|
|
1176
|
+
# mount_path: "MountPath", # required
|
|
1177
|
+
# file_system_arn: "EfsFileSystemArn", # required
|
|
1178
|
+
# },
|
|
1179
|
+
# },
|
|
1180
|
+
# ],
|
|
1139
1181
|
# client_token: "ClientToken",
|
|
1140
1182
|
# tags: {
|
|
1141
1183
|
# "TagKey" => "TagValue",
|
|
@@ -2162,6 +2204,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2162
2204
|
# connector: {
|
|
2163
2205
|
# source: { # required
|
|
2164
2206
|
# connector_id: "ConnectorId", # required
|
|
2207
|
+
# version: "ConnectorVersion",
|
|
2165
2208
|
# },
|
|
2166
2209
|
# enabled: ["String"],
|
|
2167
2210
|
# configurations: [
|
|
@@ -2344,6 +2387,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2344
2387
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
2345
2388
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
2346
2389
|
# resp.target_configuration.mcp.connector.source.connector_id #=> String
|
|
2390
|
+
# resp.target_configuration.mcp.connector.source.version #=> String
|
|
2347
2391
|
# resp.target_configuration.mcp.connector.enabled #=> Array
|
|
2348
2392
|
# resp.target_configuration.mcp.connector.enabled[0] #=> String
|
|
2349
2393
|
# resp.target_configuration.mcp.connector.configurations #=> Array
|
|
@@ -6315,6 +6359,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6315
6359
|
# * {Types::GetBrowserResponse#browser_signing #browser_signing} => Types::BrowserSigningConfigOutput
|
|
6316
6360
|
# * {Types::GetBrowserResponse#enterprise_policies #enterprise_policies} => Array<Types::BrowserEnterprisePolicy>
|
|
6317
6361
|
# * {Types::GetBrowserResponse#certificates #certificates} => Array<Types::Certificate>
|
|
6362
|
+
# * {Types::GetBrowserResponse#filesystem_configurations #filesystem_configurations} => Array<Types::ToolsFileSystemConfiguration>
|
|
6318
6363
|
# * {Types::GetBrowserResponse#status #status} => String
|
|
6319
6364
|
# * {Types::GetBrowserResponse#failure_reason #failure_reason} => String
|
|
6320
6365
|
# * {Types::GetBrowserResponse#created_at #created_at} => Time
|
|
@@ -6351,6 +6396,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6351
6396
|
# resp.enterprise_policies[0].type #=> String, one of "MANAGED", "RECOMMENDED"
|
|
6352
6397
|
# resp.certificates #=> Array
|
|
6353
6398
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
6399
|
+
# resp.filesystem_configurations #=> Array
|
|
6400
|
+
# resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
|
|
6401
|
+
# resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
|
|
6402
|
+
# resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
|
|
6403
|
+
# resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
|
|
6404
|
+
# resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
|
|
6405
|
+
# resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
|
|
6354
6406
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
6355
6407
|
# resp.failure_reason #=> String
|
|
6356
6408
|
# resp.created_at #=> Time
|
|
@@ -6426,6 +6478,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6426
6478
|
# * {Types::GetCodeInterpreterResponse#network_configuration #network_configuration} => Types::CodeInterpreterNetworkConfiguration
|
|
6427
6479
|
# * {Types::GetCodeInterpreterResponse#status #status} => String
|
|
6428
6480
|
# * {Types::GetCodeInterpreterResponse#certificates #certificates} => Array<Types::Certificate>
|
|
6481
|
+
# * {Types::GetCodeInterpreterResponse#filesystem_configurations #filesystem_configurations} => Array<Types::ToolsFileSystemConfiguration>
|
|
6429
6482
|
# * {Types::GetCodeInterpreterResponse#failure_reason #failure_reason} => String
|
|
6430
6483
|
# * {Types::GetCodeInterpreterResponse#created_at #created_at} => Time
|
|
6431
6484
|
# * {Types::GetCodeInterpreterResponse#last_updated_at #last_updated_at} => Time
|
|
@@ -6452,6 +6505,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6452
6505
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
6453
6506
|
# resp.certificates #=> Array
|
|
6454
6507
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
6508
|
+
# resp.filesystem_configurations #=> Array
|
|
6509
|
+
# resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
|
|
6510
|
+
# resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
|
|
6511
|
+
# resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
|
|
6512
|
+
# resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
|
|
6513
|
+
# resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
|
|
6514
|
+
# resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
|
|
6455
6515
|
# resp.failure_reason #=> String
|
|
6456
6516
|
# resp.created_at #=> Time
|
|
6457
6517
|
# resp.last_updated_at #=> Time
|
|
@@ -7008,6 +7068,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7008
7068
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
7009
7069
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
7010
7070
|
# resp.target_configuration.mcp.connector.source.connector_id #=> String
|
|
7071
|
+
# resp.target_configuration.mcp.connector.source.version #=> String
|
|
7011
7072
|
# resp.target_configuration.mcp.connector.enabled #=> Array
|
|
7012
7073
|
# resp.target_configuration.mcp.connector.enabled[0] #=> String
|
|
7013
7074
|
# resp.target_configuration.mcp.connector.configurations #=> Array
|
|
@@ -10707,6 +10768,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
10707
10768
|
# resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
10708
10769
|
# resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
10709
10770
|
# resp.targets[0].target_configuration.mcp.connector.source.connector_id #=> String
|
|
10771
|
+
# resp.targets[0].target_configuration.mcp.connector.source.version #=> String
|
|
10710
10772
|
# resp.targets[0].target_configuration.mcp.connector.enabled #=> Array
|
|
10711
10773
|
# resp.targets[0].target_configuration.mcp.connector.enabled[0] #=> String
|
|
10712
10774
|
# resp.targets[0].target_configuration.mcp.connector.configurations #=> Array
|
|
@@ -12121,6 +12183,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12121
12183
|
# connector: {
|
|
12122
12184
|
# source: { # required
|
|
12123
12185
|
# connector_id: "ConnectorId", # required
|
|
12186
|
+
# version: "ConnectorVersion",
|
|
12124
12187
|
# },
|
|
12125
12188
|
# enabled: ["String"],
|
|
12126
12189
|
# configurations: [
|
|
@@ -12303,6 +12366,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12303
12366
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
12304
12367
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
12305
12368
|
# resp.target_configuration.mcp.connector.source.connector_id #=> String
|
|
12369
|
+
# resp.target_configuration.mcp.connector.source.version #=> String
|
|
12306
12370
|
# resp.target_configuration.mcp.connector.enabled #=> Array
|
|
12307
12371
|
# resp.target_configuration.mcp.connector.enabled[0] #=> String
|
|
12308
12372
|
# resp.target_configuration.mcp.connector.configurations #=> Array
|
|
@@ -15015,7 +15079,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
15015
15079
|
tracer: tracer
|
|
15016
15080
|
)
|
|
15017
15081
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
15018
|
-
context[:gem_version] = '1.
|
|
15082
|
+
context[:gem_version] = '1.59.0'
|
|
15019
15083
|
Seahorse::Client::Request.new(handlers, context)
|
|
15020
15084
|
end
|
|
15021
15085
|
|
|
@@ -166,6 +166,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
166
166
|
ConnectorParameterOverrides = Shapes::ListShape.new(name: 'ConnectorParameterOverrides')
|
|
167
167
|
ConnectorSource = Shapes::StructureShape.new(name: 'ConnectorSource')
|
|
168
168
|
ConnectorTargetConfiguration = Shapes::StructureShape.new(name: 'ConnectorTargetConfiguration')
|
|
169
|
+
ConnectorVersion = Shapes::StringShape.new(name: 'ConnectorVersion')
|
|
169
170
|
ConsolidationConfiguration = Shapes::UnionShape.new(name: 'ConsolidationConfiguration')
|
|
170
171
|
ContainerConfiguration = Shapes::StructureShape.new(name: 'ContainerConfiguration')
|
|
171
172
|
Content = Shapes::UnionShape.new(name: 'Content')
|
|
@@ -349,6 +350,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
349
350
|
DraftStatus = Shapes::StringShape.new(name: 'DraftStatus')
|
|
350
351
|
EfsAccessPointArn = Shapes::StringShape.new(name: 'EfsAccessPointArn')
|
|
351
352
|
EfsAccessPointConfiguration = Shapes::StructureShape.new(name: 'EfsAccessPointConfiguration')
|
|
353
|
+
EfsConfiguration = Shapes::StructureShape.new(name: 'EfsConfiguration')
|
|
354
|
+
EfsFileSystemArn = Shapes::StringShape.new(name: 'EfsFileSystemArn')
|
|
352
355
|
EnabledConnectors = Shapes::ListShape.new(name: 'EnabledConnectors')
|
|
353
356
|
EncryptionFailure = Shapes::StructureShape.new(name: 'EncryptionFailure')
|
|
354
357
|
EndpointIpAddressType = Shapes::StringShape.new(name: 'EndpointIpAddressType')
|
|
@@ -969,6 +972,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
969
972
|
S3Configuration = Shapes::StructureShape.new(name: 'S3Configuration')
|
|
970
973
|
S3FilesAccessPointArn = Shapes::StringShape.new(name: 'S3FilesAccessPointArn')
|
|
971
974
|
S3FilesAccessPointConfiguration = Shapes::StructureShape.new(name: 'S3FilesAccessPointConfiguration')
|
|
975
|
+
S3FilesConfiguration = Shapes::StructureShape.new(name: 'S3FilesConfiguration')
|
|
976
|
+
S3FilesFileSystemArn = Shapes::StringShape.new(name: 'S3FilesFileSystemArn')
|
|
972
977
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
973
978
|
S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
|
|
974
979
|
S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
|
|
@@ -1112,6 +1117,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1112
1117
|
ToolSchema = Shapes::UnionShape.new(name: 'ToolSchema')
|
|
1113
1118
|
ToolSecretArn = Shapes::StringShape.new(name: 'ToolSecretArn')
|
|
1114
1119
|
ToolsDefinition = Shapes::StructureShape.new(name: 'ToolsDefinition')
|
|
1120
|
+
ToolsFileSystemConfiguration = Shapes::UnionShape.new(name: 'ToolsFileSystemConfiguration')
|
|
1121
|
+
ToolsFileSystemConfigurations = Shapes::ListShape.new(name: 'ToolsFileSystemConfigurations')
|
|
1115
1122
|
TopK = Shapes::IntegerShape.new(name: 'TopK')
|
|
1116
1123
|
TopP = Shapes::FloatShape.new(name: 'TopP')
|
|
1117
1124
|
TrafficSplitEntries = Shapes::ListShape.new(name: 'TrafficSplitEntries')
|
|
@@ -1613,6 +1620,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1613
1620
|
ConnectorParameterOverrides.member = Shapes::ShapeRef.new(shape: ConnectorParameterOverride)
|
|
1614
1621
|
|
|
1615
1622
|
ConnectorSource.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "connectorId"))
|
|
1623
|
+
ConnectorSource.add_member(:version, Shapes::ShapeRef.new(shape: ConnectorVersion, location_name: "version"))
|
|
1616
1624
|
ConnectorSource.struct_class = Types::ConnectorSource
|
|
1617
1625
|
|
|
1618
1626
|
ConnectorTargetConfiguration.add_member(:source, Shapes::ShapeRef.new(shape: ConnectorSource, required: true, location_name: "source"))
|
|
@@ -1713,6 +1721,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1713
1721
|
CreateBrowserRequest.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigInput, location_name: "browserSigning"))
|
|
1714
1722
|
CreateBrowserRequest.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
1715
1723
|
CreateBrowserRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1724
|
+
CreateBrowserRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
1716
1725
|
CreateBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1717
1726
|
CreateBrowserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
1718
1727
|
CreateBrowserRequest.struct_class = Types::CreateBrowserRequest
|
|
@@ -1728,6 +1737,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1728
1737
|
CreateCodeInterpreterRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
1729
1738
|
CreateCodeInterpreterRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1730
1739
|
CreateCodeInterpreterRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1740
|
+
CreateCodeInterpreterRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
1731
1741
|
CreateCodeInterpreterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1732
1742
|
CreateCodeInterpreterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
1733
1743
|
CreateCodeInterpreterRequest.struct_class = Types::CreateCodeInterpreterRequest
|
|
@@ -2530,6 +2540,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2530
2540
|
EfsAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2531
2541
|
EfsAccessPointConfiguration.struct_class = Types::EfsAccessPointConfiguration
|
|
2532
2542
|
|
|
2543
|
+
EfsConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: EfsAccessPointArn, required: true, location_name: "accessPointArn"))
|
|
2544
|
+
EfsConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2545
|
+
EfsConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: EfsFileSystemArn, required: true, location_name: "fileSystemArn"))
|
|
2546
|
+
EfsConfiguration.struct_class = Types::EfsConfiguration
|
|
2547
|
+
|
|
2533
2548
|
EnabledConnectors.member = Shapes::ShapeRef.new(shape: String)
|
|
2534
2549
|
|
|
2535
2550
|
EncryptionFailure.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
@@ -2829,6 +2844,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2829
2844
|
GetBrowserResponse.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigOutput, location_name: "browserSigning"))
|
|
2830
2845
|
GetBrowserResponse.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
2831
2846
|
GetBrowserResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
2847
|
+
GetBrowserResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
2832
2848
|
GetBrowserResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserStatus, required: true, location_name: "status"))
|
|
2833
2849
|
GetBrowserResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
2834
2850
|
GetBrowserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
@@ -2846,6 +2862,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2846
2862
|
GetCodeInterpreterResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
2847
2863
|
GetCodeInterpreterResponse.add_member(:status, Shapes::ShapeRef.new(shape: CodeInterpreterStatus, required: true, location_name: "status"))
|
|
2848
2864
|
GetCodeInterpreterResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
2865
|
+
GetCodeInterpreterResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
2849
2866
|
GetCodeInterpreterResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
2850
2867
|
GetCodeInterpreterResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2851
2868
|
GetCodeInterpreterResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
|
@@ -4702,6 +4719,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4702
4719
|
S3FilesAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
4703
4720
|
S3FilesAccessPointConfiguration.struct_class = Types::S3FilesAccessPointConfiguration
|
|
4704
4721
|
|
|
4722
|
+
S3FilesConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3FilesAccessPointArn, required: true, location_name: "accessPointArn"))
|
|
4723
|
+
S3FilesConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
4724
|
+
S3FilesConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: S3FilesFileSystemArn, required: true, location_name: "fileSystemArn"))
|
|
4725
|
+
S3FilesConfiguration.struct_class = Types::S3FilesConfiguration
|
|
4726
|
+
|
|
4705
4727
|
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
|
|
4706
4728
|
S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
|
|
4707
4729
|
S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
|
|
@@ -5056,6 +5078,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
5056
5078
|
ToolsDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
5057
5079
|
ToolsDefinition.struct_class = Types::ToolsDefinition
|
|
5058
5080
|
|
|
5081
|
+
ToolsFileSystemConfiguration.add_member(:s3_files_configuration, Shapes::ShapeRef.new(shape: S3FilesConfiguration, location_name: "s3FilesConfiguration"))
|
|
5082
|
+
ToolsFileSystemConfiguration.add_member(:efs_configuration, Shapes::ShapeRef.new(shape: EfsConfiguration, location_name: "efsConfiguration"))
|
|
5083
|
+
ToolsFileSystemConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
5084
|
+
ToolsFileSystemConfiguration.add_member_subclass(:s3_files_configuration, Types::ToolsFileSystemConfiguration::S3FilesConfiguration)
|
|
5085
|
+
ToolsFileSystemConfiguration.add_member_subclass(:efs_configuration, Types::ToolsFileSystemConfiguration::EfsConfiguration)
|
|
5086
|
+
ToolsFileSystemConfiguration.add_member_subclass(:unknown, Types::ToolsFileSystemConfiguration::Unknown)
|
|
5087
|
+
ToolsFileSystemConfiguration.struct_class = Types::ToolsFileSystemConfiguration
|
|
5088
|
+
|
|
5089
|
+
ToolsFileSystemConfigurations.member = Shapes::ShapeRef.new(shape: ToolsFileSystemConfiguration)
|
|
5090
|
+
|
|
5059
5091
|
TrafficSplitEntries.member = Shapes::ShapeRef.new(shape: TrafficSplitEntry)
|
|
5060
5092
|
|
|
5061
5093
|
TrafficSplitEntry.add_member(:name, Shapes::ShapeRef.new(shape: TrafficSplitEntryNameString, required: true, location_name: "name"))
|
|
@@ -1596,10 +1596,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1596
1596
|
# `bedrock-knowledge-bases`).
|
|
1597
1597
|
# @return [String]
|
|
1598
1598
|
#
|
|
1599
|
+
# @!attribute [rw] version
|
|
1600
|
+
# The version of the connector to use (for example, `1.1.0`). If you
|
|
1601
|
+
# don't specify a version, the service uses the latest available
|
|
1602
|
+
# version.
|
|
1603
|
+
# @return [String]
|
|
1604
|
+
#
|
|
1599
1605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConnectorSource AWS API Documentation
|
|
1600
1606
|
#
|
|
1601
1607
|
class ConnectorSource < Struct.new(
|
|
1602
|
-
:connector_id
|
|
1608
|
+
:connector_id,
|
|
1609
|
+
:version)
|
|
1603
1610
|
SENSITIVE = []
|
|
1604
1611
|
include Aws::Structure
|
|
1605
1612
|
end
|
|
@@ -2099,6 +2106,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2099
2106
|
# A list of certificates to install in the browser.
|
|
2100
2107
|
# @return [Array<Types::Certificate>]
|
|
2101
2108
|
#
|
|
2109
|
+
# @!attribute [rw] filesystem_configurations
|
|
2110
|
+
# The file system configurations to mount into the browser. Use these
|
|
2111
|
+
# configurations to mount your own Amazon Simple Storage Service
|
|
2112
|
+
# (Amazon S3) Files or Amazon Elastic File System (Amazon EFS) access
|
|
2113
|
+
# points. Your sessions can then access your data. If you don't
|
|
2114
|
+
# specify this field, no file systems are mounted.
|
|
2115
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
2116
|
+
#
|
|
2102
2117
|
# @!attribute [rw] client_token
|
|
2103
2118
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
2104
2119
|
# completes no more than one time. If this token matches a previous
|
|
@@ -2126,6 +2141,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2126
2141
|
:browser_signing,
|
|
2127
2142
|
:enterprise_policies,
|
|
2128
2143
|
:certificates,
|
|
2144
|
+
:filesystem_configurations,
|
|
2129
2145
|
:client_token,
|
|
2130
2146
|
:tags)
|
|
2131
2147
|
SENSITIVE = [:description]
|
|
@@ -2183,6 +2199,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2183
2199
|
# A list of certificates to install in the code interpreter.
|
|
2184
2200
|
# @return [Array<Types::Certificate>]
|
|
2185
2201
|
#
|
|
2202
|
+
# @!attribute [rw] filesystem_configurations
|
|
2203
|
+
# The file system configurations to mount into the code interpreter.
|
|
2204
|
+
# Use these configurations to mount your own Amazon Simple Storage
|
|
2205
|
+
# Service (Amazon S3) Files or Amazon Elastic File System (Amazon EFS)
|
|
2206
|
+
# access points. Your sessions can then access your data. If you
|
|
2207
|
+
# don't specify this field, no file systems are mounted.
|
|
2208
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
2209
|
+
#
|
|
2186
2210
|
# @!attribute [rw] client_token
|
|
2187
2211
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
2188
2212
|
# completes no more than one time. If this token matches a previous
|
|
@@ -2207,6 +2231,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2207
2231
|
:execution_role_arn,
|
|
2208
2232
|
:network_configuration,
|
|
2209
2233
|
:certificates,
|
|
2234
|
+
:filesystem_configurations,
|
|
2210
2235
|
:client_token,
|
|
2211
2236
|
:tags)
|
|
2212
2237
|
SENSITIVE = [:description]
|
|
@@ -6278,6 +6303,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
6278
6303
|
include Aws::Structure
|
|
6279
6304
|
end
|
|
6280
6305
|
|
|
6306
|
+
# The configuration for mounting an Amazon Elastic File System (Amazon
|
|
6307
|
+
# EFS) access point that you own into a session.
|
|
6308
|
+
#
|
|
6309
|
+
# @!attribute [rw] access_point_arn
|
|
6310
|
+
# The Amazon Resource Name (ARN) of the Amazon Elastic File System
|
|
6311
|
+
# (Amazon EFS) access point to mount.
|
|
6312
|
+
# @return [String]
|
|
6313
|
+
#
|
|
6314
|
+
# @!attribute [rw] mount_path
|
|
6315
|
+
# The absolute path within the session at which the access point is
|
|
6316
|
+
# mounted, for example `/mnt/efs`. Each mount path must be unique
|
|
6317
|
+
# across all file system configurations in the session.
|
|
6318
|
+
# @return [String]
|
|
6319
|
+
#
|
|
6320
|
+
# @!attribute [rw] file_system_arn
|
|
6321
|
+
# The Amazon Resource Name (ARN) of the Amazon Elastic File System
|
|
6322
|
+
# (Amazon EFS) file system that owns the access point.
|
|
6323
|
+
# @return [String]
|
|
6324
|
+
#
|
|
6325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EfsConfiguration AWS API Documentation
|
|
6326
|
+
#
|
|
6327
|
+
class EfsConfiguration < Struct.new(
|
|
6328
|
+
:access_point_arn,
|
|
6329
|
+
:mount_path,
|
|
6330
|
+
:file_system_arn)
|
|
6331
|
+
SENSITIVE = []
|
|
6332
|
+
include Aws::Structure
|
|
6333
|
+
end
|
|
6334
|
+
|
|
6281
6335
|
# Exception thrown when encryption of a secret fails.
|
|
6282
6336
|
#
|
|
6283
6337
|
# @!attribute [rw] message
|
|
@@ -7630,6 +7684,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7630
7684
|
# The list of certificates configured for the browser.
|
|
7631
7685
|
# @return [Array<Types::Certificate>]
|
|
7632
7686
|
#
|
|
7687
|
+
# @!attribute [rw] filesystem_configurations
|
|
7688
|
+
# The file system configurations mounted into the browser. Each entry
|
|
7689
|
+
# describes an access point and its mount path.
|
|
7690
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
7691
|
+
#
|
|
7633
7692
|
# @!attribute [rw] status
|
|
7634
7693
|
# The current status of the browser.
|
|
7635
7694
|
# @return [String]
|
|
@@ -7659,6 +7718,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7659
7718
|
:browser_signing,
|
|
7660
7719
|
:enterprise_policies,
|
|
7661
7720
|
:certificates,
|
|
7721
|
+
:filesystem_configurations,
|
|
7662
7722
|
:status,
|
|
7663
7723
|
:failure_reason,
|
|
7664
7724
|
:created_at,
|
|
@@ -7712,6 +7772,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7712
7772
|
# The list of certificates configured for the code interpreter.
|
|
7713
7773
|
# @return [Array<Types::Certificate>]
|
|
7714
7774
|
#
|
|
7775
|
+
# @!attribute [rw] filesystem_configurations
|
|
7776
|
+
# The file system configurations mounted into the code interpreter.
|
|
7777
|
+
# Each entry describes an access point and its mount path.
|
|
7778
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
7779
|
+
#
|
|
7715
7780
|
# @!attribute [rw] failure_reason
|
|
7716
7781
|
# The reason for failure if the code interpreter is in a failed state.
|
|
7717
7782
|
# @return [String]
|
|
@@ -7735,6 +7800,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7735
7800
|
:network_configuration,
|
|
7736
7801
|
:status,
|
|
7737
7802
|
:certificates,
|
|
7803
|
+
:filesystem_configurations,
|
|
7738
7804
|
:failure_reason,
|
|
7739
7805
|
:created_at,
|
|
7740
7806
|
:last_updated_at)
|
|
@@ -16342,6 +16408,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
16342
16408
|
include Aws::Structure
|
|
16343
16409
|
end
|
|
16344
16410
|
|
|
16411
|
+
# The configuration for mounting an Amazon Simple Storage Service
|
|
16412
|
+
# (Amazon S3) Files access point that you own into a session.
|
|
16413
|
+
#
|
|
16414
|
+
# @!attribute [rw] access_point_arn
|
|
16415
|
+
# The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
|
|
16416
|
+
# (Amazon S3) Files access point to mount.
|
|
16417
|
+
# @return [String]
|
|
16418
|
+
#
|
|
16419
|
+
# @!attribute [rw] mount_path
|
|
16420
|
+
# The absolute path within the session at which the access point is
|
|
16421
|
+
# mounted, for example `/mnt/s3data`. Each mount path must be unique
|
|
16422
|
+
# across all file system configurations in the session.
|
|
16423
|
+
# @return [String]
|
|
16424
|
+
#
|
|
16425
|
+
# @!attribute [rw] file_system_arn
|
|
16426
|
+
# The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
|
|
16427
|
+
# (Amazon S3) Files file system that owns the access point.
|
|
16428
|
+
# @return [String]
|
|
16429
|
+
#
|
|
16430
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3FilesConfiguration AWS API Documentation
|
|
16431
|
+
#
|
|
16432
|
+
class S3FilesConfiguration < Struct.new(
|
|
16433
|
+
:access_point_arn,
|
|
16434
|
+
:mount_path,
|
|
16435
|
+
:file_system_arn)
|
|
16436
|
+
SENSITIVE = []
|
|
16437
|
+
include Aws::Structure
|
|
16438
|
+
end
|
|
16439
|
+
|
|
16345
16440
|
# The Amazon S3 location for storing data. This structure defines where
|
|
16346
16441
|
# in Amazon S3 data is stored.
|
|
16347
16442
|
#
|
|
@@ -17943,6 +18038,44 @@ module Aws::BedrockAgentCoreControl
|
|
|
17943
18038
|
include Aws::Structure
|
|
17944
18039
|
end
|
|
17945
18040
|
|
|
18041
|
+
# Specifies a file system to mount into the session by providing exactly
|
|
18042
|
+
# one of the following:
|
|
18043
|
+
#
|
|
18044
|
+
# * `s3FilesConfiguration` - Mounts an Amazon Simple Storage Service
|
|
18045
|
+
# (Amazon S3) Files access point.
|
|
18046
|
+
#
|
|
18047
|
+
# * `efsConfiguration` - Mounts an Amazon Elastic File System (Amazon
|
|
18048
|
+
# EFS) access point.
|
|
18049
|
+
#
|
|
18050
|
+
# @note ToolsFileSystemConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
18051
|
+
#
|
|
18052
|
+
# @note ToolsFileSystemConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ToolsFileSystemConfiguration corresponding to the set member.
|
|
18053
|
+
#
|
|
18054
|
+
# @!attribute [rw] s3_files_configuration
|
|
18055
|
+
# The configuration for mounting your own Amazon Simple Storage
|
|
18056
|
+
# Service (Amazon S3) Files access point into the session.
|
|
18057
|
+
# @return [Types::S3FilesConfiguration]
|
|
18058
|
+
#
|
|
18059
|
+
# @!attribute [rw] efs_configuration
|
|
18060
|
+
# The configuration for mounting your own Amazon Elastic File System
|
|
18061
|
+
# (Amazon EFS) access point into the session.
|
|
18062
|
+
# @return [Types::EfsConfiguration]
|
|
18063
|
+
#
|
|
18064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ToolsFileSystemConfiguration AWS API Documentation
|
|
18065
|
+
#
|
|
18066
|
+
class ToolsFileSystemConfiguration < Struct.new(
|
|
18067
|
+
:s3_files_configuration,
|
|
18068
|
+
:efs_configuration,
|
|
18069
|
+
:unknown)
|
|
18070
|
+
SENSITIVE = []
|
|
18071
|
+
include Aws::Structure
|
|
18072
|
+
include Aws::Structure::Union
|
|
18073
|
+
|
|
18074
|
+
class S3FilesConfiguration < ToolsFileSystemConfiguration; end
|
|
18075
|
+
class EfsConfiguration < ToolsFileSystemConfiguration; end
|
|
18076
|
+
class Unknown < ToolsFileSystemConfiguration; end
|
|
18077
|
+
end
|
|
18078
|
+
|
|
17946
18079
|
# An entry in a traffic split configuration, defining a named variant
|
|
17947
18080
|
# with a weight and configuration bundle reference.
|
|
17948
18081
|
#
|
data/sig/client.rbs
CHANGED
|
@@ -225,6 +225,9 @@ module Aws
|
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
227
|
],
|
|
228
|
+
?filesystem_configurations: Array[
|
|
229
|
+
Params::tools_file_system_configuration
|
|
230
|
+
],
|
|
228
231
|
?client_token: ::String,
|
|
229
232
|
?tags: Hash[::String, ::String]
|
|
230
233
|
) -> _CreateBrowserResponseSuccess
|
|
@@ -275,6 +278,9 @@ module Aws
|
|
|
275
278
|
}
|
|
276
279
|
}
|
|
277
280
|
],
|
|
281
|
+
?filesystem_configurations: Array[
|
|
282
|
+
Params::tools_file_system_configuration
|
|
283
|
+
],
|
|
278
284
|
?client_token: ::String,
|
|
279
285
|
?tags: Hash[::String, ::String]
|
|
280
286
|
) -> _CreateCodeInterpreterResponseSuccess
|
|
@@ -1220,6 +1226,7 @@ module Aws
|
|
|
1220
1226
|
def browser_signing: () -> Types::BrowserSigningConfigOutput
|
|
1221
1227
|
def enterprise_policies: () -> ::Array[Types::BrowserEnterprisePolicy]
|
|
1222
1228
|
def certificates: () -> ::Array[Types::Certificate]
|
|
1229
|
+
def filesystem_configurations: () -> ::Array[Types::ToolsFileSystemConfiguration]
|
|
1223
1230
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1224
1231
|
def failure_reason: () -> ::String
|
|
1225
1232
|
def created_at: () -> ::Time
|
|
@@ -1260,6 +1267,7 @@ module Aws
|
|
|
1260
1267
|
def network_configuration: () -> Types::CodeInterpreterNetworkConfiguration
|
|
1261
1268
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1262
1269
|
def certificates: () -> ::Array[Types::Certificate]
|
|
1270
|
+
def filesystem_configurations: () -> ::Array[Types::ToolsFileSystemConfiguration]
|
|
1263
1271
|
def failure_reason: () -> ::String
|
|
1264
1272
|
def created_at: () -> ::Time
|
|
1265
1273
|
def last_updated_at: () -> ::Time
|
data/sig/params.rbs
CHANGED
|
@@ -122,6 +122,19 @@ module Aws
|
|
|
122
122
|
}?
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
+
type tools_file_system_configuration = {
|
|
126
|
+
s3_files_configuration: {
|
|
127
|
+
access_point_arn: ::String,
|
|
128
|
+
mount_path: ::String,
|
|
129
|
+
file_system_arn: ::String
|
|
130
|
+
}?,
|
|
131
|
+
efs_configuration: {
|
|
132
|
+
access_point_arn: ::String,
|
|
133
|
+
mount_path: ::String,
|
|
134
|
+
file_system_arn: ::String
|
|
135
|
+
}?
|
|
136
|
+
}
|
|
137
|
+
|
|
125
138
|
type rating_scale = {
|
|
126
139
|
numerical: Array[
|
|
127
140
|
{
|
|
@@ -327,7 +340,8 @@ module Aws
|
|
|
327
340
|
|
|
328
341
|
type connector_target_configuration = {
|
|
329
342
|
source: {
|
|
330
|
-
connector_id: ::String
|
|
343
|
+
connector_id: ::String,
|
|
344
|
+
version: ::String?
|
|
331
345
|
},
|
|
332
346
|
enabled: Array[::String]?,
|
|
333
347
|
configurations: Array[
|
data/sig/types.rbs
CHANGED
|
@@ -473,6 +473,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
473
473
|
|
|
474
474
|
class ConnectorSource
|
|
475
475
|
attr_accessor connector_id: ::String
|
|
476
|
+
attr_accessor version: ::String
|
|
476
477
|
SENSITIVE: []
|
|
477
478
|
end
|
|
478
479
|
|
|
@@ -607,6 +608,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
607
608
|
attr_accessor browser_signing: Types::BrowserSigningConfigInput
|
|
608
609
|
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
609
610
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
611
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
610
612
|
attr_accessor client_token: ::String
|
|
611
613
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
612
614
|
SENSITIVE: [:description]
|
|
@@ -626,6 +628,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
626
628
|
attr_accessor execution_role_arn: ::String
|
|
627
629
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
628
630
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
631
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
629
632
|
attr_accessor client_token: ::String
|
|
630
633
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
631
634
|
SENSITIVE: [:description]
|
|
@@ -1695,6 +1698,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1695
1698
|
SENSITIVE: []
|
|
1696
1699
|
end
|
|
1697
1700
|
|
|
1701
|
+
class EfsConfiguration
|
|
1702
|
+
attr_accessor access_point_arn: ::String
|
|
1703
|
+
attr_accessor mount_path: ::String
|
|
1704
|
+
attr_accessor file_system_arn: ::String
|
|
1705
|
+
SENSITIVE: []
|
|
1706
|
+
end
|
|
1707
|
+
|
|
1698
1708
|
class EncryptionFailure
|
|
1699
1709
|
attr_accessor message: ::String
|
|
1700
1710
|
SENSITIVE: []
|
|
@@ -2071,6 +2081,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2071
2081
|
attr_accessor browser_signing: Types::BrowserSigningConfigOutput
|
|
2072
2082
|
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
2073
2083
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2084
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2074
2085
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
2075
2086
|
attr_accessor failure_reason: ::String
|
|
2076
2087
|
attr_accessor created_at: ::Time
|
|
@@ -2092,6 +2103,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2092
2103
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
2093
2104
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
2094
2105
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2106
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2095
2107
|
attr_accessor failure_reason: ::String
|
|
2096
2108
|
attr_accessor created_at: ::Time
|
|
2097
2109
|
attr_accessor last_updated_at: ::Time
|
|
@@ -4564,6 +4576,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4564
4576
|
SENSITIVE: []
|
|
4565
4577
|
end
|
|
4566
4578
|
|
|
4579
|
+
class S3FilesConfiguration
|
|
4580
|
+
attr_accessor access_point_arn: ::String
|
|
4581
|
+
attr_accessor mount_path: ::String
|
|
4582
|
+
attr_accessor file_system_arn: ::String
|
|
4583
|
+
SENSITIVE: []
|
|
4584
|
+
end
|
|
4585
|
+
|
|
4567
4586
|
class S3Location
|
|
4568
4587
|
attr_accessor bucket: ::String
|
|
4569
4588
|
attr_accessor prefix: ::String
|
|
@@ -5034,6 +5053,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
5034
5053
|
SENSITIVE: []
|
|
5035
5054
|
end
|
|
5036
5055
|
|
|
5056
|
+
class ToolsFileSystemConfiguration
|
|
5057
|
+
attr_accessor s3_files_configuration: Types::S3FilesConfiguration
|
|
5058
|
+
attr_accessor efs_configuration: Types::EfsConfiguration
|
|
5059
|
+
attr_accessor unknown: untyped
|
|
5060
|
+
SENSITIVE: []
|
|
5061
|
+
|
|
5062
|
+
class S3FilesConfiguration < ToolsFileSystemConfiguration
|
|
5063
|
+
end
|
|
5064
|
+
class EfsConfiguration < ToolsFileSystemConfiguration
|
|
5065
|
+
end
|
|
5066
|
+
class Unknown < ToolsFileSystemConfiguration
|
|
5067
|
+
end
|
|
5068
|
+
end
|
|
5069
|
+
|
|
5037
5070
|
class TrafficSplitEntry
|
|
5038
5071
|
attr_accessor name: ::String
|
|
5039
5072
|
attr_accessor weight: ::Integer
|