aws-sdk-bedrockagentcore 1.43.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcore/client.rb +97 -1
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +50 -0
- data/lib/aws-sdk-bedrockagentcore/types.rb +197 -2
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +17 -1
- data/sig/params.rbs +13 -0
- data/sig/types.rbs +47 -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,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.44.0 (2026-07-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Add W3C trace context headers (traceparent, tracestate, baggage) and X-Amzn-Trace-Id to InvokeHarness request for end-to-end observability propagation. Add toolResultMetadata to the streaming content block delta for MCP tool result meta delivery without oversized SSE frames.
|
|
13
|
+
|
|
4
14
|
1.43.0 (2026-07-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
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
|
#
|
|
@@ -2657,6 +2673,20 @@ module Aws::BedrockAgentCore
|
|
|
2657
2673
|
# @option params [String] :mcp_protocol_version
|
|
2658
2674
|
# The version of the MCP protocol being used.
|
|
2659
2675
|
#
|
|
2676
|
+
# @option params [String] :mcp_method
|
|
2677
|
+
# The MCP method being invoked. For example, `tools/call`,
|
|
2678
|
+
# `resources/read`, or `prompts/get`.
|
|
2679
|
+
#
|
|
2680
|
+
# @option params [String] :mcp_name
|
|
2681
|
+
# The name of the MCP resource, tool, or prompt being accessed. The
|
|
2682
|
+
# value depends on the method:
|
|
2683
|
+
#
|
|
2684
|
+
# * `tools/call` – The tool name.
|
|
2685
|
+
#
|
|
2686
|
+
# * `resources/read` – The resource URI.
|
|
2687
|
+
#
|
|
2688
|
+
# * `prompts/get` – The prompt name.
|
|
2689
|
+
#
|
|
2660
2690
|
# @option params [String] :runtime_user_id
|
|
2661
2691
|
# The identifier of the runtime user.
|
|
2662
2692
|
#
|
|
@@ -2715,6 +2745,8 @@ module Aws::BedrockAgentCore
|
|
|
2715
2745
|
# mcp_session_id: "StringType",
|
|
2716
2746
|
# runtime_session_id: "SessionType",
|
|
2717
2747
|
# mcp_protocol_version: "StringType",
|
|
2748
|
+
# mcp_method: "StringType",
|
|
2749
|
+
# mcp_name: "StringType",
|
|
2718
2750
|
# runtime_user_id: "StringType",
|
|
2719
2751
|
# trace_id: "InvokeAgentRuntimeRequestTraceIdString",
|
|
2720
2752
|
# trace_parent: "InvokeAgentRuntimeRequestTraceParentString",
|
|
@@ -3515,6 +3547,20 @@ module Aws::BedrockAgentCore
|
|
|
3515
3547
|
# An identifier for the end user making the request. This value is
|
|
3516
3548
|
# passed through to the runtime container.
|
|
3517
3549
|
#
|
|
3550
|
+
# @option params [String] :trace_parent
|
|
3551
|
+
# W3C trace context parent header containing version, trace ID, parent
|
|
3552
|
+
# span ID, and trace flags.
|
|
3553
|
+
#
|
|
3554
|
+
# @option params [String] :trace_state
|
|
3555
|
+
# W3C trace context state header for vendor-specific trace information.
|
|
3556
|
+
#
|
|
3557
|
+
# @option params [String] :trace_id
|
|
3558
|
+
# Trace ID for maintaining observability through the operation.
|
|
3559
|
+
#
|
|
3560
|
+
# @option params [String] :baggage
|
|
3561
|
+
# W3C Baggage header for user-defined context propagation. Format:
|
|
3562
|
+
# key1=value1,key2=value2
|
|
3563
|
+
#
|
|
3518
3564
|
# @option params [required, Array<Types::HarnessMessage>] :messages
|
|
3519
3565
|
# The messages to send to the agent.
|
|
3520
3566
|
#
|
|
@@ -3726,6 +3772,10 @@ module Aws::BedrockAgentCore
|
|
|
3726
3772
|
# qualifier: "HarnessEndpointName",
|
|
3727
3773
|
# runtime_session_id: "InvokeHarnessRequestRuntimeSessionIdString", # required
|
|
3728
3774
|
# runtime_user_id: "String",
|
|
3775
|
+
# trace_parent: "InvokeHarnessRequestTraceParentString",
|
|
3776
|
+
# trace_state: "InvokeHarnessRequestTraceStateString",
|
|
3777
|
+
# trace_id: "InvokeHarnessRequestTraceIdString",
|
|
3778
|
+
# baggage: "InvokeHarnessRequestBaggageString",
|
|
3729
3779
|
# messages: [ # required
|
|
3730
3780
|
# {
|
|
3731
3781
|
# role: "user", # required, accepts user, assistant
|
|
@@ -3790,6 +3840,8 @@ module Aws::BedrockAgentCore
|
|
|
3790
3840
|
# temperature: 1.0,
|
|
3791
3841
|
# top_p: 1.0,
|
|
3792
3842
|
# top_k: 1,
|
|
3843
|
+
# additional_params: {
|
|
3844
|
+
# },
|
|
3793
3845
|
# },
|
|
3794
3846
|
# lite_llm_model_config: {
|
|
3795
3847
|
# model_id: "ModelId", # required
|
|
@@ -3903,6 +3955,7 @@ module Aws::BedrockAgentCore
|
|
|
3903
3955
|
# event.delta.reasoning_content.text #=> String
|
|
3904
3956
|
# event.delta.reasoning_content.redacted_content #=> String
|
|
3905
3957
|
# event.delta.reasoning_content.signature #=> String
|
|
3958
|
+
# event.delta.tool_result_metadata.metadata #=> String
|
|
3906
3959
|
#
|
|
3907
3960
|
# # For :content_block_stop event available at #on_content_block_stop_event callback and response eventstream enumerator:
|
|
3908
3961
|
# event.content_block_index #=> Integer
|
|
@@ -5371,6 +5424,13 @@ module Aws::BedrockAgentCore
|
|
|
5371
5424
|
# @option params [Array<Types::Certificate>] :certificates
|
|
5372
5425
|
# A list of certificates to install in the browser session.
|
|
5373
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
|
+
#
|
|
5374
5434
|
# @option params [String] :client_token
|
|
5375
5435
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
5376
5436
|
# completes no more than one time. If this token matches a previous
|
|
@@ -5454,6 +5514,20 @@ module Aws::BedrockAgentCore
|
|
|
5454
5514
|
# },
|
|
5455
5515
|
# },
|
|
5456
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
|
+
# ],
|
|
5457
5531
|
# client_token: "ClientToken",
|
|
5458
5532
|
# })
|
|
5459
5533
|
#
|
|
@@ -5522,6 +5596,14 @@ module Aws::BedrockAgentCore
|
|
|
5522
5596
|
# @option params [Array<Types::Certificate>] :certificates
|
|
5523
5597
|
# A list of certificates to install in the code interpreter session.
|
|
5524
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
|
+
#
|
|
5525
5607
|
# @option params [String] :client_token
|
|
5526
5608
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
5527
5609
|
# completes no more than one time. If this token matches a previous
|
|
@@ -5555,6 +5637,20 @@ module Aws::BedrockAgentCore
|
|
|
5555
5637
|
# },
|
|
5556
5638
|
# },
|
|
5557
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
|
+
# ],
|
|
5558
5654
|
# client_token: "ClientToken",
|
|
5559
5655
|
# })
|
|
5560
5656
|
#
|
|
@@ -6247,7 +6343,7 @@ module Aws::BedrockAgentCore
|
|
|
6247
6343
|
tracer: tracer
|
|
6248
6344
|
)
|
|
6249
6345
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
6250
|
-
context[:gem_version] = '1.
|
|
6346
|
+
context[:gem_version] = '1.45.0'
|
|
6251
6347
|
Seahorse::Client::Request.new(handlers, context)
|
|
6252
6348
|
end
|
|
6253
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')
|
|
@@ -349,6 +352,7 @@ module Aws::BedrockAgentCore
|
|
|
349
352
|
HarnessToolResultBlocksDelta = Shapes::ListShape.new(name: 'HarnessToolResultBlocksDelta')
|
|
350
353
|
HarnessToolResultContentBlock = Shapes::UnionShape.new(name: 'HarnessToolResultContentBlock')
|
|
351
354
|
HarnessToolResultContentBlocks = Shapes::ListShape.new(name: 'HarnessToolResultContentBlocks')
|
|
355
|
+
HarnessToolResultMetadataBlockDelta = Shapes::StructureShape.new(name: 'HarnessToolResultMetadataBlockDelta')
|
|
352
356
|
HarnessToolType = Shapes::StringShape.new(name: 'HarnessToolType')
|
|
353
357
|
HarnessToolUseBlock = Shapes::StructureShape.new(name: 'HarnessToolUseBlock')
|
|
354
358
|
HarnessToolUseBlockDelta = Shapes::StructureShape.new(name: 'HarnessToolUseBlockDelta')
|
|
@@ -403,7 +407,11 @@ module Aws::BedrockAgentCore
|
|
|
403
407
|
InvokeCodeInterpreterRequestTraceParentString = Shapes::StringShape.new(name: 'InvokeCodeInterpreterRequestTraceParentString')
|
|
404
408
|
InvokeCodeInterpreterResponse = Shapes::StructureShape.new(name: 'InvokeCodeInterpreterResponse')
|
|
405
409
|
InvokeHarnessRequest = Shapes::StructureShape.new(name: 'InvokeHarnessRequest')
|
|
410
|
+
InvokeHarnessRequestBaggageString = Shapes::StringShape.new(name: 'InvokeHarnessRequestBaggageString')
|
|
406
411
|
InvokeHarnessRequestRuntimeSessionIdString = Shapes::StringShape.new(name: 'InvokeHarnessRequestRuntimeSessionIdString')
|
|
412
|
+
InvokeHarnessRequestTraceIdString = Shapes::StringShape.new(name: 'InvokeHarnessRequestTraceIdString')
|
|
413
|
+
InvokeHarnessRequestTraceParentString = Shapes::StringShape.new(name: 'InvokeHarnessRequestTraceParentString')
|
|
414
|
+
InvokeHarnessRequestTraceStateString = Shapes::StringShape.new(name: 'InvokeHarnessRequestTraceStateString')
|
|
407
415
|
InvokeHarnessResponse = Shapes::StructureShape.new(name: 'InvokeHarnessResponse')
|
|
408
416
|
InvokeHarnessStreamOutput = Shapes::StructureShape.new(name: 'InvokeHarnessStreamOutput')
|
|
409
417
|
JwtKeyId = Shapes::StringShape.new(name: 'JwtKeyId')
|
|
@@ -494,6 +502,7 @@ module Aws::BedrockAgentCore
|
|
|
494
502
|
MetadataValueStringValueString = Shapes::StringShape.new(name: 'MetadataValueStringValueString')
|
|
495
503
|
MimeType = Shapes::StringShape.new(name: 'MimeType')
|
|
496
504
|
ModelId = Shapes::StringShape.new(name: 'ModelId')
|
|
505
|
+
MountPath = Shapes::StringShape.new(name: 'MountPath')
|
|
497
506
|
MouseButton = Shapes::StringShape.new(name: 'MouseButton')
|
|
498
507
|
MouseClickArguments = Shapes::StructureShape.new(name: 'MouseClickArguments')
|
|
499
508
|
MouseClickArgumentsClickCountInteger = Shapes::IntegerShape.new(name: 'MouseClickArgumentsClickCountInteger')
|
|
@@ -617,6 +626,9 @@ module Aws::BedrockAgentCore
|
|
|
617
626
|
RootCauseCluster = Shapes::StructureShape.new(name: 'RootCauseCluster')
|
|
618
627
|
RootCauseClusterList = Shapes::ListShape.new(name: 'RootCauseClusterList')
|
|
619
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')
|
|
620
632
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
621
633
|
S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
|
|
622
634
|
S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
|
|
@@ -744,6 +756,8 @@ module Aws::BedrockAgentCore
|
|
|
744
756
|
ToolName = Shapes::StringShape.new(name: 'ToolName')
|
|
745
757
|
ToolResultStructuredContent = Shapes::StructureShape.new(name: 'ToolResultStructuredContent')
|
|
746
758
|
ToolsDefinition = Shapes::StructureShape.new(name: 'ToolsDefinition')
|
|
759
|
+
ToolsFileSystemConfiguration = Shapes::UnionShape.new(name: 'ToolsFileSystemConfiguration')
|
|
760
|
+
ToolsFileSystemConfigurations = Shapes::ListShape.new(name: 'ToolsFileSystemConfigurations')
|
|
747
761
|
TopK = Shapes::IntegerShape.new(name: 'TopK')
|
|
748
762
|
TopP = Shapes::FloatShape.new(name: 'TopP')
|
|
749
763
|
TraceId = Shapes::StringShape.new(name: 'TraceId')
|
|
@@ -1282,6 +1296,11 @@ module Aws::BedrockAgentCore
|
|
|
1282
1296
|
DuplicateIdException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
1283
1297
|
DuplicateIdException.struct_class = Types::DuplicateIdException
|
|
1284
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
|
+
|
|
1285
1304
|
EmbeddedCryptoWallet.add_member(:network, Shapes::ShapeRef.new(shape: CryptoWalletNetwork, required: true, location_name: "network"))
|
|
1286
1305
|
EmbeddedCryptoWallet.add_member(:linked_accounts, Shapes::ShapeRef.new(shape: LinkedAccountList, required: true, location_name: "linkedAccounts"))
|
|
1287
1306
|
EmbeddedCryptoWallet.add_member(:wallet_address, Shapes::ShapeRef.new(shape: String, location_name: "walletAddress"))
|
|
@@ -1576,6 +1595,7 @@ module Aws::BedrockAgentCore
|
|
|
1576
1595
|
GetBrowserSessionResponse.add_member(:streams, Shapes::ShapeRef.new(shape: BrowserSessionStream, location_name: "streams"))
|
|
1577
1596
|
GetBrowserSessionResponse.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "proxyConfiguration"))
|
|
1578
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"))
|
|
1579
1599
|
GetBrowserSessionResponse.add_member(:session_replay_artifact, Shapes::ShapeRef.new(shape: String, location_name: "sessionReplayArtifact"))
|
|
1580
1600
|
GetBrowserSessionResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastUpdatedAt"))
|
|
1581
1601
|
GetBrowserSessionResponse.struct_class = Types::GetBrowserSessionResponse
|
|
@@ -1591,6 +1611,7 @@ module Aws::BedrockAgentCore
|
|
|
1591
1611
|
GetCodeInterpreterSessionResponse.add_member(:session_timeout_seconds, Shapes::ShapeRef.new(shape: CodeInterpreterSessionTimeout, location_name: "sessionTimeoutSeconds"))
|
|
1592
1612
|
GetCodeInterpreterSessionResponse.add_member(:status, Shapes::ShapeRef.new(shape: CodeInterpreterSessionStatus, location_name: "status"))
|
|
1593
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"))
|
|
1594
1615
|
GetCodeInterpreterSessionResponse.struct_class = Types::GetCodeInterpreterSessionResponse
|
|
1595
1616
|
|
|
1596
1617
|
GetEventInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
|
|
@@ -1765,11 +1786,13 @@ module Aws::BedrockAgentCore
|
|
|
1765
1786
|
HarnessContentBlockDelta.add_member(:tool_use, Shapes::ShapeRef.new(shape: HarnessToolUseBlockDelta, location_name: "toolUse"))
|
|
1766
1787
|
HarnessContentBlockDelta.add_member(:tool_result, Shapes::ShapeRef.new(shape: HarnessToolResultBlocksDelta, location_name: "toolResult"))
|
|
1767
1788
|
HarnessContentBlockDelta.add_member(:reasoning_content, Shapes::ShapeRef.new(shape: HarnessReasoningContentBlockDelta, location_name: "reasoningContent"))
|
|
1789
|
+
HarnessContentBlockDelta.add_member(:tool_result_metadata, Shapes::ShapeRef.new(shape: HarnessToolResultMetadataBlockDelta, location_name: "toolResultMetadata"))
|
|
1768
1790
|
HarnessContentBlockDelta.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1769
1791
|
HarnessContentBlockDelta.add_member_subclass(:text, Types::HarnessContentBlockDelta::Text)
|
|
1770
1792
|
HarnessContentBlockDelta.add_member_subclass(:tool_use, Types::HarnessContentBlockDelta::ToolUse)
|
|
1771
1793
|
HarnessContentBlockDelta.add_member_subclass(:tool_result, Types::HarnessContentBlockDelta::ToolResult)
|
|
1772
1794
|
HarnessContentBlockDelta.add_member_subclass(:reasoning_content, Types::HarnessContentBlockDelta::ReasoningContent)
|
|
1795
|
+
HarnessContentBlockDelta.add_member_subclass(:tool_result_metadata, Types::HarnessContentBlockDelta::ToolResultMetadata)
|
|
1773
1796
|
HarnessContentBlockDelta.add_member_subclass(:unknown, Types::HarnessContentBlockDelta::Unknown)
|
|
1774
1797
|
HarnessContentBlockDelta.struct_class = Types::HarnessContentBlockDelta
|
|
1775
1798
|
|
|
@@ -1810,6 +1833,7 @@ module Aws::BedrockAgentCore
|
|
|
1810
1833
|
HarnessGeminiModelConfig.add_member(:temperature, Shapes::ShapeRef.new(shape: Temperature, location_name: "temperature"))
|
|
1811
1834
|
HarnessGeminiModelConfig.add_member(:top_p, Shapes::ShapeRef.new(shape: TopP, location_name: "topP"))
|
|
1812
1835
|
HarnessGeminiModelConfig.add_member(:top_k, Shapes::ShapeRef.new(shape: TopK, location_name: "topK"))
|
|
1836
|
+
HarnessGeminiModelConfig.add_member(:additional_params, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParams"))
|
|
1813
1837
|
HarnessGeminiModelConfig.struct_class = Types::HarnessGeminiModelConfig
|
|
1814
1838
|
|
|
1815
1839
|
HarnessInlineFunctionConfig.add_member(:description, Shapes::ShapeRef.new(shape: HarnessInlineFunctionDescription, required: true, location_name: "description"))
|
|
@@ -1984,6 +2008,9 @@ module Aws::BedrockAgentCore
|
|
|
1984
2008
|
|
|
1985
2009
|
HarnessToolResultContentBlocks.member = Shapes::ShapeRef.new(shape: HarnessToolResultContentBlock)
|
|
1986
2010
|
|
|
2011
|
+
HarnessToolResultMetadataBlockDelta.add_member(:metadata, Shapes::ShapeRef.new(shape: SensitiveText, required: true, location_name: "metadata"))
|
|
2012
|
+
HarnessToolResultMetadataBlockDelta.struct_class = Types::HarnessToolResultMetadataBlockDelta
|
|
2013
|
+
|
|
1987
2014
|
HarnessToolUseBlock.add_member(:name, Shapes::ShapeRef.new(shape: HarnessToolName, required: true, location_name: "name"))
|
|
1988
2015
|
HarnessToolUseBlock.add_member(:tool_use_id, Shapes::ShapeRef.new(shape: HarnessToolUseId, required: true, location_name: "toolUseId"))
|
|
1989
2016
|
HarnessToolUseBlock.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveJson, required: true, location_name: "input"))
|
|
@@ -2085,6 +2112,8 @@ module Aws::BedrockAgentCore
|
|
|
2085
2112
|
InvokeAgentRuntimeRequest.add_member(:mcp_session_id, Shapes::ShapeRef.new(shape: StringType, location: "header", location_name: "Mcp-Session-Id"))
|
|
2086
2113
|
InvokeAgentRuntimeRequest.add_member(:runtime_session_id, Shapes::ShapeRef.new(shape: SessionType, location: "header", location_name: "X-Amzn-Bedrock-AgentCore-Runtime-Session-Id", metadata: {"idempotencyToken" => true}))
|
|
2087
2114
|
InvokeAgentRuntimeRequest.add_member(:mcp_protocol_version, Shapes::ShapeRef.new(shape: StringType, location: "header", location_name: "Mcp-Protocol-Version"))
|
|
2115
|
+
InvokeAgentRuntimeRequest.add_member(:mcp_method, Shapes::ShapeRef.new(shape: StringType, location: "header", location_name: "Mcp-Method"))
|
|
2116
|
+
InvokeAgentRuntimeRequest.add_member(:mcp_name, Shapes::ShapeRef.new(shape: StringType, location: "header", location_name: "Mcp-Name"))
|
|
2088
2117
|
InvokeAgentRuntimeRequest.add_member(:runtime_user_id, Shapes::ShapeRef.new(shape: StringType, location: "header", location_name: "X-Amzn-Bedrock-AgentCore-Runtime-User-Id"))
|
|
2089
2118
|
InvokeAgentRuntimeRequest.add_member(:trace_id, Shapes::ShapeRef.new(shape: InvokeAgentRuntimeRequestTraceIdString, location: "header", location_name: "X-Amzn-Trace-Id"))
|
|
2090
2119
|
InvokeAgentRuntimeRequest.add_member(:trace_parent, Shapes::ShapeRef.new(shape: InvokeAgentRuntimeRequestTraceParentString, location: "header", location_name: "traceparent"))
|
|
@@ -2139,6 +2168,10 @@ module Aws::BedrockAgentCore
|
|
|
2139
2168
|
InvokeHarnessRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: HarnessEndpointName, location: "querystring", location_name: "qualifier"))
|
|
2140
2169
|
InvokeHarnessRequest.add_member(:runtime_session_id, Shapes::ShapeRef.new(shape: InvokeHarnessRequestRuntimeSessionIdString, required: true, location: "header", location_name: "X-Amzn-Bedrock-AgentCore-Runtime-Session-Id"))
|
|
2141
2170
|
InvokeHarnessRequest.add_member(:runtime_user_id, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "X-Amzn-Bedrock-AgentCore-Runtime-User-Id"))
|
|
2171
|
+
InvokeHarnessRequest.add_member(:trace_parent, Shapes::ShapeRef.new(shape: InvokeHarnessRequestTraceParentString, location: "header", location_name: "traceparent"))
|
|
2172
|
+
InvokeHarnessRequest.add_member(:trace_state, Shapes::ShapeRef.new(shape: InvokeHarnessRequestTraceStateString, location: "header", location_name: "tracestate"))
|
|
2173
|
+
InvokeHarnessRequest.add_member(:trace_id, Shapes::ShapeRef.new(shape: InvokeHarnessRequestTraceIdString, location: "header", location_name: "X-Amzn-Trace-Id"))
|
|
2174
|
+
InvokeHarnessRequest.add_member(:baggage, Shapes::ShapeRef.new(shape: InvokeHarnessRequestBaggageString, location: "header", location_name: "baggage"))
|
|
2142
2175
|
InvokeHarnessRequest.add_member(:messages, Shapes::ShapeRef.new(shape: HarnessMessages, required: true, location_name: "messages"))
|
|
2143
2176
|
InvokeHarnessRequest.add_member(:model, Shapes::ShapeRef.new(shape: HarnessModelConfiguration, location_name: "model"))
|
|
2144
2177
|
InvokeHarnessRequest.add_member(:system_prompt, Shapes::ShapeRef.new(shape: HarnessSystemPrompt, location_name: "systemPrompt"))
|
|
@@ -2790,6 +2823,11 @@ module Aws::BedrockAgentCore
|
|
|
2790
2823
|
RuntimeClientError.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
2791
2824
|
RuntimeClientError.struct_class = Types::RuntimeClientError
|
|
2792
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
|
+
|
|
2793
2831
|
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
|
|
2794
2832
|
S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
|
|
2795
2833
|
S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
|
|
@@ -2931,6 +2969,7 @@ module Aws::BedrockAgentCore
|
|
|
2931
2969
|
StartBrowserSessionRequest.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "proxyConfiguration"))
|
|
2932
2970
|
StartBrowserSessionRequest.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
2933
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"))
|
|
2934
2973
|
StartBrowserSessionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2935
2974
|
StartBrowserSessionRequest.struct_class = Types::StartBrowserSessionRequest
|
|
2936
2975
|
|
|
@@ -2946,6 +2985,7 @@ module Aws::BedrockAgentCore
|
|
|
2946
2985
|
StartCodeInterpreterSessionRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
|
2947
2986
|
StartCodeInterpreterSessionRequest.add_member(:session_timeout_seconds, Shapes::ShapeRef.new(shape: CodeInterpreterSessionTimeout, location_name: "sessionTimeoutSeconds"))
|
|
2948
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"))
|
|
2949
2989
|
StartCodeInterpreterSessionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2950
2990
|
StartCodeInterpreterSessionRequest.struct_class = Types::StartCodeInterpreterSessionRequest
|
|
2951
2991
|
|
|
@@ -3170,6 +3210,16 @@ module Aws::BedrockAgentCore
|
|
|
3170
3210
|
ToolsDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
3171
3211
|
ToolsDefinition.struct_class = Types::ToolsDefinition
|
|
3172
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
|
+
|
|
3173
3223
|
TraceIds.member = Shapes::ShapeRef.new(shape: TraceId)
|
|
3174
3224
|
|
|
3175
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
|
|
@@ -4377,6 +4418,10 @@ module Aws::BedrockAgentCore
|
|
|
4377
4418
|
# A reasoning content delta.
|
|
4378
4419
|
# @return [Types::HarnessReasoningContentBlockDelta]
|
|
4379
4420
|
#
|
|
4421
|
+
# @!attribute [rw] tool_result_metadata
|
|
4422
|
+
# A tool result metadata delta.
|
|
4423
|
+
# @return [Types::HarnessToolResultMetadataBlockDelta]
|
|
4424
|
+
#
|
|
4380
4425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/HarnessContentBlockDelta AWS API Documentation
|
|
4381
4426
|
#
|
|
4382
4427
|
class HarnessContentBlockDelta < Struct.new(
|
|
@@ -4384,6 +4429,7 @@ module Aws::BedrockAgentCore
|
|
|
4384
4429
|
:tool_use,
|
|
4385
4430
|
:tool_result,
|
|
4386
4431
|
:reasoning_content,
|
|
4432
|
+
:tool_result_metadata,
|
|
4387
4433
|
:unknown)
|
|
4388
4434
|
SENSITIVE = [:text, :reasoning_content]
|
|
4389
4435
|
include Aws::Structure
|
|
@@ -4393,6 +4439,7 @@ module Aws::BedrockAgentCore
|
|
|
4393
4439
|
class ToolUse < HarnessContentBlockDelta; end
|
|
4394
4440
|
class ToolResult < HarnessContentBlockDelta; end
|
|
4395
4441
|
class ReasoningContent < HarnessContentBlockDelta; end
|
|
4442
|
+
class ToolResultMetadata < HarnessContentBlockDelta; end
|
|
4396
4443
|
class Unknown < HarnessContentBlockDelta; end
|
|
4397
4444
|
end
|
|
4398
4445
|
|
|
@@ -4539,6 +4586,11 @@ module Aws::BedrockAgentCore
|
|
|
4539
4586
|
# The topK set when calling the model.
|
|
4540
4587
|
# @return [Integer]
|
|
4541
4588
|
#
|
|
4589
|
+
# @!attribute [rw] additional_params
|
|
4590
|
+
# Provider-specific parameters passed through to the Gemini model
|
|
4591
|
+
# provider unchanged.
|
|
4592
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
4593
|
+
#
|
|
4542
4594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/HarnessGeminiModelConfig AWS API Documentation
|
|
4543
4595
|
#
|
|
4544
4596
|
class HarnessGeminiModelConfig < Struct.new(
|
|
@@ -4547,7 +4599,8 @@ module Aws::BedrockAgentCore
|
|
|
4547
4599
|
:max_tokens,
|
|
4548
4600
|
:temperature,
|
|
4549
4601
|
:top_p,
|
|
4550
|
-
:top_k
|
|
4602
|
+
:top_k,
|
|
4603
|
+
:additional_params)
|
|
4551
4604
|
SENSITIVE = []
|
|
4552
4605
|
include Aws::Structure
|
|
4553
4606
|
end
|
|
@@ -5229,6 +5282,20 @@ module Aws::BedrockAgentCore
|
|
|
5229
5282
|
class Unknown < HarnessToolResultContentBlock; end
|
|
5230
5283
|
end
|
|
5231
5284
|
|
|
5285
|
+
# Delta payload for a tool result metadata.
|
|
5286
|
+
#
|
|
5287
|
+
# @!attribute [rw] metadata
|
|
5288
|
+
# The partial JSON-string fragment of the tool result metadata.
|
|
5289
|
+
# @return [String]
|
|
5290
|
+
#
|
|
5291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/HarnessToolResultMetadataBlockDelta AWS API Documentation
|
|
5292
|
+
#
|
|
5293
|
+
class HarnessToolResultMetadataBlockDelta < Struct.new(
|
|
5294
|
+
:metadata)
|
|
5295
|
+
SENSITIVE = [:metadata]
|
|
5296
|
+
include Aws::Structure
|
|
5297
|
+
end
|
|
5298
|
+
|
|
5232
5299
|
# A tool use request from the model.
|
|
5233
5300
|
#
|
|
5234
5301
|
# @!attribute [rw] name
|
|
@@ -5618,6 +5685,22 @@ module Aws::BedrockAgentCore
|
|
|
5618
5685
|
# The version of the MCP protocol being used.
|
|
5619
5686
|
# @return [String]
|
|
5620
5687
|
#
|
|
5688
|
+
# @!attribute [rw] mcp_method
|
|
5689
|
+
# The MCP method being invoked. For example, `tools/call`,
|
|
5690
|
+
# `resources/read`, or `prompts/get`.
|
|
5691
|
+
# @return [String]
|
|
5692
|
+
#
|
|
5693
|
+
# @!attribute [rw] mcp_name
|
|
5694
|
+
# The name of the MCP resource, tool, or prompt being accessed. The
|
|
5695
|
+
# value depends on the method:
|
|
5696
|
+
#
|
|
5697
|
+
# * `tools/call` – The tool name.
|
|
5698
|
+
#
|
|
5699
|
+
# * `resources/read` – The resource URI.
|
|
5700
|
+
#
|
|
5701
|
+
# * `prompts/get` – The prompt name.
|
|
5702
|
+
# @return [String]
|
|
5703
|
+
#
|
|
5621
5704
|
# @!attribute [rw] runtime_user_id
|
|
5622
5705
|
# The identifier of the runtime user.
|
|
5623
5706
|
# @return [String]
|
|
@@ -5672,6 +5755,8 @@ module Aws::BedrockAgentCore
|
|
|
5672
5755
|
:mcp_session_id,
|
|
5673
5756
|
:runtime_session_id,
|
|
5674
5757
|
:mcp_protocol_version,
|
|
5758
|
+
:mcp_method,
|
|
5759
|
+
:mcp_name,
|
|
5675
5760
|
:runtime_user_id,
|
|
5676
5761
|
:trace_id,
|
|
5677
5762
|
:trace_parent,
|
|
@@ -5882,6 +5967,25 @@ module Aws::BedrockAgentCore
|
|
|
5882
5967
|
# passed through to the runtime container.
|
|
5883
5968
|
# @return [String]
|
|
5884
5969
|
#
|
|
5970
|
+
# @!attribute [rw] trace_parent
|
|
5971
|
+
# W3C trace context parent header containing version, trace ID, parent
|
|
5972
|
+
# span ID, and trace flags.
|
|
5973
|
+
# @return [String]
|
|
5974
|
+
#
|
|
5975
|
+
# @!attribute [rw] trace_state
|
|
5976
|
+
# W3C trace context state header for vendor-specific trace
|
|
5977
|
+
# information.
|
|
5978
|
+
# @return [String]
|
|
5979
|
+
#
|
|
5980
|
+
# @!attribute [rw] trace_id
|
|
5981
|
+
# Trace ID for maintaining observability through the operation.
|
|
5982
|
+
# @return [String]
|
|
5983
|
+
#
|
|
5984
|
+
# @!attribute [rw] baggage
|
|
5985
|
+
# W3C Baggage header for user-defined context propagation. Format:
|
|
5986
|
+
# key1=value1,key2=value2
|
|
5987
|
+
# @return [String]
|
|
5988
|
+
#
|
|
5885
5989
|
# @!attribute [rw] messages
|
|
5886
5990
|
# The messages to send to the agent.
|
|
5887
5991
|
# @return [Array<Types::HarnessMessage>]
|
|
@@ -5938,6 +6042,10 @@ module Aws::BedrockAgentCore
|
|
|
5938
6042
|
:qualifier,
|
|
5939
6043
|
:runtime_session_id,
|
|
5940
6044
|
:runtime_user_id,
|
|
6045
|
+
:trace_parent,
|
|
6046
|
+
:trace_state,
|
|
6047
|
+
:trace_id,
|
|
6048
|
+
:baggage,
|
|
5941
6049
|
:messages,
|
|
5942
6050
|
:model,
|
|
5943
6051
|
:system_prompt,
|
|
@@ -8653,6 +8761,35 @@ module Aws::BedrockAgentCore
|
|
|
8653
8761
|
include Aws::Structure
|
|
8654
8762
|
end
|
|
8655
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
|
+
|
|
8656
8793
|
# The Amazon S3 location configuration of a resource.
|
|
8657
8794
|
#
|
|
8658
8795
|
# @!attribute [rw] bucket
|
|
@@ -9309,6 +9446,15 @@ module Aws::BedrockAgentCore
|
|
|
9309
9446
|
# A list of certificates to install in the browser session.
|
|
9310
9447
|
# @return [Array<Types::Certificate>]
|
|
9311
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
|
+
#
|
|
9312
9458
|
# @!attribute [rw] client_token
|
|
9313
9459
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
9314
9460
|
# completes no more than one time. If this token matches a previous
|
|
@@ -9334,6 +9480,7 @@ module Aws::BedrockAgentCore
|
|
|
9334
9480
|
:proxy_configuration,
|
|
9335
9481
|
:enterprise_policies,
|
|
9336
9482
|
:certificates,
|
|
9483
|
+
:filesystem_configurations,
|
|
9337
9484
|
:client_token)
|
|
9338
9485
|
SENSITIVE = []
|
|
9339
9486
|
include Aws::Structure
|
|
@@ -9398,6 +9545,15 @@ module Aws::BedrockAgentCore
|
|
|
9398
9545
|
# A list of certificates to install in the code interpreter session.
|
|
9399
9546
|
# @return [Array<Types::Certificate>]
|
|
9400
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
|
+
#
|
|
9401
9557
|
# @!attribute [rw] client_token
|
|
9402
9558
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
9403
9559
|
# completes no more than one time. If this token matches a previous
|
|
@@ -9418,6 +9574,7 @@ module Aws::BedrockAgentCore
|
|
|
9418
9574
|
:name,
|
|
9419
9575
|
:session_timeout_seconds,
|
|
9420
9576
|
:certificates,
|
|
9577
|
+
:filesystem_configurations,
|
|
9421
9578
|
:client_token)
|
|
9422
9579
|
SENSITIVE = []
|
|
9423
9580
|
include Aws::Structure
|
|
@@ -10432,6 +10589,44 @@ module Aws::BedrockAgentCore
|
|
|
10432
10589
|
include Aws::Structure
|
|
10433
10590
|
end
|
|
10434
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
|
+
|
|
10435
10630
|
# This exception is thrown when the JWT bearer token is invalid or not
|
|
10436
10631
|
# found for OAuth bearer token based access
|
|
10437
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: (
|
|
@@ -761,6 +763,8 @@ module Aws
|
|
|
761
763
|
?mcp_session_id: ::String,
|
|
762
764
|
?runtime_session_id: ::String,
|
|
763
765
|
?mcp_protocol_version: ::String,
|
|
766
|
+
?mcp_method: ::String,
|
|
767
|
+
?mcp_name: ::String,
|
|
764
768
|
?runtime_user_id: ::String,
|
|
765
769
|
?trace_id: ::String,
|
|
766
770
|
?trace_parent: ::String,
|
|
@@ -896,6 +900,10 @@ module Aws
|
|
|
896
900
|
?qualifier: ::String,
|
|
897
901
|
runtime_session_id: ::String,
|
|
898
902
|
?runtime_user_id: ::String,
|
|
903
|
+
?trace_parent: ::String,
|
|
904
|
+
?trace_state: ::String,
|
|
905
|
+
?trace_id: ::String,
|
|
906
|
+
?baggage: ::String,
|
|
899
907
|
messages: Array[
|
|
900
908
|
{
|
|
901
909
|
role: ("user" | "assistant"),
|
|
@@ -959,7 +967,9 @@ module Aws
|
|
|
959
967
|
max_tokens: ::Integer?,
|
|
960
968
|
temperature: ::Float?,
|
|
961
969
|
top_p: ::Float?,
|
|
962
|
-
top_k: ::Integer
|
|
970
|
+
top_k: ::Integer?,
|
|
971
|
+
additional_params: {
|
|
972
|
+
}?
|
|
963
973
|
}?,
|
|
964
974
|
lite_llm_model_config: {
|
|
965
975
|
model_id: ::String,
|
|
@@ -1485,6 +1495,9 @@ module Aws
|
|
|
1485
1495
|
}
|
|
1486
1496
|
}
|
|
1487
1497
|
],
|
|
1498
|
+
?filesystem_configurations: Array[
|
|
1499
|
+
Params::tools_file_system_configuration
|
|
1500
|
+
],
|
|
1488
1501
|
?client_token: ::String
|
|
1489
1502
|
) -> _StartBrowserSessionResponseSuccess
|
|
1490
1503
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBrowserSessionResponseSuccess
|
|
@@ -1511,6 +1524,9 @@ module Aws
|
|
|
1511
1524
|
}
|
|
1512
1525
|
}
|
|
1513
1526
|
],
|
|
1527
|
+
?filesystem_configurations: Array[
|
|
1528
|
+
Params::tools_file_system_configuration
|
|
1529
|
+
],
|
|
1514
1530
|
?client_token: ::String
|
|
1515
1531
|
) -> _StartCodeInterpreterSessionResponseSuccess
|
|
1516
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
|
|
|
@@ -1302,6 +1311,7 @@ module Aws::BedrockAgentCore
|
|
|
1302
1311
|
attr_accessor tool_use: Types::HarnessToolUseBlockDelta
|
|
1303
1312
|
attr_accessor tool_result: ::Array[Types::HarnessToolResultBlockDelta]
|
|
1304
1313
|
attr_accessor reasoning_content: Types::HarnessReasoningContentBlockDelta
|
|
1314
|
+
attr_accessor tool_result_metadata: Types::HarnessToolResultMetadataBlockDelta
|
|
1305
1315
|
attr_accessor unknown: untyped
|
|
1306
1316
|
SENSITIVE: [:text, :reasoning_content]
|
|
1307
1317
|
|
|
@@ -1313,6 +1323,8 @@ module Aws::BedrockAgentCore
|
|
|
1313
1323
|
end
|
|
1314
1324
|
class ReasoningContent < HarnessContentBlockDelta
|
|
1315
1325
|
end
|
|
1326
|
+
class ToolResultMetadata < HarnessContentBlockDelta
|
|
1327
|
+
end
|
|
1316
1328
|
class Unknown < HarnessContentBlockDelta
|
|
1317
1329
|
end
|
|
1318
1330
|
end
|
|
@@ -1375,6 +1387,7 @@ module Aws::BedrockAgentCore
|
|
|
1375
1387
|
attr_accessor temperature: ::Float
|
|
1376
1388
|
attr_accessor top_p: ::Float
|
|
1377
1389
|
attr_accessor top_k: ::Integer
|
|
1390
|
+
attr_accessor additional_params: untyped
|
|
1378
1391
|
SENSITIVE: []
|
|
1379
1392
|
end
|
|
1380
1393
|
|
|
@@ -1634,6 +1647,11 @@ module Aws::BedrockAgentCore
|
|
|
1634
1647
|
end
|
|
1635
1648
|
end
|
|
1636
1649
|
|
|
1650
|
+
class HarnessToolResultMetadataBlockDelta
|
|
1651
|
+
attr_accessor metadata: ::String
|
|
1652
|
+
SENSITIVE: [:metadata]
|
|
1653
|
+
end
|
|
1654
|
+
|
|
1637
1655
|
class HarnessToolUseBlock
|
|
1638
1656
|
attr_accessor name: ::String
|
|
1639
1657
|
attr_accessor tool_use_id: ::String
|
|
@@ -1732,6 +1750,8 @@ module Aws::BedrockAgentCore
|
|
|
1732
1750
|
attr_accessor mcp_session_id: ::String
|
|
1733
1751
|
attr_accessor runtime_session_id: ::String
|
|
1734
1752
|
attr_accessor mcp_protocol_version: ::String
|
|
1753
|
+
attr_accessor mcp_method: ::String
|
|
1754
|
+
attr_accessor mcp_name: ::String
|
|
1735
1755
|
attr_accessor runtime_user_id: ::String
|
|
1736
1756
|
attr_accessor trace_id: ::String
|
|
1737
1757
|
attr_accessor trace_parent: ::String
|
|
@@ -1792,6 +1812,10 @@ module Aws::BedrockAgentCore
|
|
|
1792
1812
|
attr_accessor qualifier: ::String
|
|
1793
1813
|
attr_accessor runtime_session_id: ::String
|
|
1794
1814
|
attr_accessor runtime_user_id: ::String
|
|
1815
|
+
attr_accessor trace_parent: ::String
|
|
1816
|
+
attr_accessor trace_state: ::String
|
|
1817
|
+
attr_accessor trace_id: ::String
|
|
1818
|
+
attr_accessor baggage: ::String
|
|
1795
1819
|
attr_accessor messages: ::Array[Types::HarnessMessage]
|
|
1796
1820
|
attr_accessor model: Types::HarnessModelConfiguration
|
|
1797
1821
|
attr_accessor system_prompt: ::Array[Types::HarnessSystemContentBlock]
|
|
@@ -2657,6 +2681,13 @@ module Aws::BedrockAgentCore
|
|
|
2657
2681
|
SENSITIVE: []
|
|
2658
2682
|
end
|
|
2659
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
|
+
|
|
2660
2691
|
class S3Location
|
|
2661
2692
|
attr_accessor bucket: ::String
|
|
2662
2693
|
attr_accessor prefix: ::String
|
|
@@ -2826,6 +2857,7 @@ module Aws::BedrockAgentCore
|
|
|
2826
2857
|
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
2827
2858
|
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
2828
2859
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2860
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2829
2861
|
attr_accessor client_token: ::String
|
|
2830
2862
|
SENSITIVE: []
|
|
2831
2863
|
end
|
|
@@ -2845,6 +2877,7 @@ module Aws::BedrockAgentCore
|
|
|
2845
2877
|
attr_accessor name: ::String
|
|
2846
2878
|
attr_accessor session_timeout_seconds: ::Integer
|
|
2847
2879
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2880
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2848
2881
|
attr_accessor client_token: ::String
|
|
2849
2882
|
SENSITIVE: []
|
|
2850
2883
|
end
|
|
@@ -3141,6 +3174,20 @@ module Aws::BedrockAgentCore
|
|
|
3141
3174
|
SENSITIVE: []
|
|
3142
3175
|
end
|
|
3143
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
|
+
|
|
3144
3191
|
class UnauthorizedException
|
|
3145
3192
|
attr_accessor message: ::String
|
|
3146
3193
|
SENSITIVE: []
|