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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d34c4c12ae2be24e2d8fa68db89e2b61817bcbc8ad20332af60ce71607cceefb
|
|
4
|
+
data.tar.gz: f506602fbd879c30b347df296a91552c1ba29b68eaff5cf7aa5ab7a376efb43c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d30576b8ff7e2c80afb2e670a31a8ebeb96eaa5e7c835b709b0f98a1eaba0b473edb0e9dacfa1c9cd8eb63c77cb9e9a7337d180ea1776a92c8136bd7dd281196
|
|
7
|
+
data.tar.gz: 0d038a4f9a720b6f3e6d39b16d8438713e69703326532373fe51860b1bd0974cbf71c4985040c3286fc922be5c4dee68d7ec634f20d3ca4d27a9411fc495a9c0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.34.0 (2026-04-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for VPC egress private endpoints for Amazon Bedrock AgentCore gateway targets, enabling private connectivity through managed VPC Lattice resources. Also adds IAM credential provider for gateway targets, enabling IAM-based authentication to target endpoints
|
|
8
|
+
|
|
9
|
+
1.33.0 (2026-03-27)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for custom code-based evaluators using customer-managed Lambda functions.
|
|
13
|
+
|
|
4
14
|
1.32.0 (2026-03-24)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.34.0
|
|
@@ -1012,9 +1012,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1012
1012
|
end
|
|
1013
1013
|
|
|
1014
1014
|
# Creates a custom evaluator for agent quality assessment. Custom
|
|
1015
|
-
# evaluators use LLM-as-a-Judge configurations with
|
|
1016
|
-
# prompts, rating scales, and model settings
|
|
1017
|
-
#
|
|
1015
|
+
# evaluators can use either LLM-as-a-Judge configurations with
|
|
1016
|
+
# user-defined prompts, rating scales, and model settings, or code-based
|
|
1017
|
+
# configurations with customer-managed Lambda functions to evaluate
|
|
1018
|
+
# agent performance at tool call, trace, or session levels.
|
|
1018
1019
|
#
|
|
1019
1020
|
# @option params [String] :client_token
|
|
1020
1021
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
@@ -1038,8 +1039,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1038
1039
|
# evaluation criteria.
|
|
1039
1040
|
#
|
|
1040
1041
|
# @option params [required, Types::EvaluatorConfig] :evaluator_config
|
|
1041
|
-
# The configuration for the evaluator
|
|
1042
|
-
# with instructions, rating scale, and model configuration
|
|
1042
|
+
# The configuration for the evaluator. Specify either LLM-as-a-Judge
|
|
1043
|
+
# settings with instructions, rating scale, and model configuration, or
|
|
1044
|
+
# code-based settings with a customer-managed Lambda function.
|
|
1043
1045
|
#
|
|
1044
1046
|
# @option params [required, String] :level
|
|
1045
1047
|
# The evaluation level that determines the scope of evaluation. Valid
|
|
@@ -1097,6 +1099,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1097
1099
|
# },
|
|
1098
1100
|
# },
|
|
1099
1101
|
# },
|
|
1102
|
+
# code_based: {
|
|
1103
|
+
# lambda_config: {
|
|
1104
|
+
# lambda_arn: "LambdaArn", # required
|
|
1105
|
+
# lambda_timeout_in_seconds: 1,
|
|
1106
|
+
# },
|
|
1107
|
+
# },
|
|
1100
1108
|
# },
|
|
1101
1109
|
# level: "TOOL_CALL", # required, accepts TOOL_CALL, TRACE, SESSION
|
|
1102
1110
|
# tags: {
|
|
@@ -1376,6 +1384,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1376
1384
|
# Optional configuration for HTTP header and query parameter propagation
|
|
1377
1385
|
# to and from the gateway target.
|
|
1378
1386
|
#
|
|
1387
|
+
# @option params [Types::PrivateEndpoint] :private_endpoint
|
|
1388
|
+
# The private endpoint configuration for the gateway target. Use this to
|
|
1389
|
+
# connect the gateway to private resources in your VPC.
|
|
1390
|
+
#
|
|
1379
1391
|
# @return [Types::CreateGatewayTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1380
1392
|
#
|
|
1381
1393
|
# * {Types::CreateGatewayTargetResponse#gateway_arn #gateway_arn} => String
|
|
@@ -1390,6 +1402,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1390
1402
|
# * {Types::CreateGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
|
|
1391
1403
|
# * {Types::CreateGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
|
|
1392
1404
|
# * {Types::CreateGatewayTargetResponse#metadata_configuration #metadata_configuration} => Types::MetadataConfiguration
|
|
1405
|
+
# * {Types::CreateGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
|
|
1406
|
+
# * {Types::CreateGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array<Types::ManagedResourceDetails>
|
|
1393
1407
|
#
|
|
1394
1408
|
# @example Request syntax with placeholder values
|
|
1395
1409
|
#
|
|
@@ -1499,6 +1513,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1499
1513
|
# credential_prefix: "ApiKeyCredentialPrefix",
|
|
1500
1514
|
# credential_location: "HEADER", # accepts HEADER, QUERY_PARAMETER
|
|
1501
1515
|
# },
|
|
1516
|
+
# iam_credential_provider: {
|
|
1517
|
+
# service: "IamCredentialProviderServiceString", # required
|
|
1518
|
+
# region: "IamCredentialProviderRegionString",
|
|
1519
|
+
# },
|
|
1502
1520
|
# },
|
|
1503
1521
|
# },
|
|
1504
1522
|
# ],
|
|
@@ -1507,6 +1525,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1507
1525
|
# allowed_query_parameters: ["HttpQueryParameterName"],
|
|
1508
1526
|
# allowed_response_headers: ["HttpHeaderName"],
|
|
1509
1527
|
# },
|
|
1528
|
+
# private_endpoint: {
|
|
1529
|
+
# self_managed_lattice_resource: {
|
|
1530
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
1531
|
+
# },
|
|
1532
|
+
# managed_lattice_resource: {
|
|
1533
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
1534
|
+
# subnet_ids: ["SubnetId"], # required
|
|
1535
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
1536
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
1537
|
+
# tags: {
|
|
1538
|
+
# "TagKey" => "TagValue",
|
|
1539
|
+
# },
|
|
1540
|
+
# routing_domain: "RoutingDomain",
|
|
1541
|
+
# },
|
|
1542
|
+
# },
|
|
1510
1543
|
# })
|
|
1511
1544
|
#
|
|
1512
1545
|
# @example Response structure
|
|
@@ -1571,6 +1604,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1571
1604
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
1572
1605
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
1573
1606
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
1607
|
+
# resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
1608
|
+
# resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
1574
1609
|
# resp.last_synchronized_at #=> Time
|
|
1575
1610
|
# resp.metadata_configuration.allowed_request_headers #=> Array
|
|
1576
1611
|
# resp.metadata_configuration.allowed_request_headers[0] #=> String
|
|
@@ -1578,6 +1613,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1578
1613
|
# resp.metadata_configuration.allowed_query_parameters[0] #=> String
|
|
1579
1614
|
# resp.metadata_configuration.allowed_response_headers #=> Array
|
|
1580
1615
|
# resp.metadata_configuration.allowed_response_headers[0] #=> String
|
|
1616
|
+
# resp.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
1617
|
+
# resp.private_endpoint.managed_lattice_resource.vpc_identifier #=> String
|
|
1618
|
+
# resp.private_endpoint.managed_lattice_resource.subnet_ids #=> Array
|
|
1619
|
+
# resp.private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
|
|
1620
|
+
# resp.private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
1621
|
+
# resp.private_endpoint.managed_lattice_resource.security_group_ids #=> Array
|
|
1622
|
+
# resp.private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
|
|
1623
|
+
# resp.private_endpoint.managed_lattice_resource.tags #=> Hash
|
|
1624
|
+
# resp.private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
|
|
1625
|
+
# resp.private_endpoint.managed_lattice_resource.routing_domain #=> String
|
|
1626
|
+
# resp.private_endpoint_managed_resources #=> Array
|
|
1627
|
+
# resp.private_endpoint_managed_resources[0].domain #=> String
|
|
1628
|
+
# resp.private_endpoint_managed_resources[0].resource_gateway_arn #=> String
|
|
1629
|
+
# resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
|
|
1581
1630
|
#
|
|
1582
1631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTarget AWS API Documentation
|
|
1583
1632
|
#
|
|
@@ -3397,6 +3446,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3397
3446
|
# resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.top_p #=> Float
|
|
3398
3447
|
# resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences #=> Array
|
|
3399
3448
|
# resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences[0] #=> String
|
|
3449
|
+
# resp.evaluator_config.code_based.lambda_config.lambda_arn #=> String
|
|
3450
|
+
# resp.evaluator_config.code_based.lambda_config.lambda_timeout_in_seconds #=> Integer
|
|
3400
3451
|
# resp.level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
|
|
3401
3452
|
# resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING"
|
|
3402
3453
|
# resp.created_at #=> Time
|
|
@@ -3520,6 +3571,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3520
3571
|
# * {Types::GetGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
|
|
3521
3572
|
# * {Types::GetGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
|
|
3522
3573
|
# * {Types::GetGatewayTargetResponse#metadata_configuration #metadata_configuration} => Types::MetadataConfiguration
|
|
3574
|
+
# * {Types::GetGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
|
|
3575
|
+
# * {Types::GetGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array<Types::ManagedResourceDetails>
|
|
3523
3576
|
#
|
|
3524
3577
|
# @example Request syntax with placeholder values
|
|
3525
3578
|
#
|
|
@@ -3590,6 +3643,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3590
3643
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
3591
3644
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
3592
3645
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
3646
|
+
# resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
3647
|
+
# resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
3593
3648
|
# resp.last_synchronized_at #=> Time
|
|
3594
3649
|
# resp.metadata_configuration.allowed_request_headers #=> Array
|
|
3595
3650
|
# resp.metadata_configuration.allowed_request_headers[0] #=> String
|
|
@@ -3597,6 +3652,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3597
3652
|
# resp.metadata_configuration.allowed_query_parameters[0] #=> String
|
|
3598
3653
|
# resp.metadata_configuration.allowed_response_headers #=> Array
|
|
3599
3654
|
# resp.metadata_configuration.allowed_response_headers[0] #=> String
|
|
3655
|
+
# resp.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
3656
|
+
# resp.private_endpoint.managed_lattice_resource.vpc_identifier #=> String
|
|
3657
|
+
# resp.private_endpoint.managed_lattice_resource.subnet_ids #=> Array
|
|
3658
|
+
# resp.private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
|
|
3659
|
+
# resp.private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
3660
|
+
# resp.private_endpoint.managed_lattice_resource.security_group_ids #=> Array
|
|
3661
|
+
# resp.private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
|
|
3662
|
+
# resp.private_endpoint.managed_lattice_resource.tags #=> Hash
|
|
3663
|
+
# resp.private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
|
|
3664
|
+
# resp.private_endpoint.managed_lattice_resource.routing_domain #=> String
|
|
3665
|
+
# resp.private_endpoint_managed_resources #=> Array
|
|
3666
|
+
# resp.private_endpoint_managed_resources[0].domain #=> String
|
|
3667
|
+
# resp.private_endpoint_managed_resources[0].resource_gateway_arn #=> String
|
|
3668
|
+
# resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
|
|
3600
3669
|
#
|
|
3601
3670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTarget AWS API Documentation
|
|
3602
3671
|
#
|
|
@@ -4542,7 +4611,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4542
4611
|
# resp.evaluators[0].evaluator_id #=> String
|
|
4543
4612
|
# resp.evaluators[0].evaluator_name #=> String
|
|
4544
4613
|
# resp.evaluators[0].description #=> String
|
|
4545
|
-
# resp.evaluators[0].evaluator_type #=> String, one of "Builtin", "Custom"
|
|
4614
|
+
# resp.evaluators[0].evaluator_type #=> String, one of "Builtin", "Custom", "CustomCode"
|
|
4546
4615
|
# resp.evaluators[0].level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
|
|
4547
4616
|
# resp.evaluators[0].status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING"
|
|
4548
4617
|
# resp.evaluators[0].created_at #=> Time
|
|
@@ -5386,6 +5455,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5386
5455
|
# resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
5387
5456
|
# resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
5388
5457
|
# resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
5458
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
5459
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
5389
5460
|
# resp.targets[0].last_synchronized_at #=> Time
|
|
5390
5461
|
# resp.targets[0].metadata_configuration.allowed_request_headers #=> Array
|
|
5391
5462
|
# resp.targets[0].metadata_configuration.allowed_request_headers[0] #=> String
|
|
@@ -5393,6 +5464,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
5393
5464
|
# resp.targets[0].metadata_configuration.allowed_query_parameters[0] #=> String
|
|
5394
5465
|
# resp.targets[0].metadata_configuration.allowed_response_headers #=> Array
|
|
5395
5466
|
# resp.targets[0].metadata_configuration.allowed_response_headers[0] #=> String
|
|
5467
|
+
# resp.targets[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
5468
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.vpc_identifier #=> String
|
|
5469
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.subnet_ids #=> Array
|
|
5470
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
|
|
5471
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
5472
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.security_group_ids #=> Array
|
|
5473
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
|
|
5474
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.tags #=> Hash
|
|
5475
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
|
|
5476
|
+
# resp.targets[0].private_endpoint.managed_lattice_resource.routing_domain #=> String
|
|
5477
|
+
# resp.targets[0].private_endpoint_managed_resources #=> Array
|
|
5478
|
+
# resp.targets[0].private_endpoint_managed_resources[0].domain #=> String
|
|
5479
|
+
# resp.targets[0].private_endpoint_managed_resources[0].resource_gateway_arn #=> String
|
|
5480
|
+
# resp.targets[0].private_endpoint_managed_resources[0].resource_association_arn #=> String
|
|
5396
5481
|
#
|
|
5397
5482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargets AWS API Documentation
|
|
5398
5483
|
#
|
|
@@ -5753,8 +5838,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5753
5838
|
# The updated description of the evaluator.
|
|
5754
5839
|
#
|
|
5755
5840
|
# @option params [Types::EvaluatorConfig] :evaluator_config
|
|
5756
|
-
# The updated configuration for the evaluator
|
|
5757
|
-
# settings with instructions, rating scale, and model
|
|
5841
|
+
# The updated configuration for the evaluator. Specify either
|
|
5842
|
+
# LLM-as-a-Judge settings with instructions, rating scale, and model
|
|
5843
|
+
# configuration, or code-based settings with a customer-managed Lambda
|
|
5844
|
+
# function.
|
|
5758
5845
|
#
|
|
5759
5846
|
# @option params [String] :level
|
|
5760
5847
|
# The updated evaluation level (`TOOL_CALL`, `TRACE`, or `SESSION`) that
|
|
@@ -5805,6 +5892,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
5805
5892
|
# },
|
|
5806
5893
|
# },
|
|
5807
5894
|
# },
|
|
5895
|
+
# code_based: {
|
|
5896
|
+
# lambda_config: {
|
|
5897
|
+
# lambda_arn: "LambdaArn", # required
|
|
5898
|
+
# lambda_timeout_in_seconds: 1,
|
|
5899
|
+
# },
|
|
5900
|
+
# },
|
|
5808
5901
|
# },
|
|
5809
5902
|
# level: "TOOL_CALL", # accepts TOOL_CALL, TRACE, SESSION
|
|
5810
5903
|
# })
|
|
@@ -6034,6 +6127,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
6034
6127
|
# Configuration for HTTP header and query parameter propagation to the
|
|
6035
6128
|
# gateway target.
|
|
6036
6129
|
#
|
|
6130
|
+
# @option params [Types::PrivateEndpoint] :private_endpoint
|
|
6131
|
+
# The private endpoint configuration for the gateway target. Use this to
|
|
6132
|
+
# connect the gateway to private resources in your VPC.
|
|
6133
|
+
#
|
|
6037
6134
|
# @return [Types::UpdateGatewayTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6038
6135
|
#
|
|
6039
6136
|
# * {Types::UpdateGatewayTargetResponse#gateway_arn #gateway_arn} => String
|
|
@@ -6048,6 +6145,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6048
6145
|
# * {Types::UpdateGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
|
|
6049
6146
|
# * {Types::UpdateGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
|
|
6050
6147
|
# * {Types::UpdateGatewayTargetResponse#metadata_configuration #metadata_configuration} => Types::MetadataConfiguration
|
|
6148
|
+
# * {Types::UpdateGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
|
|
6149
|
+
# * {Types::UpdateGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array<Types::ManagedResourceDetails>
|
|
6051
6150
|
#
|
|
6052
6151
|
# @example Request syntax with placeholder values
|
|
6053
6152
|
#
|
|
@@ -6157,6 +6256,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
6157
6256
|
# credential_prefix: "ApiKeyCredentialPrefix",
|
|
6158
6257
|
# credential_location: "HEADER", # accepts HEADER, QUERY_PARAMETER
|
|
6159
6258
|
# },
|
|
6259
|
+
# iam_credential_provider: {
|
|
6260
|
+
# service: "IamCredentialProviderServiceString", # required
|
|
6261
|
+
# region: "IamCredentialProviderRegionString",
|
|
6262
|
+
# },
|
|
6160
6263
|
# },
|
|
6161
6264
|
# },
|
|
6162
6265
|
# ],
|
|
@@ -6165,6 +6268,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
6165
6268
|
# allowed_query_parameters: ["HttpQueryParameterName"],
|
|
6166
6269
|
# allowed_response_headers: ["HttpHeaderName"],
|
|
6167
6270
|
# },
|
|
6271
|
+
# private_endpoint: {
|
|
6272
|
+
# self_managed_lattice_resource: {
|
|
6273
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
6274
|
+
# },
|
|
6275
|
+
# managed_lattice_resource: {
|
|
6276
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
6277
|
+
# subnet_ids: ["SubnetId"], # required
|
|
6278
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
6279
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
6280
|
+
# tags: {
|
|
6281
|
+
# "TagKey" => "TagValue",
|
|
6282
|
+
# },
|
|
6283
|
+
# routing_domain: "RoutingDomain",
|
|
6284
|
+
# },
|
|
6285
|
+
# },
|
|
6168
6286
|
# })
|
|
6169
6287
|
#
|
|
6170
6288
|
# @example Response structure
|
|
@@ -6229,6 +6347,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6229
6347
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
6230
6348
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
6231
6349
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
6350
|
+
# resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
|
|
6351
|
+
# resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
|
|
6232
6352
|
# resp.last_synchronized_at #=> Time
|
|
6233
6353
|
# resp.metadata_configuration.allowed_request_headers #=> Array
|
|
6234
6354
|
# resp.metadata_configuration.allowed_request_headers[0] #=> String
|
|
@@ -6236,6 +6356,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
6236
6356
|
# resp.metadata_configuration.allowed_query_parameters[0] #=> String
|
|
6237
6357
|
# resp.metadata_configuration.allowed_response_headers #=> Array
|
|
6238
6358
|
# resp.metadata_configuration.allowed_response_headers[0] #=> String
|
|
6359
|
+
# resp.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
6360
|
+
# resp.private_endpoint.managed_lattice_resource.vpc_identifier #=> String
|
|
6361
|
+
# resp.private_endpoint.managed_lattice_resource.subnet_ids #=> Array
|
|
6362
|
+
# resp.private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
|
|
6363
|
+
# resp.private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
6364
|
+
# resp.private_endpoint.managed_lattice_resource.security_group_ids #=> Array
|
|
6365
|
+
# resp.private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
|
|
6366
|
+
# resp.private_endpoint.managed_lattice_resource.tags #=> Hash
|
|
6367
|
+
# resp.private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
|
|
6368
|
+
# resp.private_endpoint.managed_lattice_resource.routing_domain #=> String
|
|
6369
|
+
# resp.private_endpoint_managed_resources #=> Array
|
|
6370
|
+
# resp.private_endpoint_managed_resources[0].domain #=> String
|
|
6371
|
+
# resp.private_endpoint_managed_resources[0].resource_gateway_arn #=> String
|
|
6372
|
+
# resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
|
|
6239
6373
|
#
|
|
6240
6374
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTarget AWS API Documentation
|
|
6241
6375
|
#
|
|
@@ -7067,7 +7201,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7067
7201
|
tracer: tracer
|
|
7068
7202
|
)
|
|
7069
7203
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
7070
|
-
context[:gem_version] = '1.
|
|
7204
|
+
context[:gem_version] = '1.34.0'
|
|
7071
7205
|
Seahorse::Client::Request.new(handlers, context)
|
|
7072
7206
|
end
|
|
7073
7207
|
|
|
@@ -103,6 +103,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
103
103
|
CloudWatchLogsInputConfigServiceNamesList = Shapes::ListShape.new(name: 'CloudWatchLogsInputConfigServiceNamesList')
|
|
104
104
|
CloudWatchOutputConfig = Shapes::StructureShape.new(name: 'CloudWatchOutputConfig')
|
|
105
105
|
Code = Shapes::UnionShape.new(name: 'Code')
|
|
106
|
+
CodeBasedEvaluatorConfig = Shapes::UnionShape.new(name: 'CodeBasedEvaluatorConfig')
|
|
106
107
|
CodeConfiguration = Shapes::StructureShape.new(name: 'CodeConfiguration')
|
|
107
108
|
CodeConfigurationEntryPointList = Shapes::ListShape.new(name: 'CodeConfigurationEntryPointList')
|
|
108
109
|
CodeInterpreterArn = Shapes::StringShape.new(name: 'CodeInterpreterArn')
|
|
@@ -215,8 +216,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
215
216
|
Description = Shapes::StringShape.new(name: 'Description')
|
|
216
217
|
DiscoveryUrl = Shapes::StringShape.new(name: 'DiscoveryUrl')
|
|
217
218
|
DiscoveryUrlType = Shapes::StringShape.new(name: 'DiscoveryUrlType')
|
|
219
|
+
DomainName = Shapes::StringShape.new(name: 'DomainName')
|
|
218
220
|
Double = Shapes::FloatShape.new(name: 'Double')
|
|
219
221
|
EncryptionFailure = Shapes::StructureShape.new(name: 'EncryptionFailure')
|
|
222
|
+
EndpointIpAddressType = Shapes::StringShape.new(name: 'EndpointIpAddressType')
|
|
220
223
|
EndpointName = Shapes::StringShape.new(name: 'EndpointName')
|
|
221
224
|
EnvironmentVariableKey = Shapes::StringShape.new(name: 'EnvironmentVariableKey')
|
|
222
225
|
EnvironmentVariableValue = Shapes::StringShape.new(name: 'EnvironmentVariableValue')
|
|
@@ -325,6 +328,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
325
328
|
HeaderName = Shapes::StringShape.new(name: 'HeaderName')
|
|
326
329
|
HttpHeaderName = Shapes::StringShape.new(name: 'HttpHeaderName')
|
|
327
330
|
HttpQueryParameterName = Shapes::StringShape.new(name: 'HttpQueryParameterName')
|
|
331
|
+
IamCredentialProvider = Shapes::StructureShape.new(name: 'IamCredentialProvider')
|
|
332
|
+
IamCredentialProviderRegionString = Shapes::StringShape.new(name: 'IamCredentialProviderRegionString')
|
|
333
|
+
IamCredentialProviderServiceString = Shapes::StringShape.new(name: 'IamCredentialProviderServiceString')
|
|
328
334
|
InboundTokenClaimNameType = Shapes::StringShape.new(name: 'InboundTokenClaimNameType')
|
|
329
335
|
InboundTokenClaimValueType = Shapes::StringShape.new(name: 'InboundTokenClaimValueType')
|
|
330
336
|
IncludedOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'IncludedOauth2ProviderConfigInput')
|
|
@@ -348,6 +354,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
348
354
|
KinesisResourceContentConfigurationsList = Shapes::ListShape.new(name: 'KinesisResourceContentConfigurationsList')
|
|
349
355
|
KmsConfiguration = Shapes::StructureShape.new(name: 'KmsConfiguration')
|
|
350
356
|
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
|
357
|
+
LambdaArn = Shapes::StringShape.new(name: 'LambdaArn')
|
|
358
|
+
LambdaEvaluatorConfig = Shapes::StructureShape.new(name: 'LambdaEvaluatorConfig')
|
|
359
|
+
LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger = Shapes::IntegerShape.new(name: 'LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger')
|
|
351
360
|
LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
|
|
352
361
|
LambdaInterceptorConfiguration = Shapes::StructureShape.new(name: 'LambdaInterceptorConfiguration')
|
|
353
362
|
LifecycleConfiguration = Shapes::StructureShape.new(name: 'LifecycleConfiguration')
|
|
@@ -401,6 +410,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
401
410
|
LlmAsAJudgeEvaluatorConfig = Shapes::StructureShape.new(name: 'LlmAsAJudgeEvaluatorConfig')
|
|
402
411
|
LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
|
|
403
412
|
MCPGatewayConfiguration = Shapes::StructureShape.new(name: 'MCPGatewayConfiguration')
|
|
413
|
+
ManagedLatticeResource = Shapes::StructureShape.new(name: 'ManagedLatticeResource')
|
|
414
|
+
ManagedResourceDetails = Shapes::StructureShape.new(name: 'ManagedResourceDetails')
|
|
404
415
|
MatchValueString = Shapes::StringShape.new(name: 'MatchValueString')
|
|
405
416
|
MatchValueStringList = Shapes::ListShape.new(name: 'MatchValueStringList')
|
|
406
417
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
@@ -502,6 +513,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
502
513
|
PolicyStatus = Shapes::StringShape.new(name: 'PolicyStatus')
|
|
503
514
|
PolicyStatusReasons = Shapes::ListShape.new(name: 'PolicyStatusReasons')
|
|
504
515
|
PolicyValidationMode = Shapes::StringShape.new(name: 'PolicyValidationMode')
|
|
516
|
+
PrivateEndpoint = Shapes::UnionShape.new(name: 'PrivateEndpoint')
|
|
517
|
+
PrivateEndpointManagedResources = Shapes::ListShape.new(name: 'PrivateEndpointManagedResources')
|
|
505
518
|
Prompt = Shapes::StringShape.new(name: 'Prompt')
|
|
506
519
|
ProtocolConfiguration = Shapes::StructureShape.new(name: 'ProtocolConfiguration')
|
|
507
520
|
PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
|
|
@@ -513,6 +526,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
513
526
|
RequestHeaderConfiguration = Shapes::UnionShape.new(name: 'RequestHeaderConfiguration')
|
|
514
527
|
RequiredProperties = Shapes::ListShape.new(name: 'RequiredProperties')
|
|
515
528
|
Resource = Shapes::UnionShape.new(name: 'Resource')
|
|
529
|
+
ResourceAssociationArn = Shapes::StringShape.new(name: 'ResourceAssociationArn')
|
|
530
|
+
ResourceConfigurationIdentifier = Shapes::StringShape.new(name: 'ResourceConfigurationIdentifier')
|
|
531
|
+
ResourceGatewayArn = Shapes::StringShape.new(name: 'ResourceGatewayArn')
|
|
516
532
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
517
533
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
|
518
534
|
ResourceLocation = Shapes::UnionShape.new(name: 'ResourceLocation')
|
|
@@ -526,6 +542,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
526
542
|
RestApiMethod = Shapes::StringShape.new(name: 'RestApiMethod')
|
|
527
543
|
RestApiMethods = Shapes::ListShape.new(name: 'RestApiMethods')
|
|
528
544
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
545
|
+
RoutingDomain = Shapes::StringShape.new(name: 'RoutingDomain')
|
|
529
546
|
Rule = Shapes::StructureShape.new(name: 'Rule')
|
|
530
547
|
RuntimeContainerUri = Shapes::StringShape.new(name: 'RuntimeContainerUri')
|
|
531
548
|
RuntimeMetadataConfiguration = Shapes::StructureShape.new(name: 'RuntimeMetadataConfiguration')
|
|
@@ -548,10 +565,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
548
565
|
SecretArn = Shapes::StringShape.new(name: 'SecretArn')
|
|
549
566
|
SecretsManagerLocation = Shapes::StructureShape.new(name: 'SecretsManagerLocation')
|
|
550
567
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
568
|
+
SecurityGroupIdentifier = Shapes::StringShape.new(name: 'SecurityGroupIdentifier')
|
|
569
|
+
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
551
570
|
SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
|
|
552
571
|
SelfManagedConfiguration = Shapes::StructureShape.new(name: 'SelfManagedConfiguration')
|
|
553
572
|
SelfManagedConfigurationInput = Shapes::StructureShape.new(name: 'SelfManagedConfigurationInput')
|
|
554
573
|
SelfManagedConfigurationInputHistoricalContextWindowSizeInteger = Shapes::IntegerShape.new(name: 'SelfManagedConfigurationInputHistoricalContextWindowSizeInteger')
|
|
574
|
+
SelfManagedLatticeResource = Shapes::UnionShape.new(name: 'SelfManagedLatticeResource')
|
|
555
575
|
SemanticConsolidationOverride = Shapes::StructureShape.new(name: 'SemanticConsolidationOverride')
|
|
556
576
|
SemanticExtractionOverride = Shapes::StructureShape.new(name: 'SemanticExtractionOverride')
|
|
557
577
|
SemanticMemoryStrategyInput = Shapes::StructureShape.new(name: 'SemanticMemoryStrategyInput')
|
|
@@ -580,6 +600,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
580
600
|
StreamDeliveryResourcesList = Shapes::ListShape.new(name: 'StreamDeliveryResourcesList')
|
|
581
601
|
String = Shapes::StringShape.new(name: 'String')
|
|
582
602
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
603
|
+
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
|
583
604
|
Subnets = Shapes::ListShape.new(name: 'Subnets')
|
|
584
605
|
SummaryConsolidationOverride = Shapes::StructureShape.new(name: 'SummaryConsolidationOverride')
|
|
585
606
|
SummaryMemoryStrategyInput = Shapes::StructureShape.new(name: 'SummaryMemoryStrategyInput')
|
|
@@ -667,6 +688,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
667
688
|
ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
|
|
668
689
|
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
|
669
690
|
VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
|
|
691
|
+
VpcIdentifier = Shapes::StringShape.new(name: 'VpcIdentifier')
|
|
670
692
|
WorkloadIdentityArn = Shapes::StringShape.new(name: 'WorkloadIdentityArn')
|
|
671
693
|
WorkloadIdentityArnType = Shapes::StringShape.new(name: 'WorkloadIdentityArnType')
|
|
672
694
|
WorkloadIdentityDetails = Shapes::StructureShape.new(name: 'WorkloadIdentityDetails')
|
|
@@ -877,6 +899,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
877
899
|
Code.add_member_subclass(:unknown, Types::Code::Unknown)
|
|
878
900
|
Code.struct_class = Types::Code
|
|
879
901
|
|
|
902
|
+
CodeBasedEvaluatorConfig.add_member(:lambda_config, Shapes::ShapeRef.new(shape: LambdaEvaluatorConfig, location_name: "lambdaConfig"))
|
|
903
|
+
CodeBasedEvaluatorConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
904
|
+
CodeBasedEvaluatorConfig.add_member_subclass(:lambda_config, Types::CodeBasedEvaluatorConfig::LambdaConfig)
|
|
905
|
+
CodeBasedEvaluatorConfig.add_member_subclass(:unknown, Types::CodeBasedEvaluatorConfig::Unknown)
|
|
906
|
+
CodeBasedEvaluatorConfig.struct_class = Types::CodeBasedEvaluatorConfig
|
|
907
|
+
|
|
880
908
|
CodeConfiguration.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
|
|
881
909
|
CodeConfiguration.add_member(:runtime, Shapes::ShapeRef.new(shape: AgentManagedRuntimeType, required: true, location_name: "runtime"))
|
|
882
910
|
CodeConfiguration.add_member(:entry_point, Shapes::ShapeRef.new(shape: CodeConfigurationEntryPointList, required: true, location_name: "entryPoint"))
|
|
@@ -1076,6 +1104,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1076
1104
|
CreateGatewayTargetRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: TargetConfiguration, required: true, location_name: "targetConfiguration"))
|
|
1077
1105
|
CreateGatewayTargetRequest.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, location_name: "credentialProviderConfigurations"))
|
|
1078
1106
|
CreateGatewayTargetRequest.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
|
|
1107
|
+
CreateGatewayTargetRequest.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
1079
1108
|
CreateGatewayTargetRequest.struct_class = Types::CreateGatewayTargetRequest
|
|
1080
1109
|
|
|
1081
1110
|
CreateGatewayTargetResponse.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayArn, required: true, location_name: "gatewayArn"))
|
|
@@ -1090,6 +1119,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1090
1119
|
CreateGatewayTargetResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
|
|
1091
1120
|
CreateGatewayTargetResponse.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
|
|
1092
1121
|
CreateGatewayTargetResponse.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
|
|
1122
|
+
CreateGatewayTargetResponse.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
1123
|
+
CreateGatewayTargetResponse.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
|
|
1093
1124
|
CreateGatewayTargetResponse.struct_class = Types::CreateGatewayTargetResponse
|
|
1094
1125
|
|
|
1095
1126
|
CreateMemoryInput.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateMemoryInputClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
@@ -1189,9 +1220,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1189
1220
|
|
|
1190
1221
|
CredentialProvider.add_member(:oauth_credential_provider, Shapes::ShapeRef.new(shape: OAuthCredentialProvider, location_name: "oauthCredentialProvider"))
|
|
1191
1222
|
CredentialProvider.add_member(:api_key_credential_provider, Shapes::ShapeRef.new(shape: ApiKeyCredentialProvider, location_name: "apiKeyCredentialProvider"))
|
|
1223
|
+
CredentialProvider.add_member(:iam_credential_provider, Shapes::ShapeRef.new(shape: IamCredentialProvider, location_name: "iamCredentialProvider"))
|
|
1192
1224
|
CredentialProvider.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1193
1225
|
CredentialProvider.add_member_subclass(:oauth_credential_provider, Types::CredentialProvider::OauthCredentialProvider)
|
|
1194
1226
|
CredentialProvider.add_member_subclass(:api_key_credential_provider, Types::CredentialProvider::ApiKeyCredentialProvider)
|
|
1227
|
+
CredentialProvider.add_member_subclass(:iam_credential_provider, Types::CredentialProvider::IamCredentialProvider)
|
|
1195
1228
|
CredentialProvider.add_member_subclass(:unknown, Types::CredentialProvider::Unknown)
|
|
1196
1229
|
CredentialProvider.struct_class = Types::CredentialProvider
|
|
1197
1230
|
|
|
@@ -1509,8 +1542,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1509
1542
|
EpisodicReflectionOverride.struct_class = Types::EpisodicReflectionOverride
|
|
1510
1543
|
|
|
1511
1544
|
EvaluatorConfig.add_member(:llm_as_a_judge, Shapes::ShapeRef.new(shape: LlmAsAJudgeEvaluatorConfig, location_name: "llmAsAJudge"))
|
|
1545
|
+
EvaluatorConfig.add_member(:code_based, Shapes::ShapeRef.new(shape: CodeBasedEvaluatorConfig, location_name: "codeBased"))
|
|
1512
1546
|
EvaluatorConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1513
1547
|
EvaluatorConfig.add_member_subclass(:llm_as_a_judge, Types::EvaluatorConfig::LlmAsAJudge)
|
|
1548
|
+
EvaluatorConfig.add_member_subclass(:code_based, Types::EvaluatorConfig::CodeBased)
|
|
1514
1549
|
EvaluatorConfig.add_member_subclass(:unknown, Types::EvaluatorConfig::Unknown)
|
|
1515
1550
|
EvaluatorConfig.struct_class = Types::EvaluatorConfig
|
|
1516
1551
|
|
|
@@ -1622,6 +1657,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1622
1657
|
GatewayTarget.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
|
|
1623
1658
|
GatewayTarget.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
|
|
1624
1659
|
GatewayTarget.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
|
|
1660
|
+
GatewayTarget.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
1661
|
+
GatewayTarget.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
|
|
1625
1662
|
GatewayTarget.struct_class = Types::GatewayTarget
|
|
1626
1663
|
|
|
1627
1664
|
GatewayTargetList.member = Shapes::ShapeRef.new(shape: GatewayTarget)
|
|
@@ -1784,6 +1821,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1784
1821
|
GetGatewayTargetResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
|
|
1785
1822
|
GetGatewayTargetResponse.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
|
|
1786
1823
|
GetGatewayTargetResponse.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
|
|
1824
|
+
GetGatewayTargetResponse.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
1825
|
+
GetGatewayTargetResponse.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
|
|
1787
1826
|
GetGatewayTargetResponse.struct_class = Types::GetGatewayTargetResponse
|
|
1788
1827
|
|
|
1789
1828
|
GetMemoryInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
|
|
@@ -1911,6 +1950,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1911
1950
|
GoogleOauth2ProviderConfigOutput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, location_name: "clientId"))
|
|
1912
1951
|
GoogleOauth2ProviderConfigOutput.struct_class = Types::GoogleOauth2ProviderConfigOutput
|
|
1913
1952
|
|
|
1953
|
+
IamCredentialProvider.add_member(:service, Shapes::ShapeRef.new(shape: IamCredentialProviderServiceString, required: true, location_name: "service"))
|
|
1954
|
+
IamCredentialProvider.add_member(:region, Shapes::ShapeRef.new(shape: IamCredentialProviderRegionString, location_name: "region"))
|
|
1955
|
+
IamCredentialProvider.struct_class = Types::IamCredentialProvider
|
|
1956
|
+
|
|
1914
1957
|
IncludedOauth2ProviderConfigInput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, required: true, location_name: "clientId"))
|
|
1915
1958
|
IncludedOauth2ProviderConfigInput.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecretType, required: true, location_name: "clientSecret"))
|
|
1916
1959
|
IncludedOauth2ProviderConfigInput.add_member(:issuer, Shapes::ShapeRef.new(shape: IssuerUrlType, location_name: "issuer"))
|
|
@@ -1960,6 +2003,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1960
2003
|
KmsConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
1961
2004
|
KmsConfiguration.struct_class = Types::KmsConfiguration
|
|
1962
2005
|
|
|
2006
|
+
LambdaEvaluatorConfig.add_member(:lambda_arn, Shapes::ShapeRef.new(shape: LambdaArn, required: true, location_name: "lambdaArn"))
|
|
2007
|
+
LambdaEvaluatorConfig.add_member(:lambda_timeout_in_seconds, Shapes::ShapeRef.new(shape: LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger, location_name: "lambdaTimeoutInSeconds"))
|
|
2008
|
+
LambdaEvaluatorConfig.struct_class = Types::LambdaEvaluatorConfig
|
|
2009
|
+
|
|
1963
2010
|
LambdaInterceptorConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "arn"))
|
|
1964
2011
|
LambdaInterceptorConfiguration.struct_class = Types::LambdaInterceptorConfiguration
|
|
1965
2012
|
|
|
@@ -2146,6 +2193,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
2146
2193
|
MCPGatewayConfiguration.add_member(:search_type, Shapes::ShapeRef.new(shape: SearchType, location_name: "searchType"))
|
|
2147
2194
|
MCPGatewayConfiguration.struct_class = Types::MCPGatewayConfiguration
|
|
2148
2195
|
|
|
2196
|
+
ManagedLatticeResource.add_member(:vpc_identifier, Shapes::ShapeRef.new(shape: VpcIdentifier, required: true, location_name: "vpcIdentifier"))
|
|
2197
|
+
ManagedLatticeResource.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "subnetIds"))
|
|
2198
|
+
ManagedLatticeResource.add_member(:endpoint_ip_address_type, Shapes::ShapeRef.new(shape: EndpointIpAddressType, required: true, location_name: "endpointIpAddressType"))
|
|
2199
|
+
ManagedLatticeResource.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "securityGroupIds"))
|
|
2200
|
+
ManagedLatticeResource.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
2201
|
+
ManagedLatticeResource.add_member(:routing_domain, Shapes::ShapeRef.new(shape: RoutingDomain, location_name: "routingDomain"))
|
|
2202
|
+
ManagedLatticeResource.struct_class = Types::ManagedLatticeResource
|
|
2203
|
+
|
|
2204
|
+
ManagedResourceDetails.add_member(:domain, Shapes::ShapeRef.new(shape: DomainName, location_name: "domain"))
|
|
2205
|
+
ManagedResourceDetails.add_member(:resource_gateway_arn, Shapes::ShapeRef.new(shape: ResourceGatewayArn, location_name: "resourceGatewayArn"))
|
|
2206
|
+
ManagedResourceDetails.add_member(:resource_association_arn, Shapes::ShapeRef.new(shape: ResourceAssociationArn, location_name: "resourceAssociationArn"))
|
|
2207
|
+
ManagedResourceDetails.struct_class = Types::ManagedResourceDetails
|
|
2208
|
+
|
|
2149
2209
|
MatchValueStringList.member = Shapes::ShapeRef.new(shape: MatchValueString)
|
|
2150
2210
|
|
|
2151
2211
|
McpLambdaTargetConfiguration.add_member(:lambda_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "lambdaArn"))
|
|
@@ -2466,6 +2526,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
2466
2526
|
|
|
2467
2527
|
PolicyStatusReasons.member = Shapes::ShapeRef.new(shape: String)
|
|
2468
2528
|
|
|
2529
|
+
PrivateEndpoint.add_member(:self_managed_lattice_resource, Shapes::ShapeRef.new(shape: SelfManagedLatticeResource, location_name: "selfManagedLatticeResource"))
|
|
2530
|
+
PrivateEndpoint.add_member(:managed_lattice_resource, Shapes::ShapeRef.new(shape: ManagedLatticeResource, location_name: "managedLatticeResource"))
|
|
2531
|
+
PrivateEndpoint.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2532
|
+
PrivateEndpoint.add_member_subclass(:self_managed_lattice_resource, Types::PrivateEndpoint::SelfManagedLatticeResource)
|
|
2533
|
+
PrivateEndpoint.add_member_subclass(:managed_lattice_resource, Types::PrivateEndpoint::ManagedLatticeResource)
|
|
2534
|
+
PrivateEndpoint.add_member_subclass(:unknown, Types::PrivateEndpoint::Unknown)
|
|
2535
|
+
PrivateEndpoint.struct_class = Types::PrivateEndpoint
|
|
2536
|
+
|
|
2537
|
+
PrivateEndpointManagedResources.member = Shapes::ShapeRef.new(shape: ManagedResourceDetails)
|
|
2538
|
+
|
|
2469
2539
|
ProtocolConfiguration.add_member(:server_protocol, Shapes::ShapeRef.new(shape: ServerProtocol, required: true, location_name: "serverProtocol"))
|
|
2470
2540
|
ProtocolConfiguration.struct_class = Types::ProtocolConfiguration
|
|
2471
2541
|
|
|
@@ -2574,6 +2644,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2574
2644
|
SecretsManagerLocation.add_member(:secret_arn, Shapes::ShapeRef.new(shape: ToolSecretArn, required: true, location_name: "secretArn"))
|
|
2575
2645
|
SecretsManagerLocation.struct_class = Types::SecretsManagerLocation
|
|
2576
2646
|
|
|
2647
|
+
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupIdentifier)
|
|
2648
|
+
|
|
2577
2649
|
SecurityGroups.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
2578
2650
|
|
|
2579
2651
|
SelfManagedConfiguration.add_member(:trigger_conditions, Shapes::ShapeRef.new(shape: TriggerConditionsList, required: true, location_name: "triggerConditions"))
|
|
@@ -2586,6 +2658,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2586
2658
|
SelfManagedConfigurationInput.add_member(:historical_context_window_size, Shapes::ShapeRef.new(shape: SelfManagedConfigurationInputHistoricalContextWindowSizeInteger, location_name: "historicalContextWindowSize"))
|
|
2587
2659
|
SelfManagedConfigurationInput.struct_class = Types::SelfManagedConfigurationInput
|
|
2588
2660
|
|
|
2661
|
+
SelfManagedLatticeResource.add_member(:resource_configuration_identifier, Shapes::ShapeRef.new(shape: ResourceConfigurationIdentifier, location_name: "resourceConfigurationIdentifier"))
|
|
2662
|
+
SelfManagedLatticeResource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2663
|
+
SelfManagedLatticeResource.add_member_subclass(:resource_configuration_identifier, Types::SelfManagedLatticeResource::ResourceConfigurationIdentifier)
|
|
2664
|
+
SelfManagedLatticeResource.add_member_subclass(:unknown, Types::SelfManagedLatticeResource::Unknown)
|
|
2665
|
+
SelfManagedLatticeResource.struct_class = Types::SelfManagedLatticeResource
|
|
2666
|
+
|
|
2589
2667
|
SemanticConsolidationOverride.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
|
|
2590
2668
|
SemanticConsolidationOverride.add_member(:model_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "modelId"))
|
|
2591
2669
|
SemanticConsolidationOverride.struct_class = Types::SemanticConsolidationOverride
|
|
@@ -2680,6 +2758,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2680
2758
|
|
|
2681
2759
|
StreamDeliveryResourcesList.member = Shapes::ShapeRef.new(shape: StreamDeliveryResource)
|
|
2682
2760
|
|
|
2761
|
+
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
2762
|
+
|
|
2683
2763
|
Subnets.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
2684
2764
|
|
|
2685
2765
|
SummaryConsolidationOverride.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
|
|
@@ -2910,6 +2990,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2910
2990
|
UpdateGatewayTargetRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: TargetConfiguration, required: true, location_name: "targetConfiguration"))
|
|
2911
2991
|
UpdateGatewayTargetRequest.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, location_name: "credentialProviderConfigurations"))
|
|
2912
2992
|
UpdateGatewayTargetRequest.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
|
|
2993
|
+
UpdateGatewayTargetRequest.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
2913
2994
|
UpdateGatewayTargetRequest.struct_class = Types::UpdateGatewayTargetRequest
|
|
2914
2995
|
|
|
2915
2996
|
UpdateGatewayTargetResponse.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayArn, required: true, location_name: "gatewayArn"))
|
|
@@ -2924,6 +3005,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2924
3005
|
UpdateGatewayTargetResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
|
|
2925
3006
|
UpdateGatewayTargetResponse.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
|
|
2926
3007
|
UpdateGatewayTargetResponse.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
|
|
3008
|
+
UpdateGatewayTargetResponse.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
3009
|
+
UpdateGatewayTargetResponse.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
|
|
2927
3010
|
UpdateGatewayTargetResponse.struct_class = Types::UpdateGatewayTargetResponse
|
|
2928
3011
|
|
|
2929
3012
|
UpdateMemoryInput.add_member(:client_token, Shapes::ShapeRef.new(shape: UpdateMemoryInputClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|