aws-sdk-bedrockagentcore 1.44.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcore/client.rb +60 -1
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +33 -0
- data/lib/aws-sdk-bedrockagentcore/types.rb +129 -1
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +8 -0
- data/sig/params.rbs +13 -0
- data/sig/types.rbs +32 -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: 1303073d1beff6d105db695eae9eb469c83c5733de521ac0066132da9d19797a
|
|
4
|
+
data.tar.gz: 4bb05ad2f741d7e94a3203f817527e62067b41aaf2bc8109140facf4ed53fdf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0e230bfc49c5dca70d23cf5f2cdc3d42ead410d0e0a1efaed9062f4d2d629f348752b64891044a42c0a10365842ca58310e34e0275519c5200c27e437410b4c
|
|
7
|
+
data.tar.gz: 532e7cfb2dbc4db4c5cb3fe4be503672e119f1fdeafb3f64ac38af2d3ac4e405bc543383f339cf5d6a38106d2c3531dfebb586d48d7d6e29918903d7dead2a27
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.45.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
|
+
|
|
4
9
|
1.44.0 (2026-07-20)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.45.0
|
|
@@ -1809,6 +1809,7 @@ module Aws::BedrockAgentCore
|
|
|
1809
1809
|
# * {Types::GetBrowserSessionResponse#streams #streams} => Types::BrowserSessionStream
|
|
1810
1810
|
# * {Types::GetBrowserSessionResponse#proxy_configuration #proxy_configuration} => Types::ProxyConfiguration
|
|
1811
1811
|
# * {Types::GetBrowserSessionResponse#certificates #certificates} => Array<Types::Certificate>
|
|
1812
|
+
# * {Types::GetBrowserSessionResponse#filesystem_configurations #filesystem_configurations} => Array<Types::ToolsFileSystemConfiguration>
|
|
1812
1813
|
# * {Types::GetBrowserSessionResponse#session_replay_artifact #session_replay_artifact} => String
|
|
1813
1814
|
# * {Types::GetBrowserSessionResponse#last_updated_at #last_updated_at} => Time
|
|
1814
1815
|
#
|
|
@@ -1852,6 +1853,13 @@ module Aws::BedrockAgentCore
|
|
|
1852
1853
|
# resp.proxy_configuration.bypass.domain_patterns[0] #=> String
|
|
1853
1854
|
# resp.certificates #=> Array
|
|
1854
1855
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
1856
|
+
# resp.filesystem_configurations #=> Array
|
|
1857
|
+
# resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
|
|
1858
|
+
# resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
|
|
1859
|
+
# resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
|
|
1860
|
+
# resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
|
|
1861
|
+
# resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
|
|
1862
|
+
# resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
|
|
1855
1863
|
# resp.session_replay_artifact #=> String
|
|
1856
1864
|
# resp.last_updated_at #=> Time
|
|
1857
1865
|
#
|
|
@@ -1902,6 +1910,7 @@ module Aws::BedrockAgentCore
|
|
|
1902
1910
|
# * {Types::GetCodeInterpreterSessionResponse#session_timeout_seconds #session_timeout_seconds} => Integer
|
|
1903
1911
|
# * {Types::GetCodeInterpreterSessionResponse#status #status} => String
|
|
1904
1912
|
# * {Types::GetCodeInterpreterSessionResponse#certificates #certificates} => Array<Types::Certificate>
|
|
1913
|
+
# * {Types::GetCodeInterpreterSessionResponse#filesystem_configurations #filesystem_configurations} => Array<Types::ToolsFileSystemConfiguration>
|
|
1905
1914
|
#
|
|
1906
1915
|
# @example Request syntax with placeholder values
|
|
1907
1916
|
#
|
|
@@ -1920,6 +1929,13 @@ module Aws::BedrockAgentCore
|
|
|
1920
1929
|
# resp.status #=> String, one of "READY", "TERMINATED"
|
|
1921
1930
|
# resp.certificates #=> Array
|
|
1922
1931
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
1932
|
+
# resp.filesystem_configurations #=> Array
|
|
1933
|
+
# resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
|
|
1934
|
+
# resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
|
|
1935
|
+
# resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
|
|
1936
|
+
# resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
|
|
1937
|
+
# resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
|
|
1938
|
+
# resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
|
|
1923
1939
|
#
|
|
1924
1940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/GetCodeInterpreterSession AWS API Documentation
|
|
1925
1941
|
#
|
|
@@ -5408,6 +5424,13 @@ module Aws::BedrockAgentCore
|
|
|
5408
5424
|
# @option params [Array<Types::Certificate>] :certificates
|
|
5409
5425
|
# A list of certificates to install in the browser session.
|
|
5410
5426
|
#
|
|
5427
|
+
# @option params [Array<Types::ToolsFileSystemConfiguration>] :filesystem_configurations
|
|
5428
|
+
# The file system configurations to mount into the browser session. Use
|
|
5429
|
+
# these configurations to mount your own Amazon Simple Storage Service
|
|
5430
|
+
# (Amazon S3) Files or Amazon Elastic File System (Amazon EFS) access
|
|
5431
|
+
# points. Your session can then read and write your data. If you don't
|
|
5432
|
+
# specify this field, no additional file systems are mounted.
|
|
5433
|
+
#
|
|
5411
5434
|
# @option params [String] :client_token
|
|
5412
5435
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
5413
5436
|
# completes no more than one time. If this token matches a previous
|
|
@@ -5491,6 +5514,20 @@ module Aws::BedrockAgentCore
|
|
|
5491
5514
|
# },
|
|
5492
5515
|
# },
|
|
5493
5516
|
# ],
|
|
5517
|
+
# filesystem_configurations: [
|
|
5518
|
+
# {
|
|
5519
|
+
# s3_files_configuration: {
|
|
5520
|
+
# access_point_arn: "S3FilesAccessPointArn", # required
|
|
5521
|
+
# mount_path: "MountPath", # required
|
|
5522
|
+
# file_system_arn: "S3FilesFileSystemArn", # required
|
|
5523
|
+
# },
|
|
5524
|
+
# efs_configuration: {
|
|
5525
|
+
# access_point_arn: "EfsAccessPointArn", # required
|
|
5526
|
+
# mount_path: "MountPath", # required
|
|
5527
|
+
# file_system_arn: "EfsFileSystemArn", # required
|
|
5528
|
+
# },
|
|
5529
|
+
# },
|
|
5530
|
+
# ],
|
|
5494
5531
|
# client_token: "ClientToken",
|
|
5495
5532
|
# })
|
|
5496
5533
|
#
|
|
@@ -5559,6 +5596,14 @@ module Aws::BedrockAgentCore
|
|
|
5559
5596
|
# @option params [Array<Types::Certificate>] :certificates
|
|
5560
5597
|
# A list of certificates to install in the code interpreter session.
|
|
5561
5598
|
#
|
|
5599
|
+
# @option params [Array<Types::ToolsFileSystemConfiguration>] :filesystem_configurations
|
|
5600
|
+
# The file system configurations to mount into the code interpreter
|
|
5601
|
+
# session. Use these configurations to mount your own Amazon Simple
|
|
5602
|
+
# Storage Service (Amazon S3) Files or Amazon Elastic File System
|
|
5603
|
+
# (Amazon EFS) access points. Your session can then read and write your
|
|
5604
|
+
# data. If you don't specify this field, no additional file systems are
|
|
5605
|
+
# mounted.
|
|
5606
|
+
#
|
|
5562
5607
|
# @option params [String] :client_token
|
|
5563
5608
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
5564
5609
|
# completes no more than one time. If this token matches a previous
|
|
@@ -5592,6 +5637,20 @@ module Aws::BedrockAgentCore
|
|
|
5592
5637
|
# },
|
|
5593
5638
|
# },
|
|
5594
5639
|
# ],
|
|
5640
|
+
# filesystem_configurations: [
|
|
5641
|
+
# {
|
|
5642
|
+
# s3_files_configuration: {
|
|
5643
|
+
# access_point_arn: "S3FilesAccessPointArn", # required
|
|
5644
|
+
# mount_path: "MountPath", # required
|
|
5645
|
+
# file_system_arn: "S3FilesFileSystemArn", # required
|
|
5646
|
+
# },
|
|
5647
|
+
# efs_configuration: {
|
|
5648
|
+
# access_point_arn: "EfsAccessPointArn", # required
|
|
5649
|
+
# mount_path: "MountPath", # required
|
|
5650
|
+
# file_system_arn: "EfsFileSystemArn", # required
|
|
5651
|
+
# },
|
|
5652
|
+
# },
|
|
5653
|
+
# ],
|
|
5595
5654
|
# client_token: "ClientToken",
|
|
5596
5655
|
# })
|
|
5597
5656
|
#
|
|
@@ -6284,7 +6343,7 @@ module Aws::BedrockAgentCore
|
|
|
6284
6343
|
tracer: tracer
|
|
6285
6344
|
)
|
|
6286
6345
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
6287
|
-
context[:gem_version] = '1.
|
|
6346
|
+
context[:gem_version] = '1.45.0'
|
|
6288
6347
|
Seahorse::Client::Request.new(handlers, context)
|
|
6289
6348
|
end
|
|
6290
6349
|
|
|
@@ -177,6 +177,9 @@ module Aws::BedrockAgentCore
|
|
|
177
177
|
DomainPatterns = Shapes::ListShape.new(name: 'DomainPatterns')
|
|
178
178
|
Double = Shapes::FloatShape.new(name: 'Double')
|
|
179
179
|
DuplicateIdException = Shapes::StructureShape.new(name: 'DuplicateIdException')
|
|
180
|
+
EfsAccessPointArn = Shapes::StringShape.new(name: 'EfsAccessPointArn')
|
|
181
|
+
EfsConfiguration = Shapes::StructureShape.new(name: 'EfsConfiguration')
|
|
182
|
+
EfsFileSystemArn = Shapes::StringShape.new(name: 'EfsFileSystemArn')
|
|
180
183
|
Email = Shapes::StringShape.new(name: 'Email')
|
|
181
184
|
EmbeddedCryptoWallet = Shapes::StructureShape.new(name: 'EmbeddedCryptoWallet')
|
|
182
185
|
EmbeddedCryptoWalletRedirectUrlString = Shapes::StringShape.new(name: 'EmbeddedCryptoWalletRedirectUrlString')
|
|
@@ -499,6 +502,7 @@ module Aws::BedrockAgentCore
|
|
|
499
502
|
MetadataValueStringValueString = Shapes::StringShape.new(name: 'MetadataValueStringValueString')
|
|
500
503
|
MimeType = Shapes::StringShape.new(name: 'MimeType')
|
|
501
504
|
ModelId = Shapes::StringShape.new(name: 'ModelId')
|
|
505
|
+
MountPath = Shapes::StringShape.new(name: 'MountPath')
|
|
502
506
|
MouseButton = Shapes::StringShape.new(name: 'MouseButton')
|
|
503
507
|
MouseClickArguments = Shapes::StructureShape.new(name: 'MouseClickArguments')
|
|
504
508
|
MouseClickArgumentsClickCountInteger = Shapes::IntegerShape.new(name: 'MouseClickArgumentsClickCountInteger')
|
|
@@ -622,6 +626,9 @@ module Aws::BedrockAgentCore
|
|
|
622
626
|
RootCauseCluster = Shapes::StructureShape.new(name: 'RootCauseCluster')
|
|
623
627
|
RootCauseClusterList = Shapes::ListShape.new(name: 'RootCauseClusterList')
|
|
624
628
|
RuntimeClientError = Shapes::StructureShape.new(name: 'RuntimeClientError')
|
|
629
|
+
S3FilesAccessPointArn = Shapes::StringShape.new(name: 'S3FilesAccessPointArn')
|
|
630
|
+
S3FilesConfiguration = Shapes::StructureShape.new(name: 'S3FilesConfiguration')
|
|
631
|
+
S3FilesFileSystemArn = Shapes::StringShape.new(name: 'S3FilesFileSystemArn')
|
|
625
632
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
626
633
|
S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
|
|
627
634
|
S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
|
|
@@ -749,6 +756,8 @@ module Aws::BedrockAgentCore
|
|
|
749
756
|
ToolName = Shapes::StringShape.new(name: 'ToolName')
|
|
750
757
|
ToolResultStructuredContent = Shapes::StructureShape.new(name: 'ToolResultStructuredContent')
|
|
751
758
|
ToolsDefinition = Shapes::StructureShape.new(name: 'ToolsDefinition')
|
|
759
|
+
ToolsFileSystemConfiguration = Shapes::UnionShape.new(name: 'ToolsFileSystemConfiguration')
|
|
760
|
+
ToolsFileSystemConfigurations = Shapes::ListShape.new(name: 'ToolsFileSystemConfigurations')
|
|
752
761
|
TopK = Shapes::IntegerShape.new(name: 'TopK')
|
|
753
762
|
TopP = Shapes::FloatShape.new(name: 'TopP')
|
|
754
763
|
TraceId = Shapes::StringShape.new(name: 'TraceId')
|
|
@@ -1287,6 +1296,11 @@ module Aws::BedrockAgentCore
|
|
|
1287
1296
|
DuplicateIdException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
1288
1297
|
DuplicateIdException.struct_class = Types::DuplicateIdException
|
|
1289
1298
|
|
|
1299
|
+
EfsConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: EfsAccessPointArn, required: true, location_name: "accessPointArn"))
|
|
1300
|
+
EfsConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
1301
|
+
EfsConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: EfsFileSystemArn, required: true, location_name: "fileSystemArn"))
|
|
1302
|
+
EfsConfiguration.struct_class = Types::EfsConfiguration
|
|
1303
|
+
|
|
1290
1304
|
EmbeddedCryptoWallet.add_member(:network, Shapes::ShapeRef.new(shape: CryptoWalletNetwork, required: true, location_name: "network"))
|
|
1291
1305
|
EmbeddedCryptoWallet.add_member(:linked_accounts, Shapes::ShapeRef.new(shape: LinkedAccountList, required: true, location_name: "linkedAccounts"))
|
|
1292
1306
|
EmbeddedCryptoWallet.add_member(:wallet_address, Shapes::ShapeRef.new(shape: String, location_name: "walletAddress"))
|
|
@@ -1581,6 +1595,7 @@ module Aws::BedrockAgentCore
|
|
|
1581
1595
|
GetBrowserSessionResponse.add_member(:streams, Shapes::ShapeRef.new(shape: BrowserSessionStream, location_name: "streams"))
|
|
1582
1596
|
GetBrowserSessionResponse.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "proxyConfiguration"))
|
|
1583
1597
|
GetBrowserSessionResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1598
|
+
GetBrowserSessionResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
1584
1599
|
GetBrowserSessionResponse.add_member(:session_replay_artifact, Shapes::ShapeRef.new(shape: String, location_name: "sessionReplayArtifact"))
|
|
1585
1600
|
GetBrowserSessionResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastUpdatedAt"))
|
|
1586
1601
|
GetBrowserSessionResponse.struct_class = Types::GetBrowserSessionResponse
|
|
@@ -1596,6 +1611,7 @@ module Aws::BedrockAgentCore
|
|
|
1596
1611
|
GetCodeInterpreterSessionResponse.add_member(:session_timeout_seconds, Shapes::ShapeRef.new(shape: CodeInterpreterSessionTimeout, location_name: "sessionTimeoutSeconds"))
|
|
1597
1612
|
GetCodeInterpreterSessionResponse.add_member(:status, Shapes::ShapeRef.new(shape: CodeInterpreterSessionStatus, location_name: "status"))
|
|
1598
1613
|
GetCodeInterpreterSessionResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1614
|
+
GetCodeInterpreterSessionResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
1599
1615
|
GetCodeInterpreterSessionResponse.struct_class = Types::GetCodeInterpreterSessionResponse
|
|
1600
1616
|
|
|
1601
1617
|
GetEventInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
|
|
@@ -2807,6 +2823,11 @@ module Aws::BedrockAgentCore
|
|
|
2807
2823
|
RuntimeClientError.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
2808
2824
|
RuntimeClientError.struct_class = Types::RuntimeClientError
|
|
2809
2825
|
|
|
2826
|
+
S3FilesConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3FilesAccessPointArn, required: true, location_name: "accessPointArn"))
|
|
2827
|
+
S3FilesConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2828
|
+
S3FilesConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: S3FilesFileSystemArn, required: true, location_name: "fileSystemArn"))
|
|
2829
|
+
S3FilesConfiguration.struct_class = Types::S3FilesConfiguration
|
|
2830
|
+
|
|
2810
2831
|
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
|
|
2811
2832
|
S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
|
|
2812
2833
|
S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
|
|
@@ -2948,6 +2969,7 @@ module Aws::BedrockAgentCore
|
|
|
2948
2969
|
StartBrowserSessionRequest.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "proxyConfiguration"))
|
|
2949
2970
|
StartBrowserSessionRequest.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
2950
2971
|
StartBrowserSessionRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
2972
|
+
StartBrowserSessionRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
2951
2973
|
StartBrowserSessionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2952
2974
|
StartBrowserSessionRequest.struct_class = Types::StartBrowserSessionRequest
|
|
2953
2975
|
|
|
@@ -2963,6 +2985,7 @@ module Aws::BedrockAgentCore
|
|
|
2963
2985
|
StartCodeInterpreterSessionRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
|
2964
2986
|
StartCodeInterpreterSessionRequest.add_member(:session_timeout_seconds, Shapes::ShapeRef.new(shape: CodeInterpreterSessionTimeout, location_name: "sessionTimeoutSeconds"))
|
|
2965
2987
|
StartCodeInterpreterSessionRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
2988
|
+
StartCodeInterpreterSessionRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
2966
2989
|
StartCodeInterpreterSessionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2967
2990
|
StartCodeInterpreterSessionRequest.struct_class = Types::StartCodeInterpreterSessionRequest
|
|
2968
2991
|
|
|
@@ -3187,6 +3210,16 @@ module Aws::BedrockAgentCore
|
|
|
3187
3210
|
ToolsDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
3188
3211
|
ToolsDefinition.struct_class = Types::ToolsDefinition
|
|
3189
3212
|
|
|
3213
|
+
ToolsFileSystemConfiguration.add_member(:s3_files_configuration, Shapes::ShapeRef.new(shape: S3FilesConfiguration, location_name: "s3FilesConfiguration"))
|
|
3214
|
+
ToolsFileSystemConfiguration.add_member(:efs_configuration, Shapes::ShapeRef.new(shape: EfsConfiguration, location_name: "efsConfiguration"))
|
|
3215
|
+
ToolsFileSystemConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3216
|
+
ToolsFileSystemConfiguration.add_member_subclass(:s3_files_configuration, Types::ToolsFileSystemConfiguration::S3FilesConfiguration)
|
|
3217
|
+
ToolsFileSystemConfiguration.add_member_subclass(:efs_configuration, Types::ToolsFileSystemConfiguration::EfsConfiguration)
|
|
3218
|
+
ToolsFileSystemConfiguration.add_member_subclass(:unknown, Types::ToolsFileSystemConfiguration::Unknown)
|
|
3219
|
+
ToolsFileSystemConfiguration.struct_class = Types::ToolsFileSystemConfiguration
|
|
3220
|
+
|
|
3221
|
+
ToolsFileSystemConfigurations.member = Shapes::ShapeRef.new(shape: ToolsFileSystemConfiguration)
|
|
3222
|
+
|
|
3190
3223
|
TraceIds.member = Shapes::ShapeRef.new(shape: TraceId)
|
|
3191
3224
|
|
|
3192
3225
|
UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
@@ -2204,6 +2204,35 @@ module Aws::BedrockAgentCore
|
|
|
2204
2204
|
include Aws::Structure
|
|
2205
2205
|
end
|
|
2206
2206
|
|
|
2207
|
+
# The configuration for mounting an Amazon Elastic File System (Amazon
|
|
2208
|
+
# EFS) access point that you own into a session.
|
|
2209
|
+
#
|
|
2210
|
+
# @!attribute [rw] access_point_arn
|
|
2211
|
+
# The Amazon Resource Name (ARN) of the Amazon Elastic File System
|
|
2212
|
+
# (Amazon EFS) access point to mount.
|
|
2213
|
+
# @return [String]
|
|
2214
|
+
#
|
|
2215
|
+
# @!attribute [rw] mount_path
|
|
2216
|
+
# The absolute path within the session at which the access point is
|
|
2217
|
+
# mounted, for example `/mnt/efs`. Each mount path must be unique
|
|
2218
|
+
# across all file system configurations in the session.
|
|
2219
|
+
# @return [String]
|
|
2220
|
+
#
|
|
2221
|
+
# @!attribute [rw] file_system_arn
|
|
2222
|
+
# The Amazon Resource Name (ARN) of the Amazon Elastic File System
|
|
2223
|
+
# (Amazon EFS) file system that owns the access point.
|
|
2224
|
+
# @return [String]
|
|
2225
|
+
#
|
|
2226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/EfsConfiguration AWS API Documentation
|
|
2227
|
+
#
|
|
2228
|
+
class EfsConfiguration < Struct.new(
|
|
2229
|
+
:access_point_arn,
|
|
2230
|
+
:mount_path,
|
|
2231
|
+
:file_system_arn)
|
|
2232
|
+
SENSITIVE = []
|
|
2233
|
+
include Aws::Structure
|
|
2234
|
+
end
|
|
2235
|
+
|
|
2207
2236
|
# Embedded crypto wallet instrument details.
|
|
2208
2237
|
#
|
|
2209
2238
|
# @!attribute [rw] network
|
|
@@ -3513,6 +3542,11 @@ module Aws::BedrockAgentCore
|
|
|
3513
3542
|
# The list of certificates installed in the browser session.
|
|
3514
3543
|
# @return [Array<Types::Certificate>]
|
|
3515
3544
|
#
|
|
3545
|
+
# @!attribute [rw] filesystem_configurations
|
|
3546
|
+
# The file system configurations for the browser session. Each entry
|
|
3547
|
+
# describes an access point and its mount path.
|
|
3548
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
3549
|
+
#
|
|
3516
3550
|
# @!attribute [rw] session_replay_artifact
|
|
3517
3551
|
# The artifact containing the session replay information.
|
|
3518
3552
|
# @return [String]
|
|
@@ -3537,6 +3571,7 @@ module Aws::BedrockAgentCore
|
|
|
3537
3571
|
:streams,
|
|
3538
3572
|
:proxy_configuration,
|
|
3539
3573
|
:certificates,
|
|
3574
|
+
:filesystem_configurations,
|
|
3540
3575
|
:session_replay_artifact,
|
|
3541
3576
|
:last_updated_at)
|
|
3542
3577
|
SENSITIVE = []
|
|
@@ -3590,6 +3625,11 @@ module Aws::BedrockAgentCore
|
|
|
3590
3625
|
# The list of certificates installed in the code interpreter session.
|
|
3591
3626
|
# @return [Array<Types::Certificate>]
|
|
3592
3627
|
#
|
|
3628
|
+
# @!attribute [rw] filesystem_configurations
|
|
3629
|
+
# The file system configurations for the code interpreter session.
|
|
3630
|
+
# Each entry describes an access point and its mount path.
|
|
3631
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
3632
|
+
#
|
|
3593
3633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/GetCodeInterpreterSessionResponse AWS API Documentation
|
|
3594
3634
|
#
|
|
3595
3635
|
class GetCodeInterpreterSessionResponse < Struct.new(
|
|
@@ -3599,7 +3639,8 @@ module Aws::BedrockAgentCore
|
|
|
3599
3639
|
:created_at,
|
|
3600
3640
|
:session_timeout_seconds,
|
|
3601
3641
|
:status,
|
|
3602
|
-
:certificates
|
|
3642
|
+
:certificates,
|
|
3643
|
+
:filesystem_configurations)
|
|
3603
3644
|
SENSITIVE = []
|
|
3604
3645
|
include Aws::Structure
|
|
3605
3646
|
end
|
|
@@ -8720,6 +8761,35 @@ module Aws::BedrockAgentCore
|
|
|
8720
8761
|
include Aws::Structure
|
|
8721
8762
|
end
|
|
8722
8763
|
|
|
8764
|
+
# The configuration for mounting an Amazon Simple Storage Service
|
|
8765
|
+
# (Amazon S3) Files access point that you own into a session.
|
|
8766
|
+
#
|
|
8767
|
+
# @!attribute [rw] access_point_arn
|
|
8768
|
+
# The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
|
|
8769
|
+
# (Amazon S3) Files access point to mount.
|
|
8770
|
+
# @return [String]
|
|
8771
|
+
#
|
|
8772
|
+
# @!attribute [rw] mount_path
|
|
8773
|
+
# The absolute path within the session at which the access point is
|
|
8774
|
+
# mounted, for example `/mnt/s3data`. Each mount path must be unique
|
|
8775
|
+
# across all file system configurations in the session.
|
|
8776
|
+
# @return [String]
|
|
8777
|
+
#
|
|
8778
|
+
# @!attribute [rw] file_system_arn
|
|
8779
|
+
# The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
|
|
8780
|
+
# (Amazon S3) Files file system that owns the access point.
|
|
8781
|
+
# @return [String]
|
|
8782
|
+
#
|
|
8783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/S3FilesConfiguration AWS API Documentation
|
|
8784
|
+
#
|
|
8785
|
+
class S3FilesConfiguration < Struct.new(
|
|
8786
|
+
:access_point_arn,
|
|
8787
|
+
:mount_path,
|
|
8788
|
+
:file_system_arn)
|
|
8789
|
+
SENSITIVE = []
|
|
8790
|
+
include Aws::Structure
|
|
8791
|
+
end
|
|
8792
|
+
|
|
8723
8793
|
# The Amazon S3 location configuration of a resource.
|
|
8724
8794
|
#
|
|
8725
8795
|
# @!attribute [rw] bucket
|
|
@@ -9376,6 +9446,15 @@ module Aws::BedrockAgentCore
|
|
|
9376
9446
|
# A list of certificates to install in the browser session.
|
|
9377
9447
|
# @return [Array<Types::Certificate>]
|
|
9378
9448
|
#
|
|
9449
|
+
# @!attribute [rw] filesystem_configurations
|
|
9450
|
+
# The file system configurations to mount into the browser session.
|
|
9451
|
+
# Use these configurations to mount your own Amazon Simple Storage
|
|
9452
|
+
# Service (Amazon S3) Files or Amazon Elastic File System (Amazon EFS)
|
|
9453
|
+
# access points. Your session can then read and write your data. If
|
|
9454
|
+
# you don't specify this field, no additional file systems are
|
|
9455
|
+
# mounted.
|
|
9456
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
9457
|
+
#
|
|
9379
9458
|
# @!attribute [rw] client_token
|
|
9380
9459
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
9381
9460
|
# completes no more than one time. If this token matches a previous
|
|
@@ -9401,6 +9480,7 @@ module Aws::BedrockAgentCore
|
|
|
9401
9480
|
:proxy_configuration,
|
|
9402
9481
|
:enterprise_policies,
|
|
9403
9482
|
:certificates,
|
|
9483
|
+
:filesystem_configurations,
|
|
9404
9484
|
:client_token)
|
|
9405
9485
|
SENSITIVE = []
|
|
9406
9486
|
include Aws::Structure
|
|
@@ -9465,6 +9545,15 @@ module Aws::BedrockAgentCore
|
|
|
9465
9545
|
# A list of certificates to install in the code interpreter session.
|
|
9466
9546
|
# @return [Array<Types::Certificate>]
|
|
9467
9547
|
#
|
|
9548
|
+
# @!attribute [rw] filesystem_configurations
|
|
9549
|
+
# The file system configurations to mount into the code interpreter
|
|
9550
|
+
# session. Use these configurations to mount your own Amazon Simple
|
|
9551
|
+
# Storage Service (Amazon S3) Files or Amazon Elastic File System
|
|
9552
|
+
# (Amazon EFS) access points. Your session can then read and write
|
|
9553
|
+
# your data. If you don't specify this field, no additional file
|
|
9554
|
+
# systems are mounted.
|
|
9555
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
9556
|
+
#
|
|
9468
9557
|
# @!attribute [rw] client_token
|
|
9469
9558
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
9470
9559
|
# completes no more than one time. If this token matches a previous
|
|
@@ -9485,6 +9574,7 @@ module Aws::BedrockAgentCore
|
|
|
9485
9574
|
:name,
|
|
9486
9575
|
:session_timeout_seconds,
|
|
9487
9576
|
:certificates,
|
|
9577
|
+
:filesystem_configurations,
|
|
9488
9578
|
:client_token)
|
|
9489
9579
|
SENSITIVE = []
|
|
9490
9580
|
include Aws::Structure
|
|
@@ -10499,6 +10589,44 @@ module Aws::BedrockAgentCore
|
|
|
10499
10589
|
include Aws::Structure
|
|
10500
10590
|
end
|
|
10501
10591
|
|
|
10592
|
+
# Specifies a file system to mount into the session by providing exactly
|
|
10593
|
+
# one of the following:
|
|
10594
|
+
#
|
|
10595
|
+
# * `s3FilesConfiguration` - Mounts an Amazon Simple Storage Service
|
|
10596
|
+
# (Amazon S3) Files access point.
|
|
10597
|
+
#
|
|
10598
|
+
# * `efsConfiguration` - Mounts an Amazon Elastic File System (Amazon
|
|
10599
|
+
# EFS) access point.
|
|
10600
|
+
#
|
|
10601
|
+
# @note ToolsFileSystemConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
10602
|
+
#
|
|
10603
|
+
# @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.
|
|
10604
|
+
#
|
|
10605
|
+
# @!attribute [rw] s3_files_configuration
|
|
10606
|
+
# The configuration for mounting your own Amazon Simple Storage
|
|
10607
|
+
# Service (Amazon S3) Files access point into the session.
|
|
10608
|
+
# @return [Types::S3FilesConfiguration]
|
|
10609
|
+
#
|
|
10610
|
+
# @!attribute [rw] efs_configuration
|
|
10611
|
+
# The configuration for mounting your own Amazon Elastic File System
|
|
10612
|
+
# (Amazon EFS) access point into the session.
|
|
10613
|
+
# @return [Types::EfsConfiguration]
|
|
10614
|
+
#
|
|
10615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/ToolsFileSystemConfiguration AWS API Documentation
|
|
10616
|
+
#
|
|
10617
|
+
class ToolsFileSystemConfiguration < Struct.new(
|
|
10618
|
+
:s3_files_configuration,
|
|
10619
|
+
:efs_configuration,
|
|
10620
|
+
:unknown)
|
|
10621
|
+
SENSITIVE = []
|
|
10622
|
+
include Aws::Structure
|
|
10623
|
+
include Aws::Structure::Union
|
|
10624
|
+
|
|
10625
|
+
class S3FilesConfiguration < ToolsFileSystemConfiguration; end
|
|
10626
|
+
class EfsConfiguration < ToolsFileSystemConfiguration; end
|
|
10627
|
+
class Unknown < ToolsFileSystemConfiguration; end
|
|
10628
|
+
end
|
|
10629
|
+
|
|
10502
10630
|
# This exception is thrown when the JWT bearer token is invalid or not
|
|
10503
10631
|
# found for OAuth bearer token based access
|
|
10504
10632
|
#
|
data/sig/client.rbs
CHANGED
|
@@ -534,6 +534,7 @@ module Aws
|
|
|
534
534
|
def streams: () -> Types::BrowserSessionStream
|
|
535
535
|
def proxy_configuration: () -> Types::ProxyConfiguration
|
|
536
536
|
def certificates: () -> ::Array[Types::Certificate]
|
|
537
|
+
def filesystem_configurations: () -> ::Array[Types::ToolsFileSystemConfiguration]
|
|
537
538
|
def session_replay_artifact: () -> ::String
|
|
538
539
|
def last_updated_at: () -> ::Time
|
|
539
540
|
end
|
|
@@ -553,6 +554,7 @@ module Aws
|
|
|
553
554
|
def session_timeout_seconds: () -> ::Integer
|
|
554
555
|
def status: () -> ("READY" | "TERMINATED")
|
|
555
556
|
def certificates: () -> ::Array[Types::Certificate]
|
|
557
|
+
def filesystem_configurations: () -> ::Array[Types::ToolsFileSystemConfiguration]
|
|
556
558
|
end
|
|
557
559
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCore/Client.html#get_code_interpreter_session-instance_method
|
|
558
560
|
def get_code_interpreter_session: (
|
|
@@ -1493,6 +1495,9 @@ module Aws
|
|
|
1493
1495
|
}
|
|
1494
1496
|
}
|
|
1495
1497
|
],
|
|
1498
|
+
?filesystem_configurations: Array[
|
|
1499
|
+
Params::tools_file_system_configuration
|
|
1500
|
+
],
|
|
1496
1501
|
?client_token: ::String
|
|
1497
1502
|
) -> _StartBrowserSessionResponseSuccess
|
|
1498
1503
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBrowserSessionResponseSuccess
|
|
@@ -1519,6 +1524,9 @@ module Aws
|
|
|
1519
1524
|
}
|
|
1520
1525
|
}
|
|
1521
1526
|
],
|
|
1527
|
+
?filesystem_configurations: Array[
|
|
1528
|
+
Params::tools_file_system_configuration
|
|
1529
|
+
],
|
|
1522
1530
|
?client_token: ::String
|
|
1523
1531
|
) -> _StartCodeInterpreterSessionResponseSuccess
|
|
1524
1532
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCodeInterpreterSessionResponseSuccess
|
data/sig/params.rbs
CHANGED
|
@@ -41,6 +41,19 @@ module Aws
|
|
|
41
41
|
right: Params::memory_record_right_expression?
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
+
type tools_file_system_configuration = {
|
|
45
|
+
s3_files_configuration: {
|
|
46
|
+
access_point_arn: ::String,
|
|
47
|
+
mount_path: ::String,
|
|
48
|
+
file_system_arn: ::String
|
|
49
|
+
}?,
|
|
50
|
+
efs_configuration: {
|
|
51
|
+
access_point_arn: ::String,
|
|
52
|
+
mount_path: ::String,
|
|
53
|
+
file_system_arn: ::String
|
|
54
|
+
}?
|
|
55
|
+
}
|
|
56
|
+
|
|
44
57
|
type cloud_watch_logs_rule = {
|
|
45
58
|
filters: Array[
|
|
46
59
|
Params::cloud_watch_logs_filter
|
data/sig/types.rbs
CHANGED
|
@@ -675,6 +675,13 @@ module Aws::BedrockAgentCore
|
|
|
675
675
|
SENSITIVE: []
|
|
676
676
|
end
|
|
677
677
|
|
|
678
|
+
class EfsConfiguration
|
|
679
|
+
attr_accessor access_point_arn: ::String
|
|
680
|
+
attr_accessor mount_path: ::String
|
|
681
|
+
attr_accessor file_system_arn: ::String
|
|
682
|
+
SENSITIVE: []
|
|
683
|
+
end
|
|
684
|
+
|
|
678
685
|
class EmbeddedCryptoWallet
|
|
679
686
|
attr_accessor network: ("ETHEREUM" | "SOLANA")
|
|
680
687
|
attr_accessor linked_accounts: ::Array[Types::LinkedAccount]
|
|
@@ -1035,6 +1042,7 @@ module Aws::BedrockAgentCore
|
|
|
1035
1042
|
attr_accessor streams: Types::BrowserSessionStream
|
|
1036
1043
|
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
1037
1044
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
1045
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
1038
1046
|
attr_accessor session_replay_artifact: ::String
|
|
1039
1047
|
attr_accessor last_updated_at: ::Time
|
|
1040
1048
|
SENSITIVE: []
|
|
@@ -1054,6 +1062,7 @@ module Aws::BedrockAgentCore
|
|
|
1054
1062
|
attr_accessor session_timeout_seconds: ::Integer
|
|
1055
1063
|
attr_accessor status: ("READY" | "TERMINATED")
|
|
1056
1064
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
1065
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
1057
1066
|
SENSITIVE: []
|
|
1058
1067
|
end
|
|
1059
1068
|
|
|
@@ -2672,6 +2681,13 @@ module Aws::BedrockAgentCore
|
|
|
2672
2681
|
SENSITIVE: []
|
|
2673
2682
|
end
|
|
2674
2683
|
|
|
2684
|
+
class S3FilesConfiguration
|
|
2685
|
+
attr_accessor access_point_arn: ::String
|
|
2686
|
+
attr_accessor mount_path: ::String
|
|
2687
|
+
attr_accessor file_system_arn: ::String
|
|
2688
|
+
SENSITIVE: []
|
|
2689
|
+
end
|
|
2690
|
+
|
|
2675
2691
|
class S3Location
|
|
2676
2692
|
attr_accessor bucket: ::String
|
|
2677
2693
|
attr_accessor prefix: ::String
|
|
@@ -2841,6 +2857,7 @@ module Aws::BedrockAgentCore
|
|
|
2841
2857
|
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
2842
2858
|
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
2843
2859
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2860
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2844
2861
|
attr_accessor client_token: ::String
|
|
2845
2862
|
SENSITIVE: []
|
|
2846
2863
|
end
|
|
@@ -2860,6 +2877,7 @@ module Aws::BedrockAgentCore
|
|
|
2860
2877
|
attr_accessor name: ::String
|
|
2861
2878
|
attr_accessor session_timeout_seconds: ::Integer
|
|
2862
2879
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2880
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2863
2881
|
attr_accessor client_token: ::String
|
|
2864
2882
|
SENSITIVE: []
|
|
2865
2883
|
end
|
|
@@ -3156,6 +3174,20 @@ module Aws::BedrockAgentCore
|
|
|
3156
3174
|
SENSITIVE: []
|
|
3157
3175
|
end
|
|
3158
3176
|
|
|
3177
|
+
class ToolsFileSystemConfiguration
|
|
3178
|
+
attr_accessor s3_files_configuration: Types::S3FilesConfiguration
|
|
3179
|
+
attr_accessor efs_configuration: Types::EfsConfiguration
|
|
3180
|
+
attr_accessor unknown: untyped
|
|
3181
|
+
SENSITIVE: []
|
|
3182
|
+
|
|
3183
|
+
class S3FilesConfiguration < ToolsFileSystemConfiguration
|
|
3184
|
+
end
|
|
3185
|
+
class EfsConfiguration < ToolsFileSystemConfiguration
|
|
3186
|
+
end
|
|
3187
|
+
class Unknown < ToolsFileSystemConfiguration
|
|
3188
|
+
end
|
|
3189
|
+
end
|
|
3190
|
+
|
|
3159
3191
|
class UnauthorizedException
|
|
3160
3192
|
attr_accessor message: ::String
|
|
3161
3193
|
SENSITIVE: []
|