aws-sdk-bedrockagentcorecontrol 1.35.0 → 1.37.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.
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.35.0'
58
+ GEM_VERSION = '1.37.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -888,6 +888,113 @@ module Aws
888
888
  ) -> _CreatePolicyEngineResponseSuccess
889
889
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePolicyEngineResponseSuccess
890
890
 
891
+ interface _CreateRegistryResponseSuccess
892
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRegistryResponse]
893
+ def registry_arn: () -> ::String
894
+ end
895
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_registry-instance_method
896
+ def create_registry: (
897
+ name: ::String,
898
+ ?description: ::String,
899
+ ?authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
900
+ ?authorizer_configuration: {
901
+ custom_jwt_authorizer: {
902
+ discovery_url: ::String,
903
+ allowed_audience: Array[::String]?,
904
+ allowed_clients: Array[::String]?,
905
+ allowed_scopes: Array[::String]?,
906
+ custom_claims: Array[
907
+ {
908
+ inbound_token_claim_name: ::String,
909
+ inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
910
+ authorizing_claim_match_value: {
911
+ claim_match_value: {
912
+ match_value_string: ::String?,
913
+ match_value_string_list: Array[::String]?
914
+ },
915
+ claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
916
+ }
917
+ },
918
+ ]?
919
+ }?
920
+ },
921
+ ?client_token: ::String,
922
+ ?approval_configuration: {
923
+ auto_approval: bool?
924
+ }
925
+ ) -> _CreateRegistryResponseSuccess
926
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRegistryResponseSuccess
927
+
928
+ interface _CreateRegistryRecordResponseSuccess
929
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRegistryRecordResponse]
930
+ def record_arn: () -> ::String
931
+ def status: () -> ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
932
+ end
933
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_registry_record-instance_method
934
+ def create_registry_record: (
935
+ registry_id: ::String,
936
+ name: ::String,
937
+ ?description: ::String,
938
+ descriptor_type: ("MCP" | "A2A" | "CUSTOM" | "AGENT_SKILLS"),
939
+ ?descriptors: {
940
+ mcp: {
941
+ server: {
942
+ schema_version: ::String?,
943
+ inline_content: ::String?
944
+ }?,
945
+ tools: {
946
+ protocol_version: ::String?,
947
+ inline_content: ::String?
948
+ }?
949
+ }?,
950
+ a2a: {
951
+ agent_card: {
952
+ schema_version: ::String?,
953
+ inline_content: ::String?
954
+ }?
955
+ }?,
956
+ custom: {
957
+ inline_content: ::String?
958
+ }?,
959
+ agent_skills: {
960
+ skill_md: {
961
+ inline_content: ::String?
962
+ }?,
963
+ skill_definition: {
964
+ schema_version: ::String?,
965
+ inline_content: ::String?
966
+ }?
967
+ }?
968
+ },
969
+ ?record_version: ::String,
970
+ ?synchronization_type: ("URL"),
971
+ ?synchronization_configuration: {
972
+ from_url: {
973
+ url: ::String,
974
+ credential_provider_configurations: Array[
975
+ {
976
+ credential_provider_type: ("OAUTH" | "IAM"),
977
+ credential_provider: {
978
+ oauth_credential_provider: {
979
+ provider_arn: ::String,
980
+ grant_type: ("CLIENT_CREDENTIALS")?,
981
+ scopes: Array[::String]?,
982
+ custom_parameters: Hash[::String, ::String]?
983
+ }?,
984
+ iam_credential_provider: {
985
+ role_arn: ::String?,
986
+ service: ::String?,
987
+ region: ::String?
988
+ }?
989
+ }
990
+ },
991
+ ]?
992
+ }?
993
+ },
994
+ ?client_token: ::String
995
+ ) -> _CreateRegistryRecordResponseSuccess
996
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRegistryRecordResponseSuccess
997
+
891
998
  interface _CreateWorkloadIdentityResponseSuccess
892
999
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkloadIdentityResponse]
893
1000
  def name: () -> ::String
@@ -1087,6 +1194,26 @@ module Aws
1087
1194
  ) -> _DeletePolicyEngineResponseSuccess
1088
1195
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePolicyEngineResponseSuccess
1089
1196
 
1197
+ interface _DeleteRegistryResponseSuccess
1198
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRegistryResponse]
1199
+ def status: () -> ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
1200
+ end
1201
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_registry-instance_method
1202
+ def delete_registry: (
1203
+ registry_id: ::String
1204
+ ) -> _DeleteRegistryResponseSuccess
1205
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRegistryResponseSuccess
1206
+
1207
+ interface _DeleteRegistryRecordResponseSuccess
1208
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRegistryRecordResponse]
1209
+ end
1210
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_registry_record-instance_method
1211
+ def delete_registry_record: (
1212
+ registry_id: ::String,
1213
+ record_id: ::String
1214
+ ) -> _DeleteRegistryRecordResponseSuccess
1215
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRegistryRecordResponseSuccess
1216
+
1090
1217
  interface _DeleteResourcePolicyResponseSuccess
1091
1218
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
1092
1219
  end
@@ -1413,6 +1540,50 @@ module Aws
1413
1540
  ) -> _GetPolicyGenerationResponseSuccess
1414
1541
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyGenerationResponseSuccess
1415
1542
 
1543
+ interface _GetRegistryResponseSuccess
1544
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRegistryResponse]
1545
+ def name: () -> ::String
1546
+ def description: () -> ::String
1547
+ def registry_id: () -> ::String
1548
+ def registry_arn: () -> ::String
1549
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
1550
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
1551
+ def approval_configuration: () -> Types::ApprovalConfiguration
1552
+ def status: () -> ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
1553
+ def status_reason: () -> ::String
1554
+ def created_at: () -> ::Time
1555
+ def updated_at: () -> ::Time
1556
+ end
1557
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_registry-instance_method
1558
+ def get_registry: (
1559
+ registry_id: ::String
1560
+ ) -> _GetRegistryResponseSuccess
1561
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRegistryResponseSuccess
1562
+
1563
+ interface _GetRegistryRecordResponseSuccess
1564
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRegistryRecordResponse]
1565
+ def registry_arn: () -> ::String
1566
+ def record_arn: () -> ::String
1567
+ def record_id: () -> ::String
1568
+ def name: () -> ::String
1569
+ def description: () -> ::String
1570
+ def descriptor_type: () -> ("MCP" | "A2A" | "CUSTOM" | "AGENT_SKILLS")
1571
+ def descriptors: () -> Types::Descriptors
1572
+ def record_version: () -> ::String
1573
+ def status: () -> ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
1574
+ def created_at: () -> ::Time
1575
+ def updated_at: () -> ::Time
1576
+ def status_reason: () -> ::String
1577
+ def synchronization_type: () -> ("URL")
1578
+ def synchronization_configuration: () -> Types::SynchronizationConfiguration
1579
+ end
1580
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_registry_record-instance_method
1581
+ def get_registry_record: (
1582
+ registry_id: ::String,
1583
+ record_id: ::String
1584
+ ) -> _GetRegistryRecordResponseSuccess
1585
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRegistryRecordResponseSuccess
1586
+
1416
1587
  interface _GetResourcePolicyResponseSuccess
1417
1588
  include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
1418
1589
  def policy: () -> ::String
@@ -1664,6 +1835,35 @@ module Aws
1664
1835
  ) -> _ListPolicyGenerationsResponseSuccess
1665
1836
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGenerationsResponseSuccess
1666
1837
 
1838
+ interface _ListRegistriesResponseSuccess
1839
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRegistriesResponse]
1840
+ def registries: () -> ::Array[Types::RegistrySummary]
1841
+ def next_token: () -> ::String
1842
+ end
1843
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_registries-instance_method
1844
+ def list_registries: (
1845
+ ?max_results: ::Integer,
1846
+ ?next_token: ::String,
1847
+ ?status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
1848
+ ) -> _ListRegistriesResponseSuccess
1849
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRegistriesResponseSuccess
1850
+
1851
+ interface _ListRegistryRecordsResponseSuccess
1852
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRegistryRecordsResponse]
1853
+ def registry_records: () -> ::Array[Types::RegistryRecordSummary]
1854
+ def next_token: () -> ::String
1855
+ end
1856
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_registry_records-instance_method
1857
+ def list_registry_records: (
1858
+ registry_id: ::String,
1859
+ ?max_results: ::Integer,
1860
+ ?next_token: ::String,
1861
+ ?name: ::String,
1862
+ ?status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED"),
1863
+ ?descriptor_type: ("MCP" | "A2A" | "CUSTOM" | "AGENT_SKILLS")
1864
+ ) -> _ListRegistryRecordsResponseSuccess
1865
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRegistryRecordsResponseSuccess
1866
+
1667
1867
  interface _ListTagsForResourceResponseSuccess
1668
1868
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
1669
1869
  def tags: () -> ::Hash[::String, ::String]
@@ -1740,6 +1940,21 @@ module Aws
1740
1940
  ) -> _StartPolicyGenerationResponseSuccess
1741
1941
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartPolicyGenerationResponseSuccess
1742
1942
 
1943
+ interface _SubmitRegistryRecordForApprovalResponseSuccess
1944
+ include ::Seahorse::Client::_ResponseSuccess[Types::SubmitRegistryRecordForApprovalResponse]
1945
+ def registry_arn: () -> ::String
1946
+ def record_arn: () -> ::String
1947
+ def record_id: () -> ::String
1948
+ def status: () -> ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
1949
+ def updated_at: () -> ::Time
1950
+ end
1951
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#submit_registry_record_for_approval-instance_method
1952
+ def submit_registry_record_for_approval: (
1953
+ registry_id: ::String,
1954
+ record_id: ::String
1955
+ ) -> _SubmitRegistryRecordForApprovalResponseSuccess
1956
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SubmitRegistryRecordForApprovalResponseSuccess
1957
+
1743
1958
  interface _SynchronizeGatewayTargetsResponseSuccess
1744
1959
  include ::Seahorse::Client::_ResponseSuccess[Types::SynchronizeGatewayTargetsResponse]
1745
1960
  def targets: () -> ::Array[Types::GatewayTarget]
@@ -2562,6 +2777,183 @@ module Aws
2562
2777
  ) -> _UpdatePolicyEngineResponseSuccess
2563
2778
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePolicyEngineResponseSuccess
2564
2779
 
2780
+ interface _UpdateRegistryResponseSuccess
2781
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRegistryResponse]
2782
+ def name: () -> ::String
2783
+ def description: () -> ::String
2784
+ def registry_id: () -> ::String
2785
+ def registry_arn: () -> ::String
2786
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
2787
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
2788
+ def approval_configuration: () -> Types::ApprovalConfiguration
2789
+ def status: () -> ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
2790
+ def status_reason: () -> ::String
2791
+ def created_at: () -> ::Time
2792
+ def updated_at: () -> ::Time
2793
+ end
2794
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_registry-instance_method
2795
+ def update_registry: (
2796
+ registry_id: ::String,
2797
+ ?name: ::String,
2798
+ ?description: {
2799
+ optional_value: ::String?
2800
+ },
2801
+ ?authorizer_configuration: {
2802
+ optional_value: {
2803
+ custom_jwt_authorizer: {
2804
+ discovery_url: ::String,
2805
+ allowed_audience: Array[::String]?,
2806
+ allowed_clients: Array[::String]?,
2807
+ allowed_scopes: Array[::String]?,
2808
+ custom_claims: Array[
2809
+ {
2810
+ inbound_token_claim_name: ::String,
2811
+ inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
2812
+ authorizing_claim_match_value: {
2813
+ claim_match_value: {
2814
+ match_value_string: ::String?,
2815
+ match_value_string_list: Array[::String]?
2816
+ },
2817
+ claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
2818
+ }
2819
+ },
2820
+ ]?
2821
+ }?
2822
+ }?
2823
+ },
2824
+ ?approval_configuration: {
2825
+ optional_value: {
2826
+ auto_approval: bool?
2827
+ }?
2828
+ }
2829
+ ) -> _UpdateRegistryResponseSuccess
2830
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRegistryResponseSuccess
2831
+
2832
+ interface _UpdateRegistryRecordResponseSuccess
2833
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRegistryRecordResponse]
2834
+ def registry_arn: () -> ::String
2835
+ def record_arn: () -> ::String
2836
+ def record_id: () -> ::String
2837
+ def name: () -> ::String
2838
+ def description: () -> ::String
2839
+ def descriptor_type: () -> ("MCP" | "A2A" | "CUSTOM" | "AGENT_SKILLS")
2840
+ def descriptors: () -> Types::Descriptors
2841
+ def record_version: () -> ::String
2842
+ def status: () -> ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
2843
+ def created_at: () -> ::Time
2844
+ def updated_at: () -> ::Time
2845
+ def status_reason: () -> ::String
2846
+ def synchronization_type: () -> ("URL")
2847
+ def synchronization_configuration: () -> Types::SynchronizationConfiguration
2848
+ end
2849
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_registry_record-instance_method
2850
+ def update_registry_record: (
2851
+ registry_id: ::String,
2852
+ record_id: ::String,
2853
+ ?name: ::String,
2854
+ ?description: {
2855
+ optional_value: ::String?
2856
+ },
2857
+ ?descriptor_type: ("MCP" | "A2A" | "CUSTOM" | "AGENT_SKILLS"),
2858
+ ?descriptors: {
2859
+ optional_value: {
2860
+ mcp: {
2861
+ optional_value: {
2862
+ server: {
2863
+ optional_value: {
2864
+ schema_version: ::String?,
2865
+ inline_content: ::String?
2866
+ }?
2867
+ }?,
2868
+ tools: {
2869
+ optional_value: {
2870
+ protocol_version: ::String?,
2871
+ inline_content: ::String?
2872
+ }?
2873
+ }?
2874
+ }?
2875
+ }?,
2876
+ a2a: {
2877
+ optional_value: {
2878
+ agent_card: {
2879
+ schema_version: ::String?,
2880
+ inline_content: ::String?
2881
+ }?
2882
+ }?
2883
+ }?,
2884
+ custom: {
2885
+ optional_value: {
2886
+ inline_content: ::String?
2887
+ }?
2888
+ }?,
2889
+ agent_skills: {
2890
+ optional_value: {
2891
+ skill_md: {
2892
+ optional_value: {
2893
+ inline_content: ::String?
2894
+ }?
2895
+ }?,
2896
+ skill_definition: {
2897
+ optional_value: {
2898
+ schema_version: ::String?,
2899
+ inline_content: ::String?
2900
+ }?
2901
+ }?
2902
+ }?
2903
+ }?
2904
+ }?
2905
+ },
2906
+ ?record_version: ::String,
2907
+ ?synchronization_type: {
2908
+ optional_value: ("URL")?
2909
+ },
2910
+ ?synchronization_configuration: {
2911
+ optional_value: {
2912
+ from_url: {
2913
+ url: ::String,
2914
+ credential_provider_configurations: Array[
2915
+ {
2916
+ credential_provider_type: ("OAUTH" | "IAM"),
2917
+ credential_provider: {
2918
+ oauth_credential_provider: {
2919
+ provider_arn: ::String,
2920
+ grant_type: ("CLIENT_CREDENTIALS")?,
2921
+ scopes: Array[::String]?,
2922
+ custom_parameters: Hash[::String, ::String]?
2923
+ }?,
2924
+ iam_credential_provider: {
2925
+ role_arn: ::String?,
2926
+ service: ::String?,
2927
+ region: ::String?
2928
+ }?
2929
+ }
2930
+ },
2931
+ ]?
2932
+ }?
2933
+ }?
2934
+ },
2935
+ ?trigger_synchronization: bool
2936
+ ) -> _UpdateRegistryRecordResponseSuccess
2937
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRegistryRecordResponseSuccess
2938
+
2939
+ interface _UpdateRegistryRecordStatusResponseSuccess
2940
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRegistryRecordStatusResponse]
2941
+ def registry_arn: () -> ::String
2942
+ def record_arn: () -> ::String
2943
+ def record_id: () -> ::String
2944
+ def status: () -> ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
2945
+ def status_reason: () -> ::String
2946
+ def updated_at: () -> ::Time
2947
+ end
2948
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_registry_record_status-instance_method
2949
+ def update_registry_record_status: (
2950
+ registry_id: ::String,
2951
+ record_id: ::String,
2952
+ status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED"),
2953
+ status_reason: ::String
2954
+ ) -> _UpdateRegistryRecordStatusResponseSuccess
2955
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRegistryRecordStatusResponseSuccess
2956
+
2565
2957
  interface _UpdateWorkloadIdentityResponseSuccess
2566
2958
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkloadIdentityResponse]
2567
2959
  def name: () -> ::String