aws-sdk-agentregistrycontrol 1.0.0 → 1.2.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-agentregistrycontrol/client.rb +708 -15
- data/lib/aws-sdk-agentregistrycontrol/client_api.rb +125 -0
- data/lib/aws-sdk-agentregistrycontrol/types.rb +588 -36
- data/lib/aws-sdk-agentregistrycontrol.rb +1 -1
- data/sig/client.rbs +50 -5
- data/sig/params.rbs +31 -0
- data/sig/types.rbs +135 -5
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -86,6 +86,9 @@ module Aws
|
|
|
86
86
|
def create_registry: (
|
|
87
87
|
name: ::String,
|
|
88
88
|
?description: ::String,
|
|
89
|
+
?encryption_configuration: {
|
|
90
|
+
kms_key_arn: ::String
|
|
91
|
+
},
|
|
89
92
|
?discovery_configuration: {
|
|
90
93
|
authorizer_configuration: Params::authorizer_configuration?,
|
|
91
94
|
authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")?
|
|
@@ -94,6 +97,10 @@ module Aws
|
|
|
94
97
|
?tags: Hash[::String, ::String],
|
|
95
98
|
?approval_configuration: {
|
|
96
99
|
auto_approval_rules: Array[("APPROVE_ALL")]?
|
|
100
|
+
},
|
|
101
|
+
?auto_detection_configuration: {
|
|
102
|
+
scope: ("ORGANIZATION"),
|
|
103
|
+
enabled: bool
|
|
97
104
|
}
|
|
98
105
|
) -> _CreateRegistryResponseSuccess
|
|
99
106
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRegistryResponseSuccess
|
|
@@ -109,7 +116,7 @@ module Aws
|
|
|
109
116
|
name: ::String,
|
|
110
117
|
?display_name: ::String,
|
|
111
118
|
?description: ::String,
|
|
112
|
-
record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL"),
|
|
119
|
+
record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY"),
|
|
113
120
|
descriptors: {
|
|
114
121
|
mcp_server: {
|
|
115
122
|
data: ::String?,
|
|
@@ -140,10 +147,19 @@ module Aws
|
|
|
140
147
|
}?,
|
|
141
148
|
custom: {
|
|
142
149
|
data: ::String?
|
|
150
|
+
}?,
|
|
151
|
+
http: {
|
|
152
|
+
source: Params::descriptor_source?
|
|
153
|
+
}?,
|
|
154
|
+
agui: {
|
|
155
|
+
source: Params::descriptor_source?
|
|
143
156
|
}?
|
|
144
157
|
},
|
|
145
158
|
?record_version: ::String,
|
|
146
159
|
?client_token: ::String,
|
|
160
|
+
?provenance: Array[
|
|
161
|
+
Params::provenance
|
|
162
|
+
],
|
|
147
163
|
?tags: Hash[::String, ::String]
|
|
148
164
|
) -> _CreateRegistryRecordResponseSuccess
|
|
149
165
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRegistryRecordResponseSuccess
|
|
@@ -175,9 +191,11 @@ module Aws
|
|
|
175
191
|
def registry_id: () -> ::String
|
|
176
192
|
def registry_arn: () -> ::String
|
|
177
193
|
def discovery_configuration: () -> Types::DiscoveryConfiguration
|
|
194
|
+
def encryption_configuration: () -> Types::EncryptionConfiguration
|
|
178
195
|
def approval_configuration: () -> Types::ApprovalConfiguration
|
|
179
196
|
def status: () -> ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
180
197
|
def status_reason: () -> ::String
|
|
198
|
+
def auto_detection: () -> Types::AutoDetection
|
|
181
199
|
def created_at: () -> ::Time
|
|
182
200
|
def updated_at: () -> ::Time
|
|
183
201
|
end
|
|
@@ -195,13 +213,16 @@ module Aws
|
|
|
195
213
|
def name: () -> ::String
|
|
196
214
|
def display_name: () -> ::String
|
|
197
215
|
def description: () -> ::String
|
|
198
|
-
def record_type: () -> ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
216
|
+
def record_type: () -> ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
199
217
|
def descriptors: () -> Types::Descriptors
|
|
200
218
|
def record_version: () -> ::String
|
|
201
219
|
def status: () -> ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
202
220
|
def created_at: () -> ::Time
|
|
203
221
|
def updated_at: () -> ::Time
|
|
204
222
|
def status_reason: () -> ::String
|
|
223
|
+
def provenance: () -> ::Array[Types::Provenance]
|
|
224
|
+
def created_by_auto_detection: () -> bool
|
|
225
|
+
def created_by: () -> ::String
|
|
205
226
|
end
|
|
206
227
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistryControl/Client.html#get_registry_record-instance_method
|
|
207
228
|
def get_registry_record: (
|
|
@@ -299,9 +320,11 @@ module Aws
|
|
|
299
320
|
def registry_id: () -> ::String
|
|
300
321
|
def registry_arn: () -> ::String
|
|
301
322
|
def discovery_configuration: () -> Types::DiscoveryConfiguration
|
|
323
|
+
def encryption_configuration: () -> Types::EncryptionConfiguration
|
|
302
324
|
def approval_configuration: () -> Types::ApprovalConfiguration
|
|
303
325
|
def status: () -> ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
304
326
|
def status_reason: () -> ::String
|
|
327
|
+
def auto_detection: () -> Types::AutoDetection
|
|
305
328
|
def created_at: () -> ::Time
|
|
306
329
|
def updated_at: () -> ::Time
|
|
307
330
|
end
|
|
@@ -321,6 +344,12 @@ module Aws
|
|
|
321
344
|
optional_value: {
|
|
322
345
|
auto_approval_rules: Array[("APPROVE_ALL")]?
|
|
323
346
|
}?
|
|
347
|
+
},
|
|
348
|
+
?auto_detection_configuration: {
|
|
349
|
+
optional_value: {
|
|
350
|
+
scope: ("ORGANIZATION"),
|
|
351
|
+
enabled: bool
|
|
352
|
+
}?
|
|
324
353
|
}
|
|
325
354
|
) -> _UpdateRegistryResponseSuccess
|
|
326
355
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRegistryResponseSuccess
|
|
@@ -333,13 +362,16 @@ module Aws
|
|
|
333
362
|
def name: () -> ::String
|
|
334
363
|
def display_name: () -> ::String
|
|
335
364
|
def description: () -> ::String
|
|
336
|
-
def record_type: () -> ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
365
|
+
def record_type: () -> ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
337
366
|
def descriptors: () -> Types::Descriptors
|
|
338
367
|
def record_version: () -> ::String
|
|
339
368
|
def status: () -> ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
340
369
|
def created_at: () -> ::Time
|
|
341
370
|
def updated_at: () -> ::Time
|
|
342
371
|
def status_reason: () -> ::String
|
|
372
|
+
def provenance: () -> ::Array[Types::Provenance]
|
|
373
|
+
def created_by_auto_detection: () -> bool
|
|
374
|
+
def created_by: () -> ::String
|
|
343
375
|
end
|
|
344
376
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistryControl/Client.html#update_registry_record-instance_method
|
|
345
377
|
def update_registry_record: (
|
|
@@ -352,7 +384,7 @@ module Aws
|
|
|
352
384
|
?description: {
|
|
353
385
|
optional_value: ::String?
|
|
354
386
|
},
|
|
355
|
-
?record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL"),
|
|
387
|
+
?record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY"),
|
|
356
388
|
?descriptors: {
|
|
357
389
|
optional_value: {
|
|
358
390
|
mcp_server: {
|
|
@@ -422,11 +454,24 @@ module Aws
|
|
|
422
454
|
optional_value: ::String?
|
|
423
455
|
}?
|
|
424
456
|
}?
|
|
457
|
+
}?,
|
|
458
|
+
http: {
|
|
459
|
+
optional_value: {
|
|
460
|
+
source: Params::updated_descriptor_source?
|
|
461
|
+
}?
|
|
462
|
+
}?,
|
|
463
|
+
agui: {
|
|
464
|
+
optional_value: {
|
|
465
|
+
source: Params::updated_descriptor_source?
|
|
466
|
+
}?
|
|
425
467
|
}?
|
|
426
468
|
}?
|
|
427
469
|
},
|
|
428
470
|
?record_version: ::String,
|
|
429
|
-
?trigger_synchronization: bool
|
|
471
|
+
?trigger_synchronization: bool,
|
|
472
|
+
?provenance: Array[
|
|
473
|
+
Params::provenance
|
|
474
|
+
]
|
|
430
475
|
) -> _UpdateRegistryRecordResponseSuccess
|
|
431
476
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRegistryRecordResponseSuccess
|
|
432
477
|
|
data/sig/params.rbs
CHANGED
|
@@ -89,6 +89,37 @@ module Aws
|
|
|
89
89
|
credential_provider: Params::registry_record_credential_provider_union
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
type agent_core_runtime_source_details = {
|
|
93
|
+
protocol_configuration: {
|
|
94
|
+
server_protocol: ("HTTP" | "A2A" | "MCP" | "AGUI")?
|
|
95
|
+
}?,
|
|
96
|
+
authorizer_configuration: Params::authorizer_configuration?,
|
|
97
|
+
workload_identity_details: {
|
|
98
|
+
workload_identity_arn: ::String
|
|
99
|
+
}?
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
type agent_core_gateway_source_details = {
|
|
103
|
+
protocol_type: ("MCP")?,
|
|
104
|
+
authorizer_type: ::String?,
|
|
105
|
+
authorizer_configuration: Params::authorizer_configuration?,
|
|
106
|
+
workload_identity_details: {
|
|
107
|
+
workload_identity_arn: ::String
|
|
108
|
+
}?
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
type source_details = {
|
|
112
|
+
agentcore_runtime: Params::agent_core_runtime_source_details?,
|
|
113
|
+
agentcore_gateway: Params::agent_core_gateway_source_details?
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
type provenance = {
|
|
117
|
+
relation: ("DETECTED_FROM"),
|
|
118
|
+
source_id: ::String,
|
|
119
|
+
source_type: ("AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Gateway")?,
|
|
120
|
+
source_details: Params::source_details?
|
|
121
|
+
}
|
|
122
|
+
|
|
92
123
|
type updated_descriptor_source = {
|
|
93
124
|
optional_value: Params::descriptor_source?
|
|
94
125
|
}
|
data/sig/types.rbs
CHANGED
|
@@ -20,6 +20,31 @@ module Aws::AgentRegistryControl
|
|
|
20
20
|
SENSITIVE: []
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
+
class AgUiDescriptor
|
|
24
|
+
attr_accessor source: Types::DescriptorSource
|
|
25
|
+
SENSITIVE: []
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
class AgentCoreGatewaySourceDetails
|
|
29
|
+
attr_accessor protocol_type: ("MCP")
|
|
30
|
+
attr_accessor authorizer_type: ::String
|
|
31
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
32
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
33
|
+
SENSITIVE: []
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
class AgentCoreRuntimeProtocolConfiguration
|
|
37
|
+
attr_accessor server_protocol: ("HTTP" | "A2A" | "MCP" | "AGUI")
|
|
38
|
+
SENSITIVE: []
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
class AgentCoreRuntimeSourceDetails
|
|
42
|
+
attr_accessor protocol_configuration: Types::AgentCoreRuntimeProtocolConfiguration
|
|
43
|
+
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
44
|
+
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
45
|
+
SENSITIVE: []
|
|
46
|
+
end
|
|
47
|
+
|
|
23
48
|
class AgentSkillsAdditionalData
|
|
24
49
|
attr_accessor skill_md: Types::AgentSkillsMdDescriptor
|
|
25
50
|
SENSITIVE: []
|
|
@@ -61,6 +86,19 @@ module Aws::AgentRegistryControl
|
|
|
61
86
|
SENSITIVE: []
|
|
62
87
|
end
|
|
63
88
|
|
|
89
|
+
class AutoDetection
|
|
90
|
+
attr_accessor configuration: Types::AutoDetectionConfiguration
|
|
91
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
92
|
+
attr_accessor status_reason: ::String
|
|
93
|
+
SENSITIVE: []
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
class AutoDetectionConfiguration
|
|
97
|
+
attr_accessor scope: ("ORGANIZATION")
|
|
98
|
+
attr_accessor enabled: bool
|
|
99
|
+
SENSITIVE: []
|
|
100
|
+
end
|
|
101
|
+
|
|
64
102
|
class ClaimMatchValueType
|
|
65
103
|
attr_accessor match_value_string: ::String
|
|
66
104
|
attr_accessor match_value_string_list: ::Array[::String]
|
|
@@ -85,10 +123,11 @@ module Aws::AgentRegistryControl
|
|
|
85
123
|
attr_accessor name: ::String
|
|
86
124
|
attr_accessor display_name: ::String
|
|
87
125
|
attr_accessor description: ::String
|
|
88
|
-
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
126
|
+
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
89
127
|
attr_accessor descriptors: Types::Descriptors
|
|
90
128
|
attr_accessor record_version: ::String
|
|
91
129
|
attr_accessor client_token: ::String
|
|
130
|
+
attr_accessor provenance: ::Array[Types::Provenance]
|
|
92
131
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
93
132
|
SENSITIVE: [:description]
|
|
94
133
|
end
|
|
@@ -102,10 +141,12 @@ module Aws::AgentRegistryControl
|
|
|
102
141
|
class CreateRegistryRequest
|
|
103
142
|
attr_accessor name: ::String
|
|
104
143
|
attr_accessor description: ::String
|
|
144
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
105
145
|
attr_accessor discovery_configuration: Types::DiscoveryConfiguration
|
|
106
146
|
attr_accessor client_token: ::String
|
|
107
147
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
108
148
|
attr_accessor approval_configuration: Types::ApprovalConfiguration
|
|
149
|
+
attr_accessor auto_detection_configuration: Types::AutoDetectionConfiguration
|
|
109
150
|
SENSITIVE: [:description]
|
|
110
151
|
end
|
|
111
152
|
|
|
@@ -172,6 +213,8 @@ module Aws::AgentRegistryControl
|
|
|
172
213
|
attr_accessor a2a_agent_card: Types::A2aAgentCardDescriptor
|
|
173
214
|
attr_accessor agent_skills_definition: Types::AgentSkillsDefinitionDescriptor
|
|
174
215
|
attr_accessor custom: Types::CustomDescriptor
|
|
216
|
+
attr_accessor http: Types::HttpDescriptor
|
|
217
|
+
attr_accessor agui: Types::AgUiDescriptor
|
|
175
218
|
SENSITIVE: []
|
|
176
219
|
end
|
|
177
220
|
|
|
@@ -181,6 +224,11 @@ module Aws::AgentRegistryControl
|
|
|
181
224
|
SENSITIVE: []
|
|
182
225
|
end
|
|
183
226
|
|
|
227
|
+
class EncryptionConfiguration
|
|
228
|
+
attr_accessor kms_key_arn: ::String
|
|
229
|
+
SENSITIVE: []
|
|
230
|
+
end
|
|
231
|
+
|
|
184
232
|
class GetRegistryRecordRequest
|
|
185
233
|
attr_accessor registry_id: ::String
|
|
186
234
|
attr_accessor record_id: ::String
|
|
@@ -194,13 +242,16 @@ module Aws::AgentRegistryControl
|
|
|
194
242
|
attr_accessor name: ::String
|
|
195
243
|
attr_accessor display_name: ::String
|
|
196
244
|
attr_accessor description: ::String
|
|
197
|
-
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
245
|
+
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
198
246
|
attr_accessor descriptors: Types::Descriptors
|
|
199
247
|
attr_accessor record_version: ::String
|
|
200
248
|
attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
201
249
|
attr_accessor created_at: ::Time
|
|
202
250
|
attr_accessor updated_at: ::Time
|
|
203
251
|
attr_accessor status_reason: ::String
|
|
252
|
+
attr_accessor provenance: ::Array[Types::Provenance]
|
|
253
|
+
attr_accessor created_by_auto_detection: bool
|
|
254
|
+
attr_accessor created_by: ::String
|
|
204
255
|
SENSITIVE: [:description]
|
|
205
256
|
end
|
|
206
257
|
|
|
@@ -215,14 +266,21 @@ module Aws::AgentRegistryControl
|
|
|
215
266
|
attr_accessor registry_id: ::String
|
|
216
267
|
attr_accessor registry_arn: ::String
|
|
217
268
|
attr_accessor discovery_configuration: Types::DiscoveryConfiguration
|
|
269
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
218
270
|
attr_accessor approval_configuration: Types::ApprovalConfiguration
|
|
219
271
|
attr_accessor status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
220
272
|
attr_accessor status_reason: ::String
|
|
273
|
+
attr_accessor auto_detection: Types::AutoDetection
|
|
221
274
|
attr_accessor created_at: ::Time
|
|
222
275
|
attr_accessor updated_at: ::Time
|
|
223
276
|
SENSITIVE: [:description]
|
|
224
277
|
end
|
|
225
278
|
|
|
279
|
+
class HttpDescriptor
|
|
280
|
+
attr_accessor source: Types::DescriptorSource
|
|
281
|
+
SENSITIVE: []
|
|
282
|
+
end
|
|
283
|
+
|
|
226
284
|
class InternalServerException
|
|
227
285
|
attr_accessor message: ::String
|
|
228
286
|
SENSITIVE: []
|
|
@@ -314,6 +372,21 @@ module Aws::AgentRegistryControl
|
|
|
314
372
|
SENSITIVE: []
|
|
315
373
|
end
|
|
316
374
|
|
|
375
|
+
class Provenance
|
|
376
|
+
attr_accessor relation: ("DETECTED_FROM")
|
|
377
|
+
attr_accessor source_id: ::String
|
|
378
|
+
attr_accessor source_type: ("AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Gateway")
|
|
379
|
+
attr_accessor source_details: Types::SourceDetails
|
|
380
|
+
SENSITIVE: []
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
class ProvenanceSummary
|
|
384
|
+
attr_accessor relation: ("DETECTED_FROM")
|
|
385
|
+
attr_accessor source_id: ::String
|
|
386
|
+
attr_accessor source_type: ("AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Gateway")
|
|
387
|
+
SENSITIVE: []
|
|
388
|
+
end
|
|
389
|
+
|
|
317
390
|
class RegistryFilter
|
|
318
391
|
attr_accessor name: ("status" | "discoveryConfiguration.authorizerType")
|
|
319
392
|
attr_accessor values: ::Array[::String]
|
|
@@ -368,11 +441,14 @@ module Aws::AgentRegistryControl
|
|
|
368
441
|
attr_accessor name: ::String
|
|
369
442
|
attr_accessor display_name: ::String
|
|
370
443
|
attr_accessor description: ::String
|
|
371
|
-
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
444
|
+
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
372
445
|
attr_accessor record_version: ::String
|
|
373
446
|
attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
374
447
|
attr_accessor created_at: ::Time
|
|
375
448
|
attr_accessor updated_at: ::Time
|
|
449
|
+
attr_accessor created_by_auto_detection: bool
|
|
450
|
+
attr_accessor created_by: ::String
|
|
451
|
+
attr_accessor provenance_summary_list: ::Array[Types::ProvenanceSummary]
|
|
376
452
|
SENSITIVE: [:description]
|
|
377
453
|
end
|
|
378
454
|
|
|
@@ -384,6 +460,7 @@ module Aws::AgentRegistryControl
|
|
|
384
460
|
attr_accessor discovery_configuration: Types::DiscoveryConfiguration
|
|
385
461
|
attr_accessor status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
386
462
|
attr_accessor status_reason: ::String
|
|
463
|
+
attr_accessor auto_detection: Types::AutoDetection
|
|
387
464
|
attr_accessor created_at: ::Time
|
|
388
465
|
attr_accessor updated_at: ::Time
|
|
389
466
|
SENSITIVE: [:description]
|
|
@@ -410,6 +487,20 @@ module Aws::AgentRegistryControl
|
|
|
410
487
|
SENSITIVE: []
|
|
411
488
|
end
|
|
412
489
|
|
|
490
|
+
class SourceDetails
|
|
491
|
+
attr_accessor agentcore_runtime: Types::AgentCoreRuntimeSourceDetails
|
|
492
|
+
attr_accessor agentcore_gateway: Types::AgentCoreGatewaySourceDetails
|
|
493
|
+
attr_accessor unknown: untyped
|
|
494
|
+
SENSITIVE: []
|
|
495
|
+
|
|
496
|
+
class AgentcoreRuntime < SourceDetails
|
|
497
|
+
end
|
|
498
|
+
class AgentcoreGateway < SourceDetails
|
|
499
|
+
end
|
|
500
|
+
class Unknown < SourceDetails
|
|
501
|
+
end
|
|
502
|
+
end
|
|
503
|
+
|
|
413
504
|
class SubmitRegistryRecordForApprovalRequest
|
|
414
505
|
attr_accessor registry_id: ::String
|
|
415
506
|
attr_accessor record_id: ::String
|
|
@@ -454,10 +545,11 @@ module Aws::AgentRegistryControl
|
|
|
454
545
|
attr_accessor name: ::String
|
|
455
546
|
attr_accessor display_name: Types::UpdatedDisplayName
|
|
456
547
|
attr_accessor description: Types::UpdatedDescription
|
|
457
|
-
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
548
|
+
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
458
549
|
attr_accessor descriptors: Types::UpdatedDescriptors
|
|
459
550
|
attr_accessor record_version: ::String
|
|
460
551
|
attr_accessor trigger_synchronization: bool
|
|
552
|
+
attr_accessor provenance: ::Array[Types::Provenance]
|
|
461
553
|
SENSITIVE: []
|
|
462
554
|
end
|
|
463
555
|
|
|
@@ -468,13 +560,16 @@ module Aws::AgentRegistryControl
|
|
|
468
560
|
attr_accessor name: ::String
|
|
469
561
|
attr_accessor display_name: ::String
|
|
470
562
|
attr_accessor description: ::String
|
|
471
|
-
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
|
|
563
|
+
attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL" | "GATEWAY")
|
|
472
564
|
attr_accessor descriptors: Types::Descriptors
|
|
473
565
|
attr_accessor record_version: ::String
|
|
474
566
|
attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
475
567
|
attr_accessor created_at: ::Time
|
|
476
568
|
attr_accessor updated_at: ::Time
|
|
477
569
|
attr_accessor status_reason: ::String
|
|
570
|
+
attr_accessor provenance: ::Array[Types::Provenance]
|
|
571
|
+
attr_accessor created_by_auto_detection: bool
|
|
572
|
+
attr_accessor created_by: ::String
|
|
478
573
|
SENSITIVE: [:description]
|
|
479
574
|
end
|
|
480
575
|
|
|
@@ -502,6 +597,7 @@ module Aws::AgentRegistryControl
|
|
|
502
597
|
attr_accessor description: Types::UpdatedDescription
|
|
503
598
|
attr_accessor discovery_configuration: Types::UpdatedDiscoveryConfiguration
|
|
504
599
|
attr_accessor approval_configuration: Types::UpdatedApprovalConfiguration
|
|
600
|
+
attr_accessor auto_detection_configuration: Types::UpdatedAutoDetectionConfiguration
|
|
505
601
|
SENSITIVE: []
|
|
506
602
|
end
|
|
507
603
|
|
|
@@ -511,9 +607,11 @@ module Aws::AgentRegistryControl
|
|
|
511
607
|
attr_accessor registry_id: ::String
|
|
512
608
|
attr_accessor registry_arn: ::String
|
|
513
609
|
attr_accessor discovery_configuration: Types::DiscoveryConfiguration
|
|
610
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
514
611
|
attr_accessor approval_configuration: Types::ApprovalConfiguration
|
|
515
612
|
attr_accessor status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
516
613
|
attr_accessor status_reason: ::String
|
|
614
|
+
attr_accessor auto_detection: Types::AutoDetection
|
|
517
615
|
attr_accessor created_at: ::Time
|
|
518
616
|
attr_accessor updated_at: ::Time
|
|
519
617
|
SENSITIVE: [:description]
|
|
@@ -531,6 +629,16 @@ module Aws::AgentRegistryControl
|
|
|
531
629
|
SENSITIVE: []
|
|
532
630
|
end
|
|
533
631
|
|
|
632
|
+
class UpdatedAgUiDescriptor
|
|
633
|
+
attr_accessor optional_value: Types::UpdatedAgUiDescriptorFields
|
|
634
|
+
SENSITIVE: []
|
|
635
|
+
end
|
|
636
|
+
|
|
637
|
+
class UpdatedAgUiDescriptorFields
|
|
638
|
+
attr_accessor source: Types::UpdatedDescriptorSource
|
|
639
|
+
SENSITIVE: []
|
|
640
|
+
end
|
|
641
|
+
|
|
534
642
|
class UpdatedAgentSkillsAdditionalData
|
|
535
643
|
attr_accessor optional_value: Types::UpdatedAgentSkillsAdditionalDataFields
|
|
536
644
|
SENSITIVE: []
|
|
@@ -575,6 +683,11 @@ module Aws::AgentRegistryControl
|
|
|
575
683
|
SENSITIVE: []
|
|
576
684
|
end
|
|
577
685
|
|
|
686
|
+
class UpdatedAutoDetectionConfiguration
|
|
687
|
+
attr_accessor optional_value: Types::AutoDetectionConfiguration
|
|
688
|
+
SENSITIVE: []
|
|
689
|
+
end
|
|
690
|
+
|
|
578
691
|
class UpdatedCustomDescriptor
|
|
579
692
|
attr_accessor optional_value: Types::UpdatedCustomDescriptorFields
|
|
580
693
|
SENSITIVE: []
|
|
@@ -615,6 +728,8 @@ module Aws::AgentRegistryControl
|
|
|
615
728
|
attr_accessor a2a_agent_card: Types::UpdatedA2aAgentCardDescriptor
|
|
616
729
|
attr_accessor agent_skills_definition: Types::UpdatedAgentSkillsDefinitionDescriptor
|
|
617
730
|
attr_accessor custom: Types::UpdatedCustomDescriptor
|
|
731
|
+
attr_accessor http: Types::UpdatedHttpDescriptor
|
|
732
|
+
attr_accessor agui: Types::UpdatedAgUiDescriptor
|
|
618
733
|
SENSITIVE: []
|
|
619
734
|
end
|
|
620
735
|
|
|
@@ -628,6 +743,16 @@ module Aws::AgentRegistryControl
|
|
|
628
743
|
SENSITIVE: []
|
|
629
744
|
end
|
|
630
745
|
|
|
746
|
+
class UpdatedHttpDescriptor
|
|
747
|
+
attr_accessor optional_value: Types::UpdatedHttpDescriptorFields
|
|
748
|
+
SENSITIVE: []
|
|
749
|
+
end
|
|
750
|
+
|
|
751
|
+
class UpdatedHttpDescriptorFields
|
|
752
|
+
attr_accessor source: Types::UpdatedDescriptorSource
|
|
753
|
+
SENSITIVE: []
|
|
754
|
+
end
|
|
755
|
+
|
|
631
756
|
class UpdatedMcpServerAdditionalData
|
|
632
757
|
attr_accessor optional_value: Types::UpdatedMcpServerAdditionalDataFields
|
|
633
758
|
SENSITIVE: []
|
|
@@ -674,5 +799,10 @@ module Aws::AgentRegistryControl
|
|
|
674
799
|
attr_accessor message: ::String
|
|
675
800
|
SENSITIVE: []
|
|
676
801
|
end
|
|
802
|
+
|
|
803
|
+
class WorkloadIdentityDetails
|
|
804
|
+
attr_accessor workload_identity_arn: ::String
|
|
805
|
+
SENSITIVE: []
|
|
806
|
+
end
|
|
677
807
|
end
|
|
678
808
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-agentregistrycontrol
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.255.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.255.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|