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
|
@@ -50,6 +50,94 @@ module Aws::AgentRegistryControl
|
|
|
50
50
|
include Aws::Structure
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
+
# A registry record descriptor for the AG-UI (Agent-User Interaction)
|
|
54
|
+
# protocol.
|
|
55
|
+
#
|
|
56
|
+
# @!attribute [rw] source
|
|
57
|
+
# The source configuration that defines where descriptor content is
|
|
58
|
+
# retrieved from.
|
|
59
|
+
# @return [Types::DescriptorSource]
|
|
60
|
+
#
|
|
61
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/AgUiDescriptor AWS API Documentation
|
|
62
|
+
#
|
|
63
|
+
class AgUiDescriptor < Struct.new(
|
|
64
|
+
:source)
|
|
65
|
+
SENSITIVE = []
|
|
66
|
+
include Aws::Structure
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# Source details for a record auto-detected from an AgentCore Gateway
|
|
70
|
+
# resource.
|
|
71
|
+
#
|
|
72
|
+
# @!attribute [rw] protocol_type
|
|
73
|
+
# The protocol type of an AgentCore Gateway.
|
|
74
|
+
# @return [String]
|
|
75
|
+
#
|
|
76
|
+
# @!attribute [rw] authorizer_type
|
|
77
|
+
# The type of authorizer configured on the AgentCore Gateway resource
|
|
78
|
+
# that the registry record was detected from.
|
|
79
|
+
# @return [String]
|
|
80
|
+
#
|
|
81
|
+
# @!attribute [rw] authorizer_configuration
|
|
82
|
+
# The authorizer configuration for a registry. Exactly one member is
|
|
83
|
+
# set.
|
|
84
|
+
# @return [Types::AuthorizerConfiguration]
|
|
85
|
+
#
|
|
86
|
+
# @!attribute [rw] workload_identity_details
|
|
87
|
+
# Workload identity details associated with a source resource.
|
|
88
|
+
# @return [Types::WorkloadIdentityDetails]
|
|
89
|
+
#
|
|
90
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/AgentCoreGatewaySourceDetails AWS API Documentation
|
|
91
|
+
#
|
|
92
|
+
class AgentCoreGatewaySourceDetails < Struct.new(
|
|
93
|
+
:protocol_type,
|
|
94
|
+
:authorizer_type,
|
|
95
|
+
:authorizer_configuration,
|
|
96
|
+
:workload_identity_details)
|
|
97
|
+
SENSITIVE = []
|
|
98
|
+
include Aws::Structure
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Protocol configuration for an AgentCore Runtime.
|
|
102
|
+
#
|
|
103
|
+
# @!attribute [rw] server_protocol
|
|
104
|
+
# The server protocol used by an AgentCore Runtime.
|
|
105
|
+
# @return [String]
|
|
106
|
+
#
|
|
107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/AgentCoreRuntimeProtocolConfiguration AWS API Documentation
|
|
108
|
+
#
|
|
109
|
+
class AgentCoreRuntimeProtocolConfiguration < Struct.new(
|
|
110
|
+
:server_protocol)
|
|
111
|
+
SENSITIVE = []
|
|
112
|
+
include Aws::Structure
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Source details for a record auto-detected from an AgentCore Runtime
|
|
116
|
+
# resource.
|
|
117
|
+
#
|
|
118
|
+
# @!attribute [rw] protocol_configuration
|
|
119
|
+
# Protocol configuration for an AgentCore Runtime.
|
|
120
|
+
# @return [Types::AgentCoreRuntimeProtocolConfiguration]
|
|
121
|
+
#
|
|
122
|
+
# @!attribute [rw] authorizer_configuration
|
|
123
|
+
# The authorizer configuration for a registry. Exactly one member is
|
|
124
|
+
# set.
|
|
125
|
+
# @return [Types::AuthorizerConfiguration]
|
|
126
|
+
#
|
|
127
|
+
# @!attribute [rw] workload_identity_details
|
|
128
|
+
# Workload identity details associated with a source resource.
|
|
129
|
+
# @return [Types::WorkloadIdentityDetails]
|
|
130
|
+
#
|
|
131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/AgentCoreRuntimeSourceDetails AWS API Documentation
|
|
132
|
+
#
|
|
133
|
+
class AgentCoreRuntimeSourceDetails < Struct.new(
|
|
134
|
+
:protocol_configuration,
|
|
135
|
+
:authorizer_configuration,
|
|
136
|
+
:workload_identity_details)
|
|
137
|
+
SENSITIVE = []
|
|
138
|
+
include Aws::Structure
|
|
139
|
+
end
|
|
140
|
+
|
|
53
141
|
# Additional data associated with an agent skills definition descriptor.
|
|
54
142
|
#
|
|
55
143
|
# @!attribute [rw] skill_md
|
|
@@ -183,6 +271,62 @@ module Aws::AgentRegistryControl
|
|
|
183
271
|
include Aws::Structure
|
|
184
272
|
end
|
|
185
273
|
|
|
274
|
+
# The auto-detection properties for a registry, including the requested
|
|
275
|
+
# configuration and the current detection status. When auto-detection is
|
|
276
|
+
# enabled and the scope preconditions are met, the registry is
|
|
277
|
+
# automatically populated with discovered resources.
|
|
278
|
+
#
|
|
279
|
+
# @!attribute [rw] configuration
|
|
280
|
+
# The auto-detection settings that control how resources are
|
|
281
|
+
# discovered for the registry.
|
|
282
|
+
# @return [Types::AutoDetectionConfiguration]
|
|
283
|
+
#
|
|
284
|
+
# @!attribute [rw] status
|
|
285
|
+
# The current auto-detection status. `ACTIVE` indicates that the
|
|
286
|
+
# registry is actively being populated with detected resources.
|
|
287
|
+
# `INACTIVE` indicates that the preconditions required at the
|
|
288
|
+
# configured scope are not currently met.
|
|
289
|
+
# @return [String]
|
|
290
|
+
#
|
|
291
|
+
# @!attribute [rw] status_reason
|
|
292
|
+
# A human-readable explanation of the current auto-detection status.
|
|
293
|
+
# Typically populated when the status requires additional context.
|
|
294
|
+
# @return [String]
|
|
295
|
+
#
|
|
296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/AutoDetection AWS API Documentation
|
|
297
|
+
#
|
|
298
|
+
class AutoDetection < Struct.new(
|
|
299
|
+
:configuration,
|
|
300
|
+
:status,
|
|
301
|
+
:status_reason)
|
|
302
|
+
SENSITIVE = []
|
|
303
|
+
include Aws::Structure
|
|
304
|
+
end
|
|
305
|
+
|
|
306
|
+
# The customer-defined auto-detection settings for a registry.
|
|
307
|
+
#
|
|
308
|
+
# @!attribute [rw] scope
|
|
309
|
+
# The source from which resources are detected. For example,
|
|
310
|
+
# `ORGANIZATION` sources resources from all member accounts of an
|
|
311
|
+
# Amazon Web Services organization.
|
|
312
|
+
# @return [String]
|
|
313
|
+
#
|
|
314
|
+
# @!attribute [rw] enabled
|
|
315
|
+
# Specifies whether auto-detection is requested for the registry.
|
|
316
|
+
# Setting this to `true` is necessary but not sufficient for
|
|
317
|
+
# auto-detection to become active; the preconditions of the configured
|
|
318
|
+
# scope must also be met.
|
|
319
|
+
# @return [Boolean]
|
|
320
|
+
#
|
|
321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/AutoDetectionConfiguration AWS API Documentation
|
|
322
|
+
#
|
|
323
|
+
class AutoDetectionConfiguration < Struct.new(
|
|
324
|
+
:scope,
|
|
325
|
+
:enabled)
|
|
326
|
+
SENSITIVE = []
|
|
327
|
+
include Aws::Structure
|
|
328
|
+
end
|
|
329
|
+
|
|
186
330
|
# The expected value used to match a claim. Exactly one member is set.
|
|
187
331
|
#
|
|
188
332
|
# @note ClaimMatchValueType is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -262,6 +406,13 @@ module Aws::AgentRegistryControl
|
|
|
262
406
|
# not need to pass this option.
|
|
263
407
|
# @return [String]
|
|
264
408
|
#
|
|
409
|
+
# @!attribute [rw] provenance
|
|
410
|
+
# List of provenance entries on a registry record. Capped at one entry
|
|
411
|
+
# today: a record carries a single DETECTED\_FROM lineage. Modeled as
|
|
412
|
+
# a list so additional relations can be unlocked post-GA by raising
|
|
413
|
+
# this bound without a breaking shape change.
|
|
414
|
+
# @return [Array<Types::Provenance>]
|
|
415
|
+
#
|
|
265
416
|
# @!attribute [rw] tags
|
|
266
417
|
# Tags to associate with the registry record
|
|
267
418
|
# @return [Hash<String,String>]
|
|
@@ -277,6 +428,7 @@ module Aws::AgentRegistryControl
|
|
|
277
428
|
:descriptors,
|
|
278
429
|
:record_version,
|
|
279
430
|
:client_token,
|
|
431
|
+
:provenance,
|
|
280
432
|
:tags)
|
|
281
433
|
SENSITIVE = [:description]
|
|
282
434
|
include Aws::Structure
|
|
@@ -312,12 +464,23 @@ module Aws::AgentRegistryControl
|
|
|
312
464
|
# The description of the registry
|
|
313
465
|
# @return [String]
|
|
314
466
|
#
|
|
467
|
+
# @!attribute [rw] encryption_configuration
|
|
468
|
+
# The optional server-side encryption configuration for the registry.
|
|
469
|
+
# When you provide this field, the specified customer-managed Amazon
|
|
470
|
+
# Web Services KMS key encrypts the registry's content. Omit this
|
|
471
|
+
# field to use an Amazon Web Services-owned encryption key. You cannot
|
|
472
|
+
# change the encryption configuration after registry creation.
|
|
473
|
+
# @return [Types::EncryptionConfiguration]
|
|
474
|
+
#
|
|
315
475
|
# @!attribute [rw] discovery_configuration
|
|
316
476
|
# Discovery configuration for the registry
|
|
317
477
|
# @return [Types::DiscoveryConfiguration]
|
|
318
478
|
#
|
|
319
479
|
# @!attribute [rw] client_token
|
|
320
|
-
#
|
|
480
|
+
# A unique, case-sensitive identifier to ensure that the operation
|
|
481
|
+
# completes no more than one time. If this token matches a previous
|
|
482
|
+
# request, the service ignores the request, but does not return an
|
|
483
|
+
# error.
|
|
321
484
|
#
|
|
322
485
|
# **A suitable default value is auto-generated.** You should normally
|
|
323
486
|
# not need to pass this option.
|
|
@@ -331,15 +494,25 @@ module Aws::AgentRegistryControl
|
|
|
331
494
|
# Approval configuration for registry records
|
|
332
495
|
# @return [Types::ApprovalConfiguration]
|
|
333
496
|
#
|
|
497
|
+
# @!attribute [rw] auto_detection_configuration
|
|
498
|
+
# The optional auto-detection configuration for the registry. When
|
|
499
|
+
# provided, the registry is automatically populated with resources
|
|
500
|
+
# discovered according to the configuration. Omit this field for
|
|
501
|
+
# registries whose records are managed exclusively through the Agent
|
|
502
|
+
# Registry Control API.
|
|
503
|
+
# @return [Types::AutoDetectionConfiguration]
|
|
504
|
+
#
|
|
334
505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/CreateRegistryRequest AWS API Documentation
|
|
335
506
|
#
|
|
336
507
|
class CreateRegistryRequest < Struct.new(
|
|
337
508
|
:name,
|
|
338
509
|
:description,
|
|
510
|
+
:encryption_configuration,
|
|
339
511
|
:discovery_configuration,
|
|
340
512
|
:client_token,
|
|
341
513
|
:tags,
|
|
342
|
-
:approval_configuration
|
|
514
|
+
:approval_configuration,
|
|
515
|
+
:auto_detection_configuration)
|
|
343
516
|
SENSITIVE = [:description]
|
|
344
517
|
include Aws::Structure
|
|
345
518
|
end
|
|
@@ -386,7 +559,8 @@ module Aws::AgentRegistryControl
|
|
|
386
559
|
# Custom descriptor for user-defined content
|
|
387
560
|
#
|
|
388
561
|
# @!attribute [rw] data
|
|
389
|
-
#
|
|
562
|
+
# The custom descriptor content, serialized as descriptor payload
|
|
563
|
+
# data.
|
|
390
564
|
# @return [String]
|
|
391
565
|
#
|
|
392
566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/CustomDescriptor AWS API Documentation
|
|
@@ -558,13 +732,25 @@ module Aws::AgentRegistryControl
|
|
|
558
732
|
# The custom descriptor, populated when the record type is CUSTOM.
|
|
559
733
|
# @return [Types::CustomDescriptor]
|
|
560
734
|
#
|
|
735
|
+
# @!attribute [rw] http
|
|
736
|
+
# The HTTP descriptor, populated for records detected from an HTTP
|
|
737
|
+
# protocol source.
|
|
738
|
+
# @return [Types::HttpDescriptor]
|
|
739
|
+
#
|
|
740
|
+
# @!attribute [rw] agui
|
|
741
|
+
# The AG-UI descriptor, populated for records detected from an AG-UI
|
|
742
|
+
# protocol source.
|
|
743
|
+
# @return [Types::AgUiDescriptor]
|
|
744
|
+
#
|
|
561
745
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/Descriptors AWS API Documentation
|
|
562
746
|
#
|
|
563
747
|
class Descriptors < Struct.new(
|
|
564
748
|
:mcp_server,
|
|
565
749
|
:a2a_agent_card,
|
|
566
750
|
:agent_skills_definition,
|
|
567
|
-
:custom
|
|
751
|
+
:custom,
|
|
752
|
+
:http,
|
|
753
|
+
:agui)
|
|
568
754
|
SENSITIVE = []
|
|
569
755
|
include Aws::Structure
|
|
570
756
|
end
|
|
@@ -591,6 +777,25 @@ module Aws::AgentRegistryControl
|
|
|
591
777
|
include Aws::Structure
|
|
592
778
|
end
|
|
593
779
|
|
|
780
|
+
# The server-side encryption configuration for a registry. Specifies a
|
|
781
|
+
# customer-managed Amazon Web Services KMS key used to encrypt the
|
|
782
|
+
# registry's content.
|
|
783
|
+
#
|
|
784
|
+
# @!attribute [rw] kms_key_arn
|
|
785
|
+
# The Amazon Resource Name (ARN) of the customer-managed Amazon Web
|
|
786
|
+
# Services KMS key used to encrypt the registry's content. The key
|
|
787
|
+
# must be a symmetric encryption key in the same Amazon Web Services
|
|
788
|
+
# account and Region as the registry.
|
|
789
|
+
# @return [String]
|
|
790
|
+
#
|
|
791
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/EncryptionConfiguration AWS API Documentation
|
|
792
|
+
#
|
|
793
|
+
class EncryptionConfiguration < Struct.new(
|
|
794
|
+
:kms_key_arn)
|
|
795
|
+
SENSITIVE = []
|
|
796
|
+
include Aws::Structure
|
|
797
|
+
end
|
|
798
|
+
|
|
594
799
|
# @!attribute [rw] registry_id
|
|
595
800
|
# The identifier of the registry containing the record (ARN or ID)
|
|
596
801
|
# @return [String]
|
|
@@ -611,11 +816,12 @@ module Aws::AgentRegistryControl
|
|
|
611
816
|
# Response structure for retrieving a registry record
|
|
612
817
|
#
|
|
613
818
|
# @!attribute [rw] registry_arn
|
|
614
|
-
# The
|
|
819
|
+
# The Amazon Resource Name (ARN) of the parent registry that owns the
|
|
820
|
+
# record.
|
|
615
821
|
# @return [String]
|
|
616
822
|
#
|
|
617
823
|
# @!attribute [rw] record_arn
|
|
618
|
-
# The
|
|
824
|
+
# The Amazon Resource Name (ARN) of the registry record.
|
|
619
825
|
# @return [String]
|
|
620
826
|
#
|
|
621
827
|
# @!attribute [rw] record_id
|
|
@@ -665,6 +871,25 @@ module Aws::AgentRegistryControl
|
|
|
665
871
|
# status indicates a failure state.
|
|
666
872
|
# @return [String]
|
|
667
873
|
#
|
|
874
|
+
# @!attribute [rw] provenance
|
|
875
|
+
# List of provenance entries on a registry record. Capped at one entry
|
|
876
|
+
# today: a record carries a single DETECTED\_FROM lineage. Modeled as
|
|
877
|
+
# a list so additional relations can be unlocked post-GA by raising
|
|
878
|
+
# this bound without a breaking shape change.
|
|
879
|
+
# @return [Array<Types::Provenance>]
|
|
880
|
+
#
|
|
881
|
+
# @!attribute [rw] created_by_auto_detection
|
|
882
|
+
# Specifies whether the registry record was created by auto-detection.
|
|
883
|
+
# `true` indicates the record was automatically created by the service
|
|
884
|
+
# based on the registry's auto-detection configuration; `false`
|
|
885
|
+
# indicates the record was created through a control-plane API call.
|
|
886
|
+
# @return [Boolean]
|
|
887
|
+
#
|
|
888
|
+
# @!attribute [rw] created_by
|
|
889
|
+
# The ID of the Amazon Web Services account that created the registry
|
|
890
|
+
# record.
|
|
891
|
+
# @return [String]
|
|
892
|
+
#
|
|
668
893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/GetRegistryRecordResponse AWS API Documentation
|
|
669
894
|
#
|
|
670
895
|
class GetRegistryRecordResponse < Struct.new(
|
|
@@ -680,7 +905,10 @@ module Aws::AgentRegistryControl
|
|
|
680
905
|
:status,
|
|
681
906
|
:created_at,
|
|
682
907
|
:updated_at,
|
|
683
|
-
:status_reason
|
|
908
|
+
:status_reason,
|
|
909
|
+
:provenance,
|
|
910
|
+
:created_by_auto_detection,
|
|
911
|
+
:created_by)
|
|
684
912
|
SENSITIVE = [:description]
|
|
685
913
|
include Aws::Structure
|
|
686
914
|
end
|
|
@@ -721,6 +949,12 @@ module Aws::AgentRegistryControl
|
|
|
721
949
|
# Discovery configuration for the registry
|
|
722
950
|
# @return [Types::DiscoveryConfiguration]
|
|
723
951
|
#
|
|
952
|
+
# @!attribute [rw] encryption_configuration
|
|
953
|
+
# The server-side encryption configuration for the registry. Appears
|
|
954
|
+
# only when a customer-managed Amazon Web Services KMS key encrypts
|
|
955
|
+
# the registry.
|
|
956
|
+
# @return [Types::EncryptionConfiguration]
|
|
957
|
+
#
|
|
724
958
|
# @!attribute [rw] approval_configuration
|
|
725
959
|
# Approval configuration for registry records
|
|
726
960
|
# @return [Types::ApprovalConfiguration]
|
|
@@ -734,6 +968,12 @@ module Aws::AgentRegistryControl
|
|
|
734
968
|
# status indicates a failure state.
|
|
735
969
|
# @return [String]
|
|
736
970
|
#
|
|
971
|
+
# @!attribute [rw] auto_detection
|
|
972
|
+
# The registry's auto-detection properties, including the requested
|
|
973
|
+
# configuration and the current detection status. Present only when
|
|
974
|
+
# auto-detection was configured for the registry.
|
|
975
|
+
# @return [Types::AutoDetection]
|
|
976
|
+
#
|
|
737
977
|
# @!attribute [rw] created_at
|
|
738
978
|
# The timestamp when the registry was created
|
|
739
979
|
# @return [Time]
|
|
@@ -750,15 +990,34 @@ module Aws::AgentRegistryControl
|
|
|
750
990
|
:registry_id,
|
|
751
991
|
:registry_arn,
|
|
752
992
|
:discovery_configuration,
|
|
993
|
+
:encryption_configuration,
|
|
753
994
|
:approval_configuration,
|
|
754
995
|
:status,
|
|
755
996
|
:status_reason,
|
|
997
|
+
:auto_detection,
|
|
756
998
|
:created_at,
|
|
757
999
|
:updated_at)
|
|
758
1000
|
SENSITIVE = [:description]
|
|
759
1001
|
include Aws::Structure
|
|
760
1002
|
end
|
|
761
1003
|
|
|
1004
|
+
# A registry record descriptor for the HTTP protocol. This descriptor is
|
|
1005
|
+
# source-only: its content is synchronized from the configured source
|
|
1006
|
+
# URL rather than supplied inline.
|
|
1007
|
+
#
|
|
1008
|
+
# @!attribute [rw] source
|
|
1009
|
+
# The source configuration that defines where descriptor content is
|
|
1010
|
+
# retrieved from.
|
|
1011
|
+
# @return [Types::DescriptorSource]
|
|
1012
|
+
#
|
|
1013
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/HttpDescriptor AWS API Documentation
|
|
1014
|
+
#
|
|
1015
|
+
class HttpDescriptor < Struct.new(
|
|
1016
|
+
:source)
|
|
1017
|
+
SENSITIVE = []
|
|
1018
|
+
include Aws::Structure
|
|
1019
|
+
end
|
|
1020
|
+
|
|
762
1021
|
# The request failed due to an unexpected internal error; the caller may
|
|
763
1022
|
# retry.
|
|
764
1023
|
#
|
|
@@ -863,7 +1122,8 @@ module Aws::AgentRegistryControl
|
|
|
863
1122
|
end
|
|
864
1123
|
|
|
865
1124
|
# @!attribute [rw] resource_arn
|
|
866
|
-
# ARN of
|
|
1125
|
+
# The Amazon Resource Name (ARN) of the resource to list tags for.
|
|
1126
|
+
# Supported resources include registries and registry records.
|
|
867
1127
|
# @return [String]
|
|
868
1128
|
#
|
|
869
1129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/ListTagsForResourceRequest AWS API Documentation
|
|
@@ -875,8 +1135,8 @@ module Aws::AgentRegistryControl
|
|
|
875
1135
|
end
|
|
876
1136
|
|
|
877
1137
|
# @!attribute [rw] tags
|
|
878
|
-
#
|
|
879
|
-
#
|
|
1138
|
+
# The tags currently associated with the resource, as a map of tag
|
|
1139
|
+
# keys to tag values.
|
|
880
1140
|
# @return [Hash<String,String>]
|
|
881
1141
|
#
|
|
882
1142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/ListTagsForResourceResponse AWS API Documentation
|
|
@@ -910,7 +1170,7 @@ module Aws::AgentRegistryControl
|
|
|
910
1170
|
# @return [Array<String>]
|
|
911
1171
|
#
|
|
912
1172
|
# @!attribute [rw] tags
|
|
913
|
-
#
|
|
1173
|
+
# The tags applied to the service-managed VPC resource.
|
|
914
1174
|
# @return [Hash<String,String>]
|
|
915
1175
|
#
|
|
916
1176
|
# @!attribute [rw] routing_domain
|
|
@@ -934,7 +1194,8 @@ module Aws::AgentRegistryControl
|
|
|
934
1194
|
# Additional data for an MCP server descriptor
|
|
935
1195
|
#
|
|
936
1196
|
# @!attribute [rw] tools
|
|
937
|
-
# MCP tools descriptor
|
|
1197
|
+
# The MCP tools descriptor that defines the tools exposed by the MCP
|
|
1198
|
+
# server.
|
|
938
1199
|
# @return [Types::McpToolsDescriptor]
|
|
939
1200
|
#
|
|
940
1201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/McpServerAdditionalData AWS API Documentation
|
|
@@ -982,11 +1243,12 @@ module Aws::AgentRegistryControl
|
|
|
982
1243
|
# MCP tools descriptor containing tool definitions
|
|
983
1244
|
#
|
|
984
1245
|
# @!attribute [rw] data
|
|
985
|
-
#
|
|
1246
|
+
# The MCP tools descriptor content, serialized as descriptor payload
|
|
1247
|
+
# data.
|
|
986
1248
|
# @return [String]
|
|
987
1249
|
#
|
|
988
1250
|
# @!attribute [rw] data_schema_version
|
|
989
|
-
#
|
|
1251
|
+
# The schema version of the descriptor payload.
|
|
990
1252
|
# @return [String]
|
|
991
1253
|
#
|
|
992
1254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/McpToolsDescriptor AWS API Documentation
|
|
@@ -1048,6 +1310,69 @@ module Aws::AgentRegistryControl
|
|
|
1048
1310
|
include Aws::Structure
|
|
1049
1311
|
end
|
|
1050
1312
|
|
|
1313
|
+
# One provenance entry describing the lineage of a registry record.
|
|
1314
|
+
#
|
|
1315
|
+
# @!attribute [rw] relation
|
|
1316
|
+
# The relationship between the registry record and its provenance
|
|
1317
|
+
# source.
|
|
1318
|
+
# @return [String]
|
|
1319
|
+
#
|
|
1320
|
+
# @!attribute [rw] source_id
|
|
1321
|
+
# The identifier of the upstream source that the registry record was
|
|
1322
|
+
# detected from.
|
|
1323
|
+
# @return [String]
|
|
1324
|
+
#
|
|
1325
|
+
# @!attribute [rw] source_type
|
|
1326
|
+
# The type of the upstream source that the registry record was
|
|
1327
|
+
# detected from.
|
|
1328
|
+
# @return [String]
|
|
1329
|
+
#
|
|
1330
|
+
# @!attribute [rw] source_details
|
|
1331
|
+
# Additional details about the upstream source that the registry
|
|
1332
|
+
# record was detected from, such as the AgentCore Gateway or Runtime
|
|
1333
|
+
# configuration. The populated member corresponds to the source type.
|
|
1334
|
+
# @return [Types::SourceDetails]
|
|
1335
|
+
#
|
|
1336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/Provenance AWS API Documentation
|
|
1337
|
+
#
|
|
1338
|
+
class Provenance < Struct.new(
|
|
1339
|
+
:relation,
|
|
1340
|
+
:source_id,
|
|
1341
|
+
:source_type,
|
|
1342
|
+
:source_details)
|
|
1343
|
+
SENSITIVE = []
|
|
1344
|
+
include Aws::Structure
|
|
1345
|
+
end
|
|
1346
|
+
|
|
1347
|
+
# Condensed provenance entry for list results — the key triple only (no
|
|
1348
|
+
# sourceDetails union). Enough to display and client-side-filter lineage
|
|
1349
|
+
# without the full-read config payload.
|
|
1350
|
+
#
|
|
1351
|
+
# @!attribute [rw] relation
|
|
1352
|
+
# The relationship between the registry record and its provenance
|
|
1353
|
+
# source.
|
|
1354
|
+
# @return [String]
|
|
1355
|
+
#
|
|
1356
|
+
# @!attribute [rw] source_id
|
|
1357
|
+
# The identifier of the upstream source that the registry record was
|
|
1358
|
+
# detected from.
|
|
1359
|
+
# @return [String]
|
|
1360
|
+
#
|
|
1361
|
+
# @!attribute [rw] source_type
|
|
1362
|
+
# The type of the upstream source that the registry record was
|
|
1363
|
+
# detected from.
|
|
1364
|
+
# @return [String]
|
|
1365
|
+
#
|
|
1366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/ProvenanceSummary AWS API Documentation
|
|
1367
|
+
#
|
|
1368
|
+
class ProvenanceSummary < Struct.new(
|
|
1369
|
+
:relation,
|
|
1370
|
+
:source_id,
|
|
1371
|
+
:source_type)
|
|
1372
|
+
SENSITIVE = []
|
|
1373
|
+
include Aws::Structure
|
|
1374
|
+
end
|
|
1375
|
+
|
|
1051
1376
|
# A single filter applied to a ListRegistries request.
|
|
1052
1377
|
#
|
|
1053
1378
|
# @!attribute [rw] name
|
|
@@ -1138,11 +1463,12 @@ module Aws::AgentRegistryControl
|
|
|
1138
1463
|
end
|
|
1139
1464
|
|
|
1140
1465
|
# The configuration for an IAM role credential provider that signs
|
|
1141
|
-
# requests to a registry record's source with
|
|
1142
|
-
# (SigV4).
|
|
1466
|
+
# requests to a registry record's source with Amazon Web Services
|
|
1467
|
+
# Signature Version 4 (SigV4).
|
|
1143
1468
|
#
|
|
1144
1469
|
# @!attribute [rw] role_arn
|
|
1145
|
-
# The
|
|
1470
|
+
# The Amazon Resource Name (ARN) of the IAM role to assume for request
|
|
1471
|
+
# signing.
|
|
1146
1472
|
# @return [String]
|
|
1147
1473
|
#
|
|
1148
1474
|
# @!attribute [rw] service
|
|
@@ -1150,9 +1476,9 @@ module Aws::AgentRegistryControl
|
|
|
1150
1476
|
# @return [String]
|
|
1151
1477
|
#
|
|
1152
1478
|
# @!attribute [rw] region
|
|
1153
|
-
# The
|
|
1154
|
-
# Region is derived from the source URL hostname,
|
|
1155
|
-
# Region of the registry.
|
|
1479
|
+
# The Amazon Web Services Region to use for request signing. If not
|
|
1480
|
+
# specified, the Region is derived from the source URL hostname,
|
|
1481
|
+
# falling back to the Region of the registry.
|
|
1156
1482
|
# @return [String]
|
|
1157
1483
|
#
|
|
1158
1484
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/RegistryRecordIamCredentialProvider AWS API Documentation
|
|
@@ -1169,8 +1495,8 @@ module Aws::AgentRegistryControl
|
|
|
1169
1495
|
# authenticates requests to a registry record's source.
|
|
1170
1496
|
#
|
|
1171
1497
|
# @!attribute [rw] provider_arn
|
|
1172
|
-
# The
|
|
1173
|
-
# Amazon Bedrock AgentCore Identity.
|
|
1498
|
+
# The Amazon Resource Name (ARN) of the OAuth 2.0 credential provider
|
|
1499
|
+
# resource in Amazon Bedrock AgentCore Identity.
|
|
1174
1500
|
# @return [String]
|
|
1175
1501
|
#
|
|
1176
1502
|
# @!attribute [rw] grant_type
|
|
@@ -1200,11 +1526,12 @@ module Aws::AgentRegistryControl
|
|
|
1200
1526
|
# identifying and lifecycle fields but omits descriptor content.
|
|
1201
1527
|
#
|
|
1202
1528
|
# @!attribute [rw] registry_arn
|
|
1203
|
-
# The
|
|
1529
|
+
# The Amazon Resource Name (ARN) of the parent registry that owns the
|
|
1530
|
+
# record.
|
|
1204
1531
|
# @return [String]
|
|
1205
1532
|
#
|
|
1206
1533
|
# @!attribute [rw] record_arn
|
|
1207
|
-
# The
|
|
1534
|
+
# The Amazon Resource Name (ARN) of the registry record.
|
|
1208
1535
|
# @return [String]
|
|
1209
1536
|
#
|
|
1210
1537
|
# @!attribute [rw] record_id
|
|
@@ -1244,6 +1571,24 @@ module Aws::AgentRegistryControl
|
|
|
1244
1571
|
# The timestamp when the registry record was last updated.
|
|
1245
1572
|
# @return [Time]
|
|
1246
1573
|
#
|
|
1574
|
+
# @!attribute [rw] created_by_auto_detection
|
|
1575
|
+
# Specifies whether the registry record was created by auto-detection.
|
|
1576
|
+
# `true` indicates the record was automatically created by the service
|
|
1577
|
+
# based on the registry's auto-detection configuration; `false`
|
|
1578
|
+
# indicates the record was created through a control-plane API call.
|
|
1579
|
+
# @return [Boolean]
|
|
1580
|
+
#
|
|
1581
|
+
# @!attribute [rw] created_by
|
|
1582
|
+
# The ID of the Amazon Web Services account that created the registry
|
|
1583
|
+
# record.
|
|
1584
|
+
# @return [String]
|
|
1585
|
+
#
|
|
1586
|
+
# @!attribute [rw] provenance_summary_list
|
|
1587
|
+
# List of condensed provenance entries surfaced on
|
|
1588
|
+
# RegistryRecordSummary. Mirrors ProvenanceList's cardinality (one
|
|
1589
|
+
# entry today); modeled as a list for forward-compatibility.
|
|
1590
|
+
# @return [Array<Types::ProvenanceSummary>]
|
|
1591
|
+
#
|
|
1247
1592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/RegistryRecordSummary AWS API Documentation
|
|
1248
1593
|
#
|
|
1249
1594
|
class RegistryRecordSummary < Struct.new(
|
|
@@ -1257,7 +1602,10 @@ module Aws::AgentRegistryControl
|
|
|
1257
1602
|
:record_version,
|
|
1258
1603
|
:status,
|
|
1259
1604
|
:created_at,
|
|
1260
|
-
:updated_at
|
|
1605
|
+
:updated_at,
|
|
1606
|
+
:created_by_auto_detection,
|
|
1607
|
+
:created_by,
|
|
1608
|
+
:provenance_summary_list)
|
|
1261
1609
|
SENSITIVE = [:description]
|
|
1262
1610
|
include Aws::Structure
|
|
1263
1611
|
end
|
|
@@ -1293,6 +1641,12 @@ module Aws::AgentRegistryControl
|
|
|
1293
1641
|
# status indicates a failure state.
|
|
1294
1642
|
# @return [String]
|
|
1295
1643
|
#
|
|
1644
|
+
# @!attribute [rw] auto_detection
|
|
1645
|
+
# The registry's auto-detection properties, including the requested
|
|
1646
|
+
# configuration and the current detection status. Present only when
|
|
1647
|
+
# auto-detection was configured for the registry.
|
|
1648
|
+
# @return [Types::AutoDetection]
|
|
1649
|
+
#
|
|
1296
1650
|
# @!attribute [rw] created_at
|
|
1297
1651
|
# The timestamp when the registry was created
|
|
1298
1652
|
# @return [Time]
|
|
@@ -1311,6 +1665,7 @@ module Aws::AgentRegistryControl
|
|
|
1311
1665
|
:discovery_configuration,
|
|
1312
1666
|
:status,
|
|
1313
1667
|
:status_reason,
|
|
1668
|
+
:auto_detection,
|
|
1314
1669
|
:created_at,
|
|
1315
1670
|
:updated_at)
|
|
1316
1671
|
SENSITIVE = [:description]
|
|
@@ -1368,6 +1723,39 @@ module Aws::AgentRegistryControl
|
|
|
1368
1723
|
include Aws::Structure
|
|
1369
1724
|
end
|
|
1370
1725
|
|
|
1726
|
+
# The details about the upstream source from which a registry record was
|
|
1727
|
+
# detected. Exactly one member is populated, corresponding to the source
|
|
1728
|
+
# type.
|
|
1729
|
+
#
|
|
1730
|
+
# @note SourceDetails is a union - when making an API calls you must set exactly one of the members.
|
|
1731
|
+
#
|
|
1732
|
+
# @note SourceDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SourceDetails corresponding to the set member.
|
|
1733
|
+
#
|
|
1734
|
+
# @!attribute [rw] agentcore_runtime
|
|
1735
|
+
# Source details for a record auto-detected from an AgentCore Runtime
|
|
1736
|
+
# resource.
|
|
1737
|
+
# @return [Types::AgentCoreRuntimeSourceDetails]
|
|
1738
|
+
#
|
|
1739
|
+
# @!attribute [rw] agentcore_gateway
|
|
1740
|
+
# Source details for a record auto-detected from an AgentCore Gateway
|
|
1741
|
+
# resource.
|
|
1742
|
+
# @return [Types::AgentCoreGatewaySourceDetails]
|
|
1743
|
+
#
|
|
1744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/SourceDetails AWS API Documentation
|
|
1745
|
+
#
|
|
1746
|
+
class SourceDetails < Struct.new(
|
|
1747
|
+
:agentcore_runtime,
|
|
1748
|
+
:agentcore_gateway,
|
|
1749
|
+
:unknown)
|
|
1750
|
+
SENSITIVE = []
|
|
1751
|
+
include Aws::Structure
|
|
1752
|
+
include Aws::Structure::Union
|
|
1753
|
+
|
|
1754
|
+
class AgentcoreRuntime < SourceDetails; end
|
|
1755
|
+
class AgentcoreGateway < SourceDetails; end
|
|
1756
|
+
class Unknown < SourceDetails; end
|
|
1757
|
+
end
|
|
1758
|
+
|
|
1371
1759
|
# @!attribute [rw] registry_id
|
|
1372
1760
|
# The identifier of the registry containing the record (ARN or ID)
|
|
1373
1761
|
# @return [String]
|
|
@@ -1421,11 +1809,13 @@ module Aws::AgentRegistryControl
|
|
|
1421
1809
|
end
|
|
1422
1810
|
|
|
1423
1811
|
# @!attribute [rw] resource_arn
|
|
1424
|
-
# ARN of
|
|
1812
|
+
# The Amazon Resource Name (ARN) of the resource to tag. Supported
|
|
1813
|
+
# resources include registries and registry records.
|
|
1425
1814
|
# @return [String]
|
|
1426
1815
|
#
|
|
1427
1816
|
# @!attribute [rw] tags
|
|
1428
|
-
#
|
|
1817
|
+
# The tags to apply to the resource, as a map of tag keys to tag
|
|
1818
|
+
# values. Tag keys must be unique within the request.
|
|
1429
1819
|
# @return [Hash<String,String>]
|
|
1430
1820
|
#
|
|
1431
1821
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/TagResourceRequest AWS API Documentation
|
|
@@ -1456,11 +1846,13 @@ module Aws::AgentRegistryControl
|
|
|
1456
1846
|
end
|
|
1457
1847
|
|
|
1458
1848
|
# @!attribute [rw] resource_arn
|
|
1459
|
-
# ARN of
|
|
1849
|
+
# The Amazon Resource Name (ARN) of the resource to remove tags from.
|
|
1850
|
+
# Supported resources include registries and registry records.
|
|
1460
1851
|
# @return [String]
|
|
1461
1852
|
#
|
|
1462
1853
|
# @!attribute [rw] tag_keys
|
|
1463
|
-
#
|
|
1854
|
+
# The keys of the tags to remove from the resource. Tags with keys not
|
|
1855
|
+
# included in this list remain on the resource.
|
|
1464
1856
|
# @return [Array<String>]
|
|
1465
1857
|
#
|
|
1466
1858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UntagResourceRequest AWS API Documentation
|
|
@@ -1519,6 +1911,13 @@ module Aws::AgentRegistryControl
|
|
|
1519
1911
|
# content from its source
|
|
1520
1912
|
# @return [Boolean]
|
|
1521
1913
|
#
|
|
1914
|
+
# @!attribute [rw] provenance
|
|
1915
|
+
# List of provenance entries on a registry record. Capped at one entry
|
|
1916
|
+
# today: a record carries a single DETECTED\_FROM lineage. Modeled as
|
|
1917
|
+
# a list so additional relations can be unlocked post-GA by raising
|
|
1918
|
+
# this bound without a breaking shape change.
|
|
1919
|
+
# @return [Array<Types::Provenance>]
|
|
1920
|
+
#
|
|
1522
1921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdateRegistryRecordRequest AWS API Documentation
|
|
1523
1922
|
#
|
|
1524
1923
|
class UpdateRegistryRecordRequest < Struct.new(
|
|
@@ -1530,7 +1929,8 @@ module Aws::AgentRegistryControl
|
|
|
1530
1929
|
:record_type,
|
|
1531
1930
|
:descriptors,
|
|
1532
1931
|
:record_version,
|
|
1533
|
-
:trigger_synchronization
|
|
1932
|
+
:trigger_synchronization,
|
|
1933
|
+
:provenance)
|
|
1534
1934
|
SENSITIVE = []
|
|
1535
1935
|
include Aws::Structure
|
|
1536
1936
|
end
|
|
@@ -1538,11 +1938,12 @@ module Aws::AgentRegistryControl
|
|
|
1538
1938
|
# Response structure for updating a registry record
|
|
1539
1939
|
#
|
|
1540
1940
|
# @!attribute [rw] registry_arn
|
|
1541
|
-
# The
|
|
1941
|
+
# The Amazon Resource Name (ARN) of the parent registry that owns the
|
|
1942
|
+
# record.
|
|
1542
1943
|
# @return [String]
|
|
1543
1944
|
#
|
|
1544
1945
|
# @!attribute [rw] record_arn
|
|
1545
|
-
# The
|
|
1946
|
+
# The Amazon Resource Name (ARN) of the registry record.
|
|
1546
1947
|
# @return [String]
|
|
1547
1948
|
#
|
|
1548
1949
|
# @!attribute [rw] record_id
|
|
@@ -1592,6 +1993,25 @@ module Aws::AgentRegistryControl
|
|
|
1592
1993
|
# status indicates a failure state.
|
|
1593
1994
|
# @return [String]
|
|
1594
1995
|
#
|
|
1996
|
+
# @!attribute [rw] provenance
|
|
1997
|
+
# List of provenance entries on a registry record. Capped at one entry
|
|
1998
|
+
# today: a record carries a single DETECTED\_FROM lineage. Modeled as
|
|
1999
|
+
# a list so additional relations can be unlocked post-GA by raising
|
|
2000
|
+
# this bound without a breaking shape change.
|
|
2001
|
+
# @return [Array<Types::Provenance>]
|
|
2002
|
+
#
|
|
2003
|
+
# @!attribute [rw] created_by_auto_detection
|
|
2004
|
+
# Specifies whether the registry record was created by auto-detection.
|
|
2005
|
+
# `true` indicates the record was automatically created by the service
|
|
2006
|
+
# based on the registry's auto-detection configuration; `false`
|
|
2007
|
+
# indicates the record was created through a control-plane API call.
|
|
2008
|
+
# @return [Boolean]
|
|
2009
|
+
#
|
|
2010
|
+
# @!attribute [rw] created_by
|
|
2011
|
+
# The ID of the Amazon Web Services account that created the registry
|
|
2012
|
+
# record.
|
|
2013
|
+
# @return [String]
|
|
2014
|
+
#
|
|
1595
2015
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdateRegistryRecordResponse AWS API Documentation
|
|
1596
2016
|
#
|
|
1597
2017
|
class UpdateRegistryRecordResponse < Struct.new(
|
|
@@ -1607,7 +2027,10 @@ module Aws::AgentRegistryControl
|
|
|
1607
2027
|
:status,
|
|
1608
2028
|
:created_at,
|
|
1609
2029
|
:updated_at,
|
|
1610
|
-
:status_reason
|
|
2030
|
+
:status_reason,
|
|
2031
|
+
:provenance,
|
|
2032
|
+
:created_by_auto_detection,
|
|
2033
|
+
:created_by)
|
|
1611
2034
|
SENSITIVE = [:description]
|
|
1612
2035
|
include Aws::Structure
|
|
1613
2036
|
end
|
|
@@ -1706,6 +2129,13 @@ module Aws::AgentRegistryControl
|
|
|
1706
2129
|
# already in PENDING\_APPROVAL are unaffected.
|
|
1707
2130
|
# @return [Types::UpdatedApprovalConfiguration]
|
|
1708
2131
|
#
|
|
2132
|
+
# @!attribute [rw] auto_detection_configuration
|
|
2133
|
+
# The updated auto-detection configuration for the registry, with
|
|
2134
|
+
# PATCH semantics. Omit this field to leave the current configuration
|
|
2135
|
+
# unchanged. Supply an empty wrapper to unset it. Supply
|
|
2136
|
+
# `optionalValue` to replace it.
|
|
2137
|
+
# @return [Types::UpdatedAutoDetectionConfiguration]
|
|
2138
|
+
#
|
|
1709
2139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdateRegistryRequest AWS API Documentation
|
|
1710
2140
|
#
|
|
1711
2141
|
class UpdateRegistryRequest < Struct.new(
|
|
@@ -1713,7 +2143,8 @@ module Aws::AgentRegistryControl
|
|
|
1713
2143
|
:name,
|
|
1714
2144
|
:description,
|
|
1715
2145
|
:discovery_configuration,
|
|
1716
|
-
:approval_configuration
|
|
2146
|
+
:approval_configuration,
|
|
2147
|
+
:auto_detection_configuration)
|
|
1717
2148
|
SENSITIVE = []
|
|
1718
2149
|
include Aws::Structure
|
|
1719
2150
|
end
|
|
@@ -1740,6 +2171,12 @@ module Aws::AgentRegistryControl
|
|
|
1740
2171
|
# Discovery configuration for the registry
|
|
1741
2172
|
# @return [Types::DiscoveryConfiguration]
|
|
1742
2173
|
#
|
|
2174
|
+
# @!attribute [rw] encryption_configuration
|
|
2175
|
+
# The server-side encryption configuration for the registry. Appears
|
|
2176
|
+
# only when a customer-managed Amazon Web Services KMS key encrypts
|
|
2177
|
+
# the registry.
|
|
2178
|
+
# @return [Types::EncryptionConfiguration]
|
|
2179
|
+
#
|
|
1743
2180
|
# @!attribute [rw] approval_configuration
|
|
1744
2181
|
# Approval configuration for registry records
|
|
1745
2182
|
# @return [Types::ApprovalConfiguration]
|
|
@@ -1753,6 +2190,12 @@ module Aws::AgentRegistryControl
|
|
|
1753
2190
|
# status indicates a failure state.
|
|
1754
2191
|
# @return [String]
|
|
1755
2192
|
#
|
|
2193
|
+
# @!attribute [rw] auto_detection
|
|
2194
|
+
# The registry's auto-detection properties, including the requested
|
|
2195
|
+
# configuration and the current detection status. Present only when
|
|
2196
|
+
# auto-detection was configured for the registry.
|
|
2197
|
+
# @return [Types::AutoDetection]
|
|
2198
|
+
#
|
|
1756
2199
|
# @!attribute [rw] created_at
|
|
1757
2200
|
# The timestamp when the registry was created
|
|
1758
2201
|
# @return [Time]
|
|
@@ -1769,9 +2212,11 @@ module Aws::AgentRegistryControl
|
|
|
1769
2212
|
:registry_id,
|
|
1770
2213
|
:registry_arn,
|
|
1771
2214
|
:discovery_configuration,
|
|
2215
|
+
:encryption_configuration,
|
|
1772
2216
|
:approval_configuration,
|
|
1773
2217
|
:status,
|
|
1774
2218
|
:status_reason,
|
|
2219
|
+
:auto_detection,
|
|
1775
2220
|
:created_at,
|
|
1776
2221
|
:updated_at)
|
|
1777
2222
|
SENSITIVE = [:description]
|
|
@@ -1820,6 +2265,37 @@ module Aws::AgentRegistryControl
|
|
|
1820
2265
|
include Aws::Structure
|
|
1821
2266
|
end
|
|
1822
2267
|
|
|
2268
|
+
# The AG-UI descriptor patch wrapper. Omit to leave the descriptor
|
|
2269
|
+
# unchanged; supply an empty object to remove it; supply optionalValue
|
|
2270
|
+
# to patch its fields.
|
|
2271
|
+
#
|
|
2272
|
+
# @!attribute [rw] optional_value
|
|
2273
|
+
# The value to set for this field. Omit the wrapper to leave the field
|
|
2274
|
+
# unchanged.
|
|
2275
|
+
# @return [Types::UpdatedAgUiDescriptorFields]
|
|
2276
|
+
#
|
|
2277
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdatedAgUiDescriptor AWS API Documentation
|
|
2278
|
+
#
|
|
2279
|
+
class UpdatedAgUiDescriptor < Struct.new(
|
|
2280
|
+
:optional_value)
|
|
2281
|
+
SENSITIVE = []
|
|
2282
|
+
include Aws::Structure
|
|
2283
|
+
end
|
|
2284
|
+
|
|
2285
|
+
# The set of AG-UI descriptor fields that can be individually updated.
|
|
2286
|
+
#
|
|
2287
|
+
# @!attribute [rw] source
|
|
2288
|
+
# The patch for the descriptor's source field.
|
|
2289
|
+
# @return [Types::UpdatedDescriptorSource]
|
|
2290
|
+
#
|
|
2291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdatedAgUiDescriptorFields AWS API Documentation
|
|
2292
|
+
#
|
|
2293
|
+
class UpdatedAgUiDescriptorFields < Struct.new(
|
|
2294
|
+
:source)
|
|
2295
|
+
SENSITIVE = []
|
|
2296
|
+
include Aws::Structure
|
|
2297
|
+
end
|
|
2298
|
+
|
|
1823
2299
|
# The agent skills additional-data patch wrapper. Omit to leave the
|
|
1824
2300
|
# additional data unchanged; supply an empty object to remove it; supply
|
|
1825
2301
|
# optionalValue to patch its fields.
|
|
@@ -1970,6 +2446,25 @@ module Aws::AgentRegistryControl
|
|
|
1970
2446
|
include Aws::Structure
|
|
1971
2447
|
end
|
|
1972
2448
|
|
|
2449
|
+
# A wrapper for updating the auto-detection configuration of a registry
|
|
2450
|
+
# with PATCH semantics. Include this wrapper to replace the
|
|
2451
|
+
# auto-detection configuration with the specified value. Omit it to
|
|
2452
|
+
# leave the auto-detection configuration unchanged. To clear the
|
|
2453
|
+
# configuration, include the wrapper with a null `optionalValue`.
|
|
2454
|
+
#
|
|
2455
|
+
# @!attribute [rw] optional_value
|
|
2456
|
+
# The value to set for this field. Omit the wrapper to leave the field
|
|
2457
|
+
# unchanged.
|
|
2458
|
+
# @return [Types::AutoDetectionConfiguration]
|
|
2459
|
+
#
|
|
2460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdatedAutoDetectionConfiguration AWS API Documentation
|
|
2461
|
+
#
|
|
2462
|
+
class UpdatedAutoDetectionConfiguration < Struct.new(
|
|
2463
|
+
:optional_value)
|
|
2464
|
+
SENSITIVE = []
|
|
2465
|
+
include Aws::Structure
|
|
2466
|
+
end
|
|
2467
|
+
|
|
1973
2468
|
# The custom descriptor patch wrapper. Omit to leave the descriptor
|
|
1974
2469
|
# unchanged; supply an empty object to remove it; supply optionalValue
|
|
1975
2470
|
# to patch its fields.
|
|
@@ -2022,7 +2517,8 @@ module Aws::AgentRegistryControl
|
|
|
2022
2517
|
# semantics
|
|
2023
2518
|
#
|
|
2024
2519
|
# @!attribute [rw] optional_value
|
|
2025
|
-
#
|
|
2520
|
+
# The value to set for this field. Omit the wrapper to leave the field
|
|
2521
|
+
# unchanged.
|
|
2026
2522
|
# @return [String]
|
|
2027
2523
|
#
|
|
2028
2524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdatedDescription AWS API Documentation
|
|
@@ -2102,13 +2598,23 @@ module Aws::AgentRegistryControl
|
|
|
2102
2598
|
# The patch for the custom descriptor.
|
|
2103
2599
|
# @return [Types::UpdatedCustomDescriptor]
|
|
2104
2600
|
#
|
|
2601
|
+
# @!attribute [rw] http
|
|
2602
|
+
# The patch for the HTTP descriptor.
|
|
2603
|
+
# @return [Types::UpdatedHttpDescriptor]
|
|
2604
|
+
#
|
|
2605
|
+
# @!attribute [rw] agui
|
|
2606
|
+
# The patch for the AG-UI descriptor.
|
|
2607
|
+
# @return [Types::UpdatedAgUiDescriptor]
|
|
2608
|
+
#
|
|
2105
2609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdatedDescriptorsFields AWS API Documentation
|
|
2106
2610
|
#
|
|
2107
2611
|
class UpdatedDescriptorsFields < Struct.new(
|
|
2108
2612
|
:mcp_server,
|
|
2109
2613
|
:a2a_agent_card,
|
|
2110
2614
|
:agent_skills_definition,
|
|
2111
|
-
:custom
|
|
2615
|
+
:custom,
|
|
2616
|
+
:http,
|
|
2617
|
+
:agui)
|
|
2112
2618
|
SENSITIVE = []
|
|
2113
2619
|
include Aws::Structure
|
|
2114
2620
|
end
|
|
@@ -2145,6 +2651,37 @@ module Aws::AgentRegistryControl
|
|
|
2145
2651
|
include Aws::Structure
|
|
2146
2652
|
end
|
|
2147
2653
|
|
|
2654
|
+
# The HTTP descriptor patch wrapper. Omit to leave the descriptor
|
|
2655
|
+
# unchanged; supply an empty object to remove it; supply optionalValue
|
|
2656
|
+
# to patch its fields.
|
|
2657
|
+
#
|
|
2658
|
+
# @!attribute [rw] optional_value
|
|
2659
|
+
# The value to set for this field. Omit the wrapper to leave the field
|
|
2660
|
+
# unchanged.
|
|
2661
|
+
# @return [Types::UpdatedHttpDescriptorFields]
|
|
2662
|
+
#
|
|
2663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdatedHttpDescriptor AWS API Documentation
|
|
2664
|
+
#
|
|
2665
|
+
class UpdatedHttpDescriptor < Struct.new(
|
|
2666
|
+
:optional_value)
|
|
2667
|
+
SENSITIVE = []
|
|
2668
|
+
include Aws::Structure
|
|
2669
|
+
end
|
|
2670
|
+
|
|
2671
|
+
# The set of HTTP descriptor fields that can be individually updated.
|
|
2672
|
+
#
|
|
2673
|
+
# @!attribute [rw] source
|
|
2674
|
+
# The patch for the descriptor's source field.
|
|
2675
|
+
# @return [Types::UpdatedDescriptorSource]
|
|
2676
|
+
#
|
|
2677
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdatedHttpDescriptorFields AWS API Documentation
|
|
2678
|
+
#
|
|
2679
|
+
class UpdatedHttpDescriptorFields < Struct.new(
|
|
2680
|
+
:source)
|
|
2681
|
+
SENSITIVE = []
|
|
2682
|
+
include Aws::Structure
|
|
2683
|
+
end
|
|
2684
|
+
|
|
2148
2685
|
# The MCP server additional-data patch wrapper. Omit to leave the
|
|
2149
2686
|
# additional data unchanged; supply an empty object to remove it; supply
|
|
2150
2687
|
# optionalValue to patch its fields.
|
|
@@ -2303,6 +2840,21 @@ module Aws::AgentRegistryControl
|
|
|
2303
2840
|
include Aws::Structure
|
|
2304
2841
|
end
|
|
2305
2842
|
|
|
2843
|
+
# Workload identity details associated with a source resource.
|
|
2844
|
+
#
|
|
2845
|
+
# @!attribute [rw] workload_identity_arn
|
|
2846
|
+
# The Amazon Resource Name (ARN) of the workload identity associated
|
|
2847
|
+
# with the source resource.
|
|
2848
|
+
# @return [String]
|
|
2849
|
+
#
|
|
2850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/WorkloadIdentityDetails AWS API Documentation
|
|
2851
|
+
#
|
|
2852
|
+
class WorkloadIdentityDetails < Struct.new(
|
|
2853
|
+
:workload_identity_arn)
|
|
2854
|
+
SENSITIVE = []
|
|
2855
|
+
include Aws::Structure
|
|
2856
|
+
end
|
|
2857
|
+
|
|
2306
2858
|
end
|
|
2307
2859
|
end
|
|
2308
2860
|
|