aws-sdk-agentregistry 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-agentregistry/client.rb +725 -0
- data/lib/aws-sdk-agentregistry/client_api.rb +306 -0
- data/lib/aws-sdk-agentregistry/customizations.rb +0 -0
- data/lib/aws-sdk-agentregistry/endpoint_parameters.rb +49 -0
- data/lib/aws-sdk-agentregistry/endpoint_provider.rb +24 -0
- data/lib/aws-sdk-agentregistry/endpoints.rb +20 -0
- data/lib/aws-sdk-agentregistry/errors.rb +144 -0
- data/lib/aws-sdk-agentregistry/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-agentregistry/resource.rb +26 -0
- data/lib/aws-sdk-agentregistry/types.rb +680 -0
- data/lib/aws-sdk-agentregistry.rb +61 -0
- data/sig/client.rbs +132 -0
- data/sig/errors.rbs +36 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +206 -0
- metadata +95 -0
|
@@ -0,0 +1,680 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
|
4
|
+
#
|
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
|
+
#
|
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
|
9
|
+
|
|
10
|
+
module Aws::AgentRegistry
|
|
11
|
+
module Types
|
|
12
|
+
|
|
13
|
+
# Base mixin for A2A agent card descriptor content
|
|
14
|
+
#
|
|
15
|
+
# @!attribute [rw] data
|
|
16
|
+
# Descriptor payload data
|
|
17
|
+
# @return [String]
|
|
18
|
+
#
|
|
19
|
+
# @!attribute [rw] data_schema_version
|
|
20
|
+
# Version of the descriptor type schema
|
|
21
|
+
# @return [String]
|
|
22
|
+
#
|
|
23
|
+
# @!attribute [rw] source
|
|
24
|
+
# The source location from which the A2A (Agent-to-Agent) agent card
|
|
25
|
+
# descriptor content was retrieved.
|
|
26
|
+
# @return [Types::DescriptorSource]
|
|
27
|
+
#
|
|
28
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/A2aAgentCardDescriptor AWS API Documentation
|
|
29
|
+
#
|
|
30
|
+
class A2aAgentCardDescriptor < Struct.new(
|
|
31
|
+
:data,
|
|
32
|
+
:data_schema_version,
|
|
33
|
+
:source)
|
|
34
|
+
SENSITIVE = [:data]
|
|
35
|
+
include Aws::Structure
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# The caller is not authorized to perform the requested action.
|
|
39
|
+
#
|
|
40
|
+
# @!attribute [rw] message
|
|
41
|
+
# @return [String]
|
|
42
|
+
#
|
|
43
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/AccessDeniedException AWS API Documentation
|
|
44
|
+
#
|
|
45
|
+
class AccessDeniedException < Struct.new(
|
|
46
|
+
:message)
|
|
47
|
+
SENSITIVE = []
|
|
48
|
+
include Aws::Structure
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# Additional data for an agent skills definition descriptor.
|
|
52
|
+
#
|
|
53
|
+
# @!attribute [rw] skill_md
|
|
54
|
+
# Base mixin for agent skills markdown descriptor content
|
|
55
|
+
# @return [Types::AgentSkillsMdDescriptor]
|
|
56
|
+
#
|
|
57
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/AgentSkillsAdditionalData AWS API Documentation
|
|
58
|
+
#
|
|
59
|
+
class AgentSkillsAdditionalData < Struct.new(
|
|
60
|
+
:skill_md)
|
|
61
|
+
SENSITIVE = []
|
|
62
|
+
include Aws::Structure
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# Base mixin for agent skills definition descriptor content
|
|
66
|
+
#
|
|
67
|
+
# @!attribute [rw] data
|
|
68
|
+
# Descriptor payload data
|
|
69
|
+
# @return [String]
|
|
70
|
+
#
|
|
71
|
+
# @!attribute [rw] data_schema_version
|
|
72
|
+
# Version of the descriptor type schema
|
|
73
|
+
# @return [String]
|
|
74
|
+
#
|
|
75
|
+
# @!attribute [rw] additional_data
|
|
76
|
+
# Additional data for the agent skills definition, such as the skills
|
|
77
|
+
# markdown descriptor.
|
|
78
|
+
# @return [Types::AgentSkillsAdditionalData]
|
|
79
|
+
#
|
|
80
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/AgentSkillsDefinitionDescriptor AWS API Documentation
|
|
81
|
+
#
|
|
82
|
+
class AgentSkillsDefinitionDescriptor < Struct.new(
|
|
83
|
+
:data,
|
|
84
|
+
:data_schema_version,
|
|
85
|
+
:additional_data)
|
|
86
|
+
SENSITIVE = [:data]
|
|
87
|
+
include Aws::Structure
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# Base mixin for agent skills markdown descriptor content
|
|
91
|
+
#
|
|
92
|
+
# @!attribute [rw] data
|
|
93
|
+
# Descriptor payload data
|
|
94
|
+
# @return [String]
|
|
95
|
+
#
|
|
96
|
+
# @!attribute [rw] data_schema_version
|
|
97
|
+
# Version of the descriptor type schema
|
|
98
|
+
# @return [String]
|
|
99
|
+
#
|
|
100
|
+
# @!attribute [rw] source
|
|
101
|
+
# The source location from which the agent skills markdown content was
|
|
102
|
+
# retrieved.
|
|
103
|
+
# @return [Types::DescriptorSource]
|
|
104
|
+
#
|
|
105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/AgentSkillsMdDescriptor AWS API Documentation
|
|
106
|
+
#
|
|
107
|
+
class AgentSkillsMdDescriptor < Struct.new(
|
|
108
|
+
:data,
|
|
109
|
+
:data_schema_version,
|
|
110
|
+
:source)
|
|
111
|
+
SENSITIVE = [:data]
|
|
112
|
+
include Aws::Structure
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Describes why a requested record could not be retrieved.
|
|
116
|
+
#
|
|
117
|
+
# @!attribute [rw] registry_id
|
|
118
|
+
# Registry identifier that accepts either ARN or ID format
|
|
119
|
+
# @return [String]
|
|
120
|
+
#
|
|
121
|
+
# @!attribute [rw] record_id
|
|
122
|
+
# Record identifier that accepts either ARN or ID format
|
|
123
|
+
# @return [String]
|
|
124
|
+
#
|
|
125
|
+
# @!attribute [rw] error_code
|
|
126
|
+
# The machine-readable reason that the record could not be retrieved.
|
|
127
|
+
# @return [String]
|
|
128
|
+
#
|
|
129
|
+
# @!attribute [rw] message
|
|
130
|
+
# An optional human-readable detail about the error. Do not parse this
|
|
131
|
+
# value programmatically.
|
|
132
|
+
# @return [String]
|
|
133
|
+
#
|
|
134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/BatchGetDiscoverableRegistryRecordError AWS API Documentation
|
|
135
|
+
#
|
|
136
|
+
class BatchGetDiscoverableRegistryRecordError < Struct.new(
|
|
137
|
+
:registry_id,
|
|
138
|
+
:record_id,
|
|
139
|
+
:error_code,
|
|
140
|
+
:message)
|
|
141
|
+
SENSITIVE = []
|
|
142
|
+
include Aws::Structure
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
# @!attribute [rw] entries
|
|
146
|
+
# The registry-scoped groups of record IDs to retrieve. Currently, you
|
|
147
|
+
# can specify exactly one entry.
|
|
148
|
+
# @return [Array<Types::RegistryRecordsEntry>]
|
|
149
|
+
#
|
|
150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/BatchGetDiscoverableRegistryRecordRequest AWS API Documentation
|
|
151
|
+
#
|
|
152
|
+
class BatchGetDiscoverableRegistryRecordRequest < Struct.new(
|
|
153
|
+
:entries)
|
|
154
|
+
SENSITIVE = []
|
|
155
|
+
include Aws::Structure
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
# @!attribute [rw] registry_records
|
|
159
|
+
# The records that were successfully retrieved. Each record correlates
|
|
160
|
+
# to the request by its `recordId`.
|
|
161
|
+
# @return [Array<Types::RegistryRecordSummary>]
|
|
162
|
+
#
|
|
163
|
+
# @!attribute [rw] errors
|
|
164
|
+
# The per-record errors for records that could not be retrieved. This
|
|
165
|
+
# list is empty when all requested records were returned.
|
|
166
|
+
# @return [Array<Types::BatchGetDiscoverableRegistryRecordError>]
|
|
167
|
+
#
|
|
168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/BatchGetDiscoverableRegistryRecordResponse AWS API Documentation
|
|
169
|
+
#
|
|
170
|
+
class BatchGetDiscoverableRegistryRecordResponse < Struct.new(
|
|
171
|
+
:registry_records,
|
|
172
|
+
:errors)
|
|
173
|
+
SENSITIVE = []
|
|
174
|
+
include Aws::Structure
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
# Custom descriptor for user-defined content
|
|
178
|
+
#
|
|
179
|
+
# @!attribute [rw] data
|
|
180
|
+
# Descriptor payload data
|
|
181
|
+
# @return [String]
|
|
182
|
+
#
|
|
183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/CustomDescriptor AWS API Documentation
|
|
184
|
+
#
|
|
185
|
+
class CustomDescriptor < Struct.new(
|
|
186
|
+
:data)
|
|
187
|
+
SENSITIVE = [:data]
|
|
188
|
+
include Aws::Structure
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
# The source location from which a descriptor's content was retrieved.
|
|
192
|
+
#
|
|
193
|
+
# @!attribute [rw] from_url
|
|
194
|
+
# Base mixin for descriptor source from URL
|
|
195
|
+
# @return [Types::DescriptorSourceFromUrl]
|
|
196
|
+
#
|
|
197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/DescriptorSource AWS API Documentation
|
|
198
|
+
#
|
|
199
|
+
class DescriptorSource < Struct.new(
|
|
200
|
+
:from_url)
|
|
201
|
+
SENSITIVE = []
|
|
202
|
+
include Aws::Structure
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
# Base mixin for descriptor source from URL
|
|
206
|
+
#
|
|
207
|
+
# @!attribute [rw] url
|
|
208
|
+
# URL source for descriptor content
|
|
209
|
+
# @return [String]
|
|
210
|
+
#
|
|
211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/DescriptorSourceFromUrl AWS API Documentation
|
|
212
|
+
#
|
|
213
|
+
class DescriptorSourceFromUrl < Struct.new(
|
|
214
|
+
:url)
|
|
215
|
+
SENSITIVE = []
|
|
216
|
+
include Aws::Structure
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
# The protocol-specific descriptors that describe how to connect to and
|
|
220
|
+
# use the registry record.
|
|
221
|
+
#
|
|
222
|
+
# @!attribute [rw] mcp_server
|
|
223
|
+
# Base mixin for MCP server descriptor content
|
|
224
|
+
# @return [Types::McpServerDescriptor]
|
|
225
|
+
#
|
|
226
|
+
# @!attribute [rw] a2a_agent_card
|
|
227
|
+
# Base mixin for A2A agent card descriptor content
|
|
228
|
+
# @return [Types::A2aAgentCardDescriptor]
|
|
229
|
+
#
|
|
230
|
+
# @!attribute [rw] agent_skills_definition
|
|
231
|
+
# Base mixin for agent skills definition descriptor content
|
|
232
|
+
# @return [Types::AgentSkillsDefinitionDescriptor]
|
|
233
|
+
#
|
|
234
|
+
# @!attribute [rw] custom
|
|
235
|
+
# Custom descriptor for user-defined content
|
|
236
|
+
# @return [Types::CustomDescriptor]
|
|
237
|
+
#
|
|
238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/Descriptors AWS API Documentation
|
|
239
|
+
#
|
|
240
|
+
class Descriptors < Struct.new(
|
|
241
|
+
:mcp_server,
|
|
242
|
+
:a2a_agent_card,
|
|
243
|
+
:agent_skills_definition,
|
|
244
|
+
:custom)
|
|
245
|
+
SENSITIVE = []
|
|
246
|
+
include Aws::Structure
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
# Summary information about a discoverable registry record returned by `
|
|
250
|
+
# ListDiscoverableRegistryRecords`. This summary does not include
|
|
251
|
+
# descriptors.
|
|
252
|
+
#
|
|
253
|
+
# @!attribute [rw] registry_arn
|
|
254
|
+
# Registry Amazon Resource Name
|
|
255
|
+
# @return [String]
|
|
256
|
+
#
|
|
257
|
+
# @!attribute [rw] record_arn
|
|
258
|
+
# Registry Record Amazon Resource Name
|
|
259
|
+
# @return [String]
|
|
260
|
+
#
|
|
261
|
+
# @!attribute [rw] record_id
|
|
262
|
+
# Registry Record unique identifier - 12-character alphanumeric string
|
|
263
|
+
# @return [String]
|
|
264
|
+
#
|
|
265
|
+
# @!attribute [rw] name
|
|
266
|
+
# Registry Record name
|
|
267
|
+
# @return [String]
|
|
268
|
+
#
|
|
269
|
+
# @!attribute [rw] description
|
|
270
|
+
# Description of the Resource
|
|
271
|
+
# @return [String]
|
|
272
|
+
#
|
|
273
|
+
# @!attribute [rw] display_name
|
|
274
|
+
# Display name for a registry record
|
|
275
|
+
# @return [String]
|
|
276
|
+
#
|
|
277
|
+
# @!attribute [rw] record_type
|
|
278
|
+
# Record type enum for registry record classification
|
|
279
|
+
# @return [String]
|
|
280
|
+
#
|
|
281
|
+
# @!attribute [rw] record_version
|
|
282
|
+
# Version of the registry record
|
|
283
|
+
# @return [String]
|
|
284
|
+
#
|
|
285
|
+
# @!attribute [rw] status
|
|
286
|
+
# Registry record status
|
|
287
|
+
# @return [String]
|
|
288
|
+
#
|
|
289
|
+
# @!attribute [rw] created_at
|
|
290
|
+
# Timestamp in ISO 8601 date-time format
|
|
291
|
+
# @return [Time]
|
|
292
|
+
#
|
|
293
|
+
# @!attribute [rw] updated_at
|
|
294
|
+
# Timestamp in ISO 8601 date-time format
|
|
295
|
+
# @return [Time]
|
|
296
|
+
#
|
|
297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/DiscoverableRegistryRecordSummary AWS API Documentation
|
|
298
|
+
#
|
|
299
|
+
class DiscoverableRegistryRecordSummary < Struct.new(
|
|
300
|
+
:registry_arn,
|
|
301
|
+
:record_arn,
|
|
302
|
+
:record_id,
|
|
303
|
+
:name,
|
|
304
|
+
:description,
|
|
305
|
+
:display_name,
|
|
306
|
+
:record_type,
|
|
307
|
+
:record_version,
|
|
308
|
+
:status,
|
|
309
|
+
:created_at,
|
|
310
|
+
:updated_at)
|
|
311
|
+
SENSITIVE = [:description]
|
|
312
|
+
include Aws::Structure
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
# The request failed due to an unexpected internal error; the caller may
|
|
316
|
+
# retry.
|
|
317
|
+
#
|
|
318
|
+
# @!attribute [rw] message
|
|
319
|
+
# @return [String]
|
|
320
|
+
#
|
|
321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/InternalServerException AWS API Documentation
|
|
322
|
+
#
|
|
323
|
+
class InternalServerException < Struct.new(
|
|
324
|
+
:message)
|
|
325
|
+
SENSITIVE = []
|
|
326
|
+
include Aws::Structure
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
# @!attribute [rw] registry_id
|
|
330
|
+
# Registry identifier that accepts either ARN or ID format
|
|
331
|
+
# @return [String]
|
|
332
|
+
#
|
|
333
|
+
# @!attribute [rw] max_results
|
|
334
|
+
# The maximum number of records to return in a single page. Valid
|
|
335
|
+
# values are 1 through 100.
|
|
336
|
+
# @return [Integer]
|
|
337
|
+
#
|
|
338
|
+
# @!attribute [rw] next_token
|
|
339
|
+
# The pagination token returned by a previous request. Use this value
|
|
340
|
+
# to retrieve the next page of results.
|
|
341
|
+
# @return [String]
|
|
342
|
+
#
|
|
343
|
+
# @!attribute [rw] filters
|
|
344
|
+
# The filters to apply to the discoverable registry record list.
|
|
345
|
+
# @return [Array<Types::RegistryRecordFilter>]
|
|
346
|
+
#
|
|
347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/ListDiscoverableRegistryRecordsRequest AWS API Documentation
|
|
348
|
+
#
|
|
349
|
+
class ListDiscoverableRegistryRecordsRequest < Struct.new(
|
|
350
|
+
:registry_id,
|
|
351
|
+
:max_results,
|
|
352
|
+
:next_token,
|
|
353
|
+
:filters)
|
|
354
|
+
SENSITIVE = []
|
|
355
|
+
include Aws::Structure
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
# @!attribute [rw] registry_records
|
|
359
|
+
# The page of discoverable registry record summaries.
|
|
360
|
+
# @return [Array<Types::DiscoverableRegistryRecordSummary>]
|
|
361
|
+
#
|
|
362
|
+
# @!attribute [rw] next_token
|
|
363
|
+
# The pagination token to pass to a subsequent request to retrieve the
|
|
364
|
+
# next page of results. This field is absent when there are no more
|
|
365
|
+
# results.
|
|
366
|
+
# @return [String]
|
|
367
|
+
#
|
|
368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/ListDiscoverableRegistryRecordsResponse AWS API Documentation
|
|
369
|
+
#
|
|
370
|
+
class ListDiscoverableRegistryRecordsResponse < Struct.new(
|
|
371
|
+
:registry_records,
|
|
372
|
+
:next_token)
|
|
373
|
+
SENSITIVE = []
|
|
374
|
+
include Aws::Structure
|
|
375
|
+
end
|
|
376
|
+
|
|
377
|
+
# Additional data for an MCP server descriptor
|
|
378
|
+
#
|
|
379
|
+
# @!attribute [rw] tools
|
|
380
|
+
# MCP tools descriptor containing tool definitions
|
|
381
|
+
# @return [Types::McpToolsDescriptor]
|
|
382
|
+
#
|
|
383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/McpServerAdditionalData AWS API Documentation
|
|
384
|
+
#
|
|
385
|
+
class McpServerAdditionalData < Struct.new(
|
|
386
|
+
:tools)
|
|
387
|
+
SENSITIVE = []
|
|
388
|
+
include Aws::Structure
|
|
389
|
+
end
|
|
390
|
+
|
|
391
|
+
# Base mixin for MCP server descriptor content
|
|
392
|
+
#
|
|
393
|
+
# @!attribute [rw] data
|
|
394
|
+
# Descriptor payload data
|
|
395
|
+
# @return [String]
|
|
396
|
+
#
|
|
397
|
+
# @!attribute [rw] data_schema_version
|
|
398
|
+
# Version of the descriptor type schema
|
|
399
|
+
# @return [String]
|
|
400
|
+
#
|
|
401
|
+
# @!attribute [rw] additional_data
|
|
402
|
+
# Additional data for an MCP server descriptor
|
|
403
|
+
# @return [Types::McpServerAdditionalData]
|
|
404
|
+
#
|
|
405
|
+
# @!attribute [rw] source
|
|
406
|
+
# The source location from which the MCP (Model Context Protocol)
|
|
407
|
+
# server descriptor content was retrieved.
|
|
408
|
+
# @return [Types::DescriptorSource]
|
|
409
|
+
#
|
|
410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/McpServerDescriptor AWS API Documentation
|
|
411
|
+
#
|
|
412
|
+
class McpServerDescriptor < Struct.new(
|
|
413
|
+
:data,
|
|
414
|
+
:data_schema_version,
|
|
415
|
+
:additional_data,
|
|
416
|
+
:source)
|
|
417
|
+
SENSITIVE = [:data]
|
|
418
|
+
include Aws::Structure
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
# MCP tools descriptor containing tool definitions
|
|
422
|
+
#
|
|
423
|
+
# @!attribute [rw] data
|
|
424
|
+
# Descriptor payload data
|
|
425
|
+
# @return [String]
|
|
426
|
+
#
|
|
427
|
+
# @!attribute [rw] data_schema_version
|
|
428
|
+
# Version of the descriptor type schema
|
|
429
|
+
# @return [String]
|
|
430
|
+
#
|
|
431
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/McpToolsDescriptor AWS API Documentation
|
|
432
|
+
#
|
|
433
|
+
class McpToolsDescriptor < Struct.new(
|
|
434
|
+
:data,
|
|
435
|
+
:data_schema_version)
|
|
436
|
+
SENSITIVE = [:data]
|
|
437
|
+
include Aws::Structure
|
|
438
|
+
end
|
|
439
|
+
|
|
440
|
+
# A single filter applied to a `ListDiscoverableRegistryRecords`
|
|
441
|
+
# request.
|
|
442
|
+
#
|
|
443
|
+
# @!attribute [rw] name
|
|
444
|
+
# The attribute to filter on.
|
|
445
|
+
# @return [String]
|
|
446
|
+
#
|
|
447
|
+
# @!attribute [rw] values
|
|
448
|
+
# The values to match for the attribute.
|
|
449
|
+
# @return [Array<String>]
|
|
450
|
+
#
|
|
451
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/RegistryRecordFilter AWS API Documentation
|
|
452
|
+
#
|
|
453
|
+
class RegistryRecordFilter < Struct.new(
|
|
454
|
+
:name,
|
|
455
|
+
:values)
|
|
456
|
+
SENSITIVE = []
|
|
457
|
+
include Aws::Structure
|
|
458
|
+
end
|
|
459
|
+
|
|
460
|
+
# Summary information about a registry record, including its
|
|
461
|
+
# descriptors.
|
|
462
|
+
#
|
|
463
|
+
# @!attribute [rw] registry_arn
|
|
464
|
+
# Registry Amazon Resource Name
|
|
465
|
+
# @return [String]
|
|
466
|
+
#
|
|
467
|
+
# @!attribute [rw] record_arn
|
|
468
|
+
# Registry Record Amazon Resource Name
|
|
469
|
+
# @return [String]
|
|
470
|
+
#
|
|
471
|
+
# @!attribute [rw] record_id
|
|
472
|
+
# Registry Record unique identifier - 12-character alphanumeric string
|
|
473
|
+
# @return [String]
|
|
474
|
+
#
|
|
475
|
+
# @!attribute [rw] name
|
|
476
|
+
# Registry Record name
|
|
477
|
+
# @return [String]
|
|
478
|
+
#
|
|
479
|
+
# @!attribute [rw] description
|
|
480
|
+
# Description of the Resource
|
|
481
|
+
# @return [String]
|
|
482
|
+
#
|
|
483
|
+
# @!attribute [rw] display_name
|
|
484
|
+
# Display name for a registry record
|
|
485
|
+
# @return [String]
|
|
486
|
+
#
|
|
487
|
+
# @!attribute [rw] record_type
|
|
488
|
+
# Record type enum for registry record classification
|
|
489
|
+
# @return [String]
|
|
490
|
+
#
|
|
491
|
+
# @!attribute [rw] descriptors
|
|
492
|
+
# The protocol-specific descriptors that describe how to connect to
|
|
493
|
+
# and use the record.
|
|
494
|
+
# @return [Types::Descriptors]
|
|
495
|
+
#
|
|
496
|
+
# @!attribute [rw] record_version
|
|
497
|
+
# Version of the registry record
|
|
498
|
+
# @return [String]
|
|
499
|
+
#
|
|
500
|
+
# @!attribute [rw] status
|
|
501
|
+
# Registry record status
|
|
502
|
+
# @return [String]
|
|
503
|
+
#
|
|
504
|
+
# @!attribute [rw] created_at
|
|
505
|
+
# Timestamp in ISO 8601 date-time format
|
|
506
|
+
# @return [Time]
|
|
507
|
+
#
|
|
508
|
+
# @!attribute [rw] updated_at
|
|
509
|
+
# Timestamp in ISO 8601 date-time format
|
|
510
|
+
# @return [Time]
|
|
511
|
+
#
|
|
512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/RegistryRecordSummary AWS API Documentation
|
|
513
|
+
#
|
|
514
|
+
class RegistryRecordSummary < Struct.new(
|
|
515
|
+
:registry_arn,
|
|
516
|
+
:record_arn,
|
|
517
|
+
:record_id,
|
|
518
|
+
:name,
|
|
519
|
+
:description,
|
|
520
|
+
:display_name,
|
|
521
|
+
:record_type,
|
|
522
|
+
:descriptors,
|
|
523
|
+
:record_version,
|
|
524
|
+
:status,
|
|
525
|
+
:created_at,
|
|
526
|
+
:updated_at)
|
|
527
|
+
SENSITIVE = [:description]
|
|
528
|
+
include Aws::Structure
|
|
529
|
+
end
|
|
530
|
+
|
|
531
|
+
# Binds one registry to the record IDs requested from it.
|
|
532
|
+
#
|
|
533
|
+
# @!attribute [rw] registry_id
|
|
534
|
+
# Registry identifier that accepts either ARN or ID format
|
|
535
|
+
# @return [String]
|
|
536
|
+
#
|
|
537
|
+
# @!attribute [rw] record_ids
|
|
538
|
+
# The record IDs to retrieve from the registry. You can specify 1
|
|
539
|
+
# through 100 record IDs.
|
|
540
|
+
# @return [Array<String>]
|
|
541
|
+
#
|
|
542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/RegistryRecordsEntry AWS API Documentation
|
|
543
|
+
#
|
|
544
|
+
class RegistryRecordsEntry < Struct.new(
|
|
545
|
+
:registry_id,
|
|
546
|
+
:record_ids)
|
|
547
|
+
SENSITIVE = []
|
|
548
|
+
include Aws::Structure
|
|
549
|
+
end
|
|
550
|
+
|
|
551
|
+
# The requested resource was not found.
|
|
552
|
+
#
|
|
553
|
+
# @!attribute [rw] message
|
|
554
|
+
# @return [String]
|
|
555
|
+
#
|
|
556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/ResourceNotFoundException AWS API Documentation
|
|
557
|
+
#
|
|
558
|
+
class ResourceNotFoundException < Struct.new(
|
|
559
|
+
:message)
|
|
560
|
+
SENSITIVE = []
|
|
561
|
+
include Aws::Structure
|
|
562
|
+
end
|
|
563
|
+
|
|
564
|
+
# @!attribute [rw] search_query
|
|
565
|
+
# The natural language query to search for matching registry records.
|
|
566
|
+
# @return [String]
|
|
567
|
+
#
|
|
568
|
+
# @!attribute [rw] registry_ids
|
|
569
|
+
# The registry identifiers to search within. Currently, you must
|
|
570
|
+
# specify exactly one registry identifier. You can provide either the
|
|
571
|
+
# full Amazon Web Services Resource Name (ARN) or the registry ID.
|
|
572
|
+
# @return [Array<String>]
|
|
573
|
+
#
|
|
574
|
+
# @!attribute [rw] max_results
|
|
575
|
+
# The maximum number of results to return. Valid values are 1 through
|
|
576
|
+
# 20. The default value is 10.
|
|
577
|
+
# @return [Integer]
|
|
578
|
+
#
|
|
579
|
+
# @!attribute [rw] filters
|
|
580
|
+
# An optional structured JSON metadata filter that narrows the search
|
|
581
|
+
# results. Supports the field-level operators `$eq`, `$ne`, and `$in`,
|
|
582
|
+
# and the logical operators `$and` and `$or` on filterable fields.
|
|
583
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
584
|
+
#
|
|
585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/SearchDiscoverableRegistryRecordsRequest AWS API Documentation
|
|
586
|
+
#
|
|
587
|
+
class SearchDiscoverableRegistryRecordsRequest < Struct.new(
|
|
588
|
+
:search_query,
|
|
589
|
+
:registry_ids,
|
|
590
|
+
:max_results,
|
|
591
|
+
:filters)
|
|
592
|
+
SENSITIVE = [:search_query, :filters]
|
|
593
|
+
include Aws::Structure
|
|
594
|
+
end
|
|
595
|
+
|
|
596
|
+
# @!attribute [rw] registry_records
|
|
597
|
+
# The registry records that match the search query, ordered by
|
|
598
|
+
# relevance.
|
|
599
|
+
# @return [Array<Types::RegistryRecordSummary>]
|
|
600
|
+
#
|
|
601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/SearchDiscoverableRegistryRecordsResponse AWS API Documentation
|
|
602
|
+
#
|
|
603
|
+
class SearchDiscoverableRegistryRecordsResponse < Struct.new(
|
|
604
|
+
:registry_records)
|
|
605
|
+
SENSITIVE = []
|
|
606
|
+
include Aws::Structure
|
|
607
|
+
end
|
|
608
|
+
|
|
609
|
+
# The request was denied due to request throttling; the caller may retry
|
|
610
|
+
# after a delay.
|
|
611
|
+
#
|
|
612
|
+
# @!attribute [rw] message
|
|
613
|
+
# @return [String]
|
|
614
|
+
#
|
|
615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/ThrottlingException AWS API Documentation
|
|
616
|
+
#
|
|
617
|
+
class ThrottlingException < Struct.new(
|
|
618
|
+
:message)
|
|
619
|
+
SENSITIVE = []
|
|
620
|
+
include Aws::Structure
|
|
621
|
+
end
|
|
622
|
+
|
|
623
|
+
# The request could not be authenticated.
|
|
624
|
+
#
|
|
625
|
+
# @!attribute [rw] message
|
|
626
|
+
# @return [String]
|
|
627
|
+
#
|
|
628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/UnauthorizedException AWS API Documentation
|
|
629
|
+
#
|
|
630
|
+
class UnauthorizedException < Struct.new(
|
|
631
|
+
:message)
|
|
632
|
+
SENSITIVE = []
|
|
633
|
+
include Aws::Structure
|
|
634
|
+
end
|
|
635
|
+
|
|
636
|
+
# The request failed validation of one or more input fields.
|
|
637
|
+
#
|
|
638
|
+
# @!attribute [rw] message
|
|
639
|
+
# @return [String]
|
|
640
|
+
#
|
|
641
|
+
# @!attribute [rw] reason
|
|
642
|
+
# The reason the request failed validation.
|
|
643
|
+
# @return [String]
|
|
644
|
+
#
|
|
645
|
+
# @!attribute [rw] field_list
|
|
646
|
+
# The list of input fields that failed validation.
|
|
647
|
+
# @return [Array<Types::ValidationExceptionField>]
|
|
648
|
+
#
|
|
649
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/ValidationException AWS API Documentation
|
|
650
|
+
#
|
|
651
|
+
class ValidationException < Struct.new(
|
|
652
|
+
:message,
|
|
653
|
+
:reason,
|
|
654
|
+
:field_list)
|
|
655
|
+
SENSITIVE = []
|
|
656
|
+
include Aws::Structure
|
|
657
|
+
end
|
|
658
|
+
|
|
659
|
+
# Describes a single input field that failed validation.
|
|
660
|
+
#
|
|
661
|
+
# @!attribute [rw] name
|
|
662
|
+
# The name of the field that failed validation.
|
|
663
|
+
# @return [String]
|
|
664
|
+
#
|
|
665
|
+
# @!attribute [rw] message
|
|
666
|
+
# A description of why the field failed validation.
|
|
667
|
+
# @return [String]
|
|
668
|
+
#
|
|
669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-2025-12-01/ValidationExceptionField AWS API Documentation
|
|
670
|
+
#
|
|
671
|
+
class ValidationExceptionField < Struct.new(
|
|
672
|
+
:name,
|
|
673
|
+
:message)
|
|
674
|
+
SENSITIVE = []
|
|
675
|
+
include Aws::Structure
|
|
676
|
+
end
|
|
677
|
+
|
|
678
|
+
end
|
|
679
|
+
end
|
|
680
|
+
|