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