aws-sdk-bedrockagentcorecontrol 1.40.0 → 1.41.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.40.0'
58
+ GEM_VERSION = '1.41.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -330,6 +330,32 @@ module Aws
330
330
  ) -> _CreateCodeInterpreterResponseSuccess
331
331
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCodeInterpreterResponseSuccess
332
332
 
333
+ interface _CreateConfigurationBundleResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationBundleResponse]
335
+ def bundle_arn: () -> ::String
336
+ def bundle_id: () -> ::String
337
+ def version_id: () -> ::String
338
+ def created_at: () -> ::Time
339
+ end
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_configuration_bundle-instance_method
341
+ def create_configuration_bundle: (
342
+ ?client_token: ::String,
343
+ bundle_name: ::String,
344
+ ?description: ::String,
345
+ components: Hash[::String, {
346
+ configuration: {
347
+ }
348
+ }],
349
+ ?branch_name: ::String,
350
+ ?commit_message: ::String,
351
+ ?created_by: {
352
+ name: ::String,
353
+ arn: ::String?
354
+ },
355
+ ?tags: Hash[::String, ::String]
356
+ ) -> _CreateConfigurationBundleResponseSuccess
357
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationBundleResponseSuccess
358
+
333
359
  interface _CreateEvaluatorResponseSuccess
334
360
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEvaluatorResponse]
335
361
  def evaluator_arn: () -> ::String
@@ -382,6 +408,7 @@ module Aws
382
408
  }?
383
409
  },
384
410
  level: ("TOOL_CALL" | "TRACE" | "SESSION"),
411
+ ?kms_key_arn: ::String,
385
412
  ?tags: Hash[::String, ::String]
386
413
  ) -> _CreateEvaluatorResponseSuccess
387
414
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEvaluatorResponseSuccess
@@ -400,7 +427,7 @@ module Aws
400
427
  def role_arn: () -> ::String
401
428
  def protocol_type: () -> ("MCP")
402
429
  def protocol_configuration: () -> Types::GatewayProtocolConfiguration
403
- def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
430
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
404
431
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
405
432
  def kms_key_arn: () -> ::String
406
433
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
@@ -414,7 +441,7 @@ module Aws
414
441
  ?description: ::String,
415
442
  ?client_token: ::String,
416
443
  role_arn: ::String,
417
- protocol_type: ("MCP"),
444
+ ?protocol_type: ("MCP"),
418
445
  ?protocol_configuration: {
419
446
  mcp: {
420
447
  supported_versions: Array[::String]?,
@@ -422,7 +449,7 @@ module Aws
422
449
  search_type: ("SEMANTIC")?
423
450
  }?
424
451
  },
425
- authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE"),
452
+ authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
426
453
  ?authorizer_configuration: {
427
454
  custom_jwt_authorizer: {
428
455
  discovery_url: ::String,
@@ -498,6 +525,84 @@ module Aws
498
525
  ) -> _CreateGatewayResponseSuccess
499
526
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
500
527
 
528
+ interface _CreateGatewayRuleResponseSuccess
529
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGatewayRuleResponse]
530
+ def rule_id: () -> ::String
531
+ def gateway_arn: () -> ::String
532
+ def priority: () -> ::Integer
533
+ def conditions: () -> ::Array[Types::Condition]
534
+ def actions: () -> ::Array[Types::Action]
535
+ def description: () -> ::String
536
+ def created_at: () -> ::Time
537
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
538
+ def system: () -> Types::SystemManagedBlock
539
+ end
540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_rule-instance_method
541
+ def create_gateway_rule: (
542
+ gateway_identifier: ::String,
543
+ ?client_token: ::String,
544
+ priority: ::Integer,
545
+ ?conditions: Array[
546
+ {
547
+ match_principals: {
548
+ any_of: Array[
549
+ {
550
+ iam_principal: {
551
+ arn: ::String,
552
+ operator: ("StringEquals" | "StringLike")?
553
+ }?
554
+ },
555
+ ]
556
+ }?,
557
+ match_paths: {
558
+ any_of: Array[::String]
559
+ }?
560
+ },
561
+ ],
562
+ actions: Array[
563
+ {
564
+ configuration_bundle: {
565
+ static_override: {
566
+ bundle_arn: ::String,
567
+ bundle_version: ::String
568
+ }?,
569
+ weighted_override: {
570
+ traffic_split: Array[
571
+ {
572
+ name: ::String,
573
+ weight: ::Integer,
574
+ configuration_bundle: {
575
+ bundle_arn: ::String,
576
+ bundle_version: ::String
577
+ },
578
+ description: ::String?,
579
+ metadata: Hash[::String, ::String]?
580
+ },
581
+ ]
582
+ }?
583
+ }?,
584
+ route_to_target: {
585
+ static_route: {
586
+ target_name: ::String
587
+ }?,
588
+ weighted_route: {
589
+ traffic_split: Array[
590
+ {
591
+ name: ::String,
592
+ weight: ::Integer,
593
+ target_name: ::String,
594
+ description: ::String?,
595
+ metadata: Hash[::String, ::String]?
596
+ },
597
+ ]
598
+ }?
599
+ }?
600
+ },
601
+ ],
602
+ ?description: ::String
603
+ ) -> _CreateGatewayRuleResponseSuccess
604
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayRuleResponseSuccess
605
+
501
606
  interface _CreateGatewayTargetResponseSuccess
502
607
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateGatewayTargetResponse]
503
608
  def gateway_arn: () -> ::String
@@ -515,6 +620,7 @@ module Aws
515
620
  def private_endpoint: () -> Types::PrivateEndpoint
516
621
  def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
517
622
  def authorization_data: () -> Types::AuthorizationData
623
+ def protocol_type: () -> ("MCP" | "HTTP")
518
624
  end
519
625
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
520
626
  def create_gateway_target: (
@@ -576,8 +682,8 @@ module Aws
576
682
  }?,
577
683
  inline_payload: ::String?
578
684
  }?,
579
- resource_priority: ::Integer?,
580
- listing_mode: ("DEFAULT" | "DYNAMIC")?
685
+ listing_mode: ("DEFAULT" | "DYNAMIC")?,
686
+ resource_priority: ::Integer?
581
687
  }?,
582
688
  api_gateway: {
583
689
  rest_api_id: ::String,
@@ -599,11 +705,17 @@ module Aws
599
705
  ]
600
706
  }
601
707
  }?
708
+ }?,
709
+ http: {
710
+ agentcore_runtime: {
711
+ arn: ::String,
712
+ qualifier: ::String?
713
+ }?
602
714
  }?
603
715
  },
604
716
  ?credential_provider_configurations: Array[
605
717
  {
606
- credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
718
+ credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH"),
607
719
  credential_provider: {
608
720
  oauth_credential_provider: {
609
721
  provider_arn: ::String,
@@ -1406,6 +1518,17 @@ module Aws
1406
1518
  ) -> _DeleteCodeInterpreterResponseSuccess
1407
1519
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCodeInterpreterResponseSuccess
1408
1520
 
1521
+ interface _DeleteConfigurationBundleResponseSuccess
1522
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationBundleResponse]
1523
+ def bundle_id: () -> ::String
1524
+ def status: () -> ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
1525
+ end
1526
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_configuration_bundle-instance_method
1527
+ def delete_configuration_bundle: (
1528
+ bundle_id: ::String
1529
+ ) -> _DeleteConfigurationBundleResponseSuccess
1530
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationBundleResponseSuccess
1531
+
1409
1532
  interface _DeleteEvaluatorResponseSuccess
1410
1533
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEvaluatorResponse]
1411
1534
  def evaluator_arn: () -> ::String
@@ -1430,6 +1553,18 @@ module Aws
1430
1553
  ) -> _DeleteGatewayResponseSuccess
1431
1554
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayResponseSuccess
1432
1555
 
1556
+ interface _DeleteGatewayRuleResponseSuccess
1557
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayRuleResponse]
1558
+ def rule_id: () -> ::String
1559
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
1560
+ end
1561
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_gateway_rule-instance_method
1562
+ def delete_gateway_rule: (
1563
+ gateway_identifier: ::String,
1564
+ rule_id: ::String
1565
+ ) -> _DeleteGatewayRuleResponseSuccess
1566
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayRuleResponseSuccess
1567
+
1433
1568
  interface _DeleteGatewayTargetResponseSuccess
1434
1569
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayTargetResponse]
1435
1570
  def gateway_arn: () -> ::String
@@ -1691,6 +1826,44 @@ module Aws
1691
1826
  ) -> _GetCodeInterpreterResponseSuccess
1692
1827
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCodeInterpreterResponseSuccess
1693
1828
 
1829
+ interface _GetConfigurationBundleResponseSuccess
1830
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationBundleResponse]
1831
+ def bundle_arn: () -> ::String
1832
+ def bundle_id: () -> ::String
1833
+ def bundle_name: () -> ::String
1834
+ def description: () -> ::String
1835
+ def version_id: () -> ::String
1836
+ def components: () -> ::Hash[::String, Types::ComponentConfiguration]
1837
+ def lineage_metadata: () -> Types::VersionLineageMetadata
1838
+ def created_at: () -> ::Time
1839
+ def updated_at: () -> ::Time
1840
+ end
1841
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle-instance_method
1842
+ def get_configuration_bundle: (
1843
+ bundle_id: ::String,
1844
+ ?branch_name: ::String
1845
+ ) -> _GetConfigurationBundleResponseSuccess
1846
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationBundleResponseSuccess
1847
+
1848
+ interface _GetConfigurationBundleVersionResponseSuccess
1849
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationBundleVersionResponse]
1850
+ def bundle_arn: () -> ::String
1851
+ def bundle_id: () -> ::String
1852
+ def bundle_name: () -> ::String
1853
+ def description: () -> ::String
1854
+ def version_id: () -> ::String
1855
+ def components: () -> ::Hash[::String, Types::ComponentConfiguration]
1856
+ def lineage_metadata: () -> Types::VersionLineageMetadata
1857
+ def created_at: () -> ::Time
1858
+ def version_created_at: () -> ::Time
1859
+ end
1860
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle_version-instance_method
1861
+ def get_configuration_bundle_version: (
1862
+ bundle_id: ::String,
1863
+ version_id: ::String
1864
+ ) -> _GetConfigurationBundleVersionResponseSuccess
1865
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationBundleVersionResponseSuccess
1866
+
1694
1867
  interface _GetEvaluatorResponseSuccess
1695
1868
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEvaluatorResponse]
1696
1869
  def evaluator_arn: () -> ::String
@@ -1703,10 +1876,12 @@ module Aws
1703
1876
  def created_at: () -> ::Time
1704
1877
  def updated_at: () -> ::Time
1705
1878
  def locked_for_modification: () -> bool
1879
+ def kms_key_arn: () -> ::String
1706
1880
  end
1707
1881
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_evaluator-instance_method
1708
1882
  def get_evaluator: (
1709
- evaluator_id: ::String
1883
+ evaluator_id: ::String,
1884
+ ?included_data: ("ALL_DATA" | "METADATA_ONLY")
1710
1885
  ) -> _GetEvaluatorResponseSuccess
1711
1886
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEvaluatorResponseSuccess
1712
1887
 
@@ -1724,7 +1899,7 @@ module Aws
1724
1899
  def role_arn: () -> ::String
1725
1900
  def protocol_type: () -> ("MCP")
1726
1901
  def protocol_configuration: () -> Types::GatewayProtocolConfiguration
1727
- def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
1902
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
1728
1903
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
1729
1904
  def kms_key_arn: () -> ::String
1730
1905
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
@@ -1738,6 +1913,26 @@ module Aws
1738
1913
  ) -> _GetGatewayResponseSuccess
1739
1914
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayResponseSuccess
1740
1915
 
1916
+ interface _GetGatewayRuleResponseSuccess
1917
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGatewayRuleResponse]
1918
+ def rule_id: () -> ::String
1919
+ def gateway_arn: () -> ::String
1920
+ def priority: () -> ::Integer
1921
+ def conditions: () -> ::Array[Types::Condition]
1922
+ def actions: () -> ::Array[Types::Action]
1923
+ def description: () -> ::String
1924
+ def created_at: () -> ::Time
1925
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
1926
+ def system: () -> Types::SystemManagedBlock
1927
+ def updated_at: () -> ::Time
1928
+ end
1929
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_rule-instance_method
1930
+ def get_gateway_rule: (
1931
+ gateway_identifier: ::String,
1932
+ rule_id: ::String
1933
+ ) -> _GetGatewayRuleResponseSuccess
1934
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayRuleResponseSuccess
1935
+
1741
1936
  interface _GetGatewayTargetResponseSuccess
1742
1937
  include ::Seahorse::Client::_ResponseSuccess[Types::GetGatewayTargetResponse]
1743
1938
  def gateway_arn: () -> ::String
@@ -1755,6 +1950,7 @@ module Aws
1755
1950
  def private_endpoint: () -> Types::PrivateEndpoint
1756
1951
  def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
1757
1952
  def authorization_data: () -> Types::AuthorizationData
1953
+ def protocol_type: () -> ("MCP" | "HTTP")
1758
1954
  end
1759
1955
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_target-instance_method
1760
1956
  def get_gateway_target: (
@@ -2053,6 +2249,36 @@ module Aws
2053
2249
  ) -> _ListCodeInterpretersResponseSuccess
2054
2250
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCodeInterpretersResponseSuccess
2055
2251
 
2252
+ interface _ListConfigurationBundleVersionsResponseSuccess
2253
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationBundleVersionsResponse]
2254
+ def versions: () -> ::Array[Types::ConfigurationBundleVersionSummary]
2255
+ def next_token: () -> ::String
2256
+ end
2257
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_configuration_bundle_versions-instance_method
2258
+ def list_configuration_bundle_versions: (
2259
+ bundle_id: ::String,
2260
+ ?next_token: ::String,
2261
+ ?max_results: ::Integer,
2262
+ ?filter: {
2263
+ branch_name: ::String?,
2264
+ created_by_name: ::String?,
2265
+ latest_per_branch: bool?
2266
+ }
2267
+ ) -> _ListConfigurationBundleVersionsResponseSuccess
2268
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationBundleVersionsResponseSuccess
2269
+
2270
+ interface _ListConfigurationBundlesResponseSuccess
2271
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationBundlesResponse]
2272
+ def bundles: () -> ::Array[Types::ConfigurationBundleSummary]
2273
+ def next_token: () -> ::String
2274
+ end
2275
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_configuration_bundles-instance_method
2276
+ def list_configuration_bundles: (
2277
+ ?next_token: ::String,
2278
+ ?max_results: ::Integer
2279
+ ) -> _ListConfigurationBundlesResponseSuccess
2280
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationBundlesResponseSuccess
2281
+
2056
2282
  interface _ListEvaluatorsResponseSuccess
2057
2283
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluatorsResponse]
2058
2284
  def evaluators: () -> ::Array[Types::EvaluatorSummary]
@@ -2065,6 +2291,19 @@ module Aws
2065
2291
  ) -> _ListEvaluatorsResponseSuccess
2066
2292
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEvaluatorsResponseSuccess
2067
2293
 
2294
+ interface _ListGatewayRulesResponseSuccess
2295
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewayRulesResponse]
2296
+ def gateway_rules: () -> ::Array[Types::GatewayRuleDetail]
2297
+ def next_token: () -> ::String
2298
+ end
2299
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_gateway_rules-instance_method
2300
+ def list_gateway_rules: (
2301
+ gateway_identifier: ::String,
2302
+ ?max_results: ::Integer,
2303
+ ?next_token: ::String
2304
+ ) -> _ListGatewayRulesResponseSuccess
2305
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewayRulesResponseSuccess
2306
+
2068
2307
  interface _ListGatewayTargetsResponseSuccess
2069
2308
  include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewayTargetsResponse]
2070
2309
  def items: () -> ::Array[Types::TargetSummary]
@@ -2492,6 +2731,33 @@ module Aws
2492
2731
  ) -> _UpdateApiKeyCredentialProviderResponseSuccess
2493
2732
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiKeyCredentialProviderResponseSuccess
2494
2733
 
2734
+ interface _UpdateConfigurationBundleResponseSuccess
2735
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfigurationBundleResponse]
2736
+ def bundle_arn: () -> ::String
2737
+ def bundle_id: () -> ::String
2738
+ def version_id: () -> ::String
2739
+ def updated_at: () -> ::Time
2740
+ end
2741
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_configuration_bundle-instance_method
2742
+ def update_configuration_bundle: (
2743
+ ?client_token: ::String,
2744
+ bundle_id: ::String,
2745
+ ?bundle_name: ::String,
2746
+ ?description: ::String,
2747
+ ?components: Hash[::String, {
2748
+ configuration: {
2749
+ }
2750
+ }],
2751
+ ?parent_version_ids: Array[::String],
2752
+ ?branch_name: ::String,
2753
+ ?commit_message: ::String,
2754
+ ?created_by: {
2755
+ name: ::String,
2756
+ arn: ::String?
2757
+ }
2758
+ ) -> _UpdateConfigurationBundleResponseSuccess
2759
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationBundleResponseSuccess
2760
+
2495
2761
  interface _UpdateEvaluatorResponseSuccess
2496
2762
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEvaluatorResponse]
2497
2763
  def evaluator_arn: () -> ::String
@@ -2543,7 +2809,8 @@ module Aws
2543
2809
  }?
2544
2810
  }?
2545
2811
  },
2546
- ?level: ("TOOL_CALL" | "TRACE" | "SESSION")
2812
+ ?level: ("TOOL_CALL" | "TRACE" | "SESSION"),
2813
+ ?kms_key_arn: ::String
2547
2814
  ) -> _UpdateEvaluatorResponseSuccess
2548
2815
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEvaluatorResponseSuccess
2549
2816
 
@@ -2561,7 +2828,7 @@ module Aws
2561
2828
  def role_arn: () -> ::String
2562
2829
  def protocol_type: () -> ("MCP")
2563
2830
  def protocol_configuration: () -> Types::GatewayProtocolConfiguration
2564
- def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
2831
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
2565
2832
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
2566
2833
  def kms_key_arn: () -> ::String
2567
2834
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
@@ -2575,7 +2842,7 @@ module Aws
2575
2842
  name: ::String,
2576
2843
  ?description: ::String,
2577
2844
  role_arn: ::String,
2578
- protocol_type: ("MCP"),
2845
+ ?protocol_type: ("MCP"),
2579
2846
  ?protocol_configuration: {
2580
2847
  mcp: {
2581
2848
  supported_versions: Array[::String]?,
@@ -2583,7 +2850,7 @@ module Aws
2583
2850
  search_type: ("SEMANTIC")?
2584
2851
  }?
2585
2852
  },
2586
- authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE"),
2853
+ authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
2587
2854
  ?authorizer_configuration: {
2588
2855
  custom_jwt_authorizer: {
2589
2856
  discovery_url: ::String,
@@ -2658,6 +2925,85 @@ module Aws
2658
2925
  ) -> _UpdateGatewayResponseSuccess
2659
2926
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayResponseSuccess
2660
2927
 
2928
+ interface _UpdateGatewayRuleResponseSuccess
2929
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayRuleResponse]
2930
+ def rule_id: () -> ::String
2931
+ def gateway_arn: () -> ::String
2932
+ def priority: () -> ::Integer
2933
+ def conditions: () -> ::Array[Types::Condition]
2934
+ def actions: () -> ::Array[Types::Action]
2935
+ def description: () -> ::String
2936
+ def created_at: () -> ::Time
2937
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
2938
+ def system: () -> Types::SystemManagedBlock
2939
+ def updated_at: () -> ::Time
2940
+ end
2941
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_rule-instance_method
2942
+ def update_gateway_rule: (
2943
+ gateway_identifier: ::String,
2944
+ rule_id: ::String,
2945
+ ?priority: ::Integer,
2946
+ ?conditions: Array[
2947
+ {
2948
+ match_principals: {
2949
+ any_of: Array[
2950
+ {
2951
+ iam_principal: {
2952
+ arn: ::String,
2953
+ operator: ("StringEquals" | "StringLike")?
2954
+ }?
2955
+ },
2956
+ ]
2957
+ }?,
2958
+ match_paths: {
2959
+ any_of: Array[::String]
2960
+ }?
2961
+ },
2962
+ ],
2963
+ ?actions: Array[
2964
+ {
2965
+ configuration_bundle: {
2966
+ static_override: {
2967
+ bundle_arn: ::String,
2968
+ bundle_version: ::String
2969
+ }?,
2970
+ weighted_override: {
2971
+ traffic_split: Array[
2972
+ {
2973
+ name: ::String,
2974
+ weight: ::Integer,
2975
+ configuration_bundle: {
2976
+ bundle_arn: ::String,
2977
+ bundle_version: ::String
2978
+ },
2979
+ description: ::String?,
2980
+ metadata: Hash[::String, ::String]?
2981
+ },
2982
+ ]
2983
+ }?
2984
+ }?,
2985
+ route_to_target: {
2986
+ static_route: {
2987
+ target_name: ::String
2988
+ }?,
2989
+ weighted_route: {
2990
+ traffic_split: Array[
2991
+ {
2992
+ name: ::String,
2993
+ weight: ::Integer,
2994
+ target_name: ::String,
2995
+ description: ::String?,
2996
+ metadata: Hash[::String, ::String]?
2997
+ },
2998
+ ]
2999
+ }?
3000
+ }?
3001
+ },
3002
+ ],
3003
+ ?description: ::String
3004
+ ) -> _UpdateGatewayRuleResponseSuccess
3005
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayRuleResponseSuccess
3006
+
2661
3007
  interface _UpdateGatewayTargetResponseSuccess
2662
3008
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayTargetResponse]
2663
3009
  def gateway_arn: () -> ::String
@@ -2675,6 +3021,7 @@ module Aws
2675
3021
  def private_endpoint: () -> Types::PrivateEndpoint
2676
3022
  def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
2677
3023
  def authorization_data: () -> Types::AuthorizationData
3024
+ def protocol_type: () -> ("MCP" | "HTTP")
2678
3025
  end
2679
3026
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_target-instance_method
2680
3027
  def update_gateway_target: (
@@ -2736,8 +3083,8 @@ module Aws
2736
3083
  }?,
2737
3084
  inline_payload: ::String?
2738
3085
  }?,
2739
- resource_priority: ::Integer?,
2740
- listing_mode: ("DEFAULT" | "DYNAMIC")?
3086
+ listing_mode: ("DEFAULT" | "DYNAMIC")?,
3087
+ resource_priority: ::Integer?
2741
3088
  }?,
2742
3089
  api_gateway: {
2743
3090
  rest_api_id: ::String,
@@ -2759,11 +3106,17 @@ module Aws
2759
3106
  ]
2760
3107
  }
2761
3108
  }?
3109
+ }?,
3110
+ http: {
3111
+ agentcore_runtime: {
3112
+ arn: ::String,
3113
+ qualifier: ::String?
3114
+ }?
2762
3115
  }?
2763
3116
  },
2764
3117
  ?credential_provider_configurations: Array[
2765
3118
  {
2766
- credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
3119
+ credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH"),
2767
3120
  credential_provider: {
2768
3121
  oauth_credential_provider: {
2769
3122
  provider_arn: ::String,