aws-sdk-agentregistrycontrol 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-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 +1 -1
|
@@ -485,11 +485,21 @@ module Aws::AgentRegistryControl
|
|
|
485
485
|
# @option params [String] :description
|
|
486
486
|
# The description of the registry
|
|
487
487
|
#
|
|
488
|
+
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
|
489
|
+
# The optional server-side encryption configuration for the registry.
|
|
490
|
+
# When you provide this field, the specified customer-managed Amazon Web
|
|
491
|
+
# Services KMS key encrypts the registry's content. Omit this field to
|
|
492
|
+
# use an Amazon Web Services-owned encryption key. You cannot change the
|
|
493
|
+
# encryption configuration after registry creation.
|
|
494
|
+
#
|
|
488
495
|
# @option params [Types::DiscoveryConfiguration] :discovery_configuration
|
|
489
496
|
# Discovery configuration for the registry
|
|
490
497
|
#
|
|
491
498
|
# @option params [String] :client_token
|
|
492
|
-
#
|
|
499
|
+
# A unique, case-sensitive identifier to ensure that the operation
|
|
500
|
+
# completes no more than one time. If this token matches a previous
|
|
501
|
+
# request, the service ignores the request, but does not return an
|
|
502
|
+
# error.
|
|
493
503
|
#
|
|
494
504
|
# **A suitable default value is auto-generated.** You should normally
|
|
495
505
|
# not need to pass this option.**
|
|
@@ -500,6 +510,13 @@ module Aws::AgentRegistryControl
|
|
|
500
510
|
# @option params [Types::ApprovalConfiguration] :approval_configuration
|
|
501
511
|
# Approval configuration for registry records
|
|
502
512
|
#
|
|
513
|
+
# @option params [Types::AutoDetectionConfiguration] :auto_detection_configuration
|
|
514
|
+
# The optional auto-detection configuration for the registry. When
|
|
515
|
+
# provided, the registry is automatically populated with resources
|
|
516
|
+
# discovered according to the configuration. Omit this field for
|
|
517
|
+
# registries whose records are managed exclusively through the Agent
|
|
518
|
+
# Registry Control API.
|
|
519
|
+
#
|
|
503
520
|
# @return [Types::CreateRegistryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
504
521
|
#
|
|
505
522
|
# * {Types::CreateRegistryResponse#registry_arn #registry_arn} => String
|
|
@@ -509,6 +526,9 @@ module Aws::AgentRegistryControl
|
|
|
509
526
|
# resp = client.create_registry({
|
|
510
527
|
# name: "RegistryName", # required
|
|
511
528
|
# description: "Description",
|
|
529
|
+
# encryption_configuration: {
|
|
530
|
+
# kms_key_arn: "KmsKeyArn", # required
|
|
531
|
+
# },
|
|
512
532
|
# discovery_configuration: {
|
|
513
533
|
# authorizer_configuration: {
|
|
514
534
|
# custom_jwt_authorizer: {
|
|
@@ -575,6 +595,10 @@ module Aws::AgentRegistryControl
|
|
|
575
595
|
# approval_configuration: {
|
|
576
596
|
# auto_approval_rules: ["APPROVE_ALL"], # accepts APPROVE_ALL
|
|
577
597
|
# },
|
|
598
|
+
# auto_detection_configuration: {
|
|
599
|
+
# scope: "ORGANIZATION", # required, accepts ORGANIZATION
|
|
600
|
+
# enabled: false, # required
|
|
601
|
+
# },
|
|
578
602
|
# })
|
|
579
603
|
#
|
|
580
604
|
# @example Response structure
|
|
@@ -624,6 +648,12 @@ module Aws::AgentRegistryControl
|
|
|
624
648
|
# **A suitable default value is auto-generated.** You should normally
|
|
625
649
|
# not need to pass this option.**
|
|
626
650
|
#
|
|
651
|
+
# @option params [Array<Types::Provenance>] :provenance
|
|
652
|
+
# List of provenance entries on a registry record. Capped at one entry
|
|
653
|
+
# today: a record carries a single DETECTED\_FROM lineage. Modeled as a
|
|
654
|
+
# list so additional relations can be unlocked post-GA by raising this
|
|
655
|
+
# bound without a breaking shape change.
|
|
656
|
+
#
|
|
627
657
|
# @option params [Hash<String,String>] :tags
|
|
628
658
|
# Tags to associate with the registry record
|
|
629
659
|
#
|
|
@@ -639,7 +669,7 @@ module Aws::AgentRegistryControl
|
|
|
639
669
|
# name: "RegistryRecordName", # required
|
|
640
670
|
# display_name: "RegistryRecordDisplayName",
|
|
641
671
|
# description: "Description",
|
|
642
|
-
# record_type: "MCP", # required, accepts MCP, AGENT, CUSTOM, SKILL
|
|
672
|
+
# record_type: "MCP", # required, accepts MCP, AGENT, CUSTOM, SKILL, GATEWAY
|
|
643
673
|
# descriptors: { # required
|
|
644
674
|
# mcp_server: {
|
|
645
675
|
# data: "DescriptorData",
|
|
@@ -743,9 +773,199 @@ module Aws::AgentRegistryControl
|
|
|
743
773
|
# custom: {
|
|
744
774
|
# data: "DescriptorData",
|
|
745
775
|
# },
|
|
776
|
+
# http: {
|
|
777
|
+
# source: {
|
|
778
|
+
# from_url: {
|
|
779
|
+
# url: "DescriptorSourceUrl", # required
|
|
780
|
+
# credential_provider_configurations: [
|
|
781
|
+
# {
|
|
782
|
+
# credential_provider_type: "OAUTH", # required, accepts OAUTH, IAM
|
|
783
|
+
# credential_provider: { # required
|
|
784
|
+
# oauth_credential_provider: {
|
|
785
|
+
# provider_arn: "CredentialProviderArn", # required
|
|
786
|
+
# grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS
|
|
787
|
+
# scopes: ["String"],
|
|
788
|
+
# custom_parameters: {
|
|
789
|
+
# "String" => "String",
|
|
790
|
+
# },
|
|
791
|
+
# },
|
|
792
|
+
# iam_credential_provider: {
|
|
793
|
+
# role_arn: "IamRoleArn",
|
|
794
|
+
# service: "IamSigningServiceName",
|
|
795
|
+
# region: "IamSigningRegion",
|
|
796
|
+
# },
|
|
797
|
+
# },
|
|
798
|
+
# },
|
|
799
|
+
# ],
|
|
800
|
+
# },
|
|
801
|
+
# },
|
|
802
|
+
# },
|
|
803
|
+
# agui: {
|
|
804
|
+
# source: {
|
|
805
|
+
# from_url: {
|
|
806
|
+
# url: "DescriptorSourceUrl", # required
|
|
807
|
+
# credential_provider_configurations: [
|
|
808
|
+
# {
|
|
809
|
+
# credential_provider_type: "OAUTH", # required, accepts OAUTH, IAM
|
|
810
|
+
# credential_provider: { # required
|
|
811
|
+
# oauth_credential_provider: {
|
|
812
|
+
# provider_arn: "CredentialProviderArn", # required
|
|
813
|
+
# grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS
|
|
814
|
+
# scopes: ["String"],
|
|
815
|
+
# custom_parameters: {
|
|
816
|
+
# "String" => "String",
|
|
817
|
+
# },
|
|
818
|
+
# },
|
|
819
|
+
# iam_credential_provider: {
|
|
820
|
+
# role_arn: "IamRoleArn",
|
|
821
|
+
# service: "IamSigningServiceName",
|
|
822
|
+
# region: "IamSigningRegion",
|
|
823
|
+
# },
|
|
824
|
+
# },
|
|
825
|
+
# },
|
|
826
|
+
# ],
|
|
827
|
+
# },
|
|
828
|
+
# },
|
|
829
|
+
# },
|
|
746
830
|
# },
|
|
747
831
|
# record_version: "RegistryRecordVersion",
|
|
748
832
|
# client_token: "ClientToken",
|
|
833
|
+
# provenance: [
|
|
834
|
+
# {
|
|
835
|
+
# relation: "DETECTED_FROM", # required, accepts DETECTED_FROM
|
|
836
|
+
# source_id: "SourceId", # required
|
|
837
|
+
# source_type: "AWS::BedrockAgentCore::Runtime", # accepts AWS::BedrockAgentCore::Runtime, AWS::BedrockAgentCore::Gateway
|
|
838
|
+
# source_details: {
|
|
839
|
+
# agentcore_runtime: {
|
|
840
|
+
# protocol_configuration: {
|
|
841
|
+
# server_protocol: "HTTP", # accepts HTTP, A2A, MCP, AGUI
|
|
842
|
+
# },
|
|
843
|
+
# authorizer_configuration: {
|
|
844
|
+
# custom_jwt_authorizer: {
|
|
845
|
+
# discovery_url: "DiscoveryUrl", # required
|
|
846
|
+
# allowed_audience: ["AllowedAudience"],
|
|
847
|
+
# allowed_clients: ["AllowedClient"],
|
|
848
|
+
# allowed_scopes: ["AllowedScopeType"],
|
|
849
|
+
# custom_claims: [
|
|
850
|
+
# {
|
|
851
|
+
# inbound_token_claim_name: "InboundTokenClaimNameType", # required
|
|
852
|
+
# inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
|
|
853
|
+
# authorizing_claim_match_value: { # required
|
|
854
|
+
# claim_match_value: { # required
|
|
855
|
+
# match_value_string: "MatchValueString",
|
|
856
|
+
# match_value_string_list: ["MatchValueString"],
|
|
857
|
+
# },
|
|
858
|
+
# claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
|
|
859
|
+
# },
|
|
860
|
+
# },
|
|
861
|
+
# ],
|
|
862
|
+
# private_endpoint: {
|
|
863
|
+
# self_managed_lattice_resource: {
|
|
864
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
865
|
+
# },
|
|
866
|
+
# managed_vpc_resource: {
|
|
867
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
868
|
+
# subnet_ids: ["SubnetId"], # required
|
|
869
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
870
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
871
|
+
# tags: {
|
|
872
|
+
# "TagKey" => "TagValue",
|
|
873
|
+
# },
|
|
874
|
+
# routing_domain: "RoutingDomain",
|
|
875
|
+
# },
|
|
876
|
+
# },
|
|
877
|
+
# private_endpoint_overrides: [
|
|
878
|
+
# {
|
|
879
|
+
# domain: "PrivateEndpointOverrideDomain", # required
|
|
880
|
+
# private_endpoint: { # required
|
|
881
|
+
# self_managed_lattice_resource: {
|
|
882
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
883
|
+
# },
|
|
884
|
+
# managed_vpc_resource: {
|
|
885
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
886
|
+
# subnet_ids: ["SubnetId"], # required
|
|
887
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
888
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
889
|
+
# tags: {
|
|
890
|
+
# "TagKey" => "TagValue",
|
|
891
|
+
# },
|
|
892
|
+
# routing_domain: "RoutingDomain",
|
|
893
|
+
# },
|
|
894
|
+
# },
|
|
895
|
+
# },
|
|
896
|
+
# ],
|
|
897
|
+
# },
|
|
898
|
+
# },
|
|
899
|
+
# workload_identity_details: {
|
|
900
|
+
# workload_identity_arn: "WorkloadIdentityDetailsWorkloadIdentityArnString", # required
|
|
901
|
+
# },
|
|
902
|
+
# },
|
|
903
|
+
# agentcore_gateway: {
|
|
904
|
+
# protocol_type: "MCP", # accepts MCP
|
|
905
|
+
# authorizer_type: "String",
|
|
906
|
+
# authorizer_configuration: {
|
|
907
|
+
# custom_jwt_authorizer: {
|
|
908
|
+
# discovery_url: "DiscoveryUrl", # required
|
|
909
|
+
# allowed_audience: ["AllowedAudience"],
|
|
910
|
+
# allowed_clients: ["AllowedClient"],
|
|
911
|
+
# allowed_scopes: ["AllowedScopeType"],
|
|
912
|
+
# custom_claims: [
|
|
913
|
+
# {
|
|
914
|
+
# inbound_token_claim_name: "InboundTokenClaimNameType", # required
|
|
915
|
+
# inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
|
|
916
|
+
# authorizing_claim_match_value: { # required
|
|
917
|
+
# claim_match_value: { # required
|
|
918
|
+
# match_value_string: "MatchValueString",
|
|
919
|
+
# match_value_string_list: ["MatchValueString"],
|
|
920
|
+
# },
|
|
921
|
+
# claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
|
|
922
|
+
# },
|
|
923
|
+
# },
|
|
924
|
+
# ],
|
|
925
|
+
# private_endpoint: {
|
|
926
|
+
# self_managed_lattice_resource: {
|
|
927
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
928
|
+
# },
|
|
929
|
+
# managed_vpc_resource: {
|
|
930
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
931
|
+
# subnet_ids: ["SubnetId"], # required
|
|
932
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
933
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
934
|
+
# tags: {
|
|
935
|
+
# "TagKey" => "TagValue",
|
|
936
|
+
# },
|
|
937
|
+
# routing_domain: "RoutingDomain",
|
|
938
|
+
# },
|
|
939
|
+
# },
|
|
940
|
+
# private_endpoint_overrides: [
|
|
941
|
+
# {
|
|
942
|
+
# domain: "PrivateEndpointOverrideDomain", # required
|
|
943
|
+
# private_endpoint: { # required
|
|
944
|
+
# self_managed_lattice_resource: {
|
|
945
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
946
|
+
# },
|
|
947
|
+
# managed_vpc_resource: {
|
|
948
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
949
|
+
# subnet_ids: ["SubnetId"], # required
|
|
950
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
951
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
952
|
+
# tags: {
|
|
953
|
+
# "TagKey" => "TagValue",
|
|
954
|
+
# },
|
|
955
|
+
# routing_domain: "RoutingDomain",
|
|
956
|
+
# },
|
|
957
|
+
# },
|
|
958
|
+
# },
|
|
959
|
+
# ],
|
|
960
|
+
# },
|
|
961
|
+
# },
|
|
962
|
+
# workload_identity_details: {
|
|
963
|
+
# workload_identity_arn: "WorkloadIdentityDetailsWorkloadIdentityArnString", # required
|
|
964
|
+
# },
|
|
965
|
+
# },
|
|
966
|
+
# },
|
|
967
|
+
# },
|
|
968
|
+
# ],
|
|
749
969
|
# tags: {
|
|
750
970
|
# "TagKey" => "TagValue",
|
|
751
971
|
# },
|
|
@@ -832,9 +1052,11 @@ module Aws::AgentRegistryControl
|
|
|
832
1052
|
# * {Types::GetRegistryResponse#registry_id #registry_id} => String
|
|
833
1053
|
# * {Types::GetRegistryResponse#registry_arn #registry_arn} => String
|
|
834
1054
|
# * {Types::GetRegistryResponse#discovery_configuration #discovery_configuration} => Types::DiscoveryConfiguration
|
|
1055
|
+
# * {Types::GetRegistryResponse#encryption_configuration #encryption_configuration} => Types::EncryptionConfiguration
|
|
835
1056
|
# * {Types::GetRegistryResponse#approval_configuration #approval_configuration} => Types::ApprovalConfiguration
|
|
836
1057
|
# * {Types::GetRegistryResponse#status #status} => String
|
|
837
1058
|
# * {Types::GetRegistryResponse#status_reason #status_reason} => String
|
|
1059
|
+
# * {Types::GetRegistryResponse#auto_detection #auto_detection} => Types::AutoDetection
|
|
838
1060
|
# * {Types::GetRegistryResponse#created_at #created_at} => Time
|
|
839
1061
|
# * {Types::GetRegistryResponse#updated_at #updated_at} => Time
|
|
840
1062
|
#
|
|
@@ -887,10 +1109,15 @@ module Aws::AgentRegistryControl
|
|
|
887
1109
|
# resp.discovery_configuration.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
888
1110
|
# resp.discovery_configuration.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
889
1111
|
# resp.discovery_configuration.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
|
1112
|
+
# resp.encryption_configuration.kms_key_arn #=> String
|
|
890
1113
|
# resp.approval_configuration.auto_approval_rules #=> Array
|
|
891
1114
|
# resp.approval_configuration.auto_approval_rules[0] #=> String, one of "APPROVE_ALL"
|
|
892
1115
|
# resp.status #=> String, one of "CREATING", "READY", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
893
1116
|
# resp.status_reason #=> String
|
|
1117
|
+
# resp.auto_detection.configuration.scope #=> String, one of "ORGANIZATION"
|
|
1118
|
+
# resp.auto_detection.configuration.enabled #=> Boolean
|
|
1119
|
+
# resp.auto_detection.status #=> String, one of "ACTIVE", "INACTIVE"
|
|
1120
|
+
# resp.auto_detection.status_reason #=> String
|
|
894
1121
|
# resp.created_at #=> Time
|
|
895
1122
|
# resp.updated_at #=> Time
|
|
896
1123
|
#
|
|
@@ -931,6 +1158,9 @@ module Aws::AgentRegistryControl
|
|
|
931
1158
|
# * {Types::GetRegistryRecordResponse#created_at #created_at} => Time
|
|
932
1159
|
# * {Types::GetRegistryRecordResponse#updated_at #updated_at} => Time
|
|
933
1160
|
# * {Types::GetRegistryRecordResponse#status_reason #status_reason} => String
|
|
1161
|
+
# * {Types::GetRegistryRecordResponse#provenance #provenance} => Array<Types::Provenance>
|
|
1162
|
+
# * {Types::GetRegistryRecordResponse#created_by_auto_detection #created_by_auto_detection} => Boolean
|
|
1163
|
+
# * {Types::GetRegistryRecordResponse#created_by #created_by} => String
|
|
934
1164
|
#
|
|
935
1165
|
# @example Request syntax with placeholder values
|
|
936
1166
|
#
|
|
@@ -947,7 +1177,7 @@ module Aws::AgentRegistryControl
|
|
|
947
1177
|
# resp.name #=> String
|
|
948
1178
|
# resp.display_name #=> String
|
|
949
1179
|
# resp.description #=> String
|
|
950
|
-
# resp.record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL"
|
|
1180
|
+
# resp.record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL", "GATEWAY"
|
|
951
1181
|
# resp.descriptors.mcp_server.data #=> String
|
|
952
1182
|
# resp.descriptors.mcp_server.data_schema_version #=> String
|
|
953
1183
|
# resp.descriptors.mcp_server.additional_data.tools.data #=> String
|
|
@@ -995,11 +1225,118 @@ module Aws::AgentRegistryControl
|
|
|
995
1225
|
# resp.descriptors.agent_skills_definition.additional_data.skill_md.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
996
1226
|
# resp.descriptors.agent_skills_definition.additional_data.skill_md.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
997
1227
|
# resp.descriptors.custom.data #=> String
|
|
1228
|
+
# resp.descriptors.http.source.from_url.url #=> String
|
|
1229
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations #=> Array
|
|
1230
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider_type #=> String, one of "OAUTH", "IAM"
|
|
1231
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
1232
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS"
|
|
1233
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
|
|
1234
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
|
|
1235
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
|
|
1236
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["String"] #=> String
|
|
1237
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.role_arn #=> String
|
|
1238
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
1239
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
1240
|
+
# resp.descriptors.agui.source.from_url.url #=> String
|
|
1241
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations #=> Array
|
|
1242
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider_type #=> String, one of "OAUTH", "IAM"
|
|
1243
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
1244
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS"
|
|
1245
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
|
|
1246
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
|
|
1247
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
|
|
1248
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["String"] #=> String
|
|
1249
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.role_arn #=> String
|
|
1250
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
1251
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
998
1252
|
# resp.record_version #=> String
|
|
999
1253
|
# resp.status #=> String, one of "DRAFT", "PENDING_APPROVAL", "APPROVED", "REJECTED", "DEPRECATED", "CREATING", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED"
|
|
1000
1254
|
# resp.created_at #=> Time
|
|
1001
1255
|
# resp.updated_at #=> Time
|
|
1002
1256
|
# resp.status_reason #=> String
|
|
1257
|
+
# resp.provenance #=> Array
|
|
1258
|
+
# resp.provenance[0].relation #=> String, one of "DETECTED_FROM"
|
|
1259
|
+
# resp.provenance[0].source_id #=> String
|
|
1260
|
+
# resp.provenance[0].source_type #=> String, one of "AWS::BedrockAgentCore::Runtime", "AWS::BedrockAgentCore::Gateway"
|
|
1261
|
+
# resp.provenance[0].source_details.agentcore_runtime.protocol_configuration.server_protocol #=> String, one of "HTTP", "A2A", "MCP", "AGUI"
|
|
1262
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
|
1263
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
|
1264
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
|
1265
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
|
|
1266
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
|
1267
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
|
|
1268
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
|
|
1269
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
|
|
1270
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
|
|
1271
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
|
|
1272
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
|
|
1273
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
|
|
1274
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
|
|
1275
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
|
|
1276
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
1277
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
1278
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
1279
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
1280
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
1281
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
1282
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
1283
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
1284
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
1285
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
1286
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
|
|
1287
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
|
|
1288
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
1289
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
1290
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
1291
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
1292
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
1293
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
1294
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
1295
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
1296
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
1297
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
1298
|
+
# resp.provenance[0].source_details.agentcore_runtime.workload_identity_details.workload_identity_arn #=> String
|
|
1299
|
+
# resp.provenance[0].source_details.agentcore_gateway.protocol_type #=> String, one of "MCP"
|
|
1300
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_type #=> String
|
|
1301
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
|
1302
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
|
1303
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
|
1304
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
|
|
1305
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
|
1306
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
|
|
1307
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
|
|
1308
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
|
|
1309
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
|
|
1310
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
|
|
1311
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
|
|
1312
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
|
|
1313
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
|
|
1314
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
|
|
1315
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
1316
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
1317
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
1318
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
1319
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
1320
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
1321
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
1322
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
1323
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
1324
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
1325
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
|
|
1326
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
|
|
1327
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
1328
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
1329
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
1330
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
1331
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
1332
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
1333
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
1334
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
1335
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
1336
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
1337
|
+
# resp.provenance[0].source_details.agentcore_gateway.workload_identity_details.workload_identity_arn #=> String
|
|
1338
|
+
# resp.created_by_auto_detection #=> Boolean
|
|
1339
|
+
# resp.created_by #=> String
|
|
1003
1340
|
#
|
|
1004
1341
|
#
|
|
1005
1342
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -1093,6 +1430,10 @@ module Aws::AgentRegistryControl
|
|
|
1093
1430
|
# resp.registries[0].discovery_configuration.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
|
1094
1431
|
# resp.registries[0].status #=> String, one of "CREATING", "READY", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
1095
1432
|
# resp.registries[0].status_reason #=> String
|
|
1433
|
+
# resp.registries[0].auto_detection.configuration.scope #=> String, one of "ORGANIZATION"
|
|
1434
|
+
# resp.registries[0].auto_detection.configuration.enabled #=> Boolean
|
|
1435
|
+
# resp.registries[0].auto_detection.status #=> String, one of "ACTIVE", "INACTIVE"
|
|
1436
|
+
# resp.registries[0].auto_detection.status_reason #=> String
|
|
1096
1437
|
# resp.registries[0].created_at #=> Time
|
|
1097
1438
|
# resp.registries[0].updated_at #=> Time
|
|
1098
1439
|
# resp.next_token #=> String
|
|
@@ -1151,11 +1492,17 @@ module Aws::AgentRegistryControl
|
|
|
1151
1492
|
# resp.registry_records[0].name #=> String
|
|
1152
1493
|
# resp.registry_records[0].display_name #=> String
|
|
1153
1494
|
# resp.registry_records[0].description #=> String
|
|
1154
|
-
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL"
|
|
1495
|
+
# resp.registry_records[0].record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL", "GATEWAY"
|
|
1155
1496
|
# resp.registry_records[0].record_version #=> String
|
|
1156
1497
|
# resp.registry_records[0].status #=> String, one of "DRAFT", "PENDING_APPROVAL", "APPROVED", "REJECTED", "DEPRECATED", "CREATING", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED"
|
|
1157
1498
|
# resp.registry_records[0].created_at #=> Time
|
|
1158
1499
|
# resp.registry_records[0].updated_at #=> Time
|
|
1500
|
+
# resp.registry_records[0].created_by_auto_detection #=> Boolean
|
|
1501
|
+
# resp.registry_records[0].created_by #=> String
|
|
1502
|
+
# resp.registry_records[0].provenance_summary_list #=> Array
|
|
1503
|
+
# resp.registry_records[0].provenance_summary_list[0].relation #=> String, one of "DETECTED_FROM"
|
|
1504
|
+
# resp.registry_records[0].provenance_summary_list[0].source_id #=> String
|
|
1505
|
+
# resp.registry_records[0].provenance_summary_list[0].source_type #=> String, one of "AWS::BedrockAgentCore::Runtime", "AWS::BedrockAgentCore::Gateway"
|
|
1159
1506
|
# resp.next_token #=> String
|
|
1160
1507
|
#
|
|
1161
1508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/ListRegistryRecords AWS API Documentation
|
|
@@ -1167,10 +1514,13 @@ module Aws::AgentRegistryControl
|
|
|
1167
1514
|
req.send_request(options)
|
|
1168
1515
|
end
|
|
1169
1516
|
|
|
1170
|
-
#
|
|
1517
|
+
# Lists the tags associated with the specified Amazon Web Services Agent
|
|
1518
|
+
# Registry resource. Returns the current tag key-value pairs on the
|
|
1519
|
+
# resource.
|
|
1171
1520
|
#
|
|
1172
1521
|
# @option params [required, String] :resource_arn
|
|
1173
|
-
# ARN of
|
|
1522
|
+
# The Amazon Resource Name (ARN) of the resource to list tags for.
|
|
1523
|
+
# Supported resources include registries and registry records.
|
|
1174
1524
|
#
|
|
1175
1525
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1176
1526
|
#
|
|
@@ -1240,13 +1590,19 @@ module Aws::AgentRegistryControl
|
|
|
1240
1590
|
req.send_request(options)
|
|
1241
1591
|
end
|
|
1242
1592
|
|
|
1243
|
-
#
|
|
1593
|
+
# Adds or overwrites one or more tags for the specified Amazon Web
|
|
1594
|
+
# Services Agent Registry resource. Tags are key-value pairs that you
|
|
1595
|
+
# can use to categorize and manage Amazon Web Services resources. If a
|
|
1596
|
+
# tag with the same key already exists on the resource, the service
|
|
1597
|
+
# replaces its value with the value you specify.
|
|
1244
1598
|
#
|
|
1245
1599
|
# @option params [required, String] :resource_arn
|
|
1246
|
-
# ARN of
|
|
1600
|
+
# The Amazon Resource Name (ARN) of the resource to tag. Supported
|
|
1601
|
+
# resources include registries and registry records.
|
|
1247
1602
|
#
|
|
1248
1603
|
# @option params [required, Hash<String,String>] :tags
|
|
1249
|
-
#
|
|
1604
|
+
# The tags to apply to the resource, as a map of tag keys to tag values.
|
|
1605
|
+
# Tag keys must be unique within the request.
|
|
1250
1606
|
#
|
|
1251
1607
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1252
1608
|
#
|
|
@@ -1268,13 +1624,17 @@ module Aws::AgentRegistryControl
|
|
|
1268
1624
|
req.send_request(options)
|
|
1269
1625
|
end
|
|
1270
1626
|
|
|
1271
|
-
#
|
|
1627
|
+
# Removes one or more tags from the specified Amazon Web Services Agent
|
|
1628
|
+
# Registry resource. The operation removes only the tags whose keys you
|
|
1629
|
+
# supply; other tags on the resource remain unchanged.
|
|
1272
1630
|
#
|
|
1273
1631
|
# @option params [required, String] :resource_arn
|
|
1274
|
-
# ARN of
|
|
1632
|
+
# The Amazon Resource Name (ARN) of the resource to remove tags from.
|
|
1633
|
+
# Supported resources include registries and registry records.
|
|
1275
1634
|
#
|
|
1276
1635
|
# @option params [required, Array<String>] :tag_keys
|
|
1277
|
-
#
|
|
1636
|
+
# The keys of the tags to remove from the resource. Tags with keys not
|
|
1637
|
+
# included in this list remain on the resource.
|
|
1278
1638
|
#
|
|
1279
1639
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1280
1640
|
#
|
|
@@ -1318,6 +1678,12 @@ module Aws::AgentRegistryControl
|
|
|
1318
1678
|
# that move to PENDING\_APPROVAL after the update; records already in
|
|
1319
1679
|
# PENDING\_APPROVAL are unaffected.
|
|
1320
1680
|
#
|
|
1681
|
+
# @option params [Types::UpdatedAutoDetectionConfiguration] :auto_detection_configuration
|
|
1682
|
+
# The updated auto-detection configuration for the registry, with PATCH
|
|
1683
|
+
# semantics. Omit this field to leave the current configuration
|
|
1684
|
+
# unchanged. Supply an empty wrapper to unset it. Supply `optionalValue`
|
|
1685
|
+
# to replace it.
|
|
1686
|
+
#
|
|
1321
1687
|
# @return [Types::UpdateRegistryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1322
1688
|
#
|
|
1323
1689
|
# * {Types::UpdateRegistryResponse#name #name} => String
|
|
@@ -1325,9 +1691,11 @@ module Aws::AgentRegistryControl
|
|
|
1325
1691
|
# * {Types::UpdateRegistryResponse#registry_id #registry_id} => String
|
|
1326
1692
|
# * {Types::UpdateRegistryResponse#registry_arn #registry_arn} => String
|
|
1327
1693
|
# * {Types::UpdateRegistryResponse#discovery_configuration #discovery_configuration} => Types::DiscoveryConfiguration
|
|
1694
|
+
# * {Types::UpdateRegistryResponse#encryption_configuration #encryption_configuration} => Types::EncryptionConfiguration
|
|
1328
1695
|
# * {Types::UpdateRegistryResponse#approval_configuration #approval_configuration} => Types::ApprovalConfiguration
|
|
1329
1696
|
# * {Types::UpdateRegistryResponse#status #status} => String
|
|
1330
1697
|
# * {Types::UpdateRegistryResponse#status_reason #status_reason} => String
|
|
1698
|
+
# * {Types::UpdateRegistryResponse#auto_detection #auto_detection} => Types::AutoDetection
|
|
1331
1699
|
# * {Types::UpdateRegistryResponse#created_at #created_at} => Time
|
|
1332
1700
|
# * {Types::UpdateRegistryResponse#updated_at #updated_at} => Time
|
|
1333
1701
|
#
|
|
@@ -1404,6 +1772,12 @@ module Aws::AgentRegistryControl
|
|
|
1404
1772
|
# auto_approval_rules: ["APPROVE_ALL"], # accepts APPROVE_ALL
|
|
1405
1773
|
# },
|
|
1406
1774
|
# },
|
|
1775
|
+
# auto_detection_configuration: {
|
|
1776
|
+
# optional_value: {
|
|
1777
|
+
# scope: "ORGANIZATION", # required, accepts ORGANIZATION
|
|
1778
|
+
# enabled: false, # required
|
|
1779
|
+
# },
|
|
1780
|
+
# },
|
|
1407
1781
|
# })
|
|
1408
1782
|
#
|
|
1409
1783
|
# @example Response structure
|
|
@@ -1449,10 +1823,15 @@ module Aws::AgentRegistryControl
|
|
|
1449
1823
|
# resp.discovery_configuration.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
1450
1824
|
# resp.discovery_configuration.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
1451
1825
|
# resp.discovery_configuration.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
|
1826
|
+
# resp.encryption_configuration.kms_key_arn #=> String
|
|
1452
1827
|
# resp.approval_configuration.auto_approval_rules #=> Array
|
|
1453
1828
|
# resp.approval_configuration.auto_approval_rules[0] #=> String, one of "APPROVE_ALL"
|
|
1454
1829
|
# resp.status #=> String, one of "CREATING", "READY", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
1455
1830
|
# resp.status_reason #=> String
|
|
1831
|
+
# resp.auto_detection.configuration.scope #=> String, one of "ORGANIZATION"
|
|
1832
|
+
# resp.auto_detection.configuration.enabled #=> Boolean
|
|
1833
|
+
# resp.auto_detection.status #=> String, one of "ACTIVE", "INACTIVE"
|
|
1834
|
+
# resp.auto_detection.status_reason #=> String
|
|
1456
1835
|
# resp.created_at #=> Time
|
|
1457
1836
|
# resp.updated_at #=> Time
|
|
1458
1837
|
#
|
|
@@ -1504,6 +1883,12 @@ module Aws::AgentRegistryControl
|
|
|
1504
1883
|
# Whether to trigger synchronization of the record's descriptor content
|
|
1505
1884
|
# from its source
|
|
1506
1885
|
#
|
|
1886
|
+
# @option params [Array<Types::Provenance>] :provenance
|
|
1887
|
+
# List of provenance entries on a registry record. Capped at one entry
|
|
1888
|
+
# today: a record carries a single DETECTED\_FROM lineage. Modeled as a
|
|
1889
|
+
# list so additional relations can be unlocked post-GA by raising this
|
|
1890
|
+
# bound without a breaking shape change.
|
|
1891
|
+
#
|
|
1507
1892
|
# @return [Types::UpdateRegistryRecordResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1508
1893
|
#
|
|
1509
1894
|
# * {Types::UpdateRegistryRecordResponse#registry_arn #registry_arn} => String
|
|
@@ -1519,6 +1904,9 @@ module Aws::AgentRegistryControl
|
|
|
1519
1904
|
# * {Types::UpdateRegistryRecordResponse#created_at #created_at} => Time
|
|
1520
1905
|
# * {Types::UpdateRegistryRecordResponse#updated_at #updated_at} => Time
|
|
1521
1906
|
# * {Types::UpdateRegistryRecordResponse#status_reason #status_reason} => String
|
|
1907
|
+
# * {Types::UpdateRegistryRecordResponse#provenance #provenance} => Array<Types::Provenance>
|
|
1908
|
+
# * {Types::UpdateRegistryRecordResponse#created_by_auto_detection #created_by_auto_detection} => Boolean
|
|
1909
|
+
# * {Types::UpdateRegistryRecordResponse#created_by #created_by} => String
|
|
1522
1910
|
#
|
|
1523
1911
|
# @example Request syntax with placeholder values
|
|
1524
1912
|
#
|
|
@@ -1532,7 +1920,7 @@ module Aws::AgentRegistryControl
|
|
|
1532
1920
|
# description: {
|
|
1533
1921
|
# optional_value: "Description",
|
|
1534
1922
|
# },
|
|
1535
|
-
# record_type: "MCP", # accepts MCP, AGENT, CUSTOM, SKILL
|
|
1923
|
+
# record_type: "MCP", # accepts MCP, AGENT, CUSTOM, SKILL, GATEWAY
|
|
1536
1924
|
# descriptors: {
|
|
1537
1925
|
# optional_value: {
|
|
1538
1926
|
# mcp_server: {
|
|
@@ -1681,10 +2069,208 @@ module Aws::AgentRegistryControl
|
|
|
1681
2069
|
# },
|
|
1682
2070
|
# },
|
|
1683
2071
|
# },
|
|
2072
|
+
# http: {
|
|
2073
|
+
# optional_value: {
|
|
2074
|
+
# source: {
|
|
2075
|
+
# optional_value: {
|
|
2076
|
+
# from_url: {
|
|
2077
|
+
# url: "DescriptorSourceUrl", # required
|
|
2078
|
+
# credential_provider_configurations: [
|
|
2079
|
+
# {
|
|
2080
|
+
# credential_provider_type: "OAUTH", # required, accepts OAUTH, IAM
|
|
2081
|
+
# credential_provider: { # required
|
|
2082
|
+
# oauth_credential_provider: {
|
|
2083
|
+
# provider_arn: "CredentialProviderArn", # required
|
|
2084
|
+
# grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS
|
|
2085
|
+
# scopes: ["String"],
|
|
2086
|
+
# custom_parameters: {
|
|
2087
|
+
# "String" => "String",
|
|
2088
|
+
# },
|
|
2089
|
+
# },
|
|
2090
|
+
# iam_credential_provider: {
|
|
2091
|
+
# role_arn: "IamRoleArn",
|
|
2092
|
+
# service: "IamSigningServiceName",
|
|
2093
|
+
# region: "IamSigningRegion",
|
|
2094
|
+
# },
|
|
2095
|
+
# },
|
|
2096
|
+
# },
|
|
2097
|
+
# ],
|
|
2098
|
+
# },
|
|
2099
|
+
# },
|
|
2100
|
+
# },
|
|
2101
|
+
# },
|
|
2102
|
+
# },
|
|
2103
|
+
# agui: {
|
|
2104
|
+
# optional_value: {
|
|
2105
|
+
# source: {
|
|
2106
|
+
# optional_value: {
|
|
2107
|
+
# from_url: {
|
|
2108
|
+
# url: "DescriptorSourceUrl", # required
|
|
2109
|
+
# credential_provider_configurations: [
|
|
2110
|
+
# {
|
|
2111
|
+
# credential_provider_type: "OAUTH", # required, accepts OAUTH, IAM
|
|
2112
|
+
# credential_provider: { # required
|
|
2113
|
+
# oauth_credential_provider: {
|
|
2114
|
+
# provider_arn: "CredentialProviderArn", # required
|
|
2115
|
+
# grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS
|
|
2116
|
+
# scopes: ["String"],
|
|
2117
|
+
# custom_parameters: {
|
|
2118
|
+
# "String" => "String",
|
|
2119
|
+
# },
|
|
2120
|
+
# },
|
|
2121
|
+
# iam_credential_provider: {
|
|
2122
|
+
# role_arn: "IamRoleArn",
|
|
2123
|
+
# service: "IamSigningServiceName",
|
|
2124
|
+
# region: "IamSigningRegion",
|
|
2125
|
+
# },
|
|
2126
|
+
# },
|
|
2127
|
+
# },
|
|
2128
|
+
# ],
|
|
2129
|
+
# },
|
|
2130
|
+
# },
|
|
2131
|
+
# },
|
|
2132
|
+
# },
|
|
2133
|
+
# },
|
|
1684
2134
|
# },
|
|
1685
2135
|
# },
|
|
1686
2136
|
# record_version: "RegistryRecordVersion",
|
|
1687
2137
|
# trigger_synchronization: false,
|
|
2138
|
+
# provenance: [
|
|
2139
|
+
# {
|
|
2140
|
+
# relation: "DETECTED_FROM", # required, accepts DETECTED_FROM
|
|
2141
|
+
# source_id: "SourceId", # required
|
|
2142
|
+
# source_type: "AWS::BedrockAgentCore::Runtime", # accepts AWS::BedrockAgentCore::Runtime, AWS::BedrockAgentCore::Gateway
|
|
2143
|
+
# source_details: {
|
|
2144
|
+
# agentcore_runtime: {
|
|
2145
|
+
# protocol_configuration: {
|
|
2146
|
+
# server_protocol: "HTTP", # accepts HTTP, A2A, MCP, AGUI
|
|
2147
|
+
# },
|
|
2148
|
+
# authorizer_configuration: {
|
|
2149
|
+
# custom_jwt_authorizer: {
|
|
2150
|
+
# discovery_url: "DiscoveryUrl", # required
|
|
2151
|
+
# allowed_audience: ["AllowedAudience"],
|
|
2152
|
+
# allowed_clients: ["AllowedClient"],
|
|
2153
|
+
# allowed_scopes: ["AllowedScopeType"],
|
|
2154
|
+
# custom_claims: [
|
|
2155
|
+
# {
|
|
2156
|
+
# inbound_token_claim_name: "InboundTokenClaimNameType", # required
|
|
2157
|
+
# inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
|
|
2158
|
+
# authorizing_claim_match_value: { # required
|
|
2159
|
+
# claim_match_value: { # required
|
|
2160
|
+
# match_value_string: "MatchValueString",
|
|
2161
|
+
# match_value_string_list: ["MatchValueString"],
|
|
2162
|
+
# },
|
|
2163
|
+
# claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
|
|
2164
|
+
# },
|
|
2165
|
+
# },
|
|
2166
|
+
# ],
|
|
2167
|
+
# private_endpoint: {
|
|
2168
|
+
# self_managed_lattice_resource: {
|
|
2169
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
2170
|
+
# },
|
|
2171
|
+
# managed_vpc_resource: {
|
|
2172
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
2173
|
+
# subnet_ids: ["SubnetId"], # required
|
|
2174
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
2175
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
2176
|
+
# tags: {
|
|
2177
|
+
# "TagKey" => "TagValue",
|
|
2178
|
+
# },
|
|
2179
|
+
# routing_domain: "RoutingDomain",
|
|
2180
|
+
# },
|
|
2181
|
+
# },
|
|
2182
|
+
# private_endpoint_overrides: [
|
|
2183
|
+
# {
|
|
2184
|
+
# domain: "PrivateEndpointOverrideDomain", # required
|
|
2185
|
+
# private_endpoint: { # required
|
|
2186
|
+
# self_managed_lattice_resource: {
|
|
2187
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
2188
|
+
# },
|
|
2189
|
+
# managed_vpc_resource: {
|
|
2190
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
2191
|
+
# subnet_ids: ["SubnetId"], # required
|
|
2192
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
2193
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
2194
|
+
# tags: {
|
|
2195
|
+
# "TagKey" => "TagValue",
|
|
2196
|
+
# },
|
|
2197
|
+
# routing_domain: "RoutingDomain",
|
|
2198
|
+
# },
|
|
2199
|
+
# },
|
|
2200
|
+
# },
|
|
2201
|
+
# ],
|
|
2202
|
+
# },
|
|
2203
|
+
# },
|
|
2204
|
+
# workload_identity_details: {
|
|
2205
|
+
# workload_identity_arn: "WorkloadIdentityDetailsWorkloadIdentityArnString", # required
|
|
2206
|
+
# },
|
|
2207
|
+
# },
|
|
2208
|
+
# agentcore_gateway: {
|
|
2209
|
+
# protocol_type: "MCP", # accepts MCP
|
|
2210
|
+
# authorizer_type: "String",
|
|
2211
|
+
# authorizer_configuration: {
|
|
2212
|
+
# custom_jwt_authorizer: {
|
|
2213
|
+
# discovery_url: "DiscoveryUrl", # required
|
|
2214
|
+
# allowed_audience: ["AllowedAudience"],
|
|
2215
|
+
# allowed_clients: ["AllowedClient"],
|
|
2216
|
+
# allowed_scopes: ["AllowedScopeType"],
|
|
2217
|
+
# custom_claims: [
|
|
2218
|
+
# {
|
|
2219
|
+
# inbound_token_claim_name: "InboundTokenClaimNameType", # required
|
|
2220
|
+
# inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
|
|
2221
|
+
# authorizing_claim_match_value: { # required
|
|
2222
|
+
# claim_match_value: { # required
|
|
2223
|
+
# match_value_string: "MatchValueString",
|
|
2224
|
+
# match_value_string_list: ["MatchValueString"],
|
|
2225
|
+
# },
|
|
2226
|
+
# claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
|
|
2227
|
+
# },
|
|
2228
|
+
# },
|
|
2229
|
+
# ],
|
|
2230
|
+
# private_endpoint: {
|
|
2231
|
+
# self_managed_lattice_resource: {
|
|
2232
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
2233
|
+
# },
|
|
2234
|
+
# managed_vpc_resource: {
|
|
2235
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
2236
|
+
# subnet_ids: ["SubnetId"], # required
|
|
2237
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
2238
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
2239
|
+
# tags: {
|
|
2240
|
+
# "TagKey" => "TagValue",
|
|
2241
|
+
# },
|
|
2242
|
+
# routing_domain: "RoutingDomain",
|
|
2243
|
+
# },
|
|
2244
|
+
# },
|
|
2245
|
+
# private_endpoint_overrides: [
|
|
2246
|
+
# {
|
|
2247
|
+
# domain: "PrivateEndpointOverrideDomain", # required
|
|
2248
|
+
# private_endpoint: { # required
|
|
2249
|
+
# self_managed_lattice_resource: {
|
|
2250
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
2251
|
+
# },
|
|
2252
|
+
# managed_vpc_resource: {
|
|
2253
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
2254
|
+
# subnet_ids: ["SubnetId"], # required
|
|
2255
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
2256
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
2257
|
+
# tags: {
|
|
2258
|
+
# "TagKey" => "TagValue",
|
|
2259
|
+
# },
|
|
2260
|
+
# routing_domain: "RoutingDomain",
|
|
2261
|
+
# },
|
|
2262
|
+
# },
|
|
2263
|
+
# },
|
|
2264
|
+
# ],
|
|
2265
|
+
# },
|
|
2266
|
+
# },
|
|
2267
|
+
# workload_identity_details: {
|
|
2268
|
+
# workload_identity_arn: "WorkloadIdentityDetailsWorkloadIdentityArnString", # required
|
|
2269
|
+
# },
|
|
2270
|
+
# },
|
|
2271
|
+
# },
|
|
2272
|
+
# },
|
|
2273
|
+
# ],
|
|
1688
2274
|
# })
|
|
1689
2275
|
#
|
|
1690
2276
|
# @example Response structure
|
|
@@ -1695,7 +2281,7 @@ module Aws::AgentRegistryControl
|
|
|
1695
2281
|
# resp.name #=> String
|
|
1696
2282
|
# resp.display_name #=> String
|
|
1697
2283
|
# resp.description #=> String
|
|
1698
|
-
# resp.record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL"
|
|
2284
|
+
# resp.record_type #=> String, one of "MCP", "AGENT", "CUSTOM", "SKILL", "GATEWAY"
|
|
1699
2285
|
# resp.descriptors.mcp_server.data #=> String
|
|
1700
2286
|
# resp.descriptors.mcp_server.data_schema_version #=> String
|
|
1701
2287
|
# resp.descriptors.mcp_server.additional_data.tools.data #=> String
|
|
@@ -1743,11 +2329,118 @@ module Aws::AgentRegistryControl
|
|
|
1743
2329
|
# resp.descriptors.agent_skills_definition.additional_data.skill_md.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
1744
2330
|
# resp.descriptors.agent_skills_definition.additional_data.skill_md.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
1745
2331
|
# resp.descriptors.custom.data #=> String
|
|
2332
|
+
# resp.descriptors.http.source.from_url.url #=> String
|
|
2333
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations #=> Array
|
|
2334
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider_type #=> String, one of "OAUTH", "IAM"
|
|
2335
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
2336
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS"
|
|
2337
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
|
|
2338
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
|
|
2339
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
|
|
2340
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["String"] #=> String
|
|
2341
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.role_arn #=> String
|
|
2342
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
2343
|
+
# resp.descriptors.http.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
2344
|
+
# resp.descriptors.agui.source.from_url.url #=> String
|
|
2345
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations #=> Array
|
|
2346
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider_type #=> String, one of "OAUTH", "IAM"
|
|
2347
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
2348
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS"
|
|
2349
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
|
|
2350
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
|
|
2351
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
|
|
2352
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["String"] #=> String
|
|
2353
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.role_arn #=> String
|
|
2354
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
2355
|
+
# resp.descriptors.agui.source.from_url.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
1746
2356
|
# resp.record_version #=> String
|
|
1747
2357
|
# resp.status #=> String, one of "DRAFT", "PENDING_APPROVAL", "APPROVED", "REJECTED", "DEPRECATED", "CREATING", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED"
|
|
1748
2358
|
# resp.created_at #=> Time
|
|
1749
2359
|
# resp.updated_at #=> Time
|
|
1750
2360
|
# resp.status_reason #=> String
|
|
2361
|
+
# resp.provenance #=> Array
|
|
2362
|
+
# resp.provenance[0].relation #=> String, one of "DETECTED_FROM"
|
|
2363
|
+
# resp.provenance[0].source_id #=> String
|
|
2364
|
+
# resp.provenance[0].source_type #=> String, one of "AWS::BedrockAgentCore::Runtime", "AWS::BedrockAgentCore::Gateway"
|
|
2365
|
+
# resp.provenance[0].source_details.agentcore_runtime.protocol_configuration.server_protocol #=> String, one of "HTTP", "A2A", "MCP", "AGUI"
|
|
2366
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
|
2367
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
|
2368
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
|
2369
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
|
|
2370
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
|
2371
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
|
|
2372
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
|
|
2373
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
|
|
2374
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
|
|
2375
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
|
|
2376
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
|
|
2377
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
|
|
2378
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
|
|
2379
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
|
|
2380
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
2381
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
2382
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
2383
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
2384
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
2385
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
2386
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
2387
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
2388
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
2389
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
2390
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
|
|
2391
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
|
|
2392
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
2393
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
2394
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
2395
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
2396
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
2397
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
2398
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
2399
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
2400
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
2401
|
+
# resp.provenance[0].source_details.agentcore_runtime.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
2402
|
+
# resp.provenance[0].source_details.agentcore_runtime.workload_identity_details.workload_identity_arn #=> String
|
|
2403
|
+
# resp.provenance[0].source_details.agentcore_gateway.protocol_type #=> String, one of "MCP"
|
|
2404
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_type #=> String
|
|
2405
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
|
2406
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
|
2407
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
|
2408
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
|
|
2409
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
|
2410
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
|
|
2411
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
|
|
2412
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
|
|
2413
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
|
|
2414
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
|
|
2415
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
|
|
2416
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
|
|
2417
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
|
|
2418
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
|
|
2419
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
2420
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
2421
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
2422
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
2423
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
2424
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
2425
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
2426
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
2427
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
2428
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
2429
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
|
|
2430
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
|
|
2431
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
2432
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
2433
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
2434
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
2435
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
2436
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
2437
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
2438
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
2439
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
2440
|
+
# resp.provenance[0].source_details.agentcore_gateway.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
2441
|
+
# resp.provenance[0].source_details.agentcore_gateway.workload_identity_details.workload_identity_arn #=> String
|
|
2442
|
+
# resp.created_by_auto_detection #=> Boolean
|
|
2443
|
+
# resp.created_by #=> String
|
|
1751
2444
|
#
|
|
1752
2445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/agent-registry-control-2025-12-01/UpdateRegistryRecord AWS API Documentation
|
|
1753
2446
|
#
|
|
@@ -1831,7 +2524,7 @@ module Aws::AgentRegistryControl
|
|
|
1831
2524
|
tracer: tracer
|
|
1832
2525
|
)
|
|
1833
2526
|
context[:gem_name] = 'aws-sdk-agentregistrycontrol'
|
|
1834
|
-
context[:gem_version] = '1.
|
|
2527
|
+
context[:gem_version] = '1.1.0'
|
|
1835
2528
|
Seahorse::Client::Request.new(handlers, context)
|
|
1836
2529
|
end
|
|
1837
2530
|
|