aws-sdk-bedrockagentcore 1.26.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcore/client.rb +93 -5
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +112 -2
- data/lib/aws-sdk-bedrockagentcore/types.rb +331 -0
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +18 -2
- data/sig/types.rbs +89 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 553a2b08a7189e5689c3d81feb0f7ff9581eca4d620fa2a424d18dfe962b4c15
|
|
4
|
+
data.tar.gz: f243f3e8444ba95db3a284688c99e1f1107c56ce83b27431240220643be54dd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8d47fb6833247e69e100d79d7914b1601ae020163a6633225784341f919e8c5d1e0b6d562772d0ae92a1d4166a2e0f8baf0e2c2a4cb38a963efeabc9dc5a1e0
|
|
7
|
+
data.tar.gz: a6caac35ba06e264f29cfa2db3fc2af650189bc0c1c5d77879bf9b17df1255db9703e550ca8f4ffe7bac94fc732ec6c104de10e3163c4501a42f46abaff1f84b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.28.0 (2026-04-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Introducing NamespacePath in AgentCore Memory to support hierarchical prefix based memory record retrieval.
|
|
8
|
+
|
|
9
|
+
1.27.0 (2026-04-09)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Introducing support for SearchRegistryRecords API on AgentCoreRegistry
|
|
13
|
+
|
|
4
14
|
1.26.0 (2026-04-07)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.28.0
|
|
@@ -2774,10 +2774,14 @@ module Aws::BedrockAgentCore
|
|
|
2774
2774
|
# The identifier of the AgentCore Memory resource for which to list
|
|
2775
2775
|
# memory records.
|
|
2776
2776
|
#
|
|
2777
|
-
# @option params [
|
|
2777
|
+
# @option params [String] :namespace
|
|
2778
2778
|
# The namespace prefix to filter memory records by. Returns all memory
|
|
2779
2779
|
# records in namespaces that start with the provided prefix.
|
|
2780
2780
|
#
|
|
2781
|
+
# @option params [String] :namespace_path
|
|
2782
|
+
# Use namespacePath for hierarchical retrievals. Return all memory
|
|
2783
|
+
# records where namespace falls under the same parent hierarchy.
|
|
2784
|
+
#
|
|
2781
2785
|
# @option params [String] :memory_strategy_id
|
|
2782
2786
|
# The memory strategy identifier to filter memory records by. If
|
|
2783
2787
|
# specified, only memory records with this strategy ID are returned.
|
|
@@ -2802,7 +2806,8 @@ module Aws::BedrockAgentCore
|
|
|
2802
2806
|
#
|
|
2803
2807
|
# resp = client.list_memory_records({
|
|
2804
2808
|
# memory_id: "MemoryId", # required
|
|
2805
|
-
# namespace: "Namespace",
|
|
2809
|
+
# namespace: "Namespace",
|
|
2810
|
+
# namespace_path: "Namespace",
|
|
2806
2811
|
# memory_strategy_id: "MemoryStrategyId",
|
|
2807
2812
|
# max_results: 1,
|
|
2808
2813
|
# next_token: "PaginationToken",
|
|
@@ -2907,10 +2912,14 @@ module Aws::BedrockAgentCore
|
|
|
2907
2912
|
# The identifier of the AgentCore Memory resource from which to retrieve
|
|
2908
2913
|
# memory records.
|
|
2909
2914
|
#
|
|
2910
|
-
# @option params [
|
|
2915
|
+
# @option params [String] :namespace
|
|
2911
2916
|
# The namespace prefix to filter memory records by. Searches for memory
|
|
2912
2917
|
# records in namespaces that start with the provided prefix.
|
|
2913
2918
|
#
|
|
2919
|
+
# @option params [String] :namespace_path
|
|
2920
|
+
# Use namespacePath for hierarchical retrievals. Return all memory
|
|
2921
|
+
# records where namespace falls under the same parent hierarchy.
|
|
2922
|
+
#
|
|
2914
2923
|
# @option params [required, Types::SearchCriteria] :search_criteria
|
|
2915
2924
|
# The search criteria to use for finding relevant memory records. This
|
|
2916
2925
|
# includes the search query, memory strategy ID, and other search
|
|
@@ -2936,7 +2945,8 @@ module Aws::BedrockAgentCore
|
|
|
2936
2945
|
#
|
|
2937
2946
|
# resp = client.retrieve_memory_records({
|
|
2938
2947
|
# memory_id: "MemoryId", # required
|
|
2939
|
-
# namespace: "Namespace",
|
|
2948
|
+
# namespace: "Namespace",
|
|
2949
|
+
# namespace_path: "Namespace",
|
|
2940
2950
|
# search_criteria: { # required
|
|
2941
2951
|
# search_query: "SearchCriteriaSearchQueryString", # required
|
|
2942
2952
|
# memory_strategy_id: "MemoryStrategyId",
|
|
@@ -3072,6 +3082,84 @@ module Aws::BedrockAgentCore
|
|
|
3072
3082
|
req.send_request(options)
|
|
3073
3083
|
end
|
|
3074
3084
|
|
|
3085
|
+
# Searches for registry records using semantic, lexical, or hybrid
|
|
3086
|
+
# queries. Returns metadata for matching records ordered by relevance
|
|
3087
|
+
# within the specified registry.
|
|
3088
|
+
#
|
|
3089
|
+
# @option params [required, String] :search_query
|
|
3090
|
+
# The search query to find matching registry records.
|
|
3091
|
+
#
|
|
3092
|
+
# @option params [required, Array<String>] :registry_ids
|
|
3093
|
+
# The list of registry identifiers to search within. Currently, you can
|
|
3094
|
+
# specify exactly one registry identifier. You can provide either the
|
|
3095
|
+
# full Amazon Web Services Resource Name (ARN) or the 12-character
|
|
3096
|
+
# alphanumeric registry ID.
|
|
3097
|
+
#
|
|
3098
|
+
# @option params [Integer] :max_results
|
|
3099
|
+
# The maximum number of records to return in a single call. Valid values
|
|
3100
|
+
# are 1 through 20. The default value is 10.
|
|
3101
|
+
#
|
|
3102
|
+
# @option params [Hash,Array,String,Numeric,Boolean] :filters
|
|
3103
|
+
# A metadata filter expression to narrow search results. Uses structured
|
|
3104
|
+
# JSON operators including field-level operators (`$eq`, `$ne`, `$in`)
|
|
3105
|
+
# and logical operators (`$and`, `$or`) on filterable fields (`name`,
|
|
3106
|
+
# `descriptorType`, `version`). For example, to filter by descriptor
|
|
3107
|
+
# type: `{"descriptorType": {"$eq": "MCP"}}`. To combine filters:
|
|
3108
|
+
# `{"$and": [{"descriptorType": {"$eq": "MCP"}}, {"name": {"$eq":
|
|
3109
|
+
# "my-tool"}}]}`.
|
|
3110
|
+
#
|
|
3111
|
+
# Document type used to carry open content
|
|
3112
|
+
# (Hash,Array,String,Numeric,Boolean). A document type value is
|
|
3113
|
+
# serialized using the same format as its surroundings and requires no
|
|
3114
|
+
# additional encoding or escaping.
|
|
3115
|
+
#
|
|
3116
|
+
# @return [Types::SearchRegistryRecordsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3117
|
+
#
|
|
3118
|
+
# * {Types::SearchRegistryRecordsResponse#registry_records #registry_records} => Array<Types::RegistryRecordSummary>
|
|
3119
|
+
#
|
|
3120
|
+
# @example Request syntax with placeholder values
|
|
3121
|
+
#
|
|
3122
|
+
# resp = client.search_registry_records({
|
|
3123
|
+
# search_query: "SearchRegistryRecordsRequestSearchQueryString", # required
|
|
3124
|
+
# registry_ids: ["RegistryIdentifier"], # required
|
|
3125
|
+
# max_results: 1,
|
|
3126
|
+
# filters: {
|
|
3127
|
+
# },
|
|
3128
|
+
# })
|
|
3129
|
+
#
|
|
3130
|
+
# @example Response structure
|
|
3131
|
+
#
|
|
3132
|
+
# resp.registry_records #=> Array
|
|
3133
|
+
# resp.registry_records[0].registry_arn #=> String
|
|
3134
|
+
# resp.registry_records[0].record_arn #=> String
|
|
3135
|
+
# resp.registry_records[0].record_id #=> String
|
|
3136
|
+
# resp.registry_records[0].name #=> String
|
|
3137
|
+
# resp.registry_records[0].description #=> String
|
|
3138
|
+
# resp.registry_records[0].descriptor_type #=> String, one of "MCP", "A2A", "CUSTOM", "AGENT_SKILLS"
|
|
3139
|
+
# resp.registry_records[0].descriptors.mcp.server.schema_version #=> String
|
|
3140
|
+
# resp.registry_records[0].descriptors.mcp.server.inline_content #=> String
|
|
3141
|
+
# resp.registry_records[0].descriptors.mcp.tools.protocol_version #=> String
|
|
3142
|
+
# resp.registry_records[0].descriptors.mcp.tools.inline_content #=> String
|
|
3143
|
+
# resp.registry_records[0].descriptors.a2a.agent_card.schema_version #=> String
|
|
3144
|
+
# resp.registry_records[0].descriptors.a2a.agent_card.inline_content #=> String
|
|
3145
|
+
# resp.registry_records[0].descriptors.custom.inline_content #=> String
|
|
3146
|
+
# resp.registry_records[0].descriptors.agent_skills.skill_md.inline_content #=> String
|
|
3147
|
+
# resp.registry_records[0].descriptors.agent_skills.skill_definition.schema_version #=> String
|
|
3148
|
+
# resp.registry_records[0].descriptors.agent_skills.skill_definition.inline_content #=> String
|
|
3149
|
+
# resp.registry_records[0].version #=> String
|
|
3150
|
+
# resp.registry_records[0].status #=> String, one of "DRAFT", "PENDING_APPROVAL", "APPROVED", "REJECTED", "DEPRECATED"
|
|
3151
|
+
# resp.registry_records[0].created_at #=> Time
|
|
3152
|
+
# resp.registry_records[0].updated_at #=> Time
|
|
3153
|
+
#
|
|
3154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/SearchRegistryRecords AWS API Documentation
|
|
3155
|
+
#
|
|
3156
|
+
# @overload search_registry_records(params = {})
|
|
3157
|
+
# @param [Hash] params ({})
|
|
3158
|
+
def search_registry_records(params = {}, options = {})
|
|
3159
|
+
req = build_request(:search_registry_records, params)
|
|
3160
|
+
req.send_request(options)
|
|
3161
|
+
end
|
|
3162
|
+
|
|
3075
3163
|
# Creates and initializes a browser session in Amazon Bedrock AgentCore.
|
|
3076
3164
|
# The session enables agents to navigate and interact with web content,
|
|
3077
3165
|
# extract information from websites, and perform web-based tasks as part
|
|
@@ -3674,7 +3762,7 @@ module Aws::BedrockAgentCore
|
|
|
3674
3762
|
tracer: tracer
|
|
3675
3763
|
)
|
|
3676
3764
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
3677
|
-
context[:gem_version] = '1.
|
|
3765
|
+
context[:gem_version] = '1.28.0'
|
|
3678
3766
|
Seahorse::Client::Request.new(handlers, context)
|
|
3679
3767
|
end
|
|
3680
3768
|
|
|
@@ -14,12 +14,15 @@ module Aws::BedrockAgentCore
|
|
|
14
14
|
|
|
15
15
|
include Seahorse::Model
|
|
16
16
|
|
|
17
|
+
A2aDescriptor = Shapes::StructureShape.new(name: 'A2aDescriptor')
|
|
17
18
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
18
19
|
AccessTokenType = Shapes::StringShape.new(name: 'AccessTokenType')
|
|
19
20
|
ActorId = Shapes::StringShape.new(name: 'ActorId')
|
|
20
21
|
ActorSummary = Shapes::StructureShape.new(name: 'ActorSummary')
|
|
21
22
|
ActorSummaryList = Shapes::ListShape.new(name: 'ActorSummaryList')
|
|
22
23
|
AgentCard = Shapes::DocumentShape.new(name: 'AgentCard', document: true)
|
|
24
|
+
AgentCardDefinition = Shapes::StructureShape.new(name: 'AgentCardDefinition')
|
|
25
|
+
AgentSkillsDescriptor = Shapes::StructureShape.new(name: 'AgentSkillsDescriptor')
|
|
23
26
|
ApiKeyType = Shapes::StringShape.new(name: 'ApiKeyType')
|
|
24
27
|
AuthorizationUrlType = Shapes::StringShape.new(name: 'AuthorizationUrlType')
|
|
25
28
|
AutomationStream = Shapes::StructureShape.new(name: 'AutomationStream')
|
|
@@ -83,6 +86,7 @@ module Aws::BedrockAgentCore
|
|
|
83
86
|
CreateEventInput = Shapes::StructureShape.new(name: 'CreateEventInput')
|
|
84
87
|
CreateEventOutput = Shapes::StructureShape.new(name: 'CreateEventOutput')
|
|
85
88
|
CredentialProviderName = Shapes::StringShape.new(name: 'CredentialProviderName')
|
|
89
|
+
CustomDescriptor = Shapes::StructureShape.new(name: 'CustomDescriptor')
|
|
86
90
|
CustomRequestKeyType = Shapes::StringShape.new(name: 'CustomRequestKeyType')
|
|
87
91
|
CustomRequestParametersType = Shapes::MapShape.new(name: 'CustomRequestParametersType')
|
|
88
92
|
CustomRequestValueType = Shapes::StringShape.new(name: 'CustomRequestValueType')
|
|
@@ -91,6 +95,9 @@ module Aws::BedrockAgentCore
|
|
|
91
95
|
DeleteEventOutput = Shapes::StructureShape.new(name: 'DeleteEventOutput')
|
|
92
96
|
DeleteMemoryRecordInput = Shapes::StructureShape.new(name: 'DeleteMemoryRecordInput')
|
|
93
97
|
DeleteMemoryRecordOutput = Shapes::StructureShape.new(name: 'DeleteMemoryRecordOutput')
|
|
98
|
+
Description = Shapes::StringShape.new(name: 'Description')
|
|
99
|
+
DescriptorType = Shapes::StringShape.new(name: 'DescriptorType')
|
|
100
|
+
Descriptors = Shapes::StructureShape.new(name: 'Descriptors')
|
|
94
101
|
Document = Shapes::DocumentShape.new(name: 'Document', document: true)
|
|
95
102
|
DomainPattern = Shapes::StringShape.new(name: 'DomainPattern')
|
|
96
103
|
DomainPatterns = Shapes::ListShape.new(name: 'DomainPatterns')
|
|
@@ -155,6 +162,7 @@ module Aws::BedrockAgentCore
|
|
|
155
162
|
HttpResponseCode = Shapes::IntegerShape.new(name: 'HttpResponseCode')
|
|
156
163
|
IgnoredReferenceInputField = Shapes::StringShape.new(name: 'IgnoredReferenceInputField')
|
|
157
164
|
IgnoredReferenceInputFields = Shapes::ListShape.new(name: 'IgnoredReferenceInputFields')
|
|
165
|
+
InlineContent = Shapes::StringShape.new(name: 'InlineContent')
|
|
158
166
|
InputContentBlock = Shapes::StructureShape.new(name: 'InputContentBlock')
|
|
159
167
|
InputContentBlockList = Shapes::ListShape.new(name: 'InputContentBlockList')
|
|
160
168
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
@@ -213,6 +221,7 @@ module Aws::BedrockAgentCore
|
|
|
213
221
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
214
222
|
MaxLenString = Shapes::StringShape.new(name: 'MaxLenString')
|
|
215
223
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
224
|
+
McpDescriptor = Shapes::StructureShape.new(name: 'McpDescriptor')
|
|
216
225
|
MemoryContent = Shapes::UnionShape.new(name: 'MemoryContent')
|
|
217
226
|
MemoryContentTextString = Shapes::StringShape.new(name: 'MemoryContentTextString')
|
|
218
227
|
MemoryId = Shapes::StringShape.new(name: 'MemoryId')
|
|
@@ -234,6 +243,7 @@ module Aws::BedrockAgentCore
|
|
|
234
243
|
MemoryStrategyId = Shapes::StringShape.new(name: 'MemoryStrategyId')
|
|
235
244
|
MessageMetadata = Shapes::StructureShape.new(name: 'MessageMetadata')
|
|
236
245
|
MessagesList = Shapes::ListShape.new(name: 'MessagesList')
|
|
246
|
+
MetadataFilterExpression = Shapes::DocumentShape.new(name: 'MetadataFilterExpression', document: true)
|
|
237
247
|
MetadataKey = Shapes::StringShape.new(name: 'MetadataKey')
|
|
238
248
|
MetadataMap = Shapes::MapShape.new(name: 'MetadataMap')
|
|
239
249
|
MetadataValue = Shapes::UnionShape.new(name: 'MetadataValue')
|
|
@@ -267,6 +277,15 @@ module Aws::BedrockAgentCore
|
|
|
267
277
|
ProxyConfiguration = Shapes::StructureShape.new(name: 'ProxyConfiguration')
|
|
268
278
|
ProxyConfigurationProxiesList = Shapes::ListShape.new(name: 'ProxyConfigurationProxiesList')
|
|
269
279
|
ProxyCredentials = Shapes::UnionShape.new(name: 'ProxyCredentials')
|
|
280
|
+
RegistryArn = Shapes::StringShape.new(name: 'RegistryArn')
|
|
281
|
+
RegistryIdentifier = Shapes::StringShape.new(name: 'RegistryIdentifier')
|
|
282
|
+
RegistryRecordArn = Shapes::StringShape.new(name: 'RegistryRecordArn')
|
|
283
|
+
RegistryRecordId = Shapes::StringShape.new(name: 'RegistryRecordId')
|
|
284
|
+
RegistryRecordName = Shapes::StringShape.new(name: 'RegistryRecordName')
|
|
285
|
+
RegistryRecordStatus = Shapes::StringShape.new(name: 'RegistryRecordStatus')
|
|
286
|
+
RegistryRecordSummary = Shapes::StructureShape.new(name: 'RegistryRecordSummary')
|
|
287
|
+
RegistryRecordSummaryList = Shapes::ListShape.new(name: 'RegistryRecordSummaryList')
|
|
288
|
+
RegistryRecordVersion = Shapes::StringShape.new(name: 'RegistryRecordVersion')
|
|
270
289
|
RequestIdentifier = Shapes::StringShape.new(name: 'RequestIdentifier')
|
|
271
290
|
RequestUri = Shapes::StringShape.new(name: 'RequestUri')
|
|
272
291
|
ResourceContent = Shapes::StructureShape.new(name: 'ResourceContent')
|
|
@@ -290,6 +309,7 @@ module Aws::BedrockAgentCore
|
|
|
290
309
|
SaveBrowserSessionProfileRequestTraceIdString = Shapes::StringShape.new(name: 'SaveBrowserSessionProfileRequestTraceIdString')
|
|
291
310
|
SaveBrowserSessionProfileRequestTraceParentString = Shapes::StringShape.new(name: 'SaveBrowserSessionProfileRequestTraceParentString')
|
|
292
311
|
SaveBrowserSessionProfileResponse = Shapes::StructureShape.new(name: 'SaveBrowserSessionProfileResponse')
|
|
312
|
+
SchemaVersion = Shapes::StringShape.new(name: 'SchemaVersion')
|
|
293
313
|
ScopeType = Shapes::StringShape.new(name: 'ScopeType')
|
|
294
314
|
ScopesListType = Shapes::ListShape.new(name: 'ScopesListType')
|
|
295
315
|
ScreenshotArguments = Shapes::StructureShape.new(name: 'ScreenshotArguments')
|
|
@@ -298,8 +318,14 @@ module Aws::BedrockAgentCore
|
|
|
298
318
|
SearchCriteria = Shapes::StructureShape.new(name: 'SearchCriteria')
|
|
299
319
|
SearchCriteriaSearchQueryString = Shapes::StringShape.new(name: 'SearchCriteriaSearchQueryString')
|
|
300
320
|
SearchCriteriaTopKInteger = Shapes::IntegerShape.new(name: 'SearchCriteriaTopKInteger')
|
|
321
|
+
SearchRegistryRecordsRequest = Shapes::StructureShape.new(name: 'SearchRegistryRecordsRequest')
|
|
322
|
+
SearchRegistryRecordsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'SearchRegistryRecordsRequestMaxResultsInteger')
|
|
323
|
+
SearchRegistryRecordsRequestRegistryIdsList = Shapes::ListShape.new(name: 'SearchRegistryRecordsRequestRegistryIdsList')
|
|
324
|
+
SearchRegistryRecordsRequestSearchQueryString = Shapes::StringShape.new(name: 'SearchRegistryRecordsRequestSearchQueryString')
|
|
325
|
+
SearchRegistryRecordsResponse = Shapes::StructureShape.new(name: 'SearchRegistryRecordsResponse')
|
|
301
326
|
SecretArn = Shapes::StringShape.new(name: 'SecretArn')
|
|
302
327
|
SecretsManagerLocation = Shapes::StructureShape.new(name: 'SecretsManagerLocation')
|
|
328
|
+
ServerDefinition = Shapes::StructureShape.new(name: 'ServerDefinition')
|
|
303
329
|
ServiceException = Shapes::StructureShape.new(name: 'ServiceException')
|
|
304
330
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
305
331
|
SessionFilter = Shapes::StructureShape.new(name: 'SessionFilter')
|
|
@@ -308,6 +334,8 @@ module Aws::BedrockAgentCore
|
|
|
308
334
|
SessionSummary = Shapes::StructureShape.new(name: 'SessionSummary')
|
|
309
335
|
SessionSummaryList = Shapes::ListShape.new(name: 'SessionSummaryList')
|
|
310
336
|
SessionType = Shapes::StringShape.new(name: 'SessionType')
|
|
337
|
+
SkillDefinition = Shapes::StructureShape.new(name: 'SkillDefinition')
|
|
338
|
+
SkillMdDefinition = Shapes::StructureShape.new(name: 'SkillMdDefinition')
|
|
311
339
|
Span = Shapes::DocumentShape.new(name: 'Span', document: true)
|
|
312
340
|
SpanContext = Shapes::StructureShape.new(name: 'SpanContext')
|
|
313
341
|
SpanId = Shapes::StringShape.new(name: 'SpanId')
|
|
@@ -346,6 +374,7 @@ module Aws::BedrockAgentCore
|
|
|
346
374
|
ToolArguments = Shapes::StructureShape.new(name: 'ToolArguments')
|
|
347
375
|
ToolName = Shapes::StringShape.new(name: 'ToolName')
|
|
348
376
|
ToolResultStructuredContent = Shapes::StructureShape.new(name: 'ToolResultStructuredContent')
|
|
377
|
+
ToolsDefinition = Shapes::StructureShape.new(name: 'ToolsDefinition')
|
|
349
378
|
TraceId = Shapes::StringShape.new(name: 'TraceId')
|
|
350
379
|
TraceIds = Shapes::ListShape.new(name: 'TraceIds')
|
|
351
380
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
|
@@ -364,6 +393,9 @@ module Aws::BedrockAgentCore
|
|
|
364
393
|
WorkloadIdentityNameType = Shapes::StringShape.new(name: 'WorkloadIdentityNameType')
|
|
365
394
|
WorkloadIdentityTokenType = Shapes::StringShape.new(name: 'WorkloadIdentityTokenType')
|
|
366
395
|
|
|
396
|
+
A2aDescriptor.add_member(:agent_card, Shapes::ShapeRef.new(shape: AgentCardDefinition, required: true, location_name: "agentCard"))
|
|
397
|
+
A2aDescriptor.struct_class = Types::A2aDescriptor
|
|
398
|
+
|
|
367
399
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
368
400
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
369
401
|
|
|
@@ -372,6 +404,14 @@ module Aws::BedrockAgentCore
|
|
|
372
404
|
|
|
373
405
|
ActorSummaryList.member = Shapes::ShapeRef.new(shape: ActorSummary)
|
|
374
406
|
|
|
407
|
+
AgentCardDefinition.add_member(:schema_version, Shapes::ShapeRef.new(shape: SchemaVersion, location_name: "schemaVersion"))
|
|
408
|
+
AgentCardDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
409
|
+
AgentCardDefinition.struct_class = Types::AgentCardDefinition
|
|
410
|
+
|
|
411
|
+
AgentSkillsDescriptor.add_member(:skill_md, Shapes::ShapeRef.new(shape: SkillMdDefinition, required: true, location_name: "skillMd"))
|
|
412
|
+
AgentSkillsDescriptor.add_member(:skill_definition, Shapes::ShapeRef.new(shape: SkillDefinition, location_name: "skillDefinition"))
|
|
413
|
+
AgentSkillsDescriptor.struct_class = Types::AgentSkillsDescriptor
|
|
414
|
+
|
|
375
415
|
AutomationStream.add_member(:stream_endpoint, Shapes::ShapeRef.new(shape: BrowserStreamEndpoint, required: true, location_name: "streamEndpoint"))
|
|
376
416
|
AutomationStream.add_member(:stream_status, Shapes::ShapeRef.new(shape: AutomationStreamStatus, required: true, location_name: "streamStatus"))
|
|
377
417
|
AutomationStream.struct_class = Types::AutomationStream
|
|
@@ -580,6 +620,9 @@ module Aws::BedrockAgentCore
|
|
|
580
620
|
CreateEventOutput.add_member(:event, Shapes::ShapeRef.new(shape: Event, required: true, location_name: "event"))
|
|
581
621
|
CreateEventOutput.struct_class = Types::CreateEventOutput
|
|
582
622
|
|
|
623
|
+
CustomDescriptor.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
624
|
+
CustomDescriptor.struct_class = Types::CustomDescriptor
|
|
625
|
+
|
|
583
626
|
CustomRequestParametersType.key = Shapes::ShapeRef.new(shape: CustomRequestKeyType)
|
|
584
627
|
CustomRequestParametersType.value = Shapes::ShapeRef.new(shape: CustomRequestValueType)
|
|
585
628
|
|
|
@@ -599,6 +642,12 @@ module Aws::BedrockAgentCore
|
|
|
599
642
|
DeleteMemoryRecordOutput.add_member(:memory_record_id, Shapes::ShapeRef.new(shape: MemoryRecordId, required: true, location_name: "memoryRecordId"))
|
|
600
643
|
DeleteMemoryRecordOutput.struct_class = Types::DeleteMemoryRecordOutput
|
|
601
644
|
|
|
645
|
+
Descriptors.add_member(:mcp, Shapes::ShapeRef.new(shape: McpDescriptor, location_name: "mcp"))
|
|
646
|
+
Descriptors.add_member(:a2a, Shapes::ShapeRef.new(shape: A2aDescriptor, location_name: "a2a"))
|
|
647
|
+
Descriptors.add_member(:custom, Shapes::ShapeRef.new(shape: CustomDescriptor, location_name: "custom"))
|
|
648
|
+
Descriptors.add_member(:agent_skills, Shapes::ShapeRef.new(shape: AgentSkillsDescriptor, location_name: "agentSkills"))
|
|
649
|
+
Descriptors.struct_class = Types::Descriptors
|
|
650
|
+
|
|
602
651
|
DomainPatterns.member = Shapes::ShapeRef.new(shape: DomainPattern)
|
|
603
652
|
|
|
604
653
|
DuplicateIdException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
@@ -1018,7 +1067,8 @@ module Aws::BedrockAgentCore
|
|
|
1018
1067
|
ListMemoryExtractionJobsOutput.struct_class = Types::ListMemoryExtractionJobsOutput
|
|
1019
1068
|
|
|
1020
1069
|
ListMemoryRecordsInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
|
|
1021
|
-
ListMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace,
|
|
1070
|
+
ListMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespace"))
|
|
1071
|
+
ListMemoryRecordsInput.add_member(:namespace_path, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespacePath"))
|
|
1022
1072
|
ListMemoryRecordsInput.add_member(:memory_strategy_id, Shapes::ShapeRef.new(shape: MemoryStrategyId, location_name: "memoryStrategyId"))
|
|
1023
1073
|
ListMemoryRecordsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
|
|
1024
1074
|
ListMemoryRecordsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
|
@@ -1042,6 +1092,10 @@ module Aws::BedrockAgentCore
|
|
|
1042
1092
|
LiveViewStream.add_member(:stream_endpoint, Shapes::ShapeRef.new(shape: BrowserStreamEndpoint, location_name: "streamEndpoint"))
|
|
1043
1093
|
LiveViewStream.struct_class = Types::LiveViewStream
|
|
1044
1094
|
|
|
1095
|
+
McpDescriptor.add_member(:server, Shapes::ShapeRef.new(shape: ServerDefinition, required: true, location_name: "server"))
|
|
1096
|
+
McpDescriptor.add_member(:tools, Shapes::ShapeRef.new(shape: ToolsDefinition, required: true, location_name: "tools"))
|
|
1097
|
+
McpDescriptor.struct_class = Types::McpDescriptor
|
|
1098
|
+
|
|
1045
1099
|
MemoryContent.add_member(:text, Shapes::ShapeRef.new(shape: MemoryContentTextString, location_name: "text"))
|
|
1046
1100
|
MemoryContent.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1047
1101
|
MemoryContent.add_member_subclass(:text, Types::MemoryContent::Text)
|
|
@@ -1193,6 +1247,21 @@ module Aws::BedrockAgentCore
|
|
|
1193
1247
|
ProxyCredentials.add_member_subclass(:unknown, Types::ProxyCredentials::Unknown)
|
|
1194
1248
|
ProxyCredentials.struct_class = Types::ProxyCredentials
|
|
1195
1249
|
|
|
1250
|
+
RegistryRecordSummary.add_member(:registry_arn, Shapes::ShapeRef.new(shape: RegistryArn, required: true, location_name: "registryArn"))
|
|
1251
|
+
RegistryRecordSummary.add_member(:record_arn, Shapes::ShapeRef.new(shape: RegistryRecordArn, required: true, location_name: "recordArn"))
|
|
1252
|
+
RegistryRecordSummary.add_member(:record_id, Shapes::ShapeRef.new(shape: RegistryRecordId, required: true, location_name: "recordId"))
|
|
1253
|
+
RegistryRecordSummary.add_member(:name, Shapes::ShapeRef.new(shape: RegistryRecordName, required: true, location_name: "name"))
|
|
1254
|
+
RegistryRecordSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
1255
|
+
RegistryRecordSummary.add_member(:descriptor_type, Shapes::ShapeRef.new(shape: DescriptorType, required: true, location_name: "descriptorType"))
|
|
1256
|
+
RegistryRecordSummary.add_member(:descriptors, Shapes::ShapeRef.new(shape: Descriptors, required: true, location_name: "descriptors"))
|
|
1257
|
+
RegistryRecordSummary.add_member(:version, Shapes::ShapeRef.new(shape: RegistryRecordVersion, required: true, location_name: "version"))
|
|
1258
|
+
RegistryRecordSummary.add_member(:status, Shapes::ShapeRef.new(shape: RegistryRecordStatus, required: true, location_name: "status"))
|
|
1259
|
+
RegistryRecordSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
1260
|
+
RegistryRecordSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
1261
|
+
RegistryRecordSummary.struct_class = Types::RegistryRecordSummary
|
|
1262
|
+
|
|
1263
|
+
RegistryRecordSummaryList.member = Shapes::ShapeRef.new(shape: RegistryRecordSummary)
|
|
1264
|
+
|
|
1196
1265
|
ResourceContent.add_member(:type, Shapes::ShapeRef.new(shape: ResourceContentType, required: true, location_name: "type"))
|
|
1197
1266
|
ResourceContent.add_member(:uri, Shapes::ShapeRef.new(shape: String, location_name: "uri"))
|
|
1198
1267
|
ResourceContent.add_member(:mime_type, Shapes::ShapeRef.new(shape: String, location_name: "mimeType"))
|
|
@@ -1215,7 +1284,8 @@ module Aws::BedrockAgentCore
|
|
|
1215
1284
|
ResponseChunk.struct_class = Types::ResponseChunk
|
|
1216
1285
|
|
|
1217
1286
|
RetrieveMemoryRecordsInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
|
|
1218
|
-
RetrieveMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace,
|
|
1287
|
+
RetrieveMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespace"))
|
|
1288
|
+
RetrieveMemoryRecordsInput.add_member(:namespace_path, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespacePath"))
|
|
1219
1289
|
RetrieveMemoryRecordsInput.add_member(:search_criteria, Shapes::ShapeRef.new(shape: SearchCriteria, required: true, location_name: "searchCriteria"))
|
|
1220
1290
|
RetrieveMemoryRecordsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
|
1221
1291
|
RetrieveMemoryRecordsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
|
|
@@ -1272,9 +1342,24 @@ module Aws::BedrockAgentCore
|
|
|
1272
1342
|
SearchCriteria.add_member(:metadata_filters, Shapes::ShapeRef.new(shape: MemoryMetadataFilterList, location_name: "metadataFilters"))
|
|
1273
1343
|
SearchCriteria.struct_class = Types::SearchCriteria
|
|
1274
1344
|
|
|
1345
|
+
SearchRegistryRecordsRequest.add_member(:search_query, Shapes::ShapeRef.new(shape: SearchRegistryRecordsRequestSearchQueryString, required: true, location_name: "searchQuery"))
|
|
1346
|
+
SearchRegistryRecordsRequest.add_member(:registry_ids, Shapes::ShapeRef.new(shape: SearchRegistryRecordsRequestRegistryIdsList, required: true, location_name: "registryIds"))
|
|
1347
|
+
SearchRegistryRecordsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: SearchRegistryRecordsRequestMaxResultsInteger, location_name: "maxResults"))
|
|
1348
|
+
SearchRegistryRecordsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: MetadataFilterExpression, location_name: "filters"))
|
|
1349
|
+
SearchRegistryRecordsRequest.struct_class = Types::SearchRegistryRecordsRequest
|
|
1350
|
+
|
|
1351
|
+
SearchRegistryRecordsRequestRegistryIdsList.member = Shapes::ShapeRef.new(shape: RegistryIdentifier)
|
|
1352
|
+
|
|
1353
|
+
SearchRegistryRecordsResponse.add_member(:registry_records, Shapes::ShapeRef.new(shape: RegistryRecordSummaryList, required: true, location_name: "registryRecords"))
|
|
1354
|
+
SearchRegistryRecordsResponse.struct_class = Types::SearchRegistryRecordsResponse
|
|
1355
|
+
|
|
1275
1356
|
SecretsManagerLocation.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, required: true, location_name: "secretArn"))
|
|
1276
1357
|
SecretsManagerLocation.struct_class = Types::SecretsManagerLocation
|
|
1277
1358
|
|
|
1359
|
+
ServerDefinition.add_member(:schema_version, Shapes::ShapeRef.new(shape: SchemaVersion, location_name: "schemaVersion"))
|
|
1360
|
+
ServerDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
1361
|
+
ServerDefinition.struct_class = Types::ServerDefinition
|
|
1362
|
+
|
|
1278
1363
|
ServiceException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1279
1364
|
ServiceException.struct_class = Types::ServiceException
|
|
1280
1365
|
|
|
@@ -1291,6 +1376,13 @@ module Aws::BedrockAgentCore
|
|
|
1291
1376
|
|
|
1292
1377
|
SessionSummaryList.member = Shapes::ShapeRef.new(shape: SessionSummary)
|
|
1293
1378
|
|
|
1379
|
+
SkillDefinition.add_member(:schema_version, Shapes::ShapeRef.new(shape: SchemaVersion, location_name: "schemaVersion"))
|
|
1380
|
+
SkillDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
1381
|
+
SkillDefinition.struct_class = Types::SkillDefinition
|
|
1382
|
+
|
|
1383
|
+
SkillMdDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
1384
|
+
SkillMdDefinition.struct_class = Types::SkillMdDefinition
|
|
1385
|
+
|
|
1294
1386
|
SpanContext.add_member(:session_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "sessionId"))
|
|
1295
1387
|
SpanContext.add_member(:trace_id, Shapes::ShapeRef.new(shape: String, location_name: "traceId"))
|
|
1296
1388
|
SpanContext.add_member(:span_id, Shapes::ShapeRef.new(shape: String, location_name: "spanId"))
|
|
@@ -1415,6 +1507,10 @@ module Aws::BedrockAgentCore
|
|
|
1415
1507
|
ToolResultStructuredContent.add_member(:execution_time, Shapes::ShapeRef.new(shape: Double, location_name: "executionTime"))
|
|
1416
1508
|
ToolResultStructuredContent.struct_class = Types::ToolResultStructuredContent
|
|
1417
1509
|
|
|
1510
|
+
ToolsDefinition.add_member(:protocol_version, Shapes::ShapeRef.new(shape: SchemaVersion, location_name: "protocolVersion"))
|
|
1511
|
+
ToolsDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
1512
|
+
ToolsDefinition.struct_class = Types::ToolsDefinition
|
|
1513
|
+
|
|
1418
1514
|
TraceIds.member = Shapes::ShapeRef.new(shape: TraceId)
|
|
1419
1515
|
|
|
1420
1516
|
UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
@@ -1958,6 +2054,20 @@ module Aws::BedrockAgentCore
|
|
|
1958
2054
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1959
2055
|
end)
|
|
1960
2056
|
|
|
2057
|
+
api.add_operation(:search_registry_records, Seahorse::Model::Operation.new.tap do |o|
|
|
2058
|
+
o.name = "SearchRegistryRecords"
|
|
2059
|
+
o.http_method = "POST"
|
|
2060
|
+
o.http_request_uri = "/registry-records/search"
|
|
2061
|
+
o.input = Shapes::ShapeRef.new(shape: SearchRegistryRecordsRequest)
|
|
2062
|
+
o.output = Shapes::ShapeRef.new(shape: SearchRegistryRecordsResponse)
|
|
2063
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
2064
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2065
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2066
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2067
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2068
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2069
|
+
end)
|
|
2070
|
+
|
|
1961
2071
|
api.add_operation(:start_browser_session, Seahorse::Model::Operation.new.tap do |o|
|
|
1962
2072
|
o.name = "StartBrowserSession"
|
|
1963
2073
|
o.http_method = "PUT"
|
|
@@ -10,6 +10,22 @@
|
|
|
10
10
|
module Aws::BedrockAgentCore
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# The A2A (Agent-to-Agent) descriptor configuration for a registry
|
|
14
|
+
# record.
|
|
15
|
+
#
|
|
16
|
+
# @!attribute [rw] agent_card
|
|
17
|
+
# The agent card definition that describes the agent's capabilities
|
|
18
|
+
# and interface.
|
|
19
|
+
# @return [Types::AgentCardDefinition]
|
|
20
|
+
#
|
|
21
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/A2aDescriptor AWS API Documentation
|
|
22
|
+
#
|
|
23
|
+
class A2aDescriptor < Struct.new(
|
|
24
|
+
:agent_card)
|
|
25
|
+
SENSITIVE = []
|
|
26
|
+
include Aws::Structure
|
|
27
|
+
end
|
|
28
|
+
|
|
13
29
|
# The exception that occurs when you do not have sufficient permissions
|
|
14
30
|
# to perform an action. Verify that your IAM policy includes the
|
|
15
31
|
# necessary permissions for the operation you are trying to perform.
|
|
@@ -41,6 +57,45 @@ module Aws::BedrockAgentCore
|
|
|
41
57
|
include Aws::Structure
|
|
42
58
|
end
|
|
43
59
|
|
|
60
|
+
# The agent card definition for A2A descriptors, including the schema
|
|
61
|
+
# version and inline content that describes the agent's capabilities.
|
|
62
|
+
#
|
|
63
|
+
# @!attribute [rw] schema_version
|
|
64
|
+
# The schema version of the agent card definition.
|
|
65
|
+
# @return [String]
|
|
66
|
+
#
|
|
67
|
+
# @!attribute [rw] inline_content
|
|
68
|
+
# The inline content of the agent card definition.
|
|
69
|
+
# @return [String]
|
|
70
|
+
#
|
|
71
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/AgentCardDefinition AWS API Documentation
|
|
72
|
+
#
|
|
73
|
+
class AgentCardDefinition < Struct.new(
|
|
74
|
+
:schema_version,
|
|
75
|
+
:inline_content)
|
|
76
|
+
SENSITIVE = []
|
|
77
|
+
include Aws::Structure
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
# The agent skills descriptor configuration for a registry record.
|
|
81
|
+
#
|
|
82
|
+
# @!attribute [rw] skill_md
|
|
83
|
+
# The skill description in markdown format.
|
|
84
|
+
# @return [Types::SkillMdDefinition]
|
|
85
|
+
#
|
|
86
|
+
# @!attribute [rw] skill_definition
|
|
87
|
+
# The structured skill definition with a schema version and content.
|
|
88
|
+
# @return [Types::SkillDefinition]
|
|
89
|
+
#
|
|
90
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/AgentSkillsDescriptor AWS API Documentation
|
|
91
|
+
#
|
|
92
|
+
class AgentSkillsDescriptor < Struct.new(
|
|
93
|
+
:skill_md,
|
|
94
|
+
:skill_definition)
|
|
95
|
+
SENSITIVE = []
|
|
96
|
+
include Aws::Structure
|
|
97
|
+
end
|
|
98
|
+
|
|
44
99
|
# The configuration for a stream that enables programmatic control of a
|
|
45
100
|
# browser session in Amazon Bedrock AgentCore. This stream provides a
|
|
46
101
|
# bidirectional communication channel for sending commands to the
|
|
@@ -947,6 +1002,20 @@ module Aws::BedrockAgentCore
|
|
|
947
1002
|
include Aws::Structure
|
|
948
1003
|
end
|
|
949
1004
|
|
|
1005
|
+
# A custom descriptor configuration for a registry record.
|
|
1006
|
+
#
|
|
1007
|
+
# @!attribute [rw] inline_content
|
|
1008
|
+
# The inline content of the custom descriptor.
|
|
1009
|
+
# @return [String]
|
|
1010
|
+
#
|
|
1011
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/CustomDescriptor AWS API Documentation
|
|
1012
|
+
#
|
|
1013
|
+
class CustomDescriptor < Struct.new(
|
|
1014
|
+
:inline_content)
|
|
1015
|
+
SENSITIVE = []
|
|
1016
|
+
include Aws::Structure
|
|
1017
|
+
end
|
|
1018
|
+
|
|
950
1019
|
# @!attribute [rw] memory_id
|
|
951
1020
|
# The identifier of the AgentCore Memory resource from which to delete
|
|
952
1021
|
# the event.
|
|
@@ -1017,6 +1086,40 @@ module Aws::BedrockAgentCore
|
|
|
1017
1086
|
include Aws::Structure
|
|
1018
1087
|
end
|
|
1019
1088
|
|
|
1089
|
+
# Contains the descriptor configuration for a registry record. Only the
|
|
1090
|
+
# field that matches the record's `descriptorType` is populated.
|
|
1091
|
+
#
|
|
1092
|
+
# @!attribute [rw] mcp
|
|
1093
|
+
# The MCP (Model Context Protocol) descriptor configuration. Populated
|
|
1094
|
+
# when the record's `descriptorType` is `MCP`.
|
|
1095
|
+
# @return [Types::McpDescriptor]
|
|
1096
|
+
#
|
|
1097
|
+
# @!attribute [rw] a2a
|
|
1098
|
+
# The A2A (Agent-to-Agent) descriptor configuration. Populated when
|
|
1099
|
+
# the record's `descriptorType` is `A2A`.
|
|
1100
|
+
# @return [Types::A2aDescriptor]
|
|
1101
|
+
#
|
|
1102
|
+
# @!attribute [rw] custom
|
|
1103
|
+
# The custom descriptor configuration. Populated when the record's
|
|
1104
|
+
# `descriptorType` is `CUSTOM`.
|
|
1105
|
+
# @return [Types::CustomDescriptor]
|
|
1106
|
+
#
|
|
1107
|
+
# @!attribute [rw] agent_skills
|
|
1108
|
+
# The agent skills descriptor configuration. Populated when the
|
|
1109
|
+
# record's `descriptorType` is `AGENT_SKILLS`.
|
|
1110
|
+
# @return [Types::AgentSkillsDescriptor]
|
|
1111
|
+
#
|
|
1112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/Descriptors AWS API Documentation
|
|
1113
|
+
#
|
|
1114
|
+
class Descriptors < Struct.new(
|
|
1115
|
+
:mcp,
|
|
1116
|
+
:a2a,
|
|
1117
|
+
:custom,
|
|
1118
|
+
:agent_skills)
|
|
1119
|
+
SENSITIVE = []
|
|
1120
|
+
include Aws::Structure
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1020
1123
|
# An exception thrown when attempting to create a resource with an
|
|
1021
1124
|
# identifier that already exists.
|
|
1022
1125
|
#
|
|
@@ -2970,6 +3073,11 @@ module Aws::BedrockAgentCore
|
|
|
2970
3073
|
# records in namespaces that start with the provided prefix.
|
|
2971
3074
|
# @return [String]
|
|
2972
3075
|
#
|
|
3076
|
+
# @!attribute [rw] namespace_path
|
|
3077
|
+
# Use namespacePath for hierarchical retrievals. Return all memory
|
|
3078
|
+
# records where namespace falls under the same parent hierarchy.
|
|
3079
|
+
# @return [String]
|
|
3080
|
+
#
|
|
2973
3081
|
# @!attribute [rw] memory_strategy_id
|
|
2974
3082
|
# The memory strategy identifier to filter memory records by. If
|
|
2975
3083
|
# specified, only memory records with this strategy ID are returned.
|
|
@@ -2991,6 +3099,7 @@ module Aws::BedrockAgentCore
|
|
|
2991
3099
|
class ListMemoryRecordsInput < Struct.new(
|
|
2992
3100
|
:memory_id,
|
|
2993
3101
|
:namespace,
|
|
3102
|
+
:namespace_path,
|
|
2994
3103
|
:memory_strategy_id,
|
|
2995
3104
|
:max_results,
|
|
2996
3105
|
:next_token)
|
|
@@ -3092,6 +3201,26 @@ module Aws::BedrockAgentCore
|
|
|
3092
3201
|
include Aws::Structure
|
|
3093
3202
|
end
|
|
3094
3203
|
|
|
3204
|
+
# The MCP (Model Context Protocol) descriptor configuration for a
|
|
3205
|
+
# registry record. Contains the server definition and tools definition.
|
|
3206
|
+
#
|
|
3207
|
+
# @!attribute [rw] server
|
|
3208
|
+
# The MCP server definition that describes the server configuration.
|
|
3209
|
+
# @return [Types::ServerDefinition]
|
|
3210
|
+
#
|
|
3211
|
+
# @!attribute [rw] tools
|
|
3212
|
+
# The MCP tools definition that describes the available tools.
|
|
3213
|
+
# @return [Types::ToolsDefinition]
|
|
3214
|
+
#
|
|
3215
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/McpDescriptor AWS API Documentation
|
|
3216
|
+
#
|
|
3217
|
+
class McpDescriptor < Struct.new(
|
|
3218
|
+
:server,
|
|
3219
|
+
:tools)
|
|
3220
|
+
SENSITIVE = []
|
|
3221
|
+
include Aws::Structure
|
|
3222
|
+
end
|
|
3223
|
+
|
|
3095
3224
|
# Contains the content of a memory record.
|
|
3096
3225
|
#
|
|
3097
3226
|
# @note MemoryContent is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -3707,6 +3836,71 @@ module Aws::BedrockAgentCore
|
|
|
3707
3836
|
class Unknown < ProxyCredentials; end
|
|
3708
3837
|
end
|
|
3709
3838
|
|
|
3839
|
+
# Summary information about a registry record.
|
|
3840
|
+
#
|
|
3841
|
+
# @!attribute [rw] registry_arn
|
|
3842
|
+
# The Amazon Resource Name (ARN) of the registry that this record
|
|
3843
|
+
# belongs to.
|
|
3844
|
+
# @return [String]
|
|
3845
|
+
#
|
|
3846
|
+
# @!attribute [rw] record_arn
|
|
3847
|
+
# The Amazon Resource Name (ARN) of the registry record.
|
|
3848
|
+
# @return [String]
|
|
3849
|
+
#
|
|
3850
|
+
# @!attribute [rw] record_id
|
|
3851
|
+
# The unique identifier of the registry record.
|
|
3852
|
+
# @return [String]
|
|
3853
|
+
#
|
|
3854
|
+
# @!attribute [rw] name
|
|
3855
|
+
# The name of the registry record.
|
|
3856
|
+
# @return [String]
|
|
3857
|
+
#
|
|
3858
|
+
# @!attribute [rw] description
|
|
3859
|
+
# A description of the registry record.
|
|
3860
|
+
# @return [String]
|
|
3861
|
+
#
|
|
3862
|
+
# @!attribute [rw] descriptor_type
|
|
3863
|
+
# The type of descriptor associated with this registry record.
|
|
3864
|
+
# @return [String]
|
|
3865
|
+
#
|
|
3866
|
+
# @!attribute [rw] descriptors
|
|
3867
|
+
# The descriptor configurations for this registry record.
|
|
3868
|
+
# @return [Types::Descriptors]
|
|
3869
|
+
#
|
|
3870
|
+
# @!attribute [rw] version
|
|
3871
|
+
# The version of the registry record.
|
|
3872
|
+
# @return [String]
|
|
3873
|
+
#
|
|
3874
|
+
# @!attribute [rw] status
|
|
3875
|
+
# The current status of the registry record.
|
|
3876
|
+
# @return [String]
|
|
3877
|
+
#
|
|
3878
|
+
# @!attribute [rw] created_at
|
|
3879
|
+
# The date and time when the registry record was created.
|
|
3880
|
+
# @return [Time]
|
|
3881
|
+
#
|
|
3882
|
+
# @!attribute [rw] updated_at
|
|
3883
|
+
# The date and time when the registry record was last updated.
|
|
3884
|
+
# @return [Time]
|
|
3885
|
+
#
|
|
3886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/RegistryRecordSummary AWS API Documentation
|
|
3887
|
+
#
|
|
3888
|
+
class RegistryRecordSummary < Struct.new(
|
|
3889
|
+
:registry_arn,
|
|
3890
|
+
:record_arn,
|
|
3891
|
+
:record_id,
|
|
3892
|
+
:name,
|
|
3893
|
+
:description,
|
|
3894
|
+
:descriptor_type,
|
|
3895
|
+
:descriptors,
|
|
3896
|
+
:version,
|
|
3897
|
+
:status,
|
|
3898
|
+
:created_at,
|
|
3899
|
+
:updated_at)
|
|
3900
|
+
SENSITIVE = [:description]
|
|
3901
|
+
include Aws::Structure
|
|
3902
|
+
end
|
|
3903
|
+
|
|
3710
3904
|
# Contains information about resource content.
|
|
3711
3905
|
#
|
|
3712
3906
|
# @!attribute [rw] type
|
|
@@ -3822,6 +4016,11 @@ module Aws::BedrockAgentCore
|
|
|
3822
4016
|
# memory records in namespaces that start with the provided prefix.
|
|
3823
4017
|
# @return [String]
|
|
3824
4018
|
#
|
|
4019
|
+
# @!attribute [rw] namespace_path
|
|
4020
|
+
# Use namespacePath for hierarchical retrievals. Return all memory
|
|
4021
|
+
# records where namespace falls under the same parent hierarchy.
|
|
4022
|
+
# @return [String]
|
|
4023
|
+
#
|
|
3825
4024
|
# @!attribute [rw] search_criteria
|
|
3826
4025
|
# The search criteria to use for finding relevant memory records. This
|
|
3827
4026
|
# includes the search query, memory strategy ID, and other search
|
|
@@ -3844,6 +4043,7 @@ module Aws::BedrockAgentCore
|
|
|
3844
4043
|
class RetrieveMemoryRecordsInput < Struct.new(
|
|
3845
4044
|
:memory_id,
|
|
3846
4045
|
:namespace,
|
|
4046
|
+
:namespace_path,
|
|
3847
4047
|
:search_criteria,
|
|
3848
4048
|
:next_token,
|
|
3849
4049
|
:max_results)
|
|
@@ -4098,6 +4298,56 @@ module Aws::BedrockAgentCore
|
|
|
4098
4298
|
include Aws::Structure
|
|
4099
4299
|
end
|
|
4100
4300
|
|
|
4301
|
+
# @!attribute [rw] search_query
|
|
4302
|
+
# The search query to find matching registry records.
|
|
4303
|
+
# @return [String]
|
|
4304
|
+
#
|
|
4305
|
+
# @!attribute [rw] registry_ids
|
|
4306
|
+
# The list of registry identifiers to search within. Currently, you
|
|
4307
|
+
# can specify exactly one registry identifier. You can provide either
|
|
4308
|
+
# the full Amazon Web Services Resource Name (ARN) or the 12-character
|
|
4309
|
+
# alphanumeric registry ID.
|
|
4310
|
+
# @return [Array<String>]
|
|
4311
|
+
#
|
|
4312
|
+
# @!attribute [rw] max_results
|
|
4313
|
+
# The maximum number of records to return in a single call. Valid
|
|
4314
|
+
# values are 1 through 20. The default value is 10.
|
|
4315
|
+
# @return [Integer]
|
|
4316
|
+
#
|
|
4317
|
+
# @!attribute [rw] filters
|
|
4318
|
+
# A metadata filter expression to narrow search results. Uses
|
|
4319
|
+
# structured JSON operators including field-level operators (`$eq`,
|
|
4320
|
+
# `$ne`, `$in`) and logical operators (`$and`, `$or`) on filterable
|
|
4321
|
+
# fields (`name`, `descriptorType`, `version`). For example, to filter
|
|
4322
|
+
# by descriptor type: `{"descriptorType": {"$eq": "MCP"}}`. To combine
|
|
4323
|
+
# filters: `{"$and": [{"descriptorType": {"$eq": "MCP"}}, {"name":
|
|
4324
|
+
# {"$eq": "my-tool"}}]}`.
|
|
4325
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
4326
|
+
#
|
|
4327
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/SearchRegistryRecordsRequest AWS API Documentation
|
|
4328
|
+
#
|
|
4329
|
+
class SearchRegistryRecordsRequest < Struct.new(
|
|
4330
|
+
:search_query,
|
|
4331
|
+
:registry_ids,
|
|
4332
|
+
:max_results,
|
|
4333
|
+
:filters)
|
|
4334
|
+
SENSITIVE = []
|
|
4335
|
+
include Aws::Structure
|
|
4336
|
+
end
|
|
4337
|
+
|
|
4338
|
+
# @!attribute [rw] registry_records
|
|
4339
|
+
# The list of registry records that match the search query, ordered by
|
|
4340
|
+
# relevance.
|
|
4341
|
+
# @return [Array<Types::RegistryRecordSummary>]
|
|
4342
|
+
#
|
|
4343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/SearchRegistryRecordsResponse AWS API Documentation
|
|
4344
|
+
#
|
|
4345
|
+
class SearchRegistryRecordsResponse < Struct.new(
|
|
4346
|
+
:registry_records)
|
|
4347
|
+
SENSITIVE = []
|
|
4348
|
+
include Aws::Structure
|
|
4349
|
+
end
|
|
4350
|
+
|
|
4101
4351
|
# The Amazon Web Services Secrets Manager location configuration.
|
|
4102
4352
|
#
|
|
4103
4353
|
# @!attribute [rw] secret_arn
|
|
@@ -4113,6 +4363,28 @@ module Aws::BedrockAgentCore
|
|
|
4113
4363
|
include Aws::Structure
|
|
4114
4364
|
end
|
|
4115
4365
|
|
|
4366
|
+
# The MCP server definition with a schema version and inline content.
|
|
4367
|
+
# The `schemaVersion` identifies the version of the MCP server
|
|
4368
|
+
# configuration schema.
|
|
4369
|
+
#
|
|
4370
|
+
# @!attribute [rw] schema_version
|
|
4371
|
+
# The schema version of the MCP server configuration. The schema
|
|
4372
|
+
# version identifies the format of the server definition content.
|
|
4373
|
+
# @return [String]
|
|
4374
|
+
#
|
|
4375
|
+
# @!attribute [rw] inline_content
|
|
4376
|
+
# The inline content of the server definition.
|
|
4377
|
+
# @return [String]
|
|
4378
|
+
#
|
|
4379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/ServerDefinition AWS API Documentation
|
|
4380
|
+
#
|
|
4381
|
+
class ServerDefinition < Struct.new(
|
|
4382
|
+
:schema_version,
|
|
4383
|
+
:inline_content)
|
|
4384
|
+
SENSITIVE = []
|
|
4385
|
+
include Aws::Structure
|
|
4386
|
+
end
|
|
4387
|
+
|
|
4116
4388
|
# The service encountered an internal error. Try your request again
|
|
4117
4389
|
# later.
|
|
4118
4390
|
#
|
|
@@ -4183,6 +4455,41 @@ module Aws::BedrockAgentCore
|
|
|
4183
4455
|
include Aws::Structure
|
|
4184
4456
|
end
|
|
4185
4457
|
|
|
4458
|
+
# The structured skill definition with a schema version and inline
|
|
4459
|
+
# content.
|
|
4460
|
+
#
|
|
4461
|
+
# @!attribute [rw] schema_version
|
|
4462
|
+
# The schema version of the skill definition. If you don't specify a
|
|
4463
|
+
# version, the service detects it automatically.
|
|
4464
|
+
# @return [String]
|
|
4465
|
+
#
|
|
4466
|
+
# @!attribute [rw] inline_content
|
|
4467
|
+
# The inline content of the skill definition.
|
|
4468
|
+
# @return [String]
|
|
4469
|
+
#
|
|
4470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/SkillDefinition AWS API Documentation
|
|
4471
|
+
#
|
|
4472
|
+
class SkillDefinition < Struct.new(
|
|
4473
|
+
:schema_version,
|
|
4474
|
+
:inline_content)
|
|
4475
|
+
SENSITIVE = []
|
|
4476
|
+
include Aws::Structure
|
|
4477
|
+
end
|
|
4478
|
+
|
|
4479
|
+
# The skill markdown definition for agent skills descriptors.
|
|
4480
|
+
#
|
|
4481
|
+
# @!attribute [rw] inline_content
|
|
4482
|
+
# The inline markdown content of the skill definition.
|
|
4483
|
+
# @return [String]
|
|
4484
|
+
#
|
|
4485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/SkillMdDefinition AWS API Documentation
|
|
4486
|
+
#
|
|
4487
|
+
class SkillMdDefinition < Struct.new(
|
|
4488
|
+
:inline_content)
|
|
4489
|
+
SENSITIVE = []
|
|
4490
|
+
include Aws::Structure
|
|
4491
|
+
end
|
|
4492
|
+
|
|
4186
4493
|
# The contextual information that uniquely identifies a span within the
|
|
4187
4494
|
# distributed tracing system. Contains session, trace, and span
|
|
4188
4495
|
# identifiers used to correlate evaluation results with specific agent
|
|
@@ -4816,6 +5123,30 @@ module Aws::BedrockAgentCore
|
|
|
4816
5123
|
include Aws::Structure
|
|
4817
5124
|
end
|
|
4818
5125
|
|
|
5126
|
+
# The MCP tools definition with a protocol version and inline content.
|
|
5127
|
+
# The `protocolVersion` identifies the MCP protocol version that the
|
|
5128
|
+
# tools conform to. This differs from `schemaVersion` in the server
|
|
5129
|
+
# definition, which identifies the server configuration schema format.
|
|
5130
|
+
#
|
|
5131
|
+
# @!attribute [rw] protocol_version
|
|
5132
|
+
# The MCP protocol version that the tools conform to. This differs
|
|
5133
|
+
# from the `schemaVersion` field in the server definition, which
|
|
5134
|
+
# identifies the server configuration schema format.
|
|
5135
|
+
# @return [String]
|
|
5136
|
+
#
|
|
5137
|
+
# @!attribute [rw] inline_content
|
|
5138
|
+
# The inline content of the tools definition.
|
|
5139
|
+
# @return [String]
|
|
5140
|
+
#
|
|
5141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/ToolsDefinition AWS API Documentation
|
|
5142
|
+
#
|
|
5143
|
+
class ToolsDefinition < Struct.new(
|
|
5144
|
+
:protocol_version,
|
|
5145
|
+
:inline_content)
|
|
5146
|
+
SENSITIVE = []
|
|
5147
|
+
include Aws::Structure
|
|
5148
|
+
end
|
|
5149
|
+
|
|
4819
5150
|
# This exception is thrown when the JWT bearer token is invalid or not
|
|
4820
5151
|
# found for OAuth bearer token based access
|
|
4821
5152
|
#
|
data/sig/client.rbs
CHANGED
|
@@ -646,7 +646,8 @@ module Aws
|
|
|
646
646
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCore/Client.html#list_memory_records-instance_method
|
|
647
647
|
def list_memory_records: (
|
|
648
648
|
memory_id: ::String,
|
|
649
|
-
namespace: ::String,
|
|
649
|
+
?namespace: ::String,
|
|
650
|
+
?namespace_path: ::String,
|
|
650
651
|
?memory_strategy_id: ::String,
|
|
651
652
|
?max_results: ::Integer,
|
|
652
653
|
?next_token: ::String
|
|
@@ -678,7 +679,8 @@ module Aws
|
|
|
678
679
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCore/Client.html#retrieve_memory_records-instance_method
|
|
679
680
|
def retrieve_memory_records: (
|
|
680
681
|
memory_id: ::String,
|
|
681
|
-
namespace: ::String,
|
|
682
|
+
?namespace: ::String,
|
|
683
|
+
?namespace_path: ::String,
|
|
682
684
|
search_criteria: {
|
|
683
685
|
search_query: ::String,
|
|
684
686
|
memory_strategy_id: ::String?,
|
|
@@ -720,6 +722,20 @@ module Aws
|
|
|
720
722
|
) -> _SaveBrowserSessionProfileResponseSuccess
|
|
721
723
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SaveBrowserSessionProfileResponseSuccess
|
|
722
724
|
|
|
725
|
+
interface _SearchRegistryRecordsResponseSuccess
|
|
726
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchRegistryRecordsResponse]
|
|
727
|
+
def registry_records: () -> ::Array[Types::RegistryRecordSummary]
|
|
728
|
+
end
|
|
729
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCore/Client.html#search_registry_records-instance_method
|
|
730
|
+
def search_registry_records: (
|
|
731
|
+
search_query: ::String,
|
|
732
|
+
registry_ids: Array[::String],
|
|
733
|
+
?max_results: ::Integer,
|
|
734
|
+
?filters: {
|
|
735
|
+
}
|
|
736
|
+
) -> _SearchRegistryRecordsResponseSuccess
|
|
737
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchRegistryRecordsResponseSuccess
|
|
738
|
+
|
|
723
739
|
interface _StartBrowserSessionResponseSuccess
|
|
724
740
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartBrowserSessionResponse]
|
|
725
741
|
def browser_identifier: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
module Aws::BedrockAgentCore
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
|
+
class A2aDescriptor
|
|
12
|
+
attr_accessor agent_card: Types::AgentCardDefinition
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
11
16
|
class AccessDeniedException
|
|
12
17
|
attr_accessor message: ::String
|
|
13
18
|
attr_accessor event_type: untyped
|
|
@@ -19,6 +24,18 @@ module Aws::BedrockAgentCore
|
|
|
19
24
|
SENSITIVE: []
|
|
20
25
|
end
|
|
21
26
|
|
|
27
|
+
class AgentCardDefinition
|
|
28
|
+
attr_accessor schema_version: ::String
|
|
29
|
+
attr_accessor inline_content: ::String
|
|
30
|
+
SENSITIVE: []
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class AgentSkillsDescriptor
|
|
34
|
+
attr_accessor skill_md: Types::SkillMdDefinition
|
|
35
|
+
attr_accessor skill_definition: Types::SkillDefinition
|
|
36
|
+
SENSITIVE: []
|
|
37
|
+
end
|
|
38
|
+
|
|
22
39
|
class AutomationStream
|
|
23
40
|
attr_accessor stream_endpoint: ::String
|
|
24
41
|
attr_accessor stream_status: ("ENABLED" | "DISABLED")
|
|
@@ -302,6 +319,11 @@ module Aws::BedrockAgentCore
|
|
|
302
319
|
SENSITIVE: []
|
|
303
320
|
end
|
|
304
321
|
|
|
322
|
+
class CustomDescriptor
|
|
323
|
+
attr_accessor inline_content: ::String
|
|
324
|
+
SENSITIVE: []
|
|
325
|
+
end
|
|
326
|
+
|
|
305
327
|
class DeleteEventInput
|
|
306
328
|
attr_accessor memory_id: ::String
|
|
307
329
|
attr_accessor session_id: ::String
|
|
@@ -326,6 +348,14 @@ module Aws::BedrockAgentCore
|
|
|
326
348
|
SENSITIVE: []
|
|
327
349
|
end
|
|
328
350
|
|
|
351
|
+
class Descriptors
|
|
352
|
+
attr_accessor mcp: Types::McpDescriptor
|
|
353
|
+
attr_accessor a2a: Types::A2aDescriptor
|
|
354
|
+
attr_accessor custom: Types::CustomDescriptor
|
|
355
|
+
attr_accessor agent_skills: Types::AgentSkillsDescriptor
|
|
356
|
+
SENSITIVE: []
|
|
357
|
+
end
|
|
358
|
+
|
|
329
359
|
class DuplicateIdException
|
|
330
360
|
attr_accessor message: ::String
|
|
331
361
|
SENSITIVE: []
|
|
@@ -852,6 +882,7 @@ module Aws::BedrockAgentCore
|
|
|
852
882
|
class ListMemoryRecordsInput
|
|
853
883
|
attr_accessor memory_id: ::String
|
|
854
884
|
attr_accessor namespace: ::String
|
|
885
|
+
attr_accessor namespace_path: ::String
|
|
855
886
|
attr_accessor memory_strategy_id: ::String
|
|
856
887
|
attr_accessor max_results: ::Integer
|
|
857
888
|
attr_accessor next_token: ::String
|
|
@@ -884,6 +915,12 @@ module Aws::BedrockAgentCore
|
|
|
884
915
|
SENSITIVE: []
|
|
885
916
|
end
|
|
886
917
|
|
|
918
|
+
class McpDescriptor
|
|
919
|
+
attr_accessor server: Types::ServerDefinition
|
|
920
|
+
attr_accessor tools: Types::ToolsDefinition
|
|
921
|
+
SENSITIVE: []
|
|
922
|
+
end
|
|
923
|
+
|
|
887
924
|
class MemoryContent
|
|
888
925
|
attr_accessor text: ::String
|
|
889
926
|
attr_accessor unknown: untyped
|
|
@@ -1074,6 +1111,21 @@ module Aws::BedrockAgentCore
|
|
|
1074
1111
|
end
|
|
1075
1112
|
end
|
|
1076
1113
|
|
|
1114
|
+
class RegistryRecordSummary
|
|
1115
|
+
attr_accessor registry_arn: ::String
|
|
1116
|
+
attr_accessor record_arn: ::String
|
|
1117
|
+
attr_accessor record_id: ::String
|
|
1118
|
+
attr_accessor name: ::String
|
|
1119
|
+
attr_accessor description: ::String
|
|
1120
|
+
attr_accessor descriptor_type: ("MCP" | "A2A" | "CUSTOM" | "AGENT_SKILLS")
|
|
1121
|
+
attr_accessor descriptors: Types::Descriptors
|
|
1122
|
+
attr_accessor version: ::String
|
|
1123
|
+
attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED")
|
|
1124
|
+
attr_accessor created_at: ::Time
|
|
1125
|
+
attr_accessor updated_at: ::Time
|
|
1126
|
+
SENSITIVE: [:description]
|
|
1127
|
+
end
|
|
1128
|
+
|
|
1077
1129
|
class ResourceContent
|
|
1078
1130
|
attr_accessor type: ("text" | "blob")
|
|
1079
1131
|
attr_accessor uri: ::String
|
|
@@ -1111,6 +1163,7 @@ module Aws::BedrockAgentCore
|
|
|
1111
1163
|
class RetrieveMemoryRecordsInput
|
|
1112
1164
|
attr_accessor memory_id: ::String
|
|
1113
1165
|
attr_accessor namespace: ::String
|
|
1166
|
+
attr_accessor namespace_path: ::String
|
|
1114
1167
|
attr_accessor search_criteria: Types::SearchCriteria
|
|
1115
1168
|
attr_accessor next_token: ::String
|
|
1116
1169
|
attr_accessor max_results: ::Integer
|
|
@@ -1190,11 +1243,30 @@ module Aws::BedrockAgentCore
|
|
|
1190
1243
|
SENSITIVE: [:search_query]
|
|
1191
1244
|
end
|
|
1192
1245
|
|
|
1246
|
+
class SearchRegistryRecordsRequest
|
|
1247
|
+
attr_accessor search_query: ::String
|
|
1248
|
+
attr_accessor registry_ids: ::Array[::String]
|
|
1249
|
+
attr_accessor max_results: ::Integer
|
|
1250
|
+
attr_accessor filters: untyped
|
|
1251
|
+
SENSITIVE: []
|
|
1252
|
+
end
|
|
1253
|
+
|
|
1254
|
+
class SearchRegistryRecordsResponse
|
|
1255
|
+
attr_accessor registry_records: ::Array[Types::RegistryRecordSummary]
|
|
1256
|
+
SENSITIVE: []
|
|
1257
|
+
end
|
|
1258
|
+
|
|
1193
1259
|
class SecretsManagerLocation
|
|
1194
1260
|
attr_accessor secret_arn: ::String
|
|
1195
1261
|
SENSITIVE: []
|
|
1196
1262
|
end
|
|
1197
1263
|
|
|
1264
|
+
class ServerDefinition
|
|
1265
|
+
attr_accessor schema_version: ::String
|
|
1266
|
+
attr_accessor inline_content: ::String
|
|
1267
|
+
SENSITIVE: []
|
|
1268
|
+
end
|
|
1269
|
+
|
|
1198
1270
|
class ServiceException
|
|
1199
1271
|
attr_accessor message: ::String
|
|
1200
1272
|
SENSITIVE: []
|
|
@@ -1218,6 +1290,17 @@ module Aws::BedrockAgentCore
|
|
|
1218
1290
|
SENSITIVE: []
|
|
1219
1291
|
end
|
|
1220
1292
|
|
|
1293
|
+
class SkillDefinition
|
|
1294
|
+
attr_accessor schema_version: ::String
|
|
1295
|
+
attr_accessor inline_content: ::String
|
|
1296
|
+
SENSITIVE: []
|
|
1297
|
+
end
|
|
1298
|
+
|
|
1299
|
+
class SkillMdDefinition
|
|
1300
|
+
attr_accessor inline_content: ::String
|
|
1301
|
+
SENSITIVE: []
|
|
1302
|
+
end
|
|
1303
|
+
|
|
1221
1304
|
class SpanContext
|
|
1222
1305
|
attr_accessor session_id: ::String
|
|
1223
1306
|
attr_accessor trace_id: ::String
|
|
@@ -1378,6 +1461,12 @@ module Aws::BedrockAgentCore
|
|
|
1378
1461
|
SENSITIVE: []
|
|
1379
1462
|
end
|
|
1380
1463
|
|
|
1464
|
+
class ToolsDefinition
|
|
1465
|
+
attr_accessor protocol_version: ::String
|
|
1466
|
+
attr_accessor inline_content: ::String
|
|
1467
|
+
SENSITIVE: []
|
|
1468
|
+
end
|
|
1469
|
+
|
|
1381
1470
|
class UnauthorizedException
|
|
1382
1471
|
attr_accessor message: ::String
|
|
1383
1472
|
SENSITIVE: []
|