aws-sdk-agentregistry 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-agentregistry/client.rb +9 -5
- data/lib/aws-sdk-agentregistry/client_api.rb +4 -0
- data/lib/aws-sdk-agentregistry/types.rb +104 -52
- data/lib/aws-sdk-agentregistry.rb +1 -1
- data/sig/types.rbs +3 -2
- 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: d3e0a471e1402f049c373a2f1036ac0da9276fd5ae0a0a1d0b789cbd109e8fa1
|
|
4
|
+
data.tar.gz: c5fe6d303bdf0af036c682e5c9cbf150bf8bc69b8bac9dddcf95c5d47a864779
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee49bef9268dccce422ff58e4325e5199041109e4947a7d502eb7640a8c168c787cb785458952ce781b2cc3daa000bc9fb73109c3d7fd830666642ecf8fae800
|
|
7
|
+
data.tar.gz: 8b69cebbb8fe45839ccb45cea0c3eced48ebfb59a89d32e718ec0da35274f0dda1d1d020e953138d164877e00be2b00a07ed88a3561f36eba8811ddeca8c4507
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.1.0
|
|
@@ -507,7 +507,7 @@ module Aws::AgentRegistry
|
|
|
507
507
|
# resp.registry_records[0].name #=> String
|
|
508
508
|
# resp.registry_records[0].description #=> String
|
|
509
509
|
# resp.registry_records[0].display_name #=> String
|
|
510
|
-
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL"
|
|
510
|
+
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL", "GATEWAY"
|
|
511
511
|
# resp.registry_records[0].descriptors.mcp_server.data #=> String
|
|
512
512
|
# resp.registry_records[0].descriptors.mcp_server.data_schema_version #=> String
|
|
513
513
|
# resp.registry_records[0].descriptors.mcp_server.additional_data.tools.data #=> String
|
|
@@ -545,7 +545,9 @@ module Aws::AgentRegistry
|
|
|
545
545
|
# optionally filter and paginate the results.
|
|
546
546
|
#
|
|
547
547
|
# @option params [required, String] :registry_id
|
|
548
|
-
#
|
|
548
|
+
# The identifier of the registry whose discoverable records are listed.
|
|
549
|
+
# You can provide either the full Amazon Resource Name (ARN) or the
|
|
550
|
+
# registry ID.
|
|
549
551
|
#
|
|
550
552
|
# @option params [Integer] :max_results
|
|
551
553
|
# The maximum number of records to return in a single page. Valid values
|
|
@@ -588,11 +590,13 @@ module Aws::AgentRegistry
|
|
|
588
590
|
# resp.registry_records[0].name #=> String
|
|
589
591
|
# resp.registry_records[0].description #=> String
|
|
590
592
|
# resp.registry_records[0].display_name #=> String
|
|
591
|
-
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL"
|
|
593
|
+
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL", "GATEWAY"
|
|
592
594
|
# resp.registry_records[0].record_version #=> String
|
|
593
595
|
# resp.registry_records[0].status #=> String, one of "DRAFT", "PENDING_APPROVAL", "APPROVED", "REJECTED", "DEPRECATED", "CREATING", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED"
|
|
594
596
|
# resp.registry_records[0].created_at #=> Time
|
|
595
597
|
# resp.registry_records[0].updated_at #=> Time
|
|
598
|
+
# resp.registry_records[0].descriptor_types #=> Array
|
|
599
|
+
# resp.registry_records[0].descriptor_types[0] #=> String
|
|
596
600
|
# resp.next_token #=> String
|
|
597
601
|
#
|
|
598
602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/ListDiscoverableRegistryRecords AWS API Documentation
|
|
@@ -653,7 +657,7 @@ module Aws::AgentRegistry
|
|
|
653
657
|
# resp.registry_records[0].name #=> String
|
|
654
658
|
# resp.registry_records[0].description #=> String
|
|
655
659
|
# resp.registry_records[0].display_name #=> String
|
|
656
|
-
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL"
|
|
660
|
+
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL", "GATEWAY"
|
|
657
661
|
# resp.registry_records[0].descriptors.mcp_server.data #=> String
|
|
658
662
|
# resp.registry_records[0].descriptors.mcp_server.data_schema_version #=> String
|
|
659
663
|
# resp.registry_records[0].descriptors.mcp_server.additional_data.tools.data #=> String
|
|
@@ -700,7 +704,7 @@ module Aws::AgentRegistry
|
|
|
700
704
|
tracer: tracer
|
|
701
705
|
)
|
|
702
706
|
context[:gem_name] = 'aws-sdk-agentregistry'
|
|
703
|
-
context[:gem_version] = '1.
|
|
707
|
+
context[:gem_version] = '1.1.0'
|
|
704
708
|
Seahorse::Client::Request.new(handlers, context)
|
|
705
709
|
end
|
|
706
710
|
|
|
@@ -33,6 +33,7 @@ module Aws::AgentRegistry
|
|
|
33
33
|
DescriptorSource = Shapes::StructureShape.new(name: 'DescriptorSource')
|
|
34
34
|
DescriptorSourceFromUrl = Shapes::StructureShape.new(name: 'DescriptorSourceFromUrl')
|
|
35
35
|
DescriptorSourceUrl = Shapes::StringShape.new(name: 'DescriptorSourceUrl')
|
|
36
|
+
DescriptorTypeList = Shapes::ListShape.new(name: 'DescriptorTypeList')
|
|
36
37
|
Descriptors = Shapes::StructureShape.new(name: 'Descriptors')
|
|
37
38
|
DiscoverableFilterValues = Shapes::ListShape.new(name: 'DiscoverableFilterValues')
|
|
38
39
|
DiscoverableRegistryRecordSummary = Shapes::StructureShape.new(name: 'DiscoverableRegistryRecordSummary')
|
|
@@ -126,6 +127,8 @@ module Aws::AgentRegistry
|
|
|
126
127
|
DescriptorSourceFromUrl.add_member(:url, Shapes::ShapeRef.new(shape: DescriptorSourceUrl, required: true, location_name: "url"))
|
|
127
128
|
DescriptorSourceFromUrl.struct_class = Types::DescriptorSourceFromUrl
|
|
128
129
|
|
|
130
|
+
DescriptorTypeList.member = Shapes::ShapeRef.new(shape: String)
|
|
131
|
+
|
|
129
132
|
Descriptors.add_member(:mcp_server, Shapes::ShapeRef.new(shape: McpServerDescriptor, location_name: "mcpServer"))
|
|
130
133
|
Descriptors.add_member(:a2a_agent_card, Shapes::ShapeRef.new(shape: A2aAgentCardDescriptor, location_name: "a2aAgentCard"))
|
|
131
134
|
Descriptors.add_member(:agent_skills_definition, Shapes::ShapeRef.new(shape: AgentSkillsDefinitionDescriptor, location_name: "agentSkillsDefinition"))
|
|
@@ -145,6 +148,7 @@ module Aws::AgentRegistry
|
|
|
145
148
|
DiscoverableRegistryRecordSummary.add_member(:status, Shapes::ShapeRef.new(shape: RegistryRecordStatus, required: true, location_name: "status"))
|
|
146
149
|
DiscoverableRegistryRecordSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
147
150
|
DiscoverableRegistryRecordSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
151
|
+
DiscoverableRegistryRecordSummary.add_member(:descriptor_types, Shapes::ShapeRef.new(shape: DescriptorTypeList, location_name: "descriptorTypes"))
|
|
148
152
|
DiscoverableRegistryRecordSummary.struct_class = Types::DiscoverableRegistryRecordSummary
|
|
149
153
|
|
|
150
154
|
DiscoverableRegistryRecordSummaryList.member = Shapes::ShapeRef.new(shape: DiscoverableRegistryRecordSummary)
|
|
@@ -10,14 +10,16 @@
|
|
|
10
10
|
module Aws::AgentRegistry
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
-
#
|
|
13
|
+
# Descriptor that defines the content of an A2A (Agent-to-Agent) agent
|
|
14
|
+
# card registry record. The content is validated against the A2A
|
|
15
|
+
# protocol schema.
|
|
14
16
|
#
|
|
15
17
|
# @!attribute [rw] data
|
|
16
|
-
#
|
|
18
|
+
# The A2A agent card content, serialized as descriptor payload data.
|
|
17
19
|
# @return [String]
|
|
18
20
|
#
|
|
19
21
|
# @!attribute [rw] data_schema_version
|
|
20
|
-
#
|
|
22
|
+
# The schema version of the descriptor payload.
|
|
21
23
|
# @return [String]
|
|
22
24
|
#
|
|
23
25
|
# @!attribute [rw] source
|
|
@@ -51,7 +53,8 @@ module Aws::AgentRegistry
|
|
|
51
53
|
# Additional data for an agent skills definition descriptor.
|
|
52
54
|
#
|
|
53
55
|
# @!attribute [rw] skill_md
|
|
54
|
-
#
|
|
56
|
+
# The agent skills markdown descriptor associated with the agent
|
|
57
|
+
# skills definition.
|
|
55
58
|
# @return [Types::AgentSkillsMdDescriptor]
|
|
56
59
|
#
|
|
57
60
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/AgentSkillsAdditionalData AWS API Documentation
|
|
@@ -62,14 +65,16 @@ module Aws::AgentRegistry
|
|
|
62
65
|
include Aws::Structure
|
|
63
66
|
end
|
|
64
67
|
|
|
65
|
-
#
|
|
68
|
+
# Descriptor that defines an agent skills registry record and its
|
|
69
|
+
# associated content.
|
|
66
70
|
#
|
|
67
71
|
# @!attribute [rw] data
|
|
68
|
-
#
|
|
72
|
+
# The agent skills definition content, serialized as descriptor
|
|
73
|
+
# payload data.
|
|
69
74
|
# @return [String]
|
|
70
75
|
#
|
|
71
76
|
# @!attribute [rw] data_schema_version
|
|
72
|
-
#
|
|
77
|
+
# The schema version of the descriptor payload.
|
|
73
78
|
# @return [String]
|
|
74
79
|
#
|
|
75
80
|
# @!attribute [rw] additional_data
|
|
@@ -87,14 +92,15 @@ module Aws::AgentRegistry
|
|
|
87
92
|
include Aws::Structure
|
|
88
93
|
end
|
|
89
94
|
|
|
90
|
-
#
|
|
95
|
+
# Markdown-format descriptor containing an agent skills document.
|
|
91
96
|
#
|
|
92
97
|
# @!attribute [rw] data
|
|
93
|
-
#
|
|
98
|
+
# The agent skills markdown content, serialized as descriptor payload
|
|
99
|
+
# data.
|
|
94
100
|
# @return [String]
|
|
95
101
|
#
|
|
96
102
|
# @!attribute [rw] data_schema_version
|
|
97
|
-
#
|
|
103
|
+
# The schema version of the descriptor payload.
|
|
98
104
|
# @return [String]
|
|
99
105
|
#
|
|
100
106
|
# @!attribute [rw] source
|
|
@@ -115,11 +121,14 @@ module Aws::AgentRegistry
|
|
|
115
121
|
# Describes why a requested record could not be retrieved.
|
|
116
122
|
#
|
|
117
123
|
# @!attribute [rw] registry_id
|
|
118
|
-
#
|
|
124
|
+
# The identifier of the registry the record was requested from, echoed
|
|
125
|
+
# from the request.
|
|
119
126
|
# @return [String]
|
|
120
127
|
#
|
|
121
128
|
# @!attribute [rw] record_id
|
|
122
|
-
#
|
|
129
|
+
# The identifier of the record that could not be retrieved, echoed
|
|
130
|
+
# from the request in the same format that you supplied (ARN or record
|
|
131
|
+
# ID).
|
|
123
132
|
# @return [String]
|
|
124
133
|
#
|
|
125
134
|
# @!attribute [rw] error_code
|
|
@@ -177,7 +186,8 @@ module Aws::AgentRegistry
|
|
|
177
186
|
# Custom descriptor for user-defined content
|
|
178
187
|
#
|
|
179
188
|
# @!attribute [rw] data
|
|
180
|
-
#
|
|
189
|
+
# The custom descriptor content, serialized as descriptor payload
|
|
190
|
+
# data.
|
|
181
191
|
# @return [String]
|
|
182
192
|
#
|
|
183
193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/CustomDescriptor AWS API Documentation
|
|
@@ -191,7 +201,8 @@ module Aws::AgentRegistry
|
|
|
191
201
|
# The source location from which a descriptor's content was retrieved.
|
|
192
202
|
#
|
|
193
203
|
# @!attribute [rw] from_url
|
|
194
|
-
#
|
|
204
|
+
# The URL-based descriptor source, populated when descriptor content
|
|
205
|
+
# is synchronized from a URL.
|
|
195
206
|
# @return [Types::DescriptorSourceFromUrl]
|
|
196
207
|
#
|
|
197
208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/DescriptorSource AWS API Documentation
|
|
@@ -202,10 +213,11 @@ module Aws::AgentRegistry
|
|
|
202
213
|
include Aws::Structure
|
|
203
214
|
end
|
|
204
215
|
|
|
205
|
-
#
|
|
216
|
+
# A URL-based descriptor source that identifies where descriptor content
|
|
217
|
+
# is retrieved from.
|
|
206
218
|
#
|
|
207
219
|
# @!attribute [rw] url
|
|
208
|
-
# URL
|
|
220
|
+
# The URL from which the descriptor content is retrieved.
|
|
209
221
|
# @return [String]
|
|
210
222
|
#
|
|
211
223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/DescriptorSourceFromUrl AWS API Documentation
|
|
@@ -220,19 +232,21 @@ module Aws::AgentRegistry
|
|
|
220
232
|
# use the registry record.
|
|
221
233
|
#
|
|
222
234
|
# @!attribute [rw] mcp_server
|
|
223
|
-
#
|
|
235
|
+
# The MCP server descriptor, populated when the record type is MCP.
|
|
224
236
|
# @return [Types::McpServerDescriptor]
|
|
225
237
|
#
|
|
226
238
|
# @!attribute [rw] a2a_agent_card
|
|
227
|
-
#
|
|
239
|
+
# The A2A agent card descriptor, populated when the record type is
|
|
240
|
+
# AGENT.
|
|
228
241
|
# @return [Types::A2aAgentCardDescriptor]
|
|
229
242
|
#
|
|
230
243
|
# @!attribute [rw] agent_skills_definition
|
|
231
|
-
#
|
|
244
|
+
# The agent skills definition descriptor, populated when the record
|
|
245
|
+
# type is SKILL.
|
|
232
246
|
# @return [Types::AgentSkillsDefinitionDescriptor]
|
|
233
247
|
#
|
|
234
248
|
# @!attribute [rw] custom
|
|
235
|
-
#
|
|
249
|
+
# The custom descriptor, populated when the record type is CUSTOM.
|
|
236
250
|
# @return [Types::CustomDescriptor]
|
|
237
251
|
#
|
|
238
252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/Descriptors AWS API Documentation
|
|
@@ -251,49 +265,65 @@ module Aws::AgentRegistry
|
|
|
251
265
|
# descriptors.
|
|
252
266
|
#
|
|
253
267
|
# @!attribute [rw] registry_arn
|
|
254
|
-
#
|
|
268
|
+
# The Amazon Resource Name (ARN) of the parent registry that owns the
|
|
269
|
+
# record.
|
|
255
270
|
# @return [String]
|
|
256
271
|
#
|
|
257
272
|
# @!attribute [rw] record_arn
|
|
258
|
-
#
|
|
273
|
+
# The Amazon Resource Name (ARN) of the registry record.
|
|
259
274
|
# @return [String]
|
|
260
275
|
#
|
|
261
276
|
# @!attribute [rw] record_id
|
|
262
|
-
#
|
|
277
|
+
# The unique identifier of the registry record.
|
|
263
278
|
# @return [String]
|
|
264
279
|
#
|
|
265
280
|
# @!attribute [rw] name
|
|
266
|
-
#
|
|
281
|
+
# The name of the registry record. Names are unique within a registry.
|
|
267
282
|
# @return [String]
|
|
268
283
|
#
|
|
269
284
|
# @!attribute [rw] description
|
|
270
|
-
#
|
|
285
|
+
# A human-readable description of the registry record. Use this field
|
|
286
|
+
# to explain the record's purpose or content to consumers discovering
|
|
287
|
+
# it in the registry.
|
|
271
288
|
# @return [String]
|
|
272
289
|
#
|
|
273
290
|
# @!attribute [rw] display_name
|
|
274
|
-
#
|
|
291
|
+
# The human-readable display name of the registry record.
|
|
275
292
|
# @return [String]
|
|
276
293
|
#
|
|
277
294
|
# @!attribute [rw] record_type
|
|
278
|
-
#
|
|
295
|
+
# The type of the registry record. `MCP` is a Model Context Protocol
|
|
296
|
+
# server record, `AGENT` is an Agent-to-Agent (A2A) agent card record,
|
|
297
|
+
# `SKILL` is an agent skills definition record, and `CUSTOM` is a
|
|
298
|
+
# record with a custom descriptor.
|
|
279
299
|
# @return [String]
|
|
280
300
|
#
|
|
281
301
|
# @!attribute [rw] record_version
|
|
282
|
-
#
|
|
302
|
+
# The version identifier of the registry record.
|
|
283
303
|
# @return [String]
|
|
284
304
|
#
|
|
285
305
|
# @!attribute [rw] status
|
|
286
|
-
#
|
|
306
|
+
# The lifecycle status of the registry record. A record is `DRAFT`
|
|
307
|
+
# before it is submitted, `PENDING_APPROVAL` while awaiting curator
|
|
308
|
+
# review, and `APPROVED` once it is approved and discoverable.
|
|
309
|
+
# `REJECTED` and `DEPRECATED` records are not discoverable. The
|
|
310
|
+
# `CREATING`, `UPDATING`, `CREATE_FAILED`, and `UPDATE_FAILED` values
|
|
311
|
+
# reflect the state of an in-progress or failed asynchronous change.
|
|
287
312
|
# @return [String]
|
|
288
313
|
#
|
|
289
314
|
# @!attribute [rw] created_at
|
|
290
|
-
#
|
|
315
|
+
# The timestamp when the registry record was created.
|
|
291
316
|
# @return [Time]
|
|
292
317
|
#
|
|
293
318
|
# @!attribute [rw] updated_at
|
|
294
|
-
#
|
|
319
|
+
# The timestamp when the registry record was last updated.
|
|
295
320
|
# @return [Time]
|
|
296
321
|
#
|
|
322
|
+
# @!attribute [rw] descriptor_types
|
|
323
|
+
# The descriptor types that are present on this registry record. Each
|
|
324
|
+
# value corresponds to a descriptor entry key on the approved record.
|
|
325
|
+
# @return [Array<String>]
|
|
326
|
+
#
|
|
297
327
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/DiscoverableRegistryRecordSummary AWS API Documentation
|
|
298
328
|
#
|
|
299
329
|
class DiscoverableRegistryRecordSummary < Struct.new(
|
|
@@ -307,7 +337,8 @@ module Aws::AgentRegistry
|
|
|
307
337
|
:record_version,
|
|
308
338
|
:status,
|
|
309
339
|
:created_at,
|
|
310
|
-
:updated_at
|
|
340
|
+
:updated_at,
|
|
341
|
+
:descriptor_types)
|
|
311
342
|
SENSITIVE = [:description]
|
|
312
343
|
include Aws::Structure
|
|
313
344
|
end
|
|
@@ -327,7 +358,9 @@ module Aws::AgentRegistry
|
|
|
327
358
|
end
|
|
328
359
|
|
|
329
360
|
# @!attribute [rw] registry_id
|
|
330
|
-
#
|
|
361
|
+
# The identifier of the registry whose discoverable records are
|
|
362
|
+
# listed. You can provide either the full Amazon Resource Name (ARN)
|
|
363
|
+
# or the registry ID.
|
|
331
364
|
# @return [String]
|
|
332
365
|
#
|
|
333
366
|
# @!attribute [rw] max_results
|
|
@@ -377,7 +410,8 @@ module Aws::AgentRegistry
|
|
|
377
410
|
# Additional data for an MCP server descriptor
|
|
378
411
|
#
|
|
379
412
|
# @!attribute [rw] tools
|
|
380
|
-
# MCP tools descriptor
|
|
413
|
+
# The MCP tools descriptor that defines the tools exposed by the MCP
|
|
414
|
+
# server.
|
|
381
415
|
# @return [Types::McpToolsDescriptor]
|
|
382
416
|
#
|
|
383
417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/McpServerAdditionalData AWS API Documentation
|
|
@@ -388,18 +422,22 @@ module Aws::AgentRegistry
|
|
|
388
422
|
include Aws::Structure
|
|
389
423
|
end
|
|
390
424
|
|
|
391
|
-
#
|
|
425
|
+
# Descriptor that defines the content of an MCP (Model Context Protocol)
|
|
426
|
+
# server registry record, including the server definition and its tool
|
|
427
|
+
# definitions. The content is validated against the MCP protocol schema.
|
|
392
428
|
#
|
|
393
429
|
# @!attribute [rw] data
|
|
394
|
-
#
|
|
430
|
+
# The MCP server descriptor content, serialized as descriptor payload
|
|
431
|
+
# data.
|
|
395
432
|
# @return [String]
|
|
396
433
|
#
|
|
397
434
|
# @!attribute [rw] data_schema_version
|
|
398
|
-
#
|
|
435
|
+
# The schema version of the descriptor payload.
|
|
399
436
|
# @return [String]
|
|
400
437
|
#
|
|
401
438
|
# @!attribute [rw] additional_data
|
|
402
|
-
# Additional data
|
|
439
|
+
# Additional data associated with the MCP server descriptor, such as
|
|
440
|
+
# tool definitions.
|
|
403
441
|
# @return [Types::McpServerAdditionalData]
|
|
404
442
|
#
|
|
405
443
|
# @!attribute [rw] source
|
|
@@ -421,11 +459,12 @@ module Aws::AgentRegistry
|
|
|
421
459
|
# MCP tools descriptor containing tool definitions
|
|
422
460
|
#
|
|
423
461
|
# @!attribute [rw] data
|
|
424
|
-
#
|
|
462
|
+
# The MCP tools descriptor content, serialized as descriptor payload
|
|
463
|
+
# data.
|
|
425
464
|
# @return [String]
|
|
426
465
|
#
|
|
427
466
|
# @!attribute [rw] data_schema_version
|
|
428
|
-
#
|
|
467
|
+
# The schema version of the descriptor payload.
|
|
429
468
|
# @return [String]
|
|
430
469
|
#
|
|
431
470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/McpToolsDescriptor AWS API Documentation
|
|
@@ -461,31 +500,37 @@ module Aws::AgentRegistry
|
|
|
461
500
|
# descriptors.
|
|
462
501
|
#
|
|
463
502
|
# @!attribute [rw] registry_arn
|
|
464
|
-
#
|
|
503
|
+
# The Amazon Resource Name (ARN) of the parent registry that owns the
|
|
504
|
+
# record.
|
|
465
505
|
# @return [String]
|
|
466
506
|
#
|
|
467
507
|
# @!attribute [rw] record_arn
|
|
468
|
-
#
|
|
508
|
+
# The Amazon Resource Name (ARN) of the registry record.
|
|
469
509
|
# @return [String]
|
|
470
510
|
#
|
|
471
511
|
# @!attribute [rw] record_id
|
|
472
|
-
#
|
|
512
|
+
# The unique identifier of the registry record.
|
|
473
513
|
# @return [String]
|
|
474
514
|
#
|
|
475
515
|
# @!attribute [rw] name
|
|
476
|
-
#
|
|
516
|
+
# The name of the registry record. Names are unique within a registry.
|
|
477
517
|
# @return [String]
|
|
478
518
|
#
|
|
479
519
|
# @!attribute [rw] description
|
|
480
|
-
#
|
|
520
|
+
# A human-readable description of the registry record. Use this field
|
|
521
|
+
# to explain the record's purpose or content to consumers discovering
|
|
522
|
+
# it in the registry.
|
|
481
523
|
# @return [String]
|
|
482
524
|
#
|
|
483
525
|
# @!attribute [rw] display_name
|
|
484
|
-
#
|
|
526
|
+
# The human-readable display name of the registry record.
|
|
485
527
|
# @return [String]
|
|
486
528
|
#
|
|
487
529
|
# @!attribute [rw] record_type
|
|
488
|
-
#
|
|
530
|
+
# The type of the registry record. `MCP` is a Model Context Protocol
|
|
531
|
+
# server record, `AGENT` is an Agent-to-Agent (A2A) agent card record,
|
|
532
|
+
# `SKILL` is an agent skills definition record, and `CUSTOM` is a
|
|
533
|
+
# record with a custom descriptor.
|
|
489
534
|
# @return [String]
|
|
490
535
|
#
|
|
491
536
|
# @!attribute [rw] descriptors
|
|
@@ -494,19 +539,24 @@ module Aws::AgentRegistry
|
|
|
494
539
|
# @return [Types::Descriptors]
|
|
495
540
|
#
|
|
496
541
|
# @!attribute [rw] record_version
|
|
497
|
-
#
|
|
542
|
+
# The version identifier of the registry record.
|
|
498
543
|
# @return [String]
|
|
499
544
|
#
|
|
500
545
|
# @!attribute [rw] status
|
|
501
|
-
#
|
|
546
|
+
# The lifecycle status of the registry record. A record is `DRAFT`
|
|
547
|
+
# before it is submitted, `PENDING_APPROVAL` while awaiting curator
|
|
548
|
+
# review, and `APPROVED` once it is approved and discoverable.
|
|
549
|
+
# `REJECTED` and `DEPRECATED` records are not discoverable. The
|
|
550
|
+
# `CREATING`, `UPDATING`, `CREATE_FAILED`, and `UPDATE_FAILED` values
|
|
551
|
+
# reflect the state of an in-progress or failed asynchronous change.
|
|
502
552
|
# @return [String]
|
|
503
553
|
#
|
|
504
554
|
# @!attribute [rw] created_at
|
|
505
|
-
#
|
|
555
|
+
# The timestamp when the registry record was created.
|
|
506
556
|
# @return [Time]
|
|
507
557
|
#
|
|
508
558
|
# @!attribute [rw] updated_at
|
|
509
|
-
#
|
|
559
|
+
# The timestamp when the registry record was last updated.
|
|
510
560
|
# @return [Time]
|
|
511
561
|
#
|
|
512
562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/RegistryRecordSummary AWS API Documentation
|
|
@@ -531,7 +581,9 @@ module Aws::AgentRegistry
|
|
|
531
581
|
# Binds one registry to the record IDs requested from it.
|
|
532
582
|
#
|
|
533
583
|
# @!attribute [rw] registry_id
|
|
534
|
-
#
|
|
584
|
+
# The identifier of the registry to retrieve the records from. You can
|
|
585
|
+
# provide either the full Amazon Resource Name (ARN) or the registry
|
|
586
|
+
# ID.
|
|
535
587
|
# @return [String]
|
|
536
588
|
#
|
|
537
589
|
# @!attribute [rw] record_ids
|
data/sig/types.rbs
CHANGED
|
@@ -88,11 +88,12 @@ module Aws::AgentRegistry
|
|
|
88
88
|
attr_accessor name: ::String
|
|
89
89
|
attr_accessor description: ::String
|
|
90
90
|
attr_accessor display_name: ::String
|
|
91
|
-
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
91
|
+
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
92
92
|
attr_accessor record_version: ::String
|
|
93
93
|
attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
94
94
|
attr_accessor created_at: ::Time
|
|
95
95
|
attr_accessor updated_at: ::Time
|
|
96
|
+
attr_accessor descriptor_types: ::Array[::String]
|
|
96
97
|
SENSITIVE: [:description]
|
|
97
98
|
end
|
|
98
99
|
|
|
@@ -147,7 +148,7 @@ module Aws::AgentRegistry
|
|
|
147
148
|
attr_accessor name: ::String
|
|
148
149
|
attr_accessor description: ::String
|
|
149
150
|
attr_accessor display_name: ::String
|
|
150
|
-
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
151
|
+
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
151
152
|
attr_accessor descriptors: Types::Descriptors
|
|
152
153
|
attr_accessor record_version: ::String
|
|
153
154
|
attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|