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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +1040 -27
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +618 -7
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1601 -48
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +368 -15
- data/sig/types.rbs +435 -8
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -18,6 +18,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
18
18
|
SENSITIVE: []
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
+
class Action
|
|
22
|
+
attr_accessor configuration_bundle: Types::ConfigurationBundleAction
|
|
23
|
+
attr_accessor route_to_target: Types::RouteToTargetAction
|
|
24
|
+
attr_accessor unknown: untyped
|
|
25
|
+
SENSITIVE: []
|
|
26
|
+
|
|
27
|
+
class ConfigurationBundle < Action
|
|
28
|
+
end
|
|
29
|
+
class RouteToTarget < Action
|
|
30
|
+
end
|
|
31
|
+
class Unknown < Action
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
21
35
|
class AgentCardDefinition
|
|
22
36
|
attr_accessor schema_version: ::String
|
|
23
37
|
attr_accessor inline_content: ::String
|
|
@@ -323,11 +337,67 @@ module Aws::BedrockAgentCoreControl
|
|
|
323
337
|
SENSITIVE: [:description]
|
|
324
338
|
end
|
|
325
339
|
|
|
340
|
+
class ComponentConfiguration
|
|
341
|
+
attr_accessor configuration: untyped
|
|
342
|
+
SENSITIVE: []
|
|
343
|
+
end
|
|
344
|
+
|
|
326
345
|
class ConcurrentModificationException
|
|
327
346
|
attr_accessor message: ::String
|
|
328
347
|
SENSITIVE: []
|
|
329
348
|
end
|
|
330
349
|
|
|
350
|
+
class Condition
|
|
351
|
+
attr_accessor match_principals: Types::MatchPrincipals
|
|
352
|
+
attr_accessor match_paths: Types::MatchPaths
|
|
353
|
+
attr_accessor unknown: untyped
|
|
354
|
+
SENSITIVE: []
|
|
355
|
+
|
|
356
|
+
class MatchPrincipals < Condition
|
|
357
|
+
end
|
|
358
|
+
class MatchPaths < Condition
|
|
359
|
+
end
|
|
360
|
+
class Unknown < Condition
|
|
361
|
+
end
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
class ConfigurationBundleAction
|
|
365
|
+
attr_accessor static_override: Types::StaticOverride
|
|
366
|
+
attr_accessor weighted_override: Types::WeightedOverride
|
|
367
|
+
attr_accessor unknown: untyped
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
|
|
370
|
+
class StaticOverride < ConfigurationBundleAction
|
|
371
|
+
end
|
|
372
|
+
class WeightedOverride < ConfigurationBundleAction
|
|
373
|
+
end
|
|
374
|
+
class Unknown < ConfigurationBundleAction
|
|
375
|
+
end
|
|
376
|
+
end
|
|
377
|
+
|
|
378
|
+
class ConfigurationBundleReference
|
|
379
|
+
attr_accessor bundle_arn: ::String
|
|
380
|
+
attr_accessor bundle_version: ::String
|
|
381
|
+
SENSITIVE: []
|
|
382
|
+
end
|
|
383
|
+
|
|
384
|
+
class ConfigurationBundleSummary
|
|
385
|
+
attr_accessor bundle_arn: ::String
|
|
386
|
+
attr_accessor bundle_id: ::String
|
|
387
|
+
attr_accessor bundle_name: ::String
|
|
388
|
+
attr_accessor description: ::String
|
|
389
|
+
SENSITIVE: [:description]
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class ConfigurationBundleVersionSummary
|
|
393
|
+
attr_accessor bundle_arn: ::String
|
|
394
|
+
attr_accessor bundle_id: ::String
|
|
395
|
+
attr_accessor version_id: ::String
|
|
396
|
+
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
397
|
+
attr_accessor version_created_at: ::Time
|
|
398
|
+
SENSITIVE: []
|
|
399
|
+
end
|
|
400
|
+
|
|
331
401
|
class ConflictException
|
|
332
402
|
attr_accessor message: ::String
|
|
333
403
|
SENSITIVE: []
|
|
@@ -485,12 +555,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
485
555
|
SENSITIVE: []
|
|
486
556
|
end
|
|
487
557
|
|
|
558
|
+
class CreateConfigurationBundleRequest
|
|
559
|
+
attr_accessor client_token: ::String
|
|
560
|
+
attr_accessor bundle_name: ::String
|
|
561
|
+
attr_accessor description: ::String
|
|
562
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
563
|
+
attr_accessor branch_name: ::String
|
|
564
|
+
attr_accessor commit_message: ::String
|
|
565
|
+
attr_accessor created_by: Types::VersionCreatedBySource
|
|
566
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
567
|
+
SENSITIVE: [:description]
|
|
568
|
+
end
|
|
569
|
+
|
|
570
|
+
class CreateConfigurationBundleResponse
|
|
571
|
+
attr_accessor bundle_arn: ::String
|
|
572
|
+
attr_accessor bundle_id: ::String
|
|
573
|
+
attr_accessor version_id: ::String
|
|
574
|
+
attr_accessor created_at: ::Time
|
|
575
|
+
SENSITIVE: []
|
|
576
|
+
end
|
|
577
|
+
|
|
488
578
|
class CreateEvaluatorRequest
|
|
489
579
|
attr_accessor client_token: ::String
|
|
490
580
|
attr_accessor evaluator_name: ::String
|
|
491
581
|
attr_accessor description: ::String
|
|
492
582
|
attr_accessor evaluator_config: Types::EvaluatorConfig
|
|
493
583
|
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
584
|
+
attr_accessor kms_key_arn: ::String
|
|
494
585
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
495
586
|
SENSITIVE: [:description]
|
|
496
587
|
end
|
|
@@ -510,7 +601,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
510
601
|
attr_accessor role_arn: ::String
|
|
511
602
|
attr_accessor protocol_type: ("MCP")
|
|
512
603
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
513
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
604
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
514
605
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
515
606
|
attr_accessor kms_key_arn: ::String
|
|
516
607
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -533,7 +624,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
533
624
|
attr_accessor role_arn: ::String
|
|
534
625
|
attr_accessor protocol_type: ("MCP")
|
|
535
626
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
536
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
627
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
537
628
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
538
629
|
attr_accessor kms_key_arn: ::String
|
|
539
630
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -543,6 +634,29 @@ module Aws::BedrockAgentCoreControl
|
|
|
543
634
|
SENSITIVE: [:name, :description]
|
|
544
635
|
end
|
|
545
636
|
|
|
637
|
+
class CreateGatewayRuleRequest
|
|
638
|
+
attr_accessor gateway_identifier: ::String
|
|
639
|
+
attr_accessor client_token: ::String
|
|
640
|
+
attr_accessor priority: ::Integer
|
|
641
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
642
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
643
|
+
attr_accessor description: ::String
|
|
644
|
+
SENSITIVE: []
|
|
645
|
+
end
|
|
646
|
+
|
|
647
|
+
class CreateGatewayRuleResponse
|
|
648
|
+
attr_accessor rule_id: ::String
|
|
649
|
+
attr_accessor gateway_arn: ::String
|
|
650
|
+
attr_accessor priority: ::Integer
|
|
651
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
652
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
653
|
+
attr_accessor description: ::String
|
|
654
|
+
attr_accessor created_at: ::Time
|
|
655
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
656
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
657
|
+
SENSITIVE: []
|
|
658
|
+
end
|
|
659
|
+
|
|
546
660
|
class CreateGatewayTargetRequest
|
|
547
661
|
attr_accessor gateway_identifier: ::String
|
|
548
662
|
attr_accessor name: ::String
|
|
@@ -571,6 +685,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
571
685
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
572
686
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
573
687
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
688
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
574
689
|
SENSITIVE: [:name, :description]
|
|
575
690
|
end
|
|
576
691
|
|
|
@@ -773,7 +888,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
773
888
|
end
|
|
774
889
|
|
|
775
890
|
class CredentialProviderConfiguration
|
|
776
|
-
attr_accessor credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY")
|
|
891
|
+
attr_accessor credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH")
|
|
777
892
|
attr_accessor credential_provider: Types::CredentialProvider
|
|
778
893
|
SENSITIVE: []
|
|
779
894
|
end
|
|
@@ -1037,6 +1152,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1037
1152
|
SENSITIVE: []
|
|
1038
1153
|
end
|
|
1039
1154
|
|
|
1155
|
+
class DeleteConfigurationBundleRequest
|
|
1156
|
+
attr_accessor bundle_id: ::String
|
|
1157
|
+
SENSITIVE: []
|
|
1158
|
+
end
|
|
1159
|
+
|
|
1160
|
+
class DeleteConfigurationBundleResponse
|
|
1161
|
+
attr_accessor bundle_id: ::String
|
|
1162
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
1163
|
+
SENSITIVE: []
|
|
1164
|
+
end
|
|
1165
|
+
|
|
1040
1166
|
class DeleteEvaluatorRequest
|
|
1041
1167
|
attr_accessor evaluator_id: ::String
|
|
1042
1168
|
SENSITIVE: []
|
|
@@ -1061,6 +1187,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
1061
1187
|
SENSITIVE: []
|
|
1062
1188
|
end
|
|
1063
1189
|
|
|
1190
|
+
class DeleteGatewayRuleRequest
|
|
1191
|
+
attr_accessor gateway_identifier: ::String
|
|
1192
|
+
attr_accessor rule_id: ::String
|
|
1193
|
+
SENSITIVE: []
|
|
1194
|
+
end
|
|
1195
|
+
|
|
1196
|
+
class DeleteGatewayRuleResponse
|
|
1197
|
+
attr_accessor rule_id: ::String
|
|
1198
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
1199
|
+
SENSITIVE: []
|
|
1200
|
+
end
|
|
1201
|
+
|
|
1064
1202
|
class DeleteGatewayTargetRequest
|
|
1065
1203
|
attr_accessor gateway_identifier: ::String
|
|
1066
1204
|
attr_accessor target_id: ::String
|
|
@@ -1324,6 +1462,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1324
1462
|
attr_accessor created_at: ::Time
|
|
1325
1463
|
attr_accessor updated_at: ::Time
|
|
1326
1464
|
attr_accessor locked_for_modification: bool
|
|
1465
|
+
attr_accessor kms_key_arn: ::String
|
|
1327
1466
|
SENSITIVE: [:description]
|
|
1328
1467
|
end
|
|
1329
1468
|
|
|
@@ -1409,6 +1548,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1409
1548
|
end
|
|
1410
1549
|
end
|
|
1411
1550
|
|
|
1551
|
+
class GatewayRuleDetail
|
|
1552
|
+
attr_accessor rule_id: ::String
|
|
1553
|
+
attr_accessor gateway_arn: ::String
|
|
1554
|
+
attr_accessor priority: ::Integer
|
|
1555
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
1556
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
1557
|
+
attr_accessor description: ::String
|
|
1558
|
+
attr_accessor created_at: ::Time
|
|
1559
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
1560
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
1561
|
+
attr_accessor updated_at: ::Time
|
|
1562
|
+
SENSITIVE: []
|
|
1563
|
+
end
|
|
1564
|
+
|
|
1412
1565
|
class GatewaySummary
|
|
1413
1566
|
attr_accessor gateway_id: ::String
|
|
1414
1567
|
attr_accessor name: ::String
|
|
@@ -1416,7 +1569,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1416
1569
|
attr_accessor description: ::String
|
|
1417
1570
|
attr_accessor created_at: ::Time
|
|
1418
1571
|
attr_accessor updated_at: ::Time
|
|
1419
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
1572
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1420
1573
|
attr_accessor protocol_type: ("MCP")
|
|
1421
1574
|
SENSITIVE: [:name, :description]
|
|
1422
1575
|
end
|
|
@@ -1437,6 +1590,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1437
1590
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1438
1591
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
1439
1592
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
1593
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
1440
1594
|
SENSITIVE: [:name, :description]
|
|
1441
1595
|
end
|
|
1442
1596
|
|
|
@@ -1567,8 +1721,47 @@ module Aws::BedrockAgentCoreControl
|
|
|
1567
1721
|
SENSITIVE: [:description]
|
|
1568
1722
|
end
|
|
1569
1723
|
|
|
1724
|
+
class GetConfigurationBundleRequest
|
|
1725
|
+
attr_accessor bundle_id: ::String
|
|
1726
|
+
attr_accessor branch_name: ::String
|
|
1727
|
+
SENSITIVE: []
|
|
1728
|
+
end
|
|
1729
|
+
|
|
1730
|
+
class GetConfigurationBundleResponse
|
|
1731
|
+
attr_accessor bundle_arn: ::String
|
|
1732
|
+
attr_accessor bundle_id: ::String
|
|
1733
|
+
attr_accessor bundle_name: ::String
|
|
1734
|
+
attr_accessor description: ::String
|
|
1735
|
+
attr_accessor version_id: ::String
|
|
1736
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
1737
|
+
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
1738
|
+
attr_accessor created_at: ::Time
|
|
1739
|
+
attr_accessor updated_at: ::Time
|
|
1740
|
+
SENSITIVE: [:description]
|
|
1741
|
+
end
|
|
1742
|
+
|
|
1743
|
+
class GetConfigurationBundleVersionRequest
|
|
1744
|
+
attr_accessor bundle_id: ::String
|
|
1745
|
+
attr_accessor version_id: ::String
|
|
1746
|
+
SENSITIVE: []
|
|
1747
|
+
end
|
|
1748
|
+
|
|
1749
|
+
class GetConfigurationBundleVersionResponse
|
|
1750
|
+
attr_accessor bundle_arn: ::String
|
|
1751
|
+
attr_accessor bundle_id: ::String
|
|
1752
|
+
attr_accessor bundle_name: ::String
|
|
1753
|
+
attr_accessor description: ::String
|
|
1754
|
+
attr_accessor version_id: ::String
|
|
1755
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
1756
|
+
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
1757
|
+
attr_accessor created_at: ::Time
|
|
1758
|
+
attr_accessor version_created_at: ::Time
|
|
1759
|
+
SENSITIVE: [:description]
|
|
1760
|
+
end
|
|
1761
|
+
|
|
1570
1762
|
class GetEvaluatorRequest
|
|
1571
1763
|
attr_accessor evaluator_id: ::String
|
|
1764
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
1572
1765
|
SENSITIVE: []
|
|
1573
1766
|
end
|
|
1574
1767
|
|
|
@@ -1583,6 +1776,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1583
1776
|
attr_accessor created_at: ::Time
|
|
1584
1777
|
attr_accessor updated_at: ::Time
|
|
1585
1778
|
attr_accessor locked_for_modification: bool
|
|
1779
|
+
attr_accessor kms_key_arn: ::String
|
|
1586
1780
|
SENSITIVE: [:description]
|
|
1587
1781
|
end
|
|
1588
1782
|
|
|
@@ -1604,7 +1798,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1604
1798
|
attr_accessor role_arn: ::String
|
|
1605
1799
|
attr_accessor protocol_type: ("MCP")
|
|
1606
1800
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
1607
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
1801
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1608
1802
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
1609
1803
|
attr_accessor kms_key_arn: ::String
|
|
1610
1804
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -1614,6 +1808,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
1614
1808
|
SENSITIVE: [:name, :description]
|
|
1615
1809
|
end
|
|
1616
1810
|
|
|
1811
|
+
class GetGatewayRuleRequest
|
|
1812
|
+
attr_accessor gateway_identifier: ::String
|
|
1813
|
+
attr_accessor rule_id: ::String
|
|
1814
|
+
SENSITIVE: []
|
|
1815
|
+
end
|
|
1816
|
+
|
|
1817
|
+
class GetGatewayRuleResponse
|
|
1818
|
+
attr_accessor rule_id: ::String
|
|
1819
|
+
attr_accessor gateway_arn: ::String
|
|
1820
|
+
attr_accessor priority: ::Integer
|
|
1821
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
1822
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
1823
|
+
attr_accessor description: ::String
|
|
1824
|
+
attr_accessor created_at: ::Time
|
|
1825
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
1826
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
1827
|
+
attr_accessor updated_at: ::Time
|
|
1828
|
+
SENSITIVE: []
|
|
1829
|
+
end
|
|
1830
|
+
|
|
1617
1831
|
class GetGatewayTargetRequest
|
|
1618
1832
|
attr_accessor gateway_identifier: ::String
|
|
1619
1833
|
attr_accessor target_id: ::String
|
|
@@ -1636,6 +1850,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1636
1850
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1637
1851
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
1638
1852
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
1853
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
1639
1854
|
SENSITIVE: [:name, :description]
|
|
1640
1855
|
end
|
|
1641
1856
|
|
|
@@ -2149,12 +2364,29 @@ module Aws::BedrockAgentCoreControl
|
|
|
2149
2364
|
end
|
|
2150
2365
|
end
|
|
2151
2366
|
|
|
2367
|
+
class HttpTargetConfiguration
|
|
2368
|
+
attr_accessor agentcore_runtime: Types::RuntimeTargetConfiguration
|
|
2369
|
+
attr_accessor unknown: untyped
|
|
2370
|
+
SENSITIVE: []
|
|
2371
|
+
|
|
2372
|
+
class AgentcoreRuntime < HttpTargetConfiguration
|
|
2373
|
+
end
|
|
2374
|
+
class Unknown < HttpTargetConfiguration
|
|
2375
|
+
end
|
|
2376
|
+
end
|
|
2377
|
+
|
|
2152
2378
|
class IamCredentialProvider
|
|
2153
2379
|
attr_accessor service: ::String
|
|
2154
2380
|
attr_accessor region: ::String
|
|
2155
2381
|
SENSITIVE: []
|
|
2156
2382
|
end
|
|
2157
2383
|
|
|
2384
|
+
class IamPrincipal
|
|
2385
|
+
attr_accessor arn: ::String
|
|
2386
|
+
attr_accessor operator: ("StringEquals" | "StringLike")
|
|
2387
|
+
SENSITIVE: []
|
|
2388
|
+
end
|
|
2389
|
+
|
|
2158
2390
|
class IncludedOauth2ProviderConfigInput
|
|
2159
2391
|
attr_accessor client_id: ::String
|
|
2160
2392
|
attr_accessor client_secret: ::String
|
|
@@ -2341,6 +2573,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
2341
2573
|
SENSITIVE: []
|
|
2342
2574
|
end
|
|
2343
2575
|
|
|
2576
|
+
class ListConfigurationBundleVersionsRequest
|
|
2577
|
+
attr_accessor bundle_id: ::String
|
|
2578
|
+
attr_accessor next_token: ::String
|
|
2579
|
+
attr_accessor max_results: ::Integer
|
|
2580
|
+
attr_accessor filter: Types::VersionFilter
|
|
2581
|
+
SENSITIVE: []
|
|
2582
|
+
end
|
|
2583
|
+
|
|
2584
|
+
class ListConfigurationBundleVersionsResponse
|
|
2585
|
+
attr_accessor versions: ::Array[Types::ConfigurationBundleVersionSummary]
|
|
2586
|
+
attr_accessor next_token: ::String
|
|
2587
|
+
SENSITIVE: []
|
|
2588
|
+
end
|
|
2589
|
+
|
|
2590
|
+
class ListConfigurationBundlesRequest
|
|
2591
|
+
attr_accessor next_token: ::String
|
|
2592
|
+
attr_accessor max_results: ::Integer
|
|
2593
|
+
SENSITIVE: []
|
|
2594
|
+
end
|
|
2595
|
+
|
|
2596
|
+
class ListConfigurationBundlesResponse
|
|
2597
|
+
attr_accessor bundles: ::Array[Types::ConfigurationBundleSummary]
|
|
2598
|
+
attr_accessor next_token: ::String
|
|
2599
|
+
SENSITIVE: []
|
|
2600
|
+
end
|
|
2601
|
+
|
|
2344
2602
|
class ListEvaluatorsRequest
|
|
2345
2603
|
attr_accessor next_token: ::String
|
|
2346
2604
|
attr_accessor max_results: ::Integer
|
|
@@ -2353,6 +2611,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
2353
2611
|
SENSITIVE: []
|
|
2354
2612
|
end
|
|
2355
2613
|
|
|
2614
|
+
class ListGatewayRulesRequest
|
|
2615
|
+
attr_accessor gateway_identifier: ::String
|
|
2616
|
+
attr_accessor max_results: ::Integer
|
|
2617
|
+
attr_accessor next_token: ::String
|
|
2618
|
+
SENSITIVE: []
|
|
2619
|
+
end
|
|
2620
|
+
|
|
2621
|
+
class ListGatewayRulesResponse
|
|
2622
|
+
attr_accessor gateway_rules: ::Array[Types::GatewayRuleDetail]
|
|
2623
|
+
attr_accessor next_token: ::String
|
|
2624
|
+
SENSITIVE: []
|
|
2625
|
+
end
|
|
2626
|
+
|
|
2356
2627
|
class ListGatewayTargetsRequest
|
|
2357
2628
|
attr_accessor gateway_identifier: ::String
|
|
2358
2629
|
attr_accessor max_results: ::Integer
|
|
@@ -2561,6 +2832,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
2561
2832
|
SENSITIVE: []
|
|
2562
2833
|
end
|
|
2563
2834
|
|
|
2835
|
+
class MatchPaths
|
|
2836
|
+
attr_accessor any_of: ::Array[::String]
|
|
2837
|
+
SENSITIVE: []
|
|
2838
|
+
end
|
|
2839
|
+
|
|
2840
|
+
class MatchPrincipalEntry
|
|
2841
|
+
attr_accessor iam_principal: Types::IamPrincipal
|
|
2842
|
+
attr_accessor unknown: untyped
|
|
2843
|
+
SENSITIVE: []
|
|
2844
|
+
|
|
2845
|
+
class IamPrincipal < MatchPrincipalEntry
|
|
2846
|
+
end
|
|
2847
|
+
class Unknown < MatchPrincipalEntry
|
|
2848
|
+
end
|
|
2849
|
+
end
|
|
2850
|
+
|
|
2851
|
+
class MatchPrincipals
|
|
2852
|
+
attr_accessor any_of: ::Array[Types::MatchPrincipalEntry]
|
|
2853
|
+
SENSITIVE: []
|
|
2854
|
+
end
|
|
2855
|
+
|
|
2564
2856
|
class McpDescriptor
|
|
2565
2857
|
attr_accessor server: Types::ServerDefinition
|
|
2566
2858
|
attr_accessor tools: Types::ToolsDefinition
|
|
@@ -2576,8 +2868,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2576
2868
|
class McpServerTargetConfiguration
|
|
2577
2869
|
attr_accessor endpoint: ::String
|
|
2578
2870
|
attr_accessor mcp_tool_schema: Types::McpToolSchemaConfiguration
|
|
2579
|
-
attr_accessor resource_priority: ::Integer
|
|
2580
2871
|
attr_accessor listing_mode: ("DEFAULT" | "DYNAMIC")
|
|
2872
|
+
attr_accessor resource_priority: ::Integer
|
|
2581
2873
|
SENSITIVE: []
|
|
2582
2874
|
end
|
|
2583
2875
|
|
|
@@ -3176,6 +3468,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3176
3468
|
SENSITIVE: []
|
|
3177
3469
|
end
|
|
3178
3470
|
|
|
3471
|
+
class RouteToTargetAction
|
|
3472
|
+
attr_accessor static_route: Types::StaticRoute
|
|
3473
|
+
attr_accessor weighted_route: Types::WeightedRoute
|
|
3474
|
+
attr_accessor unknown: untyped
|
|
3475
|
+
SENSITIVE: []
|
|
3476
|
+
|
|
3477
|
+
class StaticRoute < RouteToTargetAction
|
|
3478
|
+
end
|
|
3479
|
+
class WeightedRoute < RouteToTargetAction
|
|
3480
|
+
end
|
|
3481
|
+
class Unknown < RouteToTargetAction
|
|
3482
|
+
end
|
|
3483
|
+
end
|
|
3484
|
+
|
|
3179
3485
|
class Rule
|
|
3180
3486
|
attr_accessor sampling_config: Types::SamplingConfig
|
|
3181
3487
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -3188,6 +3494,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3188
3494
|
SENSITIVE: []
|
|
3189
3495
|
end
|
|
3190
3496
|
|
|
3497
|
+
class RuntimeTargetConfiguration
|
|
3498
|
+
attr_accessor arn: ::String
|
|
3499
|
+
attr_accessor qualifier: ::String
|
|
3500
|
+
SENSITIVE: []
|
|
3501
|
+
end
|
|
3502
|
+
|
|
3191
3503
|
class S3Configuration
|
|
3192
3504
|
attr_accessor uri: ::String
|
|
3193
3505
|
attr_accessor bucket_owner_account_id: ::String
|
|
@@ -3385,6 +3697,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
3385
3697
|
SENSITIVE: []
|
|
3386
3698
|
end
|
|
3387
3699
|
|
|
3700
|
+
class StaticOverride
|
|
3701
|
+
attr_accessor bundle_arn: ::String
|
|
3702
|
+
attr_accessor bundle_version: ::String
|
|
3703
|
+
SENSITIVE: []
|
|
3704
|
+
end
|
|
3705
|
+
|
|
3706
|
+
class StaticRoute
|
|
3707
|
+
attr_accessor target_name: ::String
|
|
3708
|
+
SENSITIVE: [:target_name]
|
|
3709
|
+
end
|
|
3710
|
+
|
|
3388
3711
|
class StrategyConfiguration
|
|
3389
3712
|
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED" | "EPISODIC_OVERRIDE")
|
|
3390
3713
|
attr_accessor extraction: Types::ExtractionConfiguration
|
|
@@ -3466,6 +3789,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3466
3789
|
SENSITIVE: []
|
|
3467
3790
|
end
|
|
3468
3791
|
|
|
3792
|
+
class SystemManagedBlock
|
|
3793
|
+
attr_accessor managed_by: ::String
|
|
3794
|
+
SENSITIVE: []
|
|
3795
|
+
end
|
|
3796
|
+
|
|
3469
3797
|
class TagResourceRequest
|
|
3470
3798
|
attr_accessor resource_arn: ::String
|
|
3471
3799
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -3477,11 +3805,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3477
3805
|
|
|
3478
3806
|
class TargetConfiguration
|
|
3479
3807
|
attr_accessor mcp: Types::McpTargetConfiguration
|
|
3808
|
+
attr_accessor http: Types::HttpTargetConfiguration
|
|
3480
3809
|
attr_accessor unknown: untyped
|
|
3481
3810
|
SENSITIVE: []
|
|
3482
3811
|
|
|
3483
3812
|
class Mcp < TargetConfiguration
|
|
3484
3813
|
end
|
|
3814
|
+
class Http < TargetConfiguration
|
|
3815
|
+
end
|
|
3485
3816
|
class Unknown < TargetConfiguration
|
|
3486
3817
|
end
|
|
3487
3818
|
end
|
|
@@ -3497,6 +3828,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
3497
3828
|
SENSITIVE: [:name, :description]
|
|
3498
3829
|
end
|
|
3499
3830
|
|
|
3831
|
+
class TargetTrafficSplitEntry
|
|
3832
|
+
attr_accessor name: ::String
|
|
3833
|
+
attr_accessor weight: ::Integer
|
|
3834
|
+
attr_accessor target_name: ::String
|
|
3835
|
+
attr_accessor description: ::String
|
|
3836
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
3837
|
+
SENSITIVE: [:target_name]
|
|
3838
|
+
end
|
|
3839
|
+
|
|
3500
3840
|
class ThrottledException
|
|
3501
3841
|
attr_accessor message: ::String
|
|
3502
3842
|
SENSITIVE: []
|
|
@@ -3555,6 +3895,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
3555
3895
|
SENSITIVE: []
|
|
3556
3896
|
end
|
|
3557
3897
|
|
|
3898
|
+
class TrafficSplitEntry
|
|
3899
|
+
attr_accessor name: ::String
|
|
3900
|
+
attr_accessor weight: ::Integer
|
|
3901
|
+
attr_accessor configuration_bundle: Types::ConfigurationBundleReference
|
|
3902
|
+
attr_accessor description: ::String
|
|
3903
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
3904
|
+
SENSITIVE: []
|
|
3905
|
+
end
|
|
3906
|
+
|
|
3558
3907
|
class TriggerCondition
|
|
3559
3908
|
attr_accessor message_based_trigger: Types::MessageBasedTrigger
|
|
3560
3909
|
attr_accessor token_based_trigger: Types::TokenBasedTrigger
|
|
@@ -3669,12 +4018,34 @@ module Aws::BedrockAgentCoreControl
|
|
|
3669
4018
|
SENSITIVE: []
|
|
3670
4019
|
end
|
|
3671
4020
|
|
|
4021
|
+
class UpdateConfigurationBundleRequest
|
|
4022
|
+
attr_accessor client_token: ::String
|
|
4023
|
+
attr_accessor bundle_id: ::String
|
|
4024
|
+
attr_accessor bundle_name: ::String
|
|
4025
|
+
attr_accessor description: ::String
|
|
4026
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
4027
|
+
attr_accessor parent_version_ids: ::Array[::String]
|
|
4028
|
+
attr_accessor branch_name: ::String
|
|
4029
|
+
attr_accessor commit_message: ::String
|
|
4030
|
+
attr_accessor created_by: Types::VersionCreatedBySource
|
|
4031
|
+
SENSITIVE: [:description]
|
|
4032
|
+
end
|
|
4033
|
+
|
|
4034
|
+
class UpdateConfigurationBundleResponse
|
|
4035
|
+
attr_accessor bundle_arn: ::String
|
|
4036
|
+
attr_accessor bundle_id: ::String
|
|
4037
|
+
attr_accessor version_id: ::String
|
|
4038
|
+
attr_accessor updated_at: ::Time
|
|
4039
|
+
SENSITIVE: []
|
|
4040
|
+
end
|
|
4041
|
+
|
|
3672
4042
|
class UpdateEvaluatorRequest
|
|
3673
4043
|
attr_accessor client_token: ::String
|
|
3674
4044
|
attr_accessor evaluator_id: ::String
|
|
3675
4045
|
attr_accessor description: ::String
|
|
3676
4046
|
attr_accessor evaluator_config: Types::EvaluatorConfig
|
|
3677
4047
|
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
4048
|
+
attr_accessor kms_key_arn: ::String
|
|
3678
4049
|
SENSITIVE: [:description]
|
|
3679
4050
|
end
|
|
3680
4051
|
|
|
@@ -3693,7 +4064,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3693
4064
|
attr_accessor role_arn: ::String
|
|
3694
4065
|
attr_accessor protocol_type: ("MCP")
|
|
3695
4066
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
3696
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
4067
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
3697
4068
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
3698
4069
|
attr_accessor kms_key_arn: ::String
|
|
3699
4070
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -3715,7 +4086,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3715
4086
|
attr_accessor role_arn: ::String
|
|
3716
4087
|
attr_accessor protocol_type: ("MCP")
|
|
3717
4088
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
3718
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
4089
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
3719
4090
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
3720
4091
|
attr_accessor kms_key_arn: ::String
|
|
3721
4092
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -3725,6 +4096,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
3725
4096
|
SENSITIVE: [:name, :description]
|
|
3726
4097
|
end
|
|
3727
4098
|
|
|
4099
|
+
class UpdateGatewayRuleRequest
|
|
4100
|
+
attr_accessor gateway_identifier: ::String
|
|
4101
|
+
attr_accessor rule_id: ::String
|
|
4102
|
+
attr_accessor priority: ::Integer
|
|
4103
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
4104
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
4105
|
+
attr_accessor description: ::String
|
|
4106
|
+
SENSITIVE: []
|
|
4107
|
+
end
|
|
4108
|
+
|
|
4109
|
+
class UpdateGatewayRuleResponse
|
|
4110
|
+
attr_accessor rule_id: ::String
|
|
4111
|
+
attr_accessor gateway_arn: ::String
|
|
4112
|
+
attr_accessor priority: ::Integer
|
|
4113
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
4114
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
4115
|
+
attr_accessor description: ::String
|
|
4116
|
+
attr_accessor created_at: ::Time
|
|
4117
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
4118
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
4119
|
+
attr_accessor updated_at: ::Time
|
|
4120
|
+
SENSITIVE: []
|
|
4121
|
+
end
|
|
4122
|
+
|
|
3728
4123
|
class UpdateGatewayTargetRequest
|
|
3729
4124
|
attr_accessor gateway_identifier: ::String
|
|
3730
4125
|
attr_accessor target_id: ::String
|
|
@@ -3753,6 +4148,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3753
4148
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
3754
4149
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
3755
4150
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
4151
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
3756
4152
|
SENSITIVE: [:name, :description]
|
|
3757
4153
|
end
|
|
3758
4154
|
|
|
@@ -4122,12 +4518,43 @@ module Aws::BedrockAgentCoreControl
|
|
|
4122
4518
|
SENSITIVE: []
|
|
4123
4519
|
end
|
|
4124
4520
|
|
|
4521
|
+
class VersionCreatedBySource
|
|
4522
|
+
attr_accessor name: ::String
|
|
4523
|
+
attr_accessor arn: ::String
|
|
4524
|
+
SENSITIVE: []
|
|
4525
|
+
end
|
|
4526
|
+
|
|
4527
|
+
class VersionFilter
|
|
4528
|
+
attr_accessor branch_name: ::String
|
|
4529
|
+
attr_accessor created_by_name: ::String
|
|
4530
|
+
attr_accessor latest_per_branch: bool
|
|
4531
|
+
SENSITIVE: []
|
|
4532
|
+
end
|
|
4533
|
+
|
|
4534
|
+
class VersionLineageMetadata
|
|
4535
|
+
attr_accessor parent_version_ids: ::Array[::String]
|
|
4536
|
+
attr_accessor branch_name: ::String
|
|
4537
|
+
attr_accessor created_by: Types::VersionCreatedBySource
|
|
4538
|
+
attr_accessor commit_message: ::String
|
|
4539
|
+
SENSITIVE: []
|
|
4540
|
+
end
|
|
4541
|
+
|
|
4125
4542
|
class VpcConfig
|
|
4126
4543
|
attr_accessor security_groups: ::Array[::String]
|
|
4127
4544
|
attr_accessor subnets: ::Array[::String]
|
|
4128
4545
|
SENSITIVE: []
|
|
4129
4546
|
end
|
|
4130
4547
|
|
|
4548
|
+
class WeightedOverride
|
|
4549
|
+
attr_accessor traffic_split: ::Array[Types::TrafficSplitEntry]
|
|
4550
|
+
SENSITIVE: []
|
|
4551
|
+
end
|
|
4552
|
+
|
|
4553
|
+
class WeightedRoute
|
|
4554
|
+
attr_accessor traffic_split: ::Array[Types::TargetTrafficSplitEntry]
|
|
4555
|
+
SENSITIVE: []
|
|
4556
|
+
end
|
|
4557
|
+
|
|
4131
4558
|
class WorkloadIdentityDetails
|
|
4132
4559
|
attr_accessor workload_identity_arn: ::String
|
|
4133
4560
|
SENSITIVE: []
|