aws-sdk-bedrockagentcorecontrol 1.32.0 → 1.34.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +143 -9
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +83 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +288 -15
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +52 -0
- data/sig/types.rbs +82 -1
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -255,6 +255,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
255
255
|
end
|
|
256
256
|
end
|
|
257
257
|
|
|
258
|
+
class CodeBasedEvaluatorConfig
|
|
259
|
+
attr_accessor lambda_config: Types::LambdaEvaluatorConfig
|
|
260
|
+
attr_accessor unknown: untyped
|
|
261
|
+
SENSITIVE: []
|
|
262
|
+
|
|
263
|
+
class LambdaConfig < CodeBasedEvaluatorConfig
|
|
264
|
+
end
|
|
265
|
+
class Unknown < CodeBasedEvaluatorConfig
|
|
266
|
+
end
|
|
267
|
+
end
|
|
268
|
+
|
|
258
269
|
class CodeConfiguration
|
|
259
270
|
attr_accessor code: Types::Code
|
|
260
271
|
attr_accessor runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13" | "PYTHON_3_14")
|
|
@@ -507,6 +518,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
507
518
|
attr_accessor target_configuration: Types::TargetConfiguration
|
|
508
519
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
509
520
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
521
|
+
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
510
522
|
SENSITIVE: [:name, :description]
|
|
511
523
|
end
|
|
512
524
|
|
|
@@ -523,6 +535,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
523
535
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
524
536
|
attr_accessor last_synchronized_at: ::Time
|
|
525
537
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
538
|
+
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
539
|
+
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
526
540
|
SENSITIVE: [:name, :description]
|
|
527
541
|
end
|
|
528
542
|
|
|
@@ -648,6 +662,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
648
662
|
class CredentialProvider
|
|
649
663
|
attr_accessor oauth_credential_provider: Types::OAuthCredentialProvider
|
|
650
664
|
attr_accessor api_key_credential_provider: Types::ApiKeyCredentialProvider
|
|
665
|
+
attr_accessor iam_credential_provider: Types::IamCredentialProvider
|
|
651
666
|
attr_accessor unknown: untyped
|
|
652
667
|
SENSITIVE: []
|
|
653
668
|
|
|
@@ -655,6 +670,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
655
670
|
end
|
|
656
671
|
class ApiKeyCredentialProvider < CredentialProvider
|
|
657
672
|
end
|
|
673
|
+
class IamCredentialProvider < CredentialProvider
|
|
674
|
+
end
|
|
658
675
|
class Unknown < CredentialProvider
|
|
659
676
|
end
|
|
660
677
|
end
|
|
@@ -1117,11 +1134,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1117
1134
|
|
|
1118
1135
|
class EvaluatorConfig
|
|
1119
1136
|
attr_accessor llm_as_a_judge: Types::LlmAsAJudgeEvaluatorConfig
|
|
1137
|
+
attr_accessor code_based: Types::CodeBasedEvaluatorConfig
|
|
1120
1138
|
attr_accessor unknown: untyped
|
|
1121
1139
|
SENSITIVE: []
|
|
1122
1140
|
|
|
1123
1141
|
class LlmAsAJudge < EvaluatorConfig
|
|
1124
1142
|
end
|
|
1143
|
+
class CodeBased < EvaluatorConfig
|
|
1144
|
+
end
|
|
1125
1145
|
class Unknown < EvaluatorConfig
|
|
1126
1146
|
end
|
|
1127
1147
|
end
|
|
@@ -1153,7 +1173,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1153
1173
|
attr_accessor evaluator_id: ::String
|
|
1154
1174
|
attr_accessor evaluator_name: ::String
|
|
1155
1175
|
attr_accessor description: ::String
|
|
1156
|
-
attr_accessor evaluator_type: ("Builtin" | "Custom")
|
|
1176
|
+
attr_accessor evaluator_type: ("Builtin" | "Custom" | "CustomCode")
|
|
1157
1177
|
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
1158
1178
|
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
|
1159
1179
|
attr_accessor created_at: ::Time
|
|
@@ -1263,6 +1283,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1263
1283
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
1264
1284
|
attr_accessor last_synchronized_at: ::Time
|
|
1265
1285
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
1286
|
+
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1287
|
+
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
1266
1288
|
SENSITIVE: [:name, :description]
|
|
1267
1289
|
end
|
|
1268
1290
|
|
|
@@ -1459,6 +1481,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1459
1481
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
1460
1482
|
attr_accessor last_synchronized_at: ::Time
|
|
1461
1483
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
1484
|
+
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1485
|
+
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
1462
1486
|
SENSITIVE: [:name, :description]
|
|
1463
1487
|
end
|
|
1464
1488
|
|
|
@@ -1631,6 +1655,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1631
1655
|
SENSITIVE: []
|
|
1632
1656
|
end
|
|
1633
1657
|
|
|
1658
|
+
class IamCredentialProvider
|
|
1659
|
+
attr_accessor service: ::String
|
|
1660
|
+
attr_accessor region: ::String
|
|
1661
|
+
SENSITIVE: []
|
|
1662
|
+
end
|
|
1663
|
+
|
|
1634
1664
|
class IncludedOauth2ProviderConfigInput
|
|
1635
1665
|
attr_accessor client_id: ::String
|
|
1636
1666
|
attr_accessor client_secret: ::String
|
|
@@ -1699,6 +1729,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1699
1729
|
SENSITIVE: []
|
|
1700
1730
|
end
|
|
1701
1731
|
|
|
1732
|
+
class LambdaEvaluatorConfig
|
|
1733
|
+
attr_accessor lambda_arn: ::String
|
|
1734
|
+
attr_accessor lambda_timeout_in_seconds: ::Integer
|
|
1735
|
+
SENSITIVE: []
|
|
1736
|
+
end
|
|
1737
|
+
|
|
1702
1738
|
class LambdaInterceptorConfiguration
|
|
1703
1739
|
attr_accessor arn: ::String
|
|
1704
1740
|
SENSITIVE: []
|
|
@@ -1973,6 +2009,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
1973
2009
|
SENSITIVE: []
|
|
1974
2010
|
end
|
|
1975
2011
|
|
|
2012
|
+
class ManagedLatticeResource
|
|
2013
|
+
attr_accessor vpc_identifier: ::String
|
|
2014
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
2015
|
+
attr_accessor endpoint_ip_address_type: ("IPV4" | "IPV6")
|
|
2016
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
2017
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2018
|
+
attr_accessor routing_domain: ::String
|
|
2019
|
+
SENSITIVE: []
|
|
2020
|
+
end
|
|
2021
|
+
|
|
2022
|
+
class ManagedResourceDetails
|
|
2023
|
+
attr_accessor domain: ::String
|
|
2024
|
+
attr_accessor resource_gateway_arn: ::String
|
|
2025
|
+
attr_accessor resource_association_arn: ::String
|
|
2026
|
+
SENSITIVE: []
|
|
2027
|
+
end
|
|
2028
|
+
|
|
1976
2029
|
class McpLambdaTargetConfiguration
|
|
1977
2030
|
attr_accessor lambda_arn: ::String
|
|
1978
2031
|
attr_accessor tool_schema: Types::ToolSchema
|
|
@@ -2384,6 +2437,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
2384
2437
|
SENSITIVE: []
|
|
2385
2438
|
end
|
|
2386
2439
|
|
|
2440
|
+
class PrivateEndpoint
|
|
2441
|
+
attr_accessor self_managed_lattice_resource: Types::SelfManagedLatticeResource
|
|
2442
|
+
attr_accessor managed_lattice_resource: Types::ManagedLatticeResource
|
|
2443
|
+
attr_accessor unknown: untyped
|
|
2444
|
+
SENSITIVE: []
|
|
2445
|
+
|
|
2446
|
+
class SelfManagedLatticeResource < PrivateEndpoint
|
|
2447
|
+
end
|
|
2448
|
+
class ManagedLatticeResource < PrivateEndpoint
|
|
2449
|
+
end
|
|
2450
|
+
class Unknown < PrivateEndpoint
|
|
2451
|
+
end
|
|
2452
|
+
end
|
|
2453
|
+
|
|
2387
2454
|
class ProtocolConfiguration
|
|
2388
2455
|
attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
|
|
2389
2456
|
SENSITIVE: []
|
|
@@ -2552,6 +2619,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2552
2619
|
SENSITIVE: []
|
|
2553
2620
|
end
|
|
2554
2621
|
|
|
2622
|
+
class SelfManagedLatticeResource
|
|
2623
|
+
attr_accessor resource_configuration_identifier: ::String
|
|
2624
|
+
attr_accessor unknown: untyped
|
|
2625
|
+
SENSITIVE: []
|
|
2626
|
+
|
|
2627
|
+
class ResourceConfigurationIdentifier < SelfManagedLatticeResource
|
|
2628
|
+
end
|
|
2629
|
+
class Unknown < SelfManagedLatticeResource
|
|
2630
|
+
end
|
|
2631
|
+
end
|
|
2632
|
+
|
|
2555
2633
|
class SemanticConsolidationOverride
|
|
2556
2634
|
attr_accessor append_to_prompt: ::String
|
|
2557
2635
|
attr_accessor model_id: ::String
|
|
@@ -2976,6 +3054,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2976
3054
|
attr_accessor target_configuration: Types::TargetConfiguration
|
|
2977
3055
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
2978
3056
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
3057
|
+
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
2979
3058
|
SENSITIVE: [:name, :description]
|
|
2980
3059
|
end
|
|
2981
3060
|
|
|
@@ -2992,6 +3071,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2992
3071
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
2993
3072
|
attr_accessor last_synchronized_at: ::Time
|
|
2994
3073
|
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
3074
|
+
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
3075
|
+
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
2995
3076
|
SENSITIVE: [:name, :description]
|
|
2996
3077
|
end
|
|
2997
3078
|
|