aws-sdk-bedrockagent 1.52.0 → 1.54.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 +45 -13
- data/lib/aws-sdk-bedrockagent/client_api.rb +11 -0
- data/lib/aws-sdk-bedrockagent/types.rb +62 -10
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +19 -3
- data/sig/types.rbs +12 -1
- 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: c0685cee61aa58481a4bcfc5819a5a09fc114a1371e379a78a8cf0fd91f900e9
|
4
|
+
data.tar.gz: a2cc94764d790dca26aaf8389efc704ac126812bf1e284bf87074c70c3a28738
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20e8bf789a542684dab6c0b3bea1424e73fdfe034672731538ca5ce6d1d86fe8d2abff4216cc5361f4c46c550293f34502b65fd9fe9f573fe72eada3e73a3ae7
|
7
|
+
data.tar.gz: a450ac33c5ff4ab4445372f1dd2e7754e44bee8437d95d58978dcdef21b2f568b8b4cc8179202afb7eee675d377334ac745ffb19ec1c3cd12485061430e39727
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.54.0 (2025-04-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Features: Add inline code node to prompt flow
|
8
|
+
|
9
|
+
1.53.0 (2025-04-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added optional "customMetadataField" for Amazon Aurora knowledge bases, allowing single-column metadata. Also added optional "textIndexName" for MongoDB Atlas knowledge bases, enabling hybrid search support.
|
13
|
+
|
4
14
|
1.52.0 (2025-03-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.0
|
@@ -966,7 +966,7 @@ module Aws::BedrockAgent
|
|
966
966
|
#
|
967
967
|
#
|
968
968
|
#
|
969
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
969
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
970
970
|
#
|
971
971
|
# @option params [Hash<String,String>] :parent_action_group_signature_params
|
972
972
|
# The configuration settings for a computer use action.
|
@@ -978,7 +978,7 @@ module Aws::BedrockAgent
|
|
978
978
|
#
|
979
979
|
#
|
980
980
|
#
|
981
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
981
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
982
982
|
#
|
983
983
|
# @return [Types::CreateAgentActionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
984
984
|
#
|
@@ -1579,6 +1579,10 @@ module Aws::BedrockAgent
|
|
1579
1579
|
# },
|
1580
1580
|
# ],
|
1581
1581
|
# },
|
1582
|
+
# inline_code: {
|
1583
|
+
# code: "InlineCode", # required
|
1584
|
+
# language: "Python_3", # required, accepts Python_3
|
1585
|
+
# },
|
1582
1586
|
# input: {
|
1583
1587
|
# },
|
1584
1588
|
# iterator: {
|
@@ -1721,7 +1725,7 @@ module Aws::BedrockAgent
|
|
1721
1725
|
# type: "String", # required, accepts String, Number, Boolean, Object, Array
|
1722
1726
|
# },
|
1723
1727
|
# ],
|
1724
|
-
# type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector
|
1728
|
+
# type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector, InlineCode
|
1725
1729
|
# },
|
1726
1730
|
# ],
|
1727
1731
|
# },
|
@@ -1751,6 +1755,8 @@ module Aws::BedrockAgent
|
|
1751
1755
|
# resp.definition.nodes[0].configuration.condition.conditions #=> Array
|
1752
1756
|
# resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
|
1753
1757
|
# resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
|
1758
|
+
# resp.definition.nodes[0].configuration.inline_code.code #=> String
|
1759
|
+
# resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
|
1754
1760
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
|
1755
1761
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
|
1756
1762
|
# resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
|
@@ -1797,7 +1803,7 @@ module Aws::BedrockAgent
|
|
1797
1803
|
# resp.definition.nodes[0].outputs #=> Array
|
1798
1804
|
# resp.definition.nodes[0].outputs[0].name #=> String
|
1799
1805
|
# resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
|
1800
|
-
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector"
|
1806
|
+
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode"
|
1801
1807
|
# resp.description #=> String
|
1802
1808
|
# resp.execution_role_arn #=> String
|
1803
1809
|
# resp.id #=> String
|
@@ -1971,6 +1977,8 @@ module Aws::BedrockAgent
|
|
1971
1977
|
# resp.definition.nodes[0].configuration.condition.conditions #=> Array
|
1972
1978
|
# resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
|
1973
1979
|
# resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
|
1980
|
+
# resp.definition.nodes[0].configuration.inline_code.code #=> String
|
1981
|
+
# resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
|
1974
1982
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
|
1975
1983
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
|
1976
1984
|
# resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
|
@@ -2017,7 +2025,7 @@ module Aws::BedrockAgent
|
|
2017
2025
|
# resp.definition.nodes[0].outputs #=> Array
|
2018
2026
|
# resp.definition.nodes[0].outputs[0].name #=> String
|
2019
2027
|
# resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
|
2020
|
-
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector"
|
2028
|
+
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode"
|
2021
2029
|
# resp.description #=> String
|
2022
2030
|
# resp.execution_role_arn #=> String
|
2023
2031
|
# resp.id #=> String
|
@@ -2223,6 +2231,7 @@ module Aws::BedrockAgent
|
|
2223
2231
|
# text_field: "FieldName", # required
|
2224
2232
|
# vector_field: "FieldName", # required
|
2225
2233
|
# },
|
2234
|
+
# text_index_name: "MongoDbAtlasIndexName",
|
2226
2235
|
# vector_index_name: "MongoDbAtlasIndexName", # required
|
2227
2236
|
# },
|
2228
2237
|
# neptune_analytics_configuration: {
|
@@ -2264,6 +2273,7 @@ module Aws::BedrockAgent
|
|
2264
2273
|
# credentials_secret_arn: "SecretArn", # required
|
2265
2274
|
# database_name: "RdsDatabaseName", # required
|
2266
2275
|
# field_mapping: { # required
|
2276
|
+
# custom_metadata_field: "ColumnName",
|
2267
2277
|
# metadata_field: "ColumnName", # required
|
2268
2278
|
# primary_key_field: "ColumnName", # required
|
2269
2279
|
# text_field: "ColumnName", # required
|
@@ -2342,6 +2352,7 @@ module Aws::BedrockAgent
|
|
2342
2352
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.metadata_field #=> String
|
2343
2353
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
|
2344
2354
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
|
2355
|
+
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
|
2345
2356
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
|
2346
2357
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
2347
2358
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
@@ -2364,6 +2375,7 @@ module Aws::BedrockAgent
|
|
2364
2375
|
# resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
|
2365
2376
|
# resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
|
2366
2377
|
# resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
|
2378
|
+
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.custom_metadata_field #=> String
|
2367
2379
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.metadata_field #=> String
|
2368
2380
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
|
2369
2381
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
|
@@ -3745,6 +3757,8 @@ module Aws::BedrockAgent
|
|
3745
3757
|
# resp.definition.nodes[0].configuration.condition.conditions #=> Array
|
3746
3758
|
# resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
|
3747
3759
|
# resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
|
3760
|
+
# resp.definition.nodes[0].configuration.inline_code.code #=> String
|
3761
|
+
# resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
|
3748
3762
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
|
3749
3763
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
|
3750
3764
|
# resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
|
@@ -3791,7 +3805,7 @@ module Aws::BedrockAgent
|
|
3791
3805
|
# resp.definition.nodes[0].outputs #=> Array
|
3792
3806
|
# resp.definition.nodes[0].outputs[0].name #=> String
|
3793
3807
|
# resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
|
3794
|
-
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector"
|
3808
|
+
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode"
|
3795
3809
|
# resp.description #=> String
|
3796
3810
|
# resp.execution_role_arn #=> String
|
3797
3811
|
# resp.id #=> String
|
@@ -3957,6 +3971,8 @@ module Aws::BedrockAgent
|
|
3957
3971
|
# resp.definition.nodes[0].configuration.condition.conditions #=> Array
|
3958
3972
|
# resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
|
3959
3973
|
# resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
|
3974
|
+
# resp.definition.nodes[0].configuration.inline_code.code #=> String
|
3975
|
+
# resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
|
3960
3976
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
|
3961
3977
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
|
3962
3978
|
# resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
|
@@ -4003,7 +4019,7 @@ module Aws::BedrockAgent
|
|
4003
4019
|
# resp.definition.nodes[0].outputs #=> Array
|
4004
4020
|
# resp.definition.nodes[0].outputs[0].name #=> String
|
4005
4021
|
# resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
|
4006
|
-
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector"
|
4022
|
+
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode"
|
4007
4023
|
# resp.description #=> String
|
4008
4024
|
# resp.execution_role_arn #=> String
|
4009
4025
|
# resp.id #=> String
|
@@ -4145,6 +4161,7 @@ module Aws::BedrockAgent
|
|
4145
4161
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.metadata_field #=> String
|
4146
4162
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
|
4147
4163
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
|
4164
|
+
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
|
4148
4165
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
|
4149
4166
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
4150
4167
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
@@ -4167,6 +4184,7 @@ module Aws::BedrockAgent
|
|
4167
4184
|
# resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
|
4168
4185
|
# resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
|
4169
4186
|
# resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
|
4187
|
+
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.custom_metadata_field #=> String
|
4170
4188
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.metadata_field #=> String
|
4171
4189
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
|
4172
4190
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
|
@@ -5852,7 +5870,7 @@ module Aws::BedrockAgent
|
|
5852
5870
|
#
|
5853
5871
|
#
|
5854
5872
|
#
|
5855
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
5873
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
5856
5874
|
# [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Observation.html
|
5857
5875
|
#
|
5858
5876
|
# @option params [Hash<String,String>] :parent_action_group_signature_params
|
@@ -5865,7 +5883,7 @@ module Aws::BedrockAgent
|
|
5865
5883
|
#
|
5866
5884
|
#
|
5867
5885
|
#
|
5868
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
5886
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
5869
5887
|
#
|
5870
5888
|
# @return [Types::UpdateAgentActionGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5871
5889
|
#
|
@@ -6528,6 +6546,10 @@ module Aws::BedrockAgent
|
|
6528
6546
|
# },
|
6529
6547
|
# ],
|
6530
6548
|
# },
|
6549
|
+
# inline_code: {
|
6550
|
+
# code: "InlineCode", # required
|
6551
|
+
# language: "Python_3", # required, accepts Python_3
|
6552
|
+
# },
|
6531
6553
|
# input: {
|
6532
6554
|
# },
|
6533
6555
|
# iterator: {
|
@@ -6670,7 +6692,7 @@ module Aws::BedrockAgent
|
|
6670
6692
|
# type: "String", # required, accepts String, Number, Boolean, Object, Array
|
6671
6693
|
# },
|
6672
6694
|
# ],
|
6673
|
-
# type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector
|
6695
|
+
# type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector, InlineCode
|
6674
6696
|
# },
|
6675
6697
|
# ],
|
6676
6698
|
# },
|
@@ -6698,6 +6720,8 @@ module Aws::BedrockAgent
|
|
6698
6720
|
# resp.definition.nodes[0].configuration.condition.conditions #=> Array
|
6699
6721
|
# resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
|
6700
6722
|
# resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
|
6723
|
+
# resp.definition.nodes[0].configuration.inline_code.code #=> String
|
6724
|
+
# resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
|
6701
6725
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
|
6702
6726
|
# resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
|
6703
6727
|
# resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
|
@@ -6744,7 +6768,7 @@ module Aws::BedrockAgent
|
|
6744
6768
|
# resp.definition.nodes[0].outputs #=> Array
|
6745
6769
|
# resp.definition.nodes[0].outputs[0].name #=> String
|
6746
6770
|
# resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
|
6747
|
-
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector"
|
6771
|
+
# resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode"
|
6748
6772
|
# resp.description #=> String
|
6749
6773
|
# resp.execution_role_arn #=> String
|
6750
6774
|
# resp.id #=> String
|
@@ -6982,6 +7006,7 @@ module Aws::BedrockAgent
|
|
6982
7006
|
# text_field: "FieldName", # required
|
6983
7007
|
# vector_field: "FieldName", # required
|
6984
7008
|
# },
|
7009
|
+
# text_index_name: "MongoDbAtlasIndexName",
|
6985
7010
|
# vector_index_name: "MongoDbAtlasIndexName", # required
|
6986
7011
|
# },
|
6987
7012
|
# neptune_analytics_configuration: {
|
@@ -7023,6 +7048,7 @@ module Aws::BedrockAgent
|
|
7023
7048
|
# credentials_secret_arn: "SecretArn", # required
|
7024
7049
|
# database_name: "RdsDatabaseName", # required
|
7025
7050
|
# field_mapping: { # required
|
7051
|
+
# custom_metadata_field: "ColumnName",
|
7026
7052
|
# metadata_field: "ColumnName", # required
|
7027
7053
|
# primary_key_field: "ColumnName", # required
|
7028
7054
|
# text_field: "ColumnName", # required
|
@@ -7098,6 +7124,7 @@ module Aws::BedrockAgent
|
|
7098
7124
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.metadata_field #=> String
|
7099
7125
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
|
7100
7126
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
|
7127
|
+
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
|
7101
7128
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
|
7102
7129
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
7103
7130
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
@@ -7120,6 +7147,7 @@ module Aws::BedrockAgent
|
|
7120
7147
|
# resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
|
7121
7148
|
# resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
|
7122
7149
|
# resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
|
7150
|
+
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.custom_metadata_field #=> String
|
7123
7151
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.metadata_field #=> String
|
7124
7152
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
|
7125
7153
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
|
@@ -7395,6 +7423,10 @@ module Aws::BedrockAgent
|
|
7395
7423
|
# },
|
7396
7424
|
# ],
|
7397
7425
|
# },
|
7426
|
+
# inline_code: {
|
7427
|
+
# code: "InlineCode", # required
|
7428
|
+
# language: "Python_3", # required, accepts Python_3
|
7429
|
+
# },
|
7398
7430
|
# input: {
|
7399
7431
|
# },
|
7400
7432
|
# iterator: {
|
@@ -7537,7 +7569,7 @@ module Aws::BedrockAgent
|
|
7537
7569
|
# type: "String", # required, accepts String, Number, Boolean, Object, Array
|
7538
7570
|
# },
|
7539
7571
|
# ],
|
7540
|
-
# type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector
|
7572
|
+
# type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector, InlineCode
|
7541
7573
|
# },
|
7542
7574
|
# ],
|
7543
7575
|
# },
|
@@ -7617,7 +7649,7 @@ module Aws::BedrockAgent
|
|
7617
7649
|
tracer: tracer
|
7618
7650
|
)
|
7619
7651
|
context[:gem_name] = 'aws-sdk-bedrockagent'
|
7620
|
-
context[:gem_version] = '1.
|
7652
|
+
context[:gem_version] = '1.54.0'
|
7621
7653
|
Seahorse::Client::Request.new(handlers, context)
|
7622
7654
|
end
|
7623
7655
|
|
@@ -301,6 +301,8 @@ module Aws::BedrockAgent
|
|
301
301
|
IngestionJobStatus = Shapes::StringShape.new(name: 'IngestionJobStatus')
|
302
302
|
IngestionJobSummaries = Shapes::ListShape.new(name: 'IngestionJobSummaries')
|
303
303
|
IngestionJobSummary = Shapes::StructureShape.new(name: 'IngestionJobSummary')
|
304
|
+
InlineCode = Shapes::StringShape.new(name: 'InlineCode')
|
305
|
+
InlineCodeFlowNodeConfiguration = Shapes::StructureShape.new(name: 'InlineCodeFlowNodeConfiguration')
|
304
306
|
InlineContent = Shapes::StructureShape.new(name: 'InlineContent')
|
305
307
|
InlineContentType = Shapes::StringShape.new(name: 'InlineContentType')
|
306
308
|
InputFlowNodeConfiguration = Shapes::StructureShape.new(name: 'InputFlowNodeConfiguration')
|
@@ -570,6 +572,7 @@ module Aws::BedrockAgent
|
|
570
572
|
SupplementalDataStorageLocation = Shapes::StructureShape.new(name: 'SupplementalDataStorageLocation')
|
571
573
|
SupplementalDataStorageLocationType = Shapes::StringShape.new(name: 'SupplementalDataStorageLocationType')
|
572
574
|
SupplementalDataStorageLocations = Shapes::ListShape.new(name: 'SupplementalDataStorageLocations')
|
575
|
+
SupportedLanguages = Shapes::StringShape.new(name: 'SupportedLanguages')
|
573
576
|
SystemContentBlock = Shapes::UnionShape.new(name: 'SystemContentBlock')
|
574
577
|
SystemContentBlocks = Shapes::ListShape.new(name: 'SystemContentBlocks')
|
575
578
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
@@ -1394,6 +1397,7 @@ module Aws::BedrockAgent
|
|
1394
1397
|
FlowNodeConfiguration.add_member(:agent, Shapes::ShapeRef.new(shape: AgentFlowNodeConfiguration, location_name: "agent"))
|
1395
1398
|
FlowNodeConfiguration.add_member(:collector, Shapes::ShapeRef.new(shape: CollectorFlowNodeConfiguration, location_name: "collector"))
|
1396
1399
|
FlowNodeConfiguration.add_member(:condition, Shapes::ShapeRef.new(shape: ConditionFlowNodeConfiguration, location_name: "condition"))
|
1400
|
+
FlowNodeConfiguration.add_member(:inline_code, Shapes::ShapeRef.new(shape: InlineCodeFlowNodeConfiguration, location_name: "inlineCode"))
|
1397
1401
|
FlowNodeConfiguration.add_member(:input, Shapes::ShapeRef.new(shape: InputFlowNodeConfiguration, location_name: "input"))
|
1398
1402
|
FlowNodeConfiguration.add_member(:iterator, Shapes::ShapeRef.new(shape: IteratorFlowNodeConfiguration, location_name: "iterator"))
|
1399
1403
|
FlowNodeConfiguration.add_member(:knowledge_base, Shapes::ShapeRef.new(shape: KnowledgeBaseFlowNodeConfiguration, location_name: "knowledgeBase"))
|
@@ -1407,6 +1411,7 @@ module Aws::BedrockAgent
|
|
1407
1411
|
FlowNodeConfiguration.add_member_subclass(:agent, Types::FlowNodeConfiguration::Agent)
|
1408
1412
|
FlowNodeConfiguration.add_member_subclass(:collector, Types::FlowNodeConfiguration::Collector)
|
1409
1413
|
FlowNodeConfiguration.add_member_subclass(:condition, Types::FlowNodeConfiguration::Condition)
|
1414
|
+
FlowNodeConfiguration.add_member_subclass(:inline_code, Types::FlowNodeConfiguration::InlineCode)
|
1410
1415
|
FlowNodeConfiguration.add_member_subclass(:input, Types::FlowNodeConfiguration::Input)
|
1411
1416
|
FlowNodeConfiguration.add_member_subclass(:iterator, Types::FlowNodeConfiguration::Iterator)
|
1412
1417
|
FlowNodeConfiguration.add_member_subclass(:knowledge_base, Types::FlowNodeConfiguration::KnowledgeBase)
|
@@ -1748,6 +1753,10 @@ module Aws::BedrockAgent
|
|
1748
1753
|
IngestionJobSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
1749
1754
|
IngestionJobSummary.struct_class = Types::IngestionJobSummary
|
1750
1755
|
|
1756
|
+
InlineCodeFlowNodeConfiguration.add_member(:code, Shapes::ShapeRef.new(shape: InlineCode, required: true, location_name: "code"))
|
1757
|
+
InlineCodeFlowNodeConfiguration.add_member(:language, Shapes::ShapeRef.new(shape: SupportedLanguages, required: true, location_name: "language"))
|
1758
|
+
InlineCodeFlowNodeConfiguration.struct_class = Types::InlineCodeFlowNodeConfiguration
|
1759
|
+
|
1751
1760
|
InlineContent.add_member(:byte_content, Shapes::ShapeRef.new(shape: ByteContentDoc, location_name: "byteContent"))
|
1752
1761
|
InlineContent.add_member(:text_content, Shapes::ShapeRef.new(shape: TextContentDoc, location_name: "textContent"))
|
1753
1762
|
InlineContent.add_member(:type, Shapes::ShapeRef.new(shape: InlineContentType, required: true, location_name: "type"))
|
@@ -2029,6 +2038,7 @@ module Aws::BedrockAgent
|
|
2029
2038
|
MongoDbAtlasConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: MongoDbAtlasEndpoint, required: true, location_name: "endpoint"))
|
2030
2039
|
MongoDbAtlasConfiguration.add_member(:endpoint_service_name, Shapes::ShapeRef.new(shape: MongoDbAtlasEndpointServiceName, location_name: "endpointServiceName"))
|
2031
2040
|
MongoDbAtlasConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: MongoDbAtlasFieldMapping, required: true, location_name: "fieldMapping"))
|
2041
|
+
MongoDbAtlasConfiguration.add_member(:text_index_name, Shapes::ShapeRef.new(shape: MongoDbAtlasIndexName, location_name: "textIndexName"))
|
2032
2042
|
MongoDbAtlasConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: MongoDbAtlasIndexName, required: true, location_name: "vectorIndexName"))
|
2033
2043
|
MongoDbAtlasConfiguration.struct_class = Types::MongoDbAtlasConfiguration
|
2034
2044
|
|
@@ -2261,6 +2271,7 @@ module Aws::BedrockAgent
|
|
2261
2271
|
RdsConfiguration.add_member(:table_name, Shapes::ShapeRef.new(shape: RdsTableName, required: true, location_name: "tableName"))
|
2262
2272
|
RdsConfiguration.struct_class = Types::RdsConfiguration
|
2263
2273
|
|
2274
|
+
RdsFieldMapping.add_member(:custom_metadata_field, Shapes::ShapeRef.new(shape: ColumnName, location_name: "customMetadataField"))
|
2264
2275
|
RdsFieldMapping.add_member(:metadata_field, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "metadataField"))
|
2265
2276
|
RdsFieldMapping.add_member(:primary_key_field, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "primaryKeyField"))
|
2266
2277
|
RdsFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "textField"))
|
@@ -386,7 +386,7 @@ module Aws::BedrockAgent
|
|
386
386
|
#
|
387
387
|
#
|
388
388
|
#
|
389
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
389
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
390
390
|
# @return [Hash<String,String>]
|
391
391
|
#
|
392
392
|
# @!attribute [rw] parent_action_signature
|
@@ -1774,7 +1774,7 @@ module Aws::BedrockAgent
|
|
1774
1774
|
#
|
1775
1775
|
#
|
1776
1776
|
#
|
1777
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
1777
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
1778
1778
|
# @return [String]
|
1779
1779
|
#
|
1780
1780
|
# @!attribute [rw] parent_action_group_signature_params
|
@@ -1787,7 +1787,7 @@ module Aws::BedrockAgent
|
|
1787
1787
|
#
|
1788
1788
|
#
|
1789
1789
|
#
|
1790
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
1790
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
1791
1791
|
# @return [Hash<String,String>]
|
1792
1792
|
#
|
1793
1793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateAgentActionGroupRequest AWS API Documentation
|
@@ -4017,10 +4017,17 @@ module Aws::BedrockAgent
|
|
4017
4017
|
# @return [Types::CollectorFlowNodeConfiguration]
|
4018
4018
|
#
|
4019
4019
|
# @!attribute [rw] condition
|
4020
|
-
# Contains configurations for a
|
4020
|
+
# Contains configurations for a condition node in your flow. Defines
|
4021
4021
|
# conditions that lead to different branches of the flow.
|
4022
4022
|
# @return [Types::ConditionFlowNodeConfiguration]
|
4023
4023
|
#
|
4024
|
+
# @!attribute [rw] inline_code
|
4025
|
+
# Contains configurations for an inline code node in your flow. Inline
|
4026
|
+
# code nodes let you write and execute code directly within your flow,
|
4027
|
+
# enabling data transformations, custom logic, and integrations
|
4028
|
+
# without needing an external Lambda function.
|
4029
|
+
# @return [Types::InlineCodeFlowNodeConfiguration]
|
4030
|
+
#
|
4024
4031
|
# @!attribute [rw] input
|
4025
4032
|
# Contains configurations for an input flow node in your flow. The
|
4026
4033
|
# first node in the flow. `inputs` can't be specified for this node.
|
@@ -4066,12 +4073,12 @@ module Aws::BedrockAgent
|
|
4066
4073
|
# @return [Types::PromptFlowNodeConfiguration]
|
4067
4074
|
#
|
4068
4075
|
# @!attribute [rw] retrieval
|
4069
|
-
# Contains configurations for a
|
4076
|
+
# Contains configurations for a retrieval node in your flow. Retrieves
|
4070
4077
|
# data from an Amazon S3 location and returns it as the output.
|
4071
4078
|
# @return [Types::RetrievalFlowNodeConfiguration]
|
4072
4079
|
#
|
4073
4080
|
# @!attribute [rw] storage
|
4074
|
-
# Contains configurations for a
|
4081
|
+
# Contains configurations for a storage node in your flow. Stores an
|
4075
4082
|
# input in an Amazon S3 location.
|
4076
4083
|
# @return [Types::StorageFlowNodeConfiguration]
|
4077
4084
|
#
|
@@ -4081,6 +4088,7 @@ module Aws::BedrockAgent
|
|
4081
4088
|
:agent,
|
4082
4089
|
:collector,
|
4083
4090
|
:condition,
|
4091
|
+
:inline_code,
|
4084
4092
|
:input,
|
4085
4093
|
:iterator,
|
4086
4094
|
:knowledge_base,
|
@@ -4098,6 +4106,7 @@ module Aws::BedrockAgent
|
|
4098
4106
|
class Agent < FlowNodeConfiguration; end
|
4099
4107
|
class Collector < FlowNodeConfiguration; end
|
4100
4108
|
class Condition < FlowNodeConfiguration; end
|
4109
|
+
class InlineCode < FlowNodeConfiguration; end
|
4101
4110
|
class Input < FlowNodeConfiguration; end
|
4102
4111
|
class Iterator < FlowNodeConfiguration; end
|
4103
4112
|
class KnowledgeBase < FlowNodeConfiguration; end
|
@@ -5363,7 +5372,7 @@ module Aws::BedrockAgent
|
|
5363
5372
|
# the following token at each point of generation. The value that you
|
5364
5373
|
# set for `Top P` determines the number of most-likely candidates from
|
5365
5374
|
# which the model chooses the next token in the sequence. For example,
|
5366
|
-
# if you set `topP` to
|
5375
|
+
# if you set `topP` to 0.8, the model only selects the next token from
|
5367
5376
|
# the top 80% of the probability distribution of next tokens.
|
5368
5377
|
# @return [Float]
|
5369
5378
|
#
|
@@ -5649,6 +5658,37 @@ module Aws::BedrockAgent
|
|
5649
5658
|
include Aws::Structure
|
5650
5659
|
end
|
5651
5660
|
|
5661
|
+
# Contains configurations for an inline code node in your flow. Inline
|
5662
|
+
# code nodes let you write and execute code directly within your flow,
|
5663
|
+
# enabling data transformations, custom logic, and integrations without
|
5664
|
+
# needing an external Lambda function.
|
5665
|
+
#
|
5666
|
+
# @!attribute [rw] code
|
5667
|
+
# The code that's executed in your inline code node. The code can
|
5668
|
+
# access input data from previous nodes in the flow, perform
|
5669
|
+
# operations on that data, and produce output that can be used by
|
5670
|
+
# other nodes in your flow.
|
5671
|
+
#
|
5672
|
+
# The code must be valid in the programming `language` that you
|
5673
|
+
# specify.
|
5674
|
+
# @return [String]
|
5675
|
+
#
|
5676
|
+
# @!attribute [rw] language
|
5677
|
+
# The programming language used by your inline code node.
|
5678
|
+
#
|
5679
|
+
# The code must be valid in the programming `language` that you
|
5680
|
+
# specify. Currently, only Python 3 (`Python_3`) is supported.
|
5681
|
+
# @return [String]
|
5682
|
+
#
|
5683
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/InlineCodeFlowNodeConfiguration AWS API Documentation
|
5684
|
+
#
|
5685
|
+
class InlineCodeFlowNodeConfiguration < Struct.new(
|
5686
|
+
:code,
|
5687
|
+
:language)
|
5688
|
+
SENSITIVE = [:code]
|
5689
|
+
include Aws::Structure
|
5690
|
+
end
|
5691
|
+
|
5652
5692
|
# Contains information about content defined inline to ingest into a
|
5653
5693
|
# data source. Choose a `type` and include the field that corresponds to
|
5654
5694
|
# it.
|
@@ -7125,6 +7165,11 @@ module Aws::BedrockAgent
|
|
7125
7165
|
# the vector store.
|
7126
7166
|
# @return [Types::MongoDbAtlasFieldMapping]
|
7127
7167
|
#
|
7168
|
+
# @!attribute [rw] text_index_name
|
7169
|
+
# The name of the text search index in the MongoDB collection. This is
|
7170
|
+
# required for using the hybrid search feature.
|
7171
|
+
# @return [String]
|
7172
|
+
#
|
7128
7173
|
# @!attribute [rw] vector_index_name
|
7129
7174
|
# The name of the MongoDB Atlas vector search index.
|
7130
7175
|
# @return [String]
|
@@ -7138,6 +7183,7 @@ module Aws::BedrockAgent
|
|
7138
7183
|
:endpoint,
|
7139
7184
|
:endpoint_service_name,
|
7140
7185
|
:field_mapping,
|
7186
|
+
:text_index_name,
|
7141
7187
|
:vector_index_name)
|
7142
7188
|
SENSITIVE = []
|
7143
7189
|
include Aws::Structure
|
@@ -7782,7 +7828,7 @@ module Aws::BedrockAgent
|
|
7782
7828
|
# skips that step. The default state for each `promptType` is as
|
7783
7829
|
# follows.
|
7784
7830
|
#
|
7785
|
-
# * `PRE_PROCESSING` – `
|
7831
|
+
# * `PRE_PROCESSING` – `DISABLED`
|
7786
7832
|
#
|
7787
7833
|
# * `ORCHESTRATION` – `ENABLED`
|
7788
7834
|
#
|
@@ -8403,6 +8449,11 @@ module Aws::BedrockAgent
|
|
8403
8449
|
# Contains the names of the fields to which to map information about the
|
8404
8450
|
# vector store.
|
8405
8451
|
#
|
8452
|
+
# @!attribute [rw] custom_metadata_field
|
8453
|
+
# Provide a name for the universal metadata field where Amazon Bedrock
|
8454
|
+
# will store any custom metadata from your data source.
|
8455
|
+
# @return [String]
|
8456
|
+
#
|
8406
8457
|
# @!attribute [rw] metadata_field
|
8407
8458
|
# The name of the field in which Amazon Bedrock stores metadata about
|
8408
8459
|
# the vector store.
|
@@ -8427,6 +8478,7 @@ module Aws::BedrockAgent
|
|
8427
8478
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/RdsFieldMapping AWS API Documentation
|
8428
8479
|
#
|
8429
8480
|
class RdsFieldMapping < Struct.new(
|
8481
|
+
:custom_metadata_field,
|
8430
8482
|
:metadata_field,
|
8431
8483
|
:primary_key_field,
|
8432
8484
|
:text_field,
|
@@ -10030,7 +10082,7 @@ module Aws::BedrockAgent
|
|
10030
10082
|
#
|
10031
10083
|
#
|
10032
10084
|
#
|
10033
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
10085
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
10034
10086
|
# [2]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Observation.html
|
10035
10087
|
# @return [String]
|
10036
10088
|
#
|
@@ -10044,7 +10096,7 @@ module Aws::BedrockAgent
|
|
10044
10096
|
#
|
10045
10097
|
#
|
10046
10098
|
#
|
10047
|
-
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/
|
10099
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-computer-use.html
|
10048
10100
|
# @return [Hash<String,String>]
|
10049
10101
|
#
|
10050
10102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateAgentActionGroupRequest AWS API Documentation
|
data/lib/aws-sdk-bedrockagent.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -456,6 +456,10 @@ module Aws
|
|
456
456
|
},
|
457
457
|
]
|
458
458
|
}?,
|
459
|
+
inline_code: {
|
460
|
+
code: ::String,
|
461
|
+
language: ("Python_3")
|
462
|
+
}?,
|
459
463
|
input: {
|
460
464
|
}?,
|
461
465
|
iterator: {
|
@@ -598,7 +602,7 @@ module Aws
|
|
598
602
|
type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
599
603
|
},
|
600
604
|
]?,
|
601
|
-
type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector")
|
605
|
+
type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode")
|
602
606
|
},
|
603
607
|
]?
|
604
608
|
},
|
@@ -762,6 +766,7 @@ module Aws
|
|
762
766
|
text_field: ::String,
|
763
767
|
vector_field: ::String
|
764
768
|
},
|
769
|
+
text_index_name: ::String?,
|
765
770
|
vector_index_name: ::String
|
766
771
|
}?,
|
767
772
|
neptune_analytics_configuration: {
|
@@ -803,6 +808,7 @@ module Aws
|
|
803
808
|
credentials_secret_arn: ::String,
|
804
809
|
database_name: ::String,
|
805
810
|
field_mapping: {
|
811
|
+
custom_metadata_field: ::String?,
|
806
812
|
metadata_field: ::String,
|
807
813
|
primary_key_field: ::String,
|
808
814
|
text_field: ::String,
|
@@ -2051,6 +2057,10 @@ module Aws
|
|
2051
2057
|
},
|
2052
2058
|
]
|
2053
2059
|
}?,
|
2060
|
+
inline_code: {
|
2061
|
+
code: ::String,
|
2062
|
+
language: ("Python_3")
|
2063
|
+
}?,
|
2054
2064
|
input: {
|
2055
2065
|
}?,
|
2056
2066
|
iterator: {
|
@@ -2193,7 +2203,7 @@ module Aws
|
|
2193
2203
|
type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
2194
2204
|
},
|
2195
2205
|
]?,
|
2196
|
-
type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector")
|
2206
|
+
type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode")
|
2197
2207
|
},
|
2198
2208
|
]?
|
2199
2209
|
},
|
@@ -2335,6 +2345,7 @@ module Aws
|
|
2335
2345
|
text_field: ::String,
|
2336
2346
|
vector_field: ::String
|
2337
2347
|
},
|
2348
|
+
text_index_name: ::String?,
|
2338
2349
|
vector_index_name: ::String
|
2339
2350
|
}?,
|
2340
2351
|
neptune_analytics_configuration: {
|
@@ -2376,6 +2387,7 @@ module Aws
|
|
2376
2387
|
credentials_secret_arn: ::String,
|
2377
2388
|
database_name: ::String,
|
2378
2389
|
field_mapping: {
|
2390
|
+
custom_metadata_field: ::String?,
|
2379
2391
|
metadata_field: ::String,
|
2380
2392
|
primary_key_field: ::String,
|
2381
2393
|
text_field: ::String,
|
@@ -2557,6 +2569,10 @@ module Aws
|
|
2557
2569
|
},
|
2558
2570
|
]
|
2559
2571
|
}?,
|
2572
|
+
inline_code: {
|
2573
|
+
code: ::String,
|
2574
|
+
language: ("Python_3")
|
2575
|
+
}?,
|
2560
2576
|
input: {
|
2561
2577
|
}?,
|
2562
2578
|
iterator: {
|
@@ -2699,7 +2715,7 @@ module Aws
|
|
2699
2715
|
type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
2700
2716
|
},
|
2701
2717
|
]?,
|
2702
|
-
type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector")
|
2718
|
+
type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode")
|
2703
2719
|
},
|
2704
2720
|
]?
|
2705
2721
|
}
|
data/sig/types.rbs
CHANGED
@@ -938,7 +938,7 @@ module Aws::BedrockAgent
|
|
938
938
|
attr_accessor inputs: ::Array[Types::FlowNodeInput]
|
939
939
|
attr_accessor name: ::String
|
940
940
|
attr_accessor outputs: ::Array[Types::FlowNodeOutput]
|
941
|
-
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector")
|
941
|
+
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode")
|
942
942
|
SENSITIVE: []
|
943
943
|
end
|
944
944
|
|
@@ -946,6 +946,7 @@ module Aws::BedrockAgent
|
|
946
946
|
attr_accessor agent: Types::AgentFlowNodeConfiguration
|
947
947
|
attr_accessor collector: Types::CollectorFlowNodeConfiguration
|
948
948
|
attr_accessor condition: Types::ConditionFlowNodeConfiguration
|
949
|
+
attr_accessor inline_code: Types::InlineCodeFlowNodeConfiguration
|
949
950
|
attr_accessor input: Types::InputFlowNodeConfiguration
|
950
951
|
attr_accessor iterator: Types::IteratorFlowNodeConfiguration
|
951
952
|
attr_accessor knowledge_base: Types::KnowledgeBaseFlowNodeConfiguration
|
@@ -964,6 +965,8 @@ module Aws::BedrockAgent
|
|
964
965
|
end
|
965
966
|
class Condition < FlowNodeConfiguration
|
966
967
|
end
|
968
|
+
class InlineCode < FlowNodeConfiguration
|
969
|
+
end
|
967
970
|
class Input < FlowNodeConfiguration
|
968
971
|
end
|
969
972
|
class Iterator < FlowNodeConfiguration
|
@@ -1421,6 +1424,12 @@ module Aws::BedrockAgent
|
|
1421
1424
|
SENSITIVE: []
|
1422
1425
|
end
|
1423
1426
|
|
1427
|
+
class InlineCodeFlowNodeConfiguration
|
1428
|
+
attr_accessor code: ::String
|
1429
|
+
attr_accessor language: ("Python_3")
|
1430
|
+
SENSITIVE: [:code]
|
1431
|
+
end
|
1432
|
+
|
1424
1433
|
class InlineContent
|
1425
1434
|
attr_accessor byte_content: Types::ByteContentDoc
|
1426
1435
|
attr_accessor text_content: Types::TextContentDoc
|
@@ -1807,6 +1816,7 @@ module Aws::BedrockAgent
|
|
1807
1816
|
attr_accessor endpoint: ::String
|
1808
1817
|
attr_accessor endpoint_service_name: ::String
|
1809
1818
|
attr_accessor field_mapping: Types::MongoDbAtlasFieldMapping
|
1819
|
+
attr_accessor text_index_name: ::String
|
1810
1820
|
attr_accessor vector_index_name: ::String
|
1811
1821
|
SENSITIVE: []
|
1812
1822
|
end
|
@@ -2120,6 +2130,7 @@ module Aws::BedrockAgent
|
|
2120
2130
|
end
|
2121
2131
|
|
2122
2132
|
class RdsFieldMapping
|
2133
|
+
attr_accessor custom_metadata_field: ::String
|
2123
2134
|
attr_accessor metadata_field: ::String
|
2124
2135
|
attr_accessor primary_key_field: ::String
|
2125
2136
|
attr_accessor text_field: ::String
|
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.54.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-
|
11
|
+
date: 2025-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|