aws-sdk-bedrockagent 1.50.0 → 1.52.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-bedrockagent/client.rb +149 -30
- data/lib/aws-sdk-bedrockagent/client_api.rb +26 -0
- data/lib/aws-sdk-bedrockagent/types.rb +190 -27
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +26 -4
- data/sig/types.rbs +23 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bccfbe39e0db46b01ee241e36207c64689b8de7dd441a80b38d6637b5b71eedc
|
4
|
+
data.tar.gz: bbd236d40fd9d52076c3be0cdbb44623d59a4b1f6ba1ea7f15c66aaf7657048b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ccb63e686c898e032365953f9f7ce91f0844f0736eb3960c94ede2c2f6bfdc08bb9dd4d32a2dad70e6538ecf716609556801c60a55358477574f29e8298d53b
|
7
|
+
data.tar.gz: bc72d52619963c32b31a2ef55326ca762a5bf567586a7a1b04e50ef6a53476f9f0e63ea682d7e3c0bf2c269281823761bd95f109ad73e6af39fdde1af483d814
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.52.0 (2025-03-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding support for Amazon OpenSearch Managed clusters as a vector database in Knowledge Bases for Amazon Bedrock
|
8
|
+
|
9
|
+
1.51.0 (2025-03-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for computer use tools
|
13
|
+
|
4
14
|
1.50.0 (2025-03-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.0
|
@@ -932,24 +932,53 @@ module Aws::BedrockAgent
|
|
932
932
|
# JSON or YAML-formatted payload defining the schema.
|
933
933
|
#
|
934
934
|
# @option params [String] :parent_action_group_signature
|
935
|
-
#
|
936
|
-
#
|
937
|
-
#
|
938
|
-
#
|
935
|
+
# Specify a built-in or computer use action for this action group. If
|
936
|
+
# you specify a value, you must leave the `description`, `apiSchema`,
|
937
|
+
# and `actionGroupExecutor` fields empty for this action group.
|
938
|
+
#
|
939
|
+
# * To allow your agent to request the user for additional information
|
940
|
+
# when trying to complete a task, set this field to
|
941
|
+
# `AMAZON.UserInput`.
|
942
|
+
#
|
943
|
+
# * To allow your agent to generate, run, and troubleshoot code when
|
944
|
+
# trying to complete a task, set this field to
|
945
|
+
# `AMAZON.CodeInterpreter`.
|
946
|
+
#
|
947
|
+
# * To allow your agent to use an Anthropic computer use tool, specify
|
948
|
+
# one of the following values.
|
949
|
+
#
|
950
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
951
|
+
# available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2
|
952
|
+
# only. When operating computer use functionality, we recommend taking
|
953
|
+
# additional security precautions, such as executing computer actions
|
954
|
+
# in virtual environments with restricted data access and limited
|
955
|
+
# internet connectivity. For more information, see [Configure an
|
956
|
+
# Amazon Bedrock Agent to complete tasks with computer use tools][1].
|
957
|
+
#
|
958
|
+
# * `ANTHROPIC.Computer` - Gives the agent permission to use the mouse
|
959
|
+
# and keyboard and take screenshots.
|
960
|
+
#
|
961
|
+
# * `ANTHROPIC.TextEditor` - Gives the agent permission to view,
|
962
|
+
# create and edit files.
|
963
|
+
#
|
964
|
+
# * `ANTHROPIC.Bash` - Gives the agent permission to run commands in a
|
965
|
+
# bash shell.
|
939
966
|
#
|
940
|
-
# To allow your agent to generate, run, and troubleshoot code when
|
941
|
-
# trying to complete a task, set this field to `AMAZON.CodeInterpreter`.
|
942
|
-
# You must leave the `description`, `apiSchema`, and
|
943
|
-
# `actionGroupExecutor` fields blank for this action group.
|
944
967
|
#
|
945
|
-
# During orchestration, if your agent determines that it needs to invoke
|
946
|
-
# an API in an action group, but doesn't have enough information to
|
947
|
-
# complete the API request, it will invoke this action group instead and
|
948
|
-
# return an [Observation][1] reprompting the user for more information.
|
949
968
|
#
|
969
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
950
970
|
#
|
971
|
+
# @option params [Hash<String,String>] :parent_action_group_signature_params
|
972
|
+
# The configuration settings for a computer use action.
|
951
973
|
#
|
952
|
-
#
|
974
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
975
|
+
# available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2
|
976
|
+
# only. For more information, see [Configure an Amazon Bedrock Agent to
|
977
|
+
# complete tasks with computer use tools][1].
|
978
|
+
#
|
979
|
+
#
|
980
|
+
#
|
981
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
953
982
|
#
|
954
983
|
# @return [Types::CreateAgentActionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
955
984
|
#
|
@@ -991,7 +1020,10 @@ module Aws::BedrockAgent
|
|
991
1020
|
# },
|
992
1021
|
# ],
|
993
1022
|
# },
|
994
|
-
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter
|
1023
|
+
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter, ANTHROPIC.Computer, ANTHROPIC.Bash, ANTHROPIC.TextEditor
|
1024
|
+
# parent_action_group_signature_params: {
|
1025
|
+
# "ActionGroupSignatureParamsKeyString" => "ActionGroupSignatureParamsValueString",
|
1026
|
+
# },
|
995
1027
|
# })
|
996
1028
|
#
|
997
1029
|
# @example Response structure
|
@@ -1017,7 +1049,9 @@ module Aws::BedrockAgent
|
|
1017
1049
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
|
1018
1050
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
|
1019
1051
|
# resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
|
1020
|
-
# resp.agent_action_group.
|
1052
|
+
# resp.agent_action_group.parent_action_group_signature_params #=> Hash
|
1053
|
+
# resp.agent_action_group.parent_action_group_signature_params["ActionGroupSignatureParamsKeyString"] #=> String
|
1054
|
+
# resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter", "ANTHROPIC.Computer", "ANTHROPIC.Bash", "ANTHROPIC.TextEditor"
|
1021
1055
|
# resp.agent_action_group.updated_at #=> Time
|
1022
1056
|
#
|
1023
1057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateAgentActionGroup AWS API Documentation
|
@@ -2198,6 +2232,16 @@ module Aws::BedrockAgent
|
|
2198
2232
|
# },
|
2199
2233
|
# graph_arn: "GraphArn", # required
|
2200
2234
|
# },
|
2235
|
+
# opensearch_managed_cluster_configuration: {
|
2236
|
+
# domain_arn: "OpenSearchManagedClusterDomainArn", # required
|
2237
|
+
# domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
|
2238
|
+
# field_mapping: { # required
|
2239
|
+
# metadata_field: "FieldName", # required
|
2240
|
+
# text_field: "FieldName", # required
|
2241
|
+
# vector_field: "FieldName", # required
|
2242
|
+
# },
|
2243
|
+
# vector_index_name: "OpenSearchManagedClusterIndexName", # required
|
2244
|
+
# },
|
2201
2245
|
# opensearch_serverless_configuration: {
|
2202
2246
|
# collection_arn: "OpenSearchServerlessCollectionArn", # required
|
2203
2247
|
# field_mapping: { # required
|
@@ -2238,7 +2282,7 @@ module Aws::BedrockAgent
|
|
2238
2282
|
# },
|
2239
2283
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
2240
2284
|
# },
|
2241
|
-
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS
|
2285
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
|
2242
2286
|
# },
|
2243
2287
|
# tags: {
|
2244
2288
|
# "TagKey" => "TagValue",
|
@@ -2302,6 +2346,12 @@ module Aws::BedrockAgent
|
|
2302
2346
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
2303
2347
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
2304
2348
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
2349
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
2350
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
2351
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
2352
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
2353
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
2354
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
2305
2355
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
2306
2356
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
2307
2357
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -2326,7 +2376,7 @@ module Aws::BedrockAgent
|
|
2326
2376
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
2327
2377
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
2328
2378
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
2329
|
-
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS"
|
2379
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
|
2330
2380
|
# resp.knowledge_base.updated_at #=> Time
|
2331
2381
|
#
|
2332
2382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateKnowledgeBase AWS API Documentation
|
@@ -3309,7 +3359,9 @@ module Aws::BedrockAgent
|
|
3309
3359
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
|
3310
3360
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
|
3311
3361
|
# resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
|
3312
|
-
# resp.agent_action_group.
|
3362
|
+
# resp.agent_action_group.parent_action_group_signature_params #=> Hash
|
3363
|
+
# resp.agent_action_group.parent_action_group_signature_params["ActionGroupSignatureParamsKeyString"] #=> String
|
3364
|
+
# resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter", "ANTHROPIC.Computer", "ANTHROPIC.Bash", "ANTHROPIC.TextEditor"
|
3313
3365
|
# resp.agent_action_group.updated_at #=> Time
|
3314
3366
|
#
|
3315
3367
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetAgentActionGroup AWS API Documentation
|
@@ -4097,6 +4149,12 @@ module Aws::BedrockAgent
|
|
4097
4149
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
4098
4150
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
4099
4151
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
4152
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
4153
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
4154
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
4155
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
4156
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
4157
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
4100
4158
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
4101
4159
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
4102
4160
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -4121,7 +4179,7 @@ module Aws::BedrockAgent
|
|
4121
4179
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
4122
4180
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
4123
4181
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
4124
|
-
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS"
|
4182
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
|
4125
4183
|
# resp.knowledge_base.updated_at #=> Time
|
4126
4184
|
#
|
4127
4185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetKnowledgeBase AWS API Documentation
|
@@ -5755,19 +5813,59 @@ module Aws::BedrockAgent
|
|
5755
5813
|
# JSON or YAML-formatted payload defining the schema.
|
5756
5814
|
#
|
5757
5815
|
# @option params [String] :parent_action_group_signature
|
5758
|
-
#
|
5759
|
-
#
|
5760
|
-
#
|
5761
|
-
#
|
5816
|
+
# Update the built-in or computer use action for this action group. If
|
5817
|
+
# you specify a value, you must leave the `description`, `apiSchema`,
|
5818
|
+
# and `actionGroupExecutor` fields empty for this action group.
|
5819
|
+
#
|
5820
|
+
# * To allow your agent to request the user for additional information
|
5821
|
+
# when trying to complete a task, set this field to
|
5822
|
+
# `AMAZON.UserInput`.
|
5823
|
+
#
|
5824
|
+
# * To allow your agent to generate, run, and troubleshoot code when
|
5825
|
+
# trying to complete a task, set this field to
|
5826
|
+
# `AMAZON.CodeInterpreter`.
|
5827
|
+
#
|
5828
|
+
# * To allow your agent to use an Anthropic computer use tool, specify
|
5829
|
+
# one of the following values.
|
5830
|
+
#
|
5831
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
5832
|
+
# available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2
|
5833
|
+
# only. When operating computer use functionality, we recommend taking
|
5834
|
+
# additional security precautions, such as executing computer actions
|
5835
|
+
# in virtual environments with restricted data access and limited
|
5836
|
+
# internet connectivity. For more information, see [Configure an
|
5837
|
+
# Amazon Bedrock Agent to complete tasks with computer use tools][1].
|
5838
|
+
#
|
5839
|
+
# * `ANTHROPIC.Computer` - Gives the agent permission to use the mouse
|
5840
|
+
# and keyboard and take screenshots.
|
5841
|
+
#
|
5842
|
+
# * `ANTHROPIC.TextEditor` - Gives the agent permission to view,
|
5843
|
+
# create and edit files.
|
5844
|
+
#
|
5845
|
+
# * `ANTHROPIC.Bash` - Gives the agent permission to run commands in a
|
5846
|
+
# bash shell.
|
5762
5847
|
#
|
5763
5848
|
# During orchestration, if your agent determines that it needs to invoke
|
5764
5849
|
# an API in an action group, but doesn't have enough information to
|
5765
5850
|
# complete the API request, it will invoke this action group instead and
|
5766
|
-
# return an [Observation][
|
5851
|
+
# return an [Observation][2] reprompting the user for more information.
|
5852
|
+
#
|
5853
|
+
#
|
5854
|
+
#
|
5855
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
5856
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Observation.html
|
5767
5857
|
#
|
5858
|
+
# @option params [Hash<String,String>] :parent_action_group_signature_params
|
5859
|
+
# The configuration settings for a computer use action.
|
5768
5860
|
#
|
5861
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
5862
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
5863
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
5864
|
+
# tasks with computer use tools][1].
|
5769
5865
|
#
|
5770
|
-
#
|
5866
|
+
#
|
5867
|
+
#
|
5868
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
5771
5869
|
#
|
5772
5870
|
# @return [Types::UpdateAgentActionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5773
5871
|
#
|
@@ -5809,7 +5907,10 @@ module Aws::BedrockAgent
|
|
5809
5907
|
# },
|
5810
5908
|
# ],
|
5811
5909
|
# },
|
5812
|
-
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter
|
5910
|
+
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter, ANTHROPIC.Computer, ANTHROPIC.Bash, ANTHROPIC.TextEditor
|
5911
|
+
# parent_action_group_signature_params: {
|
5912
|
+
# "ActionGroupSignatureParamsKeyString" => "ActionGroupSignatureParamsValueString",
|
5913
|
+
# },
|
5813
5914
|
# })
|
5814
5915
|
#
|
5815
5916
|
# @example Response structure
|
@@ -5835,7 +5936,9 @@ module Aws::BedrockAgent
|
|
5835
5936
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
|
5836
5937
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
|
5837
5938
|
# resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
|
5838
|
-
# resp.agent_action_group.
|
5939
|
+
# resp.agent_action_group.parent_action_group_signature_params #=> Hash
|
5940
|
+
# resp.agent_action_group.parent_action_group_signature_params["ActionGroupSignatureParamsKeyString"] #=> String
|
5941
|
+
# resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter", "ANTHROPIC.Computer", "ANTHROPIC.Bash", "ANTHROPIC.TextEditor"
|
5839
5942
|
# resp.agent_action_group.updated_at #=> Time
|
5840
5943
|
#
|
5841
5944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateAgentActionGroup AWS API Documentation
|
@@ -6888,6 +6991,16 @@ module Aws::BedrockAgent
|
|
6888
6991
|
# },
|
6889
6992
|
# graph_arn: "GraphArn", # required
|
6890
6993
|
# },
|
6994
|
+
# opensearch_managed_cluster_configuration: {
|
6995
|
+
# domain_arn: "OpenSearchManagedClusterDomainArn", # required
|
6996
|
+
# domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
|
6997
|
+
# field_mapping: { # required
|
6998
|
+
# metadata_field: "FieldName", # required
|
6999
|
+
# text_field: "FieldName", # required
|
7000
|
+
# vector_field: "FieldName", # required
|
7001
|
+
# },
|
7002
|
+
# vector_index_name: "OpenSearchManagedClusterIndexName", # required
|
7003
|
+
# },
|
6891
7004
|
# opensearch_serverless_configuration: {
|
6892
7005
|
# collection_arn: "OpenSearchServerlessCollectionArn", # required
|
6893
7006
|
# field_mapping: { # required
|
@@ -6928,7 +7041,7 @@ module Aws::BedrockAgent
|
|
6928
7041
|
# },
|
6929
7042
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
6930
7043
|
# },
|
6931
|
-
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS
|
7044
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
|
6932
7045
|
# },
|
6933
7046
|
# })
|
6934
7047
|
#
|
@@ -6989,6 +7102,12 @@ module Aws::BedrockAgent
|
|
6989
7102
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
6990
7103
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
6991
7104
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
7105
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
7106
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
7107
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
7108
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
7109
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
7110
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
6992
7111
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
6993
7112
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
6994
7113
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -7013,7 +7132,7 @@ module Aws::BedrockAgent
|
|
7013
7132
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
7014
7133
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
7015
7134
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
7016
|
-
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS"
|
7135
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
|
7017
7136
|
# resp.knowledge_base.updated_at #=> Time
|
7018
7137
|
#
|
7019
7138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateKnowledgeBase AWS API Documentation
|
@@ -7498,7 +7617,7 @@ module Aws::BedrockAgent
|
|
7498
7617
|
tracer: tracer
|
7499
7618
|
)
|
7500
7619
|
context[:gem_name] = 'aws-sdk-bedrockagent'
|
7501
|
-
context[:gem_version] = '1.
|
7620
|
+
context[:gem_version] = '1.52.0'
|
7502
7621
|
Seahorse::Client::Request.new(handlers, context)
|
7503
7622
|
end
|
7504
7623
|
|
@@ -18,6 +18,9 @@ module Aws::BedrockAgent
|
|
18
18
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
19
19
|
ActionGroupExecutor = Shapes::UnionShape.new(name: 'ActionGroupExecutor')
|
20
20
|
ActionGroupSignature = Shapes::StringShape.new(name: 'ActionGroupSignature')
|
21
|
+
ActionGroupSignatureParams = Shapes::MapShape.new(name: 'ActionGroupSignatureParams')
|
22
|
+
ActionGroupSignatureParamsKeyString = Shapes::StringShape.new(name: 'ActionGroupSignatureParamsKeyString')
|
23
|
+
ActionGroupSignatureParamsValueString = Shapes::StringShape.new(name: 'ActionGroupSignatureParamsValueString')
|
21
24
|
ActionGroupState = Shapes::StringShape.new(name: 'ActionGroupState')
|
22
25
|
ActionGroupSummaries = Shapes::ListShape.new(name: 'ActionGroupSummaries')
|
23
26
|
ActionGroupSummary = Shapes::StructureShape.new(name: 'ActionGroupSummary')
|
@@ -403,6 +406,11 @@ module Aws::BedrockAgent
|
|
403
406
|
NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
|
404
407
|
NumberValue = Shapes::FloatShape.new(name: 'NumberValue')
|
405
408
|
NumericalVersion = Shapes::StringShape.new(name: 'NumericalVersion')
|
409
|
+
OpenSearchManagedClusterConfiguration = Shapes::StructureShape.new(name: 'OpenSearchManagedClusterConfiguration')
|
410
|
+
OpenSearchManagedClusterDomainArn = Shapes::StringShape.new(name: 'OpenSearchManagedClusterDomainArn')
|
411
|
+
OpenSearchManagedClusterDomainEndpoint = Shapes::StringShape.new(name: 'OpenSearchManagedClusterDomainEndpoint')
|
412
|
+
OpenSearchManagedClusterFieldMapping = Shapes::StructureShape.new(name: 'OpenSearchManagedClusterFieldMapping')
|
413
|
+
OpenSearchManagedClusterIndexName = Shapes::StringShape.new(name: 'OpenSearchManagedClusterIndexName')
|
406
414
|
OpenSearchServerlessCollectionArn = Shapes::StringShape.new(name: 'OpenSearchServerlessCollectionArn')
|
407
415
|
OpenSearchServerlessConfiguration = Shapes::StructureShape.new(name: 'OpenSearchServerlessConfiguration')
|
408
416
|
OpenSearchServerlessFieldMapping = Shapes::StructureShape.new(name: 'OpenSearchServerlessFieldMapping')
|
@@ -663,6 +671,9 @@ module Aws::BedrockAgent
|
|
663
671
|
ActionGroupExecutor.add_member_subclass(:unknown, Types::ActionGroupExecutor::Unknown)
|
664
672
|
ActionGroupExecutor.struct_class = Types::ActionGroupExecutor
|
665
673
|
|
674
|
+
ActionGroupSignatureParams.key = Shapes::ShapeRef.new(shape: ActionGroupSignatureParamsKeyString)
|
675
|
+
ActionGroupSignatureParams.value = Shapes::ShapeRef.new(shape: ActionGroupSignatureParamsValueString)
|
676
|
+
|
666
677
|
ActionGroupSummaries.member = Shapes::ShapeRef.new(shape: ActionGroupSummary)
|
667
678
|
|
668
679
|
ActionGroupSummary.add_member(:action_group_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "actionGroupId"))
|
@@ -708,6 +719,7 @@ module Aws::BedrockAgent
|
|
708
719
|
AgentActionGroup.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
709
720
|
AgentActionGroup.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
710
721
|
AgentActionGroup.add_member(:function_schema, Shapes::ShapeRef.new(shape: FunctionSchema, location_name: "functionSchema"))
|
722
|
+
AgentActionGroup.add_member(:parent_action_group_signature_params, Shapes::ShapeRef.new(shape: ActionGroupSignatureParams, location_name: "parentActionGroupSignatureParams"))
|
711
723
|
AgentActionGroup.add_member(:parent_action_signature, Shapes::ShapeRef.new(shape: ActionGroupSignature, location_name: "parentActionSignature"))
|
712
724
|
AgentActionGroup.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
713
725
|
AgentActionGroup.struct_class = Types::AgentActionGroup
|
@@ -953,6 +965,7 @@ module Aws::BedrockAgent
|
|
953
965
|
CreateAgentActionGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
954
966
|
CreateAgentActionGroupRequest.add_member(:function_schema, Shapes::ShapeRef.new(shape: FunctionSchema, location_name: "functionSchema"))
|
955
967
|
CreateAgentActionGroupRequest.add_member(:parent_action_group_signature, Shapes::ShapeRef.new(shape: ActionGroupSignature, location_name: "parentActionGroupSignature"))
|
968
|
+
CreateAgentActionGroupRequest.add_member(:parent_action_group_signature_params, Shapes::ShapeRef.new(shape: ActionGroupSignatureParams, location_name: "parentActionGroupSignatureParams"))
|
956
969
|
CreateAgentActionGroupRequest.struct_class = Types::CreateAgentActionGroupRequest
|
957
970
|
|
958
971
|
CreateAgentActionGroupResponse.add_member(:agent_action_group, Shapes::ShapeRef.new(shape: AgentActionGroup, required: true, location_name: "agentActionGroup"))
|
@@ -2036,6 +2049,17 @@ module Aws::BedrockAgent
|
|
2036
2049
|
NeptuneAnalyticsFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "textField"))
|
2037
2050
|
NeptuneAnalyticsFieldMapping.struct_class = Types::NeptuneAnalyticsFieldMapping
|
2038
2051
|
|
2052
|
+
OpenSearchManagedClusterConfiguration.add_member(:domain_arn, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterDomainArn, required: true, location_name: "domainArn"))
|
2053
|
+
OpenSearchManagedClusterConfiguration.add_member(:domain_endpoint, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterDomainEndpoint, required: true, location_name: "domainEndpoint"))
|
2054
|
+
OpenSearchManagedClusterConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterFieldMapping, required: true, location_name: "fieldMapping"))
|
2055
|
+
OpenSearchManagedClusterConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterIndexName, required: true, location_name: "vectorIndexName"))
|
2056
|
+
OpenSearchManagedClusterConfiguration.struct_class = Types::OpenSearchManagedClusterConfiguration
|
2057
|
+
|
2058
|
+
OpenSearchManagedClusterFieldMapping.add_member(:metadata_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "metadataField"))
|
2059
|
+
OpenSearchManagedClusterFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "textField"))
|
2060
|
+
OpenSearchManagedClusterFieldMapping.add_member(:vector_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "vectorField"))
|
2061
|
+
OpenSearchManagedClusterFieldMapping.struct_class = Types::OpenSearchManagedClusterFieldMapping
|
2062
|
+
|
2039
2063
|
OpenSearchServerlessConfiguration.add_member(:collection_arn, Shapes::ShapeRef.new(shape: OpenSearchServerlessCollectionArn, required: true, location_name: "collectionArn"))
|
2040
2064
|
OpenSearchServerlessConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: OpenSearchServerlessFieldMapping, required: true, location_name: "fieldMapping"))
|
2041
2065
|
OpenSearchServerlessConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: OpenSearchServerlessIndexName, required: true, location_name: "vectorIndexName"))
|
@@ -2404,6 +2428,7 @@ module Aws::BedrockAgent
|
|
2404
2428
|
|
2405
2429
|
StorageConfiguration.add_member(:mongo_db_atlas_configuration, Shapes::ShapeRef.new(shape: MongoDbAtlasConfiguration, location_name: "mongoDbAtlasConfiguration"))
|
2406
2430
|
StorageConfiguration.add_member(:neptune_analytics_configuration, Shapes::ShapeRef.new(shape: NeptuneAnalyticsConfiguration, location_name: "neptuneAnalyticsConfiguration"))
|
2431
|
+
StorageConfiguration.add_member(:opensearch_managed_cluster_configuration, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterConfiguration, location_name: "opensearchManagedClusterConfiguration"))
|
2407
2432
|
StorageConfiguration.add_member(:opensearch_serverless_configuration, Shapes::ShapeRef.new(shape: OpenSearchServerlessConfiguration, location_name: "opensearchServerlessConfiguration"))
|
2408
2433
|
StorageConfiguration.add_member(:pinecone_configuration, Shapes::ShapeRef.new(shape: PineconeConfiguration, location_name: "pineconeConfiguration"))
|
2409
2434
|
StorageConfiguration.add_member(:rds_configuration, Shapes::ShapeRef.new(shape: RdsConfiguration, location_name: "rdsConfiguration"))
|
@@ -2562,6 +2587,7 @@ module Aws::BedrockAgent
|
|
2562
2587
|
UpdateAgentActionGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
2563
2588
|
UpdateAgentActionGroupRequest.add_member(:function_schema, Shapes::ShapeRef.new(shape: FunctionSchema, location_name: "functionSchema"))
|
2564
2589
|
UpdateAgentActionGroupRequest.add_member(:parent_action_group_signature, Shapes::ShapeRef.new(shape: ActionGroupSignature, location_name: "parentActionGroupSignature"))
|
2590
|
+
UpdateAgentActionGroupRequest.add_member(:parent_action_group_signature_params, Shapes::ShapeRef.new(shape: ActionGroupSignatureParams, location_name: "parentActionGroupSignatureParams"))
|
2565
2591
|
UpdateAgentActionGroupRequest.struct_class = Types::UpdateAgentActionGroupRequest
|
2566
2592
|
|
2567
2593
|
UpdateAgentActionGroupResponse.add_member(:agent_action_group, Shapes::ShapeRef.new(shape: AgentActionGroup, required: true, location_name: "agentActionGroup"))
|
@@ -376,6 +376,19 @@ module Aws::BedrockAgent
|
|
376
376
|
# action group.
|
377
377
|
# @return [Types::FunctionSchema]
|
378
378
|
#
|
379
|
+
# @!attribute [rw] parent_action_group_signature_params
|
380
|
+
# The configuration settings for a computer use action.
|
381
|
+
#
|
382
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
383
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
384
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
385
|
+
# tasks with computer use tools][1].
|
386
|
+
#
|
387
|
+
#
|
388
|
+
#
|
389
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
390
|
+
# @return [Hash<String,String>]
|
391
|
+
#
|
379
392
|
# @!attribute [rw] parent_action_signature
|
380
393
|
# If this field is set as `AMAZON.UserInput`, the agent can request
|
381
394
|
# the user for additional information when trying to complete a task.
|
@@ -411,6 +424,7 @@ module Aws::BedrockAgent
|
|
411
424
|
:created_at,
|
412
425
|
:description,
|
413
426
|
:function_schema,
|
427
|
+
:parent_action_group_signature_params,
|
414
428
|
:parent_action_signature,
|
415
429
|
:updated_at)
|
416
430
|
SENSITIVE = []
|
@@ -1267,8 +1281,8 @@ module Aws::BedrockAgent
|
|
1267
1281
|
# @return [Types::EnrichmentStrategyConfiguration]
|
1268
1282
|
#
|
1269
1283
|
# @!attribute [rw] model_arn
|
1270
|
-
# The Amazon Resource Name (ARN) of the
|
1271
|
-
#
|
1284
|
+
# The Amazon Resource Name (ARN) of the model used to create vector
|
1285
|
+
# embeddings for the knowledge base.
|
1272
1286
|
# @return [String]
|
1273
1287
|
#
|
1274
1288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/BedrockFoundationModelContextEnrichmentConfiguration AWS API Documentation
|
@@ -1725,28 +1739,57 @@ module Aws::BedrockAgent
|
|
1725
1739
|
# @return [Types::FunctionSchema]
|
1726
1740
|
#
|
1727
1741
|
# @!attribute [rw] parent_action_group_signature
|
1728
|
-
#
|
1729
|
-
#
|
1730
|
-
# `
|
1731
|
-
# and `actionGroupExecutor` fields blank for this action group.
|
1732
|
-
#
|
1733
|
-
# To allow your agent to generate, run, and troubleshoot code when
|
1734
|
-
# trying to complete a task, set this field to
|
1735
|
-
# `AMAZON.CodeInterpreter`. You must leave the `description`,
|
1736
|
-
# `apiSchema`, and `actionGroupExecutor` fields blank for this action
|
1737
|
-
# group.
|
1742
|
+
# Specify a built-in or computer use action for this action group. If
|
1743
|
+
# you specify a value, you must leave the `description`, `apiSchema`,
|
1744
|
+
# and `actionGroupExecutor` fields empty for this action group.
|
1738
1745
|
#
|
1739
|
-
#
|
1740
|
-
#
|
1741
|
-
#
|
1742
|
-
# group instead and return an [Observation][1] reprompting the user
|
1743
|
-
# for more information.
|
1746
|
+
# * To allow your agent to request the user for additional information
|
1747
|
+
# when trying to complete a task, set this field to
|
1748
|
+
# `AMAZON.UserInput`.
|
1744
1749
|
#
|
1750
|
+
# * To allow your agent to generate, run, and troubleshoot code when
|
1751
|
+
# trying to complete a task, set this field to
|
1752
|
+
# `AMAZON.CodeInterpreter`.
|
1745
1753
|
#
|
1754
|
+
# * To allow your agent to use an Anthropic computer use tool, specify
|
1755
|
+
# one of the following values.
|
1746
1756
|
#
|
1747
|
-
#
|
1757
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
1758
|
+
# available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet
|
1759
|
+
# v2 only. When operating computer use functionality, we recommend
|
1760
|
+
# taking additional security precautions, such as executing computer
|
1761
|
+
# actions in virtual environments with restricted data access and
|
1762
|
+
# limited internet connectivity. For more information, see
|
1763
|
+
# [Configure an Amazon Bedrock Agent to complete tasks with computer
|
1764
|
+
# use tools][1].
|
1765
|
+
#
|
1766
|
+
# * `ANTHROPIC.Computer` - Gives the agent permission to use the
|
1767
|
+
# mouse and keyboard and take screenshots.
|
1768
|
+
#
|
1769
|
+
# * `ANTHROPIC.TextEditor` - Gives the agent permission to view,
|
1770
|
+
# create and edit files.
|
1771
|
+
#
|
1772
|
+
# * `ANTHROPIC.Bash` - Gives the agent permission to run commands in
|
1773
|
+
# a bash shell.
|
1774
|
+
#
|
1775
|
+
#
|
1776
|
+
#
|
1777
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
1748
1778
|
# @return [String]
|
1749
1779
|
#
|
1780
|
+
# @!attribute [rw] parent_action_group_signature_params
|
1781
|
+
# The configuration settings for a computer use action.
|
1782
|
+
#
|
1783
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
1784
|
+
# available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2
|
1785
|
+
# only. For more information, see [Configure an Amazon Bedrock Agent
|
1786
|
+
# to complete tasks with computer use tools][1].
|
1787
|
+
#
|
1788
|
+
#
|
1789
|
+
#
|
1790
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
1791
|
+
# @return [Hash<String,String>]
|
1792
|
+
#
|
1750
1793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateAgentActionGroupRequest AWS API Documentation
|
1751
1794
|
#
|
1752
1795
|
class CreateAgentActionGroupRequest < Struct.new(
|
@@ -1759,7 +1802,8 @@ module Aws::BedrockAgent
|
|
1759
1802
|
:client_token,
|
1760
1803
|
:description,
|
1761
1804
|
:function_schema,
|
1762
|
-
:parent_action_group_signature
|
1805
|
+
:parent_action_group_signature,
|
1806
|
+
:parent_action_group_signature_params)
|
1763
1807
|
SENSITIVE = []
|
1764
1808
|
include Aws::Structure
|
1765
1809
|
end
|
@@ -7197,6 +7241,71 @@ module Aws::BedrockAgent
|
|
7197
7241
|
include Aws::Structure
|
7198
7242
|
end
|
7199
7243
|
|
7244
|
+
# Contains details about the Managed Cluster configuration of the
|
7245
|
+
# knowledge base in Amazon OpenSearch Service. For more information, see
|
7246
|
+
# [Create a vector index in OpenSearch Managed Cluster][1].
|
7247
|
+
#
|
7248
|
+
#
|
7249
|
+
#
|
7250
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html
|
7251
|
+
#
|
7252
|
+
# @!attribute [rw] domain_arn
|
7253
|
+
# The Amazon Resource Name (ARN) of the OpenSearch domain.
|
7254
|
+
# @return [String]
|
7255
|
+
#
|
7256
|
+
# @!attribute [rw] domain_endpoint
|
7257
|
+
# The endpoint URL the OpenSearch domain.
|
7258
|
+
# @return [String]
|
7259
|
+
#
|
7260
|
+
# @!attribute [rw] field_mapping
|
7261
|
+
# Contains the names of the fields to which to map information about
|
7262
|
+
# the vector store.
|
7263
|
+
# @return [Types::OpenSearchManagedClusterFieldMapping]
|
7264
|
+
#
|
7265
|
+
# @!attribute [rw] vector_index_name
|
7266
|
+
# The name of the vector store.
|
7267
|
+
# @return [String]
|
7268
|
+
#
|
7269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/OpenSearchManagedClusterConfiguration AWS API Documentation
|
7270
|
+
#
|
7271
|
+
class OpenSearchManagedClusterConfiguration < Struct.new(
|
7272
|
+
:domain_arn,
|
7273
|
+
:domain_endpoint,
|
7274
|
+
:field_mapping,
|
7275
|
+
:vector_index_name)
|
7276
|
+
SENSITIVE = [:vector_index_name]
|
7277
|
+
include Aws::Structure
|
7278
|
+
end
|
7279
|
+
|
7280
|
+
# Contains the names of the fields to which to map information about the
|
7281
|
+
# vector store.
|
7282
|
+
#
|
7283
|
+
# @!attribute [rw] metadata_field
|
7284
|
+
# The name of the field in which Amazon Bedrock stores metadata about
|
7285
|
+
# the vector store.
|
7286
|
+
# @return [String]
|
7287
|
+
#
|
7288
|
+
# @!attribute [rw] text_field
|
7289
|
+
# The name of the field in which Amazon Bedrock stores the raw text
|
7290
|
+
# from your data. The text is split according to the chunking strategy
|
7291
|
+
# you choose.
|
7292
|
+
# @return [String]
|
7293
|
+
#
|
7294
|
+
# @!attribute [rw] vector_field
|
7295
|
+
# The name of the field in which Amazon Bedrock stores the vector
|
7296
|
+
# embeddings for your data sources.
|
7297
|
+
# @return [String]
|
7298
|
+
#
|
7299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/OpenSearchManagedClusterFieldMapping AWS API Documentation
|
7300
|
+
#
|
7301
|
+
class OpenSearchManagedClusterFieldMapping < Struct.new(
|
7302
|
+
:metadata_field,
|
7303
|
+
:text_field,
|
7304
|
+
:vector_field)
|
7305
|
+
SENSITIVE = []
|
7306
|
+
include Aws::Structure
|
7307
|
+
end
|
7308
|
+
|
7200
7309
|
# Contains details about the storage configuration of the knowledge base
|
7201
7310
|
# in Amazon OpenSearch Service. For more information, see [Create a
|
7202
7311
|
# vector index in Amazon OpenSearch Service][1].
|
@@ -7651,7 +7760,7 @@ module Aws::BedrockAgent
|
|
7651
7760
|
# Specifies whether to override the default parser Lambda function
|
7652
7761
|
# when parsing the raw foundation model output in the part of the
|
7653
7762
|
# agent sequence defined by the `promptType`. If you set the field as
|
7654
|
-
# `
|
7763
|
+
# `OVERRIDDEN`, the `overrideLambda` field in the
|
7655
7764
|
# [PromptOverrideConfiguration][1] must be specified with the ARN of a
|
7656
7765
|
# Lambda function.
|
7657
7766
|
#
|
@@ -9169,6 +9278,16 @@ module Aws::BedrockAgent
|
|
9169
9278
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-neptune.html
|
9170
9279
|
# @return [Types::NeptuneAnalyticsConfiguration]
|
9171
9280
|
#
|
9281
|
+
# @!attribute [rw] opensearch_managed_cluster_configuration
|
9282
|
+
# Contains details about the storage configuration of the knowledge
|
9283
|
+
# base in OpenSearch Managed Cluster. For more information, see
|
9284
|
+
# [Create a vector index in Amazon OpenSearch Service][1].
|
9285
|
+
#
|
9286
|
+
#
|
9287
|
+
#
|
9288
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html
|
9289
|
+
# @return [Types::OpenSearchManagedClusterConfiguration]
|
9290
|
+
#
|
9172
9291
|
# @!attribute [rw] opensearch_serverless_configuration
|
9173
9292
|
# Contains the storage configuration of the knowledge base in Amazon
|
9174
9293
|
# OpenSearch Service.
|
@@ -9203,6 +9322,7 @@ module Aws::BedrockAgent
|
|
9203
9322
|
class StorageConfiguration < Struct.new(
|
9204
9323
|
:mongo_db_atlas_configuration,
|
9205
9324
|
:neptune_analytics_configuration,
|
9325
|
+
:opensearch_managed_cluster_configuration,
|
9206
9326
|
:opensearch_serverless_configuration,
|
9207
9327
|
:pinecone_configuration,
|
9208
9328
|
:rds_configuration,
|
@@ -9869,22 +9989,64 @@ module Aws::BedrockAgent
|
|
9869
9989
|
# @return [Types::FunctionSchema]
|
9870
9990
|
#
|
9871
9991
|
# @!attribute [rw] parent_action_group_signature
|
9872
|
-
#
|
9873
|
-
#
|
9874
|
-
# `
|
9875
|
-
#
|
9992
|
+
# Update the built-in or computer use action for this action group. If
|
9993
|
+
# you specify a value, you must leave the `description`, `apiSchema`,
|
9994
|
+
# and `actionGroupExecutor` fields empty for this action group.
|
9995
|
+
#
|
9996
|
+
# * To allow your agent to request the user for additional information
|
9997
|
+
# when trying to complete a task, set this field to
|
9998
|
+
# `AMAZON.UserInput`.
|
9999
|
+
#
|
10000
|
+
# * To allow your agent to generate, run, and troubleshoot code when
|
10001
|
+
# trying to complete a task, set this field to
|
10002
|
+
# `AMAZON.CodeInterpreter`.
|
10003
|
+
#
|
10004
|
+
# * To allow your agent to use an Anthropic computer use tool, specify
|
10005
|
+
# one of the following values.
|
10006
|
+
#
|
10007
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
10008
|
+
# available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet
|
10009
|
+
# v2 only. When operating computer use functionality, we recommend
|
10010
|
+
# taking additional security precautions, such as executing computer
|
10011
|
+
# actions in virtual environments with restricted data access and
|
10012
|
+
# limited internet connectivity. For more information, see
|
10013
|
+
# [Configure an Amazon Bedrock Agent to complete tasks with computer
|
10014
|
+
# use tools][1].
|
10015
|
+
#
|
10016
|
+
# * `ANTHROPIC.Computer` - Gives the agent permission to use the
|
10017
|
+
# mouse and keyboard and take screenshots.
|
10018
|
+
#
|
10019
|
+
# * `ANTHROPIC.TextEditor` - Gives the agent permission to view,
|
10020
|
+
# create and edit files.
|
10021
|
+
#
|
10022
|
+
# * `ANTHROPIC.Bash` - Gives the agent permission to run commands in
|
10023
|
+
# a bash shell.
|
9876
10024
|
#
|
9877
10025
|
# During orchestration, if your agent determines that it needs to
|
9878
10026
|
# invoke an API in an action group, but doesn't have enough
|
9879
10027
|
# information to complete the API request, it will invoke this action
|
9880
|
-
# group instead and return an [Observation][
|
10028
|
+
# group instead and return an [Observation][2] reprompting the user
|
9881
10029
|
# for more information.
|
9882
10030
|
#
|
9883
10031
|
#
|
9884
10032
|
#
|
9885
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/
|
10033
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
10034
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Observation.html
|
9886
10035
|
# @return [String]
|
9887
10036
|
#
|
10037
|
+
# @!attribute [rw] parent_action_group_signature_params
|
10038
|
+
# The configuration settings for a computer use action.
|
10039
|
+
#
|
10040
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
10041
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
10042
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
10043
|
+
# tasks with computer use tools][1].
|
10044
|
+
#
|
10045
|
+
#
|
10046
|
+
#
|
10047
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
10048
|
+
# @return [Hash<String,String>]
|
10049
|
+
#
|
9888
10050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateAgentActionGroupRequest AWS API Documentation
|
9889
10051
|
#
|
9890
10052
|
class UpdateAgentActionGroupRequest < Struct.new(
|
@@ -9897,7 +10059,8 @@ module Aws::BedrockAgent
|
|
9897
10059
|
:api_schema,
|
9898
10060
|
:description,
|
9899
10061
|
:function_schema,
|
9900
|
-
:parent_action_group_signature
|
10062
|
+
:parent_action_group_signature,
|
10063
|
+
:parent_action_group_signature_params)
|
9901
10064
|
SENSITIVE = []
|
9902
10065
|
include Aws::Structure
|
9903
10066
|
end
|
data/lib/aws-sdk-bedrockagent.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -204,7 +204,8 @@ module Aws
|
|
204
204
|
},
|
205
205
|
]?
|
206
206
|
},
|
207
|
-
?parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
207
|
+
?parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor"),
|
208
|
+
?parent_action_group_signature_params: Hash[::String, ::String]
|
208
209
|
) -> _CreateAgentActionGroupResponseSuccess
|
209
210
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentActionGroupResponseSuccess
|
210
211
|
|
@@ -770,6 +771,16 @@ module Aws
|
|
770
771
|
},
|
771
772
|
graph_arn: ::String
|
772
773
|
}?,
|
774
|
+
opensearch_managed_cluster_configuration: {
|
775
|
+
domain_arn: ::String,
|
776
|
+
domain_endpoint: ::String,
|
777
|
+
field_mapping: {
|
778
|
+
metadata_field: ::String,
|
779
|
+
text_field: ::String,
|
780
|
+
vector_field: ::String
|
781
|
+
},
|
782
|
+
vector_index_name: ::String
|
783
|
+
}?,
|
773
784
|
opensearch_serverless_configuration: {
|
774
785
|
collection_arn: ::String,
|
775
786
|
field_mapping: {
|
@@ -810,7 +821,7 @@ module Aws
|
|
810
821
|
},
|
811
822
|
vector_index_name: ::String
|
812
823
|
}?,
|
813
|
-
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
824
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
814
825
|
},
|
815
826
|
?tags: Hash[::String, ::String]
|
816
827
|
) -> _CreateKnowledgeBaseResponseSuccess
|
@@ -1758,7 +1769,8 @@ module Aws
|
|
1758
1769
|
},
|
1759
1770
|
]?
|
1760
1771
|
},
|
1761
|
-
?parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
1772
|
+
?parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor"),
|
1773
|
+
?parent_action_group_signature_params: Hash[::String, ::String]
|
1762
1774
|
) -> _UpdateAgentActionGroupResponseSuccess
|
1763
1775
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentActionGroupResponseSuccess
|
1764
1776
|
|
@@ -2332,6 +2344,16 @@ module Aws
|
|
2332
2344
|
},
|
2333
2345
|
graph_arn: ::String
|
2334
2346
|
}?,
|
2347
|
+
opensearch_managed_cluster_configuration: {
|
2348
|
+
domain_arn: ::String,
|
2349
|
+
domain_endpoint: ::String,
|
2350
|
+
field_mapping: {
|
2351
|
+
metadata_field: ::String,
|
2352
|
+
text_field: ::String,
|
2353
|
+
vector_field: ::String
|
2354
|
+
},
|
2355
|
+
vector_index_name: ::String
|
2356
|
+
}?,
|
2335
2357
|
opensearch_serverless_configuration: {
|
2336
2358
|
collection_arn: ::String,
|
2337
2359
|
field_mapping: {
|
@@ -2372,7 +2394,7 @@ module Aws
|
|
2372
2394
|
},
|
2373
2395
|
vector_index_name: ::String
|
2374
2396
|
}?,
|
2375
|
-
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
2397
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
2376
2398
|
}
|
2377
2399
|
) -> _UpdateKnowledgeBaseResponseSuccess
|
2378
2400
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKnowledgeBaseResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -89,7 +89,8 @@ module Aws::BedrockAgent
|
|
89
89
|
attr_accessor created_at: ::Time
|
90
90
|
attr_accessor description: ::String
|
91
91
|
attr_accessor function_schema: Types::FunctionSchema
|
92
|
-
attr_accessor
|
92
|
+
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
93
|
+
attr_accessor parent_action_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
93
94
|
attr_accessor updated_at: ::Time
|
94
95
|
SENSITIVE: []
|
95
96
|
end
|
@@ -390,7 +391,8 @@ module Aws::BedrockAgent
|
|
390
391
|
attr_accessor client_token: ::String
|
391
392
|
attr_accessor description: ::String
|
392
393
|
attr_accessor function_schema: Types::FunctionSchema
|
393
|
-
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
394
|
+
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
395
|
+
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
394
396
|
SENSITIVE: []
|
395
397
|
end
|
396
398
|
|
@@ -1834,6 +1836,21 @@ module Aws::BedrockAgent
|
|
1834
1836
|
SENSITIVE: []
|
1835
1837
|
end
|
1836
1838
|
|
1839
|
+
class OpenSearchManagedClusterConfiguration
|
1840
|
+
attr_accessor domain_arn: ::String
|
1841
|
+
attr_accessor domain_endpoint: ::String
|
1842
|
+
attr_accessor field_mapping: Types::OpenSearchManagedClusterFieldMapping
|
1843
|
+
attr_accessor vector_index_name: ::String
|
1844
|
+
SENSITIVE: [:vector_index_name]
|
1845
|
+
end
|
1846
|
+
|
1847
|
+
class OpenSearchManagedClusterFieldMapping
|
1848
|
+
attr_accessor metadata_field: ::String
|
1849
|
+
attr_accessor text_field: ::String
|
1850
|
+
attr_accessor vector_field: ::String
|
1851
|
+
SENSITIVE: []
|
1852
|
+
end
|
1853
|
+
|
1837
1854
|
class OpenSearchServerlessConfiguration
|
1838
1855
|
attr_accessor collection_arn: ::String
|
1839
1856
|
attr_accessor field_mapping: Types::OpenSearchServerlessFieldMapping
|
@@ -2335,11 +2352,12 @@ module Aws::BedrockAgent
|
|
2335
2352
|
class StorageConfiguration
|
2336
2353
|
attr_accessor mongo_db_atlas_configuration: Types::MongoDbAtlasConfiguration
|
2337
2354
|
attr_accessor neptune_analytics_configuration: Types::NeptuneAnalyticsConfiguration
|
2355
|
+
attr_accessor opensearch_managed_cluster_configuration: Types::OpenSearchManagedClusterConfiguration
|
2338
2356
|
attr_accessor opensearch_serverless_configuration: Types::OpenSearchServerlessConfiguration
|
2339
2357
|
attr_accessor pinecone_configuration: Types::PineconeConfiguration
|
2340
2358
|
attr_accessor rds_configuration: Types::RdsConfiguration
|
2341
2359
|
attr_accessor redis_enterprise_cloud_configuration: Types::RedisEnterpriseCloudConfiguration
|
2342
|
-
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
2360
|
+
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
2343
2361
|
SENSITIVE: []
|
2344
2362
|
end
|
2345
2363
|
|
@@ -2561,7 +2579,8 @@ module Aws::BedrockAgent
|
|
2561
2579
|
attr_accessor api_schema: Types::APISchema
|
2562
2580
|
attr_accessor description: ::String
|
2563
2581
|
attr_accessor function_schema: Types::FunctionSchema
|
2564
|
-
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
2582
|
+
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
2583
|
+
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
2565
2584
|
SENSITIVE: []
|
2566
2585
|
end
|
2567
2586
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrockagent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.52.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|