aws-sdk-bedrockagentcorecontrol 1.52.0 → 1.54.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 +951 -21
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +457 -4
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1464 -172
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +134 -8
- data/sig/params.rbs +126 -13
- data/sig/types.rbs +351 -7
- metadata +1 -1
|
@@ -691,6 +691,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
691
691
|
# },
|
|
692
692
|
# },
|
|
693
693
|
# ],
|
|
694
|
+
# allowed_workload_configuration: {
|
|
695
|
+
# hosting_environments: [
|
|
696
|
+
# {
|
|
697
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
698
|
+
# },
|
|
699
|
+
# ],
|
|
700
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
701
|
+
# },
|
|
694
702
|
# },
|
|
695
703
|
# },
|
|
696
704
|
# request_header_configuration: {
|
|
@@ -824,15 +832,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
824
832
|
# stored securely.
|
|
825
833
|
#
|
|
826
834
|
# @option params [Types::SecretReference] :api_key_secret_config
|
|
827
|
-
# A reference to the
|
|
828
|
-
# This includes the secret ID and the JSON key used
|
|
829
|
-
# key value from the secret. Required when
|
|
830
|
-
# to `EXTERNAL`.
|
|
835
|
+
# A reference to the Amazon Web Services Secrets Manager secret that
|
|
836
|
+
# stores the API key. This includes the secret ID and the JSON key used
|
|
837
|
+
# to extract the API key value from the secret. Required when
|
|
838
|
+
# `apiKeySecretSource` is set to `EXTERNAL`.
|
|
831
839
|
#
|
|
832
840
|
# @option params [String] :api_key_secret_source
|
|
833
841
|
# The source type of the API key secret. Use `MANAGED` if the secret is
|
|
834
842
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
835
|
-
# yourself in
|
|
843
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
836
844
|
#
|
|
837
845
|
# @option params [Hash<String,String>] :tags
|
|
838
846
|
# A map of tag keys and values to assign to the API key credential
|
|
@@ -1188,6 +1196,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1188
1196
|
# The source that created this version, including the source name and
|
|
1189
1197
|
# optional ARN.
|
|
1190
1198
|
#
|
|
1199
|
+
# @option params [String] :kms_key_arn
|
|
1200
|
+
# Optional KMS key ARN for encrypting component configurations.
|
|
1201
|
+
#
|
|
1191
1202
|
# @option params [Hash<String,String>] :tags
|
|
1192
1203
|
# A map of tag keys and values to assign to the configuration bundle.
|
|
1193
1204
|
# Tags enable you to categorize your resources in different ways, for
|
|
@@ -1218,6 +1229,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1218
1229
|
# name: "String", # required
|
|
1219
1230
|
# arn: "String",
|
|
1220
1231
|
# },
|
|
1232
|
+
# kms_key_arn: "KmsKeyArn",
|
|
1221
1233
|
# tags: {
|
|
1222
1234
|
# "TagKey" => "TagValue",
|
|
1223
1235
|
# },
|
|
@@ -1607,10 +1619,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1607
1619
|
# * {Types::CreateGatewayResponse#authorizer_type #authorizer_type} => String
|
|
1608
1620
|
# * {Types::CreateGatewayResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
1609
1621
|
# * {Types::CreateGatewayResponse#kms_key_arn #kms_key_arn} => String
|
|
1622
|
+
# * {Types::CreateGatewayResponse#custom_transform_configuration #custom_transform_configuration} => Types::CustomTransformConfiguration
|
|
1610
1623
|
# * {Types::CreateGatewayResponse#interceptor_configurations #interceptor_configurations} => Array<Types::GatewayInterceptorConfiguration>
|
|
1611
1624
|
# * {Types::CreateGatewayResponse#policy_engine_configuration #policy_engine_configuration} => Types::GatewayPolicyEngineConfiguration
|
|
1612
1625
|
# * {Types::CreateGatewayResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
1613
1626
|
# * {Types::CreateGatewayResponse#exception_level #exception_level} => String
|
|
1627
|
+
# * {Types::CreateGatewayResponse#web_acl_arn #web_acl_arn} => String
|
|
1628
|
+
# * {Types::CreateGatewayResponse#waf_configuration #waf_configuration} => Types::WafConfiguration
|
|
1614
1629
|
#
|
|
1615
1630
|
# @example Request syntax with placeholder values
|
|
1616
1631
|
#
|
|
@@ -1688,6 +1703,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1688
1703
|
# },
|
|
1689
1704
|
# },
|
|
1690
1705
|
# ],
|
|
1706
|
+
# allowed_workload_configuration: {
|
|
1707
|
+
# hosting_environments: [
|
|
1708
|
+
# {
|
|
1709
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
1710
|
+
# },
|
|
1711
|
+
# ],
|
|
1712
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
1713
|
+
# },
|
|
1691
1714
|
# },
|
|
1692
1715
|
# },
|
|
1693
1716
|
# kms_key_arn: "KmsKeyArn",
|
|
@@ -1701,6 +1724,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1701
1724
|
# interception_points: ["REQUEST"], # required, accepts REQUEST, RESPONSE
|
|
1702
1725
|
# input_configuration: {
|
|
1703
1726
|
# pass_request_headers: false, # required
|
|
1727
|
+
# payload_filter: {
|
|
1728
|
+
# exclude: [ # required
|
|
1729
|
+
# {
|
|
1730
|
+
# field: "RESPONSE_BODY", # accepts RESPONSE_BODY
|
|
1731
|
+
# },
|
|
1732
|
+
# ],
|
|
1733
|
+
# },
|
|
1704
1734
|
# },
|
|
1705
1735
|
# },
|
|
1706
1736
|
# ],
|
|
@@ -1771,16 +1801,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
1771
1801
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
1772
1802
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
1773
1803
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
1804
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
1805
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
1806
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
1807
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
1774
1808
|
# resp.kms_key_arn #=> String
|
|
1809
|
+
# resp.custom_transform_configuration.lambda.arn #=> String
|
|
1775
1810
|
# resp.interceptor_configurations #=> Array
|
|
1776
1811
|
# resp.interceptor_configurations[0].interceptor.lambda.arn #=> String
|
|
1777
1812
|
# resp.interceptor_configurations[0].interception_points #=> Array
|
|
1778
1813
|
# resp.interceptor_configurations[0].interception_points[0] #=> String, one of "REQUEST", "RESPONSE"
|
|
1779
1814
|
# resp.interceptor_configurations[0].input_configuration.pass_request_headers #=> Boolean
|
|
1815
|
+
# resp.interceptor_configurations[0].input_configuration.payload_filter.exclude #=> Array
|
|
1816
|
+
# resp.interceptor_configurations[0].input_configuration.payload_filter.exclude[0].field #=> String, one of "RESPONSE_BODY"
|
|
1780
1817
|
# resp.policy_engine_configuration.arn #=> String
|
|
1781
1818
|
# resp.policy_engine_configuration.mode #=> String, one of "LOG_ONLY", "ENFORCE"
|
|
1782
1819
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
1783
1820
|
# resp.exception_level #=> String, one of "DEBUG"
|
|
1821
|
+
# resp.web_acl_arn #=> String
|
|
1822
|
+
# resp.waf_configuration.failure_mode #=> String, one of "FAIL_CLOSE", "FAIL_OPEN"
|
|
1784
1823
|
#
|
|
1785
1824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGateway AWS API Documentation
|
|
1786
1825
|
#
|
|
@@ -1959,7 +1998,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1959
1998
|
# @option params [required, String] :gateway_identifier
|
|
1960
1999
|
# The identifier of the gateway to create a target for.
|
|
1961
2000
|
#
|
|
1962
|
-
# @option params [
|
|
2001
|
+
# @option params [String] :name
|
|
1963
2002
|
# The name of the gateway target. The name must be unique within the
|
|
1964
2003
|
# gateway.
|
|
1965
2004
|
#
|
|
@@ -2020,7 +2059,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2020
2059
|
#
|
|
2021
2060
|
# resp = client.create_gateway_target({
|
|
2022
2061
|
# gateway_identifier: "GatewayIdentifier", # required
|
|
2023
|
-
# name: "TargetName",
|
|
2062
|
+
# name: "TargetName",
|
|
2024
2063
|
# description: "TargetDescription",
|
|
2025
2064
|
# client_token: "ClientToken",
|
|
2026
2065
|
# target_configuration: { # required
|
|
@@ -2112,11 +2151,85 @@ module Aws::BedrockAgentCoreControl
|
|
|
2112
2151
|
# ],
|
|
2113
2152
|
# },
|
|
2114
2153
|
# },
|
|
2154
|
+
# connector: {
|
|
2155
|
+
# source: { # required
|
|
2156
|
+
# connector_id: "ConnectorId", # required
|
|
2157
|
+
# },
|
|
2158
|
+
# enabled: ["String"],
|
|
2159
|
+
# configurations: [
|
|
2160
|
+
# {
|
|
2161
|
+
# name: "ConnectorConfigurationNameString", # required
|
|
2162
|
+
# description: "ConnectorConfigurationDescriptionString",
|
|
2163
|
+
# parameter_values: {
|
|
2164
|
+
# },
|
|
2165
|
+
# parameter_overrides: [
|
|
2166
|
+
# {
|
|
2167
|
+
# path: "String", # required
|
|
2168
|
+
# description: "String",
|
|
2169
|
+
# visible: false,
|
|
2170
|
+
# },
|
|
2171
|
+
# ],
|
|
2172
|
+
# },
|
|
2173
|
+
# ],
|
|
2174
|
+
# },
|
|
2115
2175
|
# },
|
|
2116
2176
|
# http: {
|
|
2117
2177
|
# agentcore_runtime: {
|
|
2118
2178
|
# arn: "RuntimeArn", # required
|
|
2119
2179
|
# qualifier: "RuntimeQualifier",
|
|
2180
|
+
# schema: {
|
|
2181
|
+
# source: { # required
|
|
2182
|
+
# s3: {
|
|
2183
|
+
# uri: "S3BucketUri",
|
|
2184
|
+
# bucket_owner_account_id: "AwsAccountId",
|
|
2185
|
+
# },
|
|
2186
|
+
# inline_payload: "InlinePayload",
|
|
2187
|
+
# },
|
|
2188
|
+
# },
|
|
2189
|
+
# },
|
|
2190
|
+
# passthrough: {
|
|
2191
|
+
# endpoint: "PassthroughEndpoint", # required
|
|
2192
|
+
# protocol_type: "MCP", # required, accepts MCP, A2A, INFERENCE, CUSTOM
|
|
2193
|
+
# schema: {
|
|
2194
|
+
# source: { # required
|
|
2195
|
+
# s3: {
|
|
2196
|
+
# uri: "S3BucketUri",
|
|
2197
|
+
# bucket_owner_account_id: "AwsAccountId",
|
|
2198
|
+
# },
|
|
2199
|
+
# inline_payload: "InlinePayload",
|
|
2200
|
+
# },
|
|
2201
|
+
# },
|
|
2202
|
+
# stickiness_configuration: {
|
|
2203
|
+
# identifier: "StickinessConfigurationIdentifierString", # required
|
|
2204
|
+
# timeout: 1,
|
|
2205
|
+
# },
|
|
2206
|
+
# },
|
|
2207
|
+
# },
|
|
2208
|
+
# inference: {
|
|
2209
|
+
# connector: {
|
|
2210
|
+
# source: { # required
|
|
2211
|
+
# connector_id: "InferenceConnectorId", # required
|
|
2212
|
+
# },
|
|
2213
|
+
# },
|
|
2214
|
+
# provider: {
|
|
2215
|
+
# endpoint: "PassthroughEndpoint", # required
|
|
2216
|
+
# model_mapping: {
|
|
2217
|
+
# provider_prefix: {
|
|
2218
|
+
# strip: false,
|
|
2219
|
+
# separator: "ProviderPrefixSeparatorString",
|
|
2220
|
+
# },
|
|
2221
|
+
# },
|
|
2222
|
+
# operations: [
|
|
2223
|
+
# {
|
|
2224
|
+
# path: "InferenceOperationPath", # required
|
|
2225
|
+
# provider_path: "InferenceOperationPath",
|
|
2226
|
+
# models: [
|
|
2227
|
+
# {
|
|
2228
|
+
# model: "ModelPattern", # required
|
|
2229
|
+
# },
|
|
2230
|
+
# ],
|
|
2231
|
+
# },
|
|
2232
|
+
# ],
|
|
2120
2233
|
# },
|
|
2121
2234
|
# },
|
|
2122
2235
|
# },
|
|
@@ -2222,8 +2335,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
2222
2335
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
2223
2336
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
2224
2337
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
2338
|
+
# resp.target_configuration.mcp.connector.source.connector_id #=> String
|
|
2339
|
+
# resp.target_configuration.mcp.connector.enabled #=> Array
|
|
2340
|
+
# resp.target_configuration.mcp.connector.enabled[0] #=> String
|
|
2341
|
+
# resp.target_configuration.mcp.connector.configurations #=> Array
|
|
2342
|
+
# resp.target_configuration.mcp.connector.configurations[0].name #=> String
|
|
2343
|
+
# resp.target_configuration.mcp.connector.configurations[0].description #=> String
|
|
2344
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides #=> Array
|
|
2345
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].path #=> String
|
|
2346
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].description #=> String
|
|
2347
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].visible #=> Boolean
|
|
2225
2348
|
# resp.target_configuration.http.agentcore_runtime.arn #=> String
|
|
2226
2349
|
# resp.target_configuration.http.agentcore_runtime.qualifier #=> String
|
|
2350
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.s3.uri #=> String
|
|
2351
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.s3.bucket_owner_account_id #=> String
|
|
2352
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.inline_payload #=> String
|
|
2353
|
+
# resp.target_configuration.http.passthrough.endpoint #=> String
|
|
2354
|
+
# resp.target_configuration.http.passthrough.protocol_type #=> String, one of "MCP", "A2A", "INFERENCE", "CUSTOM"
|
|
2355
|
+
# resp.target_configuration.http.passthrough.schema.source.s3.uri #=> String
|
|
2356
|
+
# resp.target_configuration.http.passthrough.schema.source.s3.bucket_owner_account_id #=> String
|
|
2357
|
+
# resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
2358
|
+
# resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
2359
|
+
# resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
2360
|
+
# resp.target_configuration.inference.connector.source.connector_id #=> String
|
|
2361
|
+
# resp.target_configuration.inference.provider.endpoint #=> String
|
|
2362
|
+
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
2363
|
+
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.separator #=> String
|
|
2364
|
+
# resp.target_configuration.inference.provider.operations #=> Array
|
|
2365
|
+
# resp.target_configuration.inference.provider.operations[0].path #=> String
|
|
2366
|
+
# resp.target_configuration.inference.provider.operations[0].provider_path #=> String
|
|
2367
|
+
# resp.target_configuration.inference.provider.operations[0].models #=> Array
|
|
2368
|
+
# resp.target_configuration.inference.provider.operations[0].models[0].model #=> String
|
|
2227
2369
|
# resp.credential_provider_configurations #=> Array
|
|
2228
2370
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
|
|
2229
2371
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -2273,7 +2415,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2273
2415
|
req.send_request(options)
|
|
2274
2416
|
end
|
|
2275
2417
|
|
|
2276
|
-
# Operation to create a
|
|
2418
|
+
# Operation to create a harness.
|
|
2277
2419
|
#
|
|
2278
2420
|
# @option params [required, String] :harness_name
|
|
2279
2421
|
# The name of the harness. Must start with a letter and contain only
|
|
@@ -2453,6 +2595,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2453
2595
|
# },
|
|
2454
2596
|
# },
|
|
2455
2597
|
# ],
|
|
2598
|
+
# allowed_workload_configuration: {
|
|
2599
|
+
# hosting_environments: [
|
|
2600
|
+
# {
|
|
2601
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
2602
|
+
# },
|
|
2603
|
+
# ],
|
|
2604
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
2605
|
+
# },
|
|
2456
2606
|
# },
|
|
2457
2607
|
# },
|
|
2458
2608
|
# model: {
|
|
@@ -2556,6 +2706,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2556
2706
|
# username: "String",
|
|
2557
2707
|
# },
|
|
2558
2708
|
# },
|
|
2709
|
+
# aws_skills: {
|
|
2710
|
+
# paths: ["HarnessAwsSkillPath"],
|
|
2711
|
+
# },
|
|
2559
2712
|
# },
|
|
2560
2713
|
# ],
|
|
2561
2714
|
# allowed_tools: ["HarnessAllowedTool"],
|
|
@@ -2572,6 +2725,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2572
2725
|
# },
|
|
2573
2726
|
# },
|
|
2574
2727
|
# },
|
|
2728
|
+
# managed_memory_configuration: {
|
|
2729
|
+
# arn: "MemoryArn",
|
|
2730
|
+
# strategies: ["SEMANTIC"], # accepts SEMANTIC, SUMMARIZATION, USER_PREFERENCE, EPISODIC
|
|
2731
|
+
# event_expiry_duration: 1,
|
|
2732
|
+
# encryption_key_arn: "KmsKeyArn",
|
|
2733
|
+
# },
|
|
2734
|
+
# disabled: {
|
|
2735
|
+
# },
|
|
2575
2736
|
# },
|
|
2576
2737
|
# truncation: {
|
|
2577
2738
|
# strategy: "sliding_window", # required, accepts sliding_window, summarization, none
|
|
@@ -2600,6 +2761,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2600
2761
|
# resp.harness.harness_name #=> String
|
|
2601
2762
|
# resp.harness.arn #=> String
|
|
2602
2763
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
2764
|
+
# resp.harness.harness_version #=> String
|
|
2603
2765
|
# resp.harness.execution_role_arn #=> String
|
|
2604
2766
|
# resp.harness.created_at #=> Time
|
|
2605
2767
|
# resp.harness.updated_at #=> Time
|
|
@@ -2652,6 +2814,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2652
2814
|
# resp.harness.skills[0].git.path #=> String
|
|
2653
2815
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
2654
2816
|
# resp.harness.skills[0].git.auth.username #=> String
|
|
2817
|
+
# resp.harness.skills[0].aws_skills.paths #=> Array
|
|
2818
|
+
# resp.harness.skills[0].aws_skills.paths[0] #=> String
|
|
2655
2819
|
# resp.harness.allowed_tools #=> Array
|
|
2656
2820
|
# resp.harness.allowed_tools[0] #=> String
|
|
2657
2821
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -2715,6 +2879,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
2715
2879
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
2716
2880
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
2717
2881
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
2882
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
2883
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
2884
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
2885
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
2718
2886
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
2719
2887
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
2720
2888
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -2722,6 +2890,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2722
2890
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
2723
2891
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
2724
2892
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].strategy_id #=> String
|
|
2893
|
+
# resp.harness.memory.managed_memory_configuration.arn #=> String
|
|
2894
|
+
# resp.harness.memory.managed_memory_configuration.strategies #=> Array
|
|
2895
|
+
# resp.harness.memory.managed_memory_configuration.strategies[0] #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "EPISODIC"
|
|
2896
|
+
# resp.harness.memory.managed_memory_configuration.event_expiry_duration #=> Integer
|
|
2897
|
+
# resp.harness.memory.managed_memory_configuration.encryption_key_arn #=> String
|
|
2725
2898
|
# resp.harness.max_iterations #=> Integer
|
|
2726
2899
|
# resp.harness.max_tokens #=> Integer
|
|
2727
2900
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -2736,6 +2909,72 @@ module Aws::BedrockAgentCoreControl
|
|
|
2736
2909
|
req.send_request(options)
|
|
2737
2910
|
end
|
|
2738
2911
|
|
|
2912
|
+
# Operation to create a harness endpoint.
|
|
2913
|
+
#
|
|
2914
|
+
# @option params [required, String] :harness_id
|
|
2915
|
+
# The ID of the harness to create an endpoint for.
|
|
2916
|
+
#
|
|
2917
|
+
# @option params [required, String] :endpoint_name
|
|
2918
|
+
# The name of the endpoint. Must start with a letter and contain only
|
|
2919
|
+
# alphanumeric characters and underscores.
|
|
2920
|
+
#
|
|
2921
|
+
# @option params [String] :target_version
|
|
2922
|
+
# The harness version that the endpoint points to and serves invocations
|
|
2923
|
+
# from.
|
|
2924
|
+
#
|
|
2925
|
+
# @option params [String] :description
|
|
2926
|
+
# A description of the endpoint.
|
|
2927
|
+
#
|
|
2928
|
+
# @option params [String] :client_token
|
|
2929
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
2930
|
+
# request.
|
|
2931
|
+
#
|
|
2932
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2933
|
+
# not need to pass this option.**
|
|
2934
|
+
#
|
|
2935
|
+
# @option params [Hash<String,String>] :tags
|
|
2936
|
+
# Tags to apply to the endpoint resource.
|
|
2937
|
+
#
|
|
2938
|
+
# @return [Types::CreateHarnessEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2939
|
+
#
|
|
2940
|
+
# * {Types::CreateHarnessEndpointResponse#endpoint #endpoint} => Types::HarnessEndpoint
|
|
2941
|
+
#
|
|
2942
|
+
# @example Request syntax with placeholder values
|
|
2943
|
+
#
|
|
2944
|
+
# resp = client.create_harness_endpoint({
|
|
2945
|
+
# harness_id: "HarnessId", # required
|
|
2946
|
+
# endpoint_name: "HarnessEndpointName", # required
|
|
2947
|
+
# target_version: "HarnessVersion",
|
|
2948
|
+
# description: "HarnessEndpointDescription",
|
|
2949
|
+
# client_token: "ClientToken",
|
|
2950
|
+
# tags: {
|
|
2951
|
+
# "TagKey" => "TagValue",
|
|
2952
|
+
# },
|
|
2953
|
+
# })
|
|
2954
|
+
#
|
|
2955
|
+
# @example Response structure
|
|
2956
|
+
#
|
|
2957
|
+
# resp.endpoint.harness_id #=> String
|
|
2958
|
+
# resp.endpoint.harness_name #=> String
|
|
2959
|
+
# resp.endpoint.endpoint_name #=> String
|
|
2960
|
+
# resp.endpoint.arn #=> String
|
|
2961
|
+
# resp.endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
2962
|
+
# resp.endpoint.created_at #=> Time
|
|
2963
|
+
# resp.endpoint.updated_at #=> Time
|
|
2964
|
+
# resp.endpoint.live_version #=> String
|
|
2965
|
+
# resp.endpoint.target_version #=> String
|
|
2966
|
+
# resp.endpoint.description #=> String
|
|
2967
|
+
# resp.endpoint.failure_reason #=> String
|
|
2968
|
+
#
|
|
2969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateHarnessEndpoint AWS API Documentation
|
|
2970
|
+
#
|
|
2971
|
+
# @overload create_harness_endpoint(params = {})
|
|
2972
|
+
# @param [Hash] params ({})
|
|
2973
|
+
def create_harness_endpoint(params = {}, options = {})
|
|
2974
|
+
req = build_request(:create_harness_endpoint, params)
|
|
2975
|
+
req.send_request(options)
|
|
2976
|
+
end
|
|
2977
|
+
|
|
2739
2978
|
# Creates a new Amazon Bedrock AgentCore Memory resource.
|
|
2740
2979
|
#
|
|
2741
2980
|
# @option params [String] :client_token
|
|
@@ -3222,6 +3461,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3222
3461
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
|
|
3223
3462
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
|
|
3224
3463
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].level #=> String, one of "METADATA_ONLY", "FULL_CONTENT"
|
|
3464
|
+
# resp.memory.managed_by_resource_arn #=> String
|
|
3225
3465
|
#
|
|
3226
3466
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateMemory AWS API Documentation
|
|
3227
3467
|
#
|
|
@@ -3574,11 +3814,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
3574
3814
|
# The data source configuration that specifies CloudWatch log groups and
|
|
3575
3815
|
# service names to monitor for agent traces.
|
|
3576
3816
|
#
|
|
3577
|
-
# @option params [
|
|
3817
|
+
# @option params [Array<Types::EvaluatorReference>] :evaluators
|
|
3578
3818
|
# The list of evaluators to apply during online evaluation. Can include
|
|
3579
3819
|
# both built-in evaluators and custom evaluators created with
|
|
3580
3820
|
# `CreateEvaluator`.
|
|
3581
3821
|
#
|
|
3822
|
+
# @option params [Array<Types::Insight>] :insights
|
|
3823
|
+
# The list of insight types to run against agent sessions.
|
|
3824
|
+
#
|
|
3825
|
+
# @option params [Types::ClusteringConfig] :clustering_config
|
|
3826
|
+
# Configuration for periodic batch evaluation clustering of insight
|
|
3827
|
+
# results.
|
|
3828
|
+
#
|
|
3582
3829
|
# @option params [required, String] :evaluation_execution_role_arn
|
|
3583
3830
|
# The Amazon Resource Name (ARN) of the IAM role that grants permissions
|
|
3584
3831
|
# to read from CloudWatch logs, write evaluation results, and invoke
|
|
@@ -3642,11 +3889,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
3642
3889
|
# service_names: ["ServiceName"], # required
|
|
3643
3890
|
# },
|
|
3644
3891
|
# },
|
|
3645
|
-
# evaluators: [
|
|
3892
|
+
# evaluators: [
|
|
3646
3893
|
# {
|
|
3647
3894
|
# evaluator_id: "EvaluatorId",
|
|
3648
3895
|
# },
|
|
3649
3896
|
# ],
|
|
3897
|
+
# insights: [
|
|
3898
|
+
# {
|
|
3899
|
+
# insight_id: "InsightId", # required
|
|
3900
|
+
# },
|
|
3901
|
+
# ],
|
|
3902
|
+
# clustering_config: {
|
|
3903
|
+
# frequencies: ["DAILY"], # required, accepts DAILY, WEEKLY, MONTHLY
|
|
3904
|
+
# },
|
|
3650
3905
|
# evaluation_execution_role_arn: "RoleArn", # required
|
|
3651
3906
|
# enable_on_create: false, # required
|
|
3652
3907
|
# tags: {
|
|
@@ -3976,6 +4231,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3976
4231
|
# },
|
|
3977
4232
|
# },
|
|
3978
4233
|
# ],
|
|
4234
|
+
# allowed_workload_configuration: {
|
|
4235
|
+
# hosting_environments: [
|
|
4236
|
+
# {
|
|
4237
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
4238
|
+
# },
|
|
4239
|
+
# ],
|
|
4240
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
4241
|
+
# },
|
|
3979
4242
|
# },
|
|
3980
4243
|
# },
|
|
3981
4244
|
# role_arn: "RoleArn", # required
|
|
@@ -4027,6 +4290,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4027
4290
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
4028
4291
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
4029
4292
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
4293
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
4294
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
4295
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
4296
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
4030
4297
|
# resp.role_arn #=> String
|
|
4031
4298
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
4032
4299
|
# resp.created_at #=> Time
|
|
@@ -4092,6 +4359,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4092
4359
|
# and IGNORE\_ALL\_FINDINGS only when you understand and accept the
|
|
4093
4360
|
# analyzer findings.
|
|
4094
4361
|
#
|
|
4362
|
+
# @option params [String] :enforcement_mode
|
|
4363
|
+
# The enforcement mode for the policy. Run this policy in `LOG_ONLY`
|
|
4364
|
+
# mode to collect data on how it affects your application. Once you are
|
|
4365
|
+
# satisfied with the data gathered, switch the policy to `ACTIVE`.
|
|
4366
|
+
# Defaults to `ACTIVE`.
|
|
4367
|
+
#
|
|
4095
4368
|
# @option params [required, String] :policy_engine_id
|
|
4096
4369
|
# The identifier of the policy engine which contains this policy. Policy
|
|
4097
4370
|
# engines group related policies and provide the execution context for
|
|
@@ -4116,6 +4389,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4116
4389
|
# * {Types::CreatePolicyResponse#updated_at #updated_at} => Time
|
|
4117
4390
|
# * {Types::CreatePolicyResponse#policy_arn #policy_arn} => String
|
|
4118
4391
|
# * {Types::CreatePolicyResponse#status #status} => String
|
|
4392
|
+
# * {Types::CreatePolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
4119
4393
|
# * {Types::CreatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
4120
4394
|
# * {Types::CreatePolicyResponse#description #description} => String
|
|
4121
4395
|
# * {Types::CreatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -4132,9 +4406,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4132
4406
|
# policy_generation_id: "ResourceId", # required
|
|
4133
4407
|
# policy_generation_asset_id: "ResourceId", # required
|
|
4134
4408
|
# },
|
|
4409
|
+
# policy: {
|
|
4410
|
+
# statement: "Statement", # required
|
|
4411
|
+
# },
|
|
4135
4412
|
# },
|
|
4136
4413
|
# description: "Description",
|
|
4137
4414
|
# validation_mode: "FAIL_ON_ANY_FINDINGS", # accepts FAIL_ON_ANY_FINDINGS, IGNORE_ALL_FINDINGS
|
|
4415
|
+
# enforcement_mode: "ACTIVE", # accepts ACTIVE, LOG_ONLY
|
|
4138
4416
|
# policy_engine_id: "ResourceId", # required
|
|
4139
4417
|
# client_token: "ClientToken",
|
|
4140
4418
|
# })
|
|
@@ -4148,9 +4426,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4148
4426
|
# resp.updated_at #=> Time
|
|
4149
4427
|
# resp.policy_arn #=> String
|
|
4150
4428
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
4429
|
+
# resp.enforcement_mode #=> String, one of "ACTIVE", "LOG_ONLY"
|
|
4151
4430
|
# resp.definition.cedar.statement #=> String
|
|
4152
4431
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
4153
4432
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
4433
|
+
# resp.definition.policy.statement #=> String
|
|
4154
4434
|
# resp.description #=> String
|
|
4155
4435
|
# resp.status_reasons #=> Array
|
|
4156
4436
|
# resp.status_reasons[0] #=> String
|
|
@@ -4368,6 +4648,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4368
4648
|
# },
|
|
4369
4649
|
# },
|
|
4370
4650
|
# ],
|
|
4651
|
+
# allowed_workload_configuration: {
|
|
4652
|
+
# hosting_environments: [
|
|
4653
|
+
# {
|
|
4654
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
4655
|
+
# },
|
|
4656
|
+
# ],
|
|
4657
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
4658
|
+
# },
|
|
4371
4659
|
# },
|
|
4372
4660
|
# },
|
|
4373
4661
|
# client_token: "ClientToken",
|
|
@@ -5103,6 +5391,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5103
5391
|
# **A suitable default value is auto-generated.** You should normally
|
|
5104
5392
|
# not need to pass this option.**
|
|
5105
5393
|
#
|
|
5394
|
+
# @option params [Boolean] :delete_managed_memory
|
|
5395
|
+
# Whether to delete the managed memory on harness deletion. Default:
|
|
5396
|
+
# true. If false, the memory is disassociated and becomes a regular
|
|
5397
|
+
# customer-owned resource.
|
|
5398
|
+
#
|
|
5106
5399
|
# @return [Types::DeleteHarnessResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5107
5400
|
#
|
|
5108
5401
|
# * {Types::DeleteHarnessResponse#harness #harness} => Types::Harness
|
|
@@ -5112,6 +5405,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5112
5405
|
# resp = client.delete_harness({
|
|
5113
5406
|
# harness_id: "HarnessId", # required
|
|
5114
5407
|
# client_token: "ClientToken",
|
|
5408
|
+
# delete_managed_memory: false,
|
|
5115
5409
|
# })
|
|
5116
5410
|
#
|
|
5117
5411
|
# @example Response structure
|
|
@@ -5120,6 +5414,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5120
5414
|
# resp.harness.harness_name #=> String
|
|
5121
5415
|
# resp.harness.arn #=> String
|
|
5122
5416
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
5417
|
+
# resp.harness.harness_version #=> String
|
|
5123
5418
|
# resp.harness.execution_role_arn #=> String
|
|
5124
5419
|
# resp.harness.created_at #=> Time
|
|
5125
5420
|
# resp.harness.updated_at #=> Time
|
|
@@ -5172,6 +5467,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5172
5467
|
# resp.harness.skills[0].git.path #=> String
|
|
5173
5468
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
5174
5469
|
# resp.harness.skills[0].git.auth.username #=> String
|
|
5470
|
+
# resp.harness.skills[0].aws_skills.paths #=> Array
|
|
5471
|
+
# resp.harness.skills[0].aws_skills.paths[0] #=> String
|
|
5175
5472
|
# resp.harness.allowed_tools #=> Array
|
|
5176
5473
|
# resp.harness.allowed_tools[0] #=> String
|
|
5177
5474
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -5235,6 +5532,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5235
5532
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
5236
5533
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
5237
5534
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
5535
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
5536
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
5537
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
5538
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
5238
5539
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
5239
5540
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
5240
5541
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -5242,6 +5543,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5242
5543
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
5243
5544
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
5244
5545
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].strategy_id #=> String
|
|
5546
|
+
# resp.harness.memory.managed_memory_configuration.arn #=> String
|
|
5547
|
+
# resp.harness.memory.managed_memory_configuration.strategies #=> Array
|
|
5548
|
+
# resp.harness.memory.managed_memory_configuration.strategies[0] #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "EPISODIC"
|
|
5549
|
+
# resp.harness.memory.managed_memory_configuration.event_expiry_duration #=> Integer
|
|
5550
|
+
# resp.harness.memory.managed_memory_configuration.encryption_key_arn #=> String
|
|
5245
5551
|
# resp.harness.max_iterations #=> Integer
|
|
5246
5552
|
# resp.harness.max_tokens #=> Integer
|
|
5247
5553
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -5256,6 +5562,56 @@ module Aws::BedrockAgentCoreControl
|
|
|
5256
5562
|
req.send_request(options)
|
|
5257
5563
|
end
|
|
5258
5564
|
|
|
5565
|
+
# Operation to delete a harness endpoint.
|
|
5566
|
+
#
|
|
5567
|
+
# @option params [required, String] :harness_id
|
|
5568
|
+
# The ID of the harness that the endpoint belongs to.
|
|
5569
|
+
#
|
|
5570
|
+
# @option params [required, String] :endpoint_name
|
|
5571
|
+
# The name of the endpoint to delete.
|
|
5572
|
+
#
|
|
5573
|
+
# @option params [String] :client_token
|
|
5574
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
5575
|
+
# request.
|
|
5576
|
+
#
|
|
5577
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
5578
|
+
# not need to pass this option.**
|
|
5579
|
+
#
|
|
5580
|
+
# @return [Types::DeleteHarnessEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5581
|
+
#
|
|
5582
|
+
# * {Types::DeleteHarnessEndpointResponse#endpoint #endpoint} => Types::HarnessEndpoint
|
|
5583
|
+
#
|
|
5584
|
+
# @example Request syntax with placeholder values
|
|
5585
|
+
#
|
|
5586
|
+
# resp = client.delete_harness_endpoint({
|
|
5587
|
+
# harness_id: "HarnessId", # required
|
|
5588
|
+
# endpoint_name: "HarnessEndpointName", # required
|
|
5589
|
+
# client_token: "ClientToken",
|
|
5590
|
+
# })
|
|
5591
|
+
#
|
|
5592
|
+
# @example Response structure
|
|
5593
|
+
#
|
|
5594
|
+
# resp.endpoint.harness_id #=> String
|
|
5595
|
+
# resp.endpoint.harness_name #=> String
|
|
5596
|
+
# resp.endpoint.endpoint_name #=> String
|
|
5597
|
+
# resp.endpoint.arn #=> String
|
|
5598
|
+
# resp.endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
5599
|
+
# resp.endpoint.created_at #=> Time
|
|
5600
|
+
# resp.endpoint.updated_at #=> Time
|
|
5601
|
+
# resp.endpoint.live_version #=> String
|
|
5602
|
+
# resp.endpoint.target_version #=> String
|
|
5603
|
+
# resp.endpoint.description #=> String
|
|
5604
|
+
# resp.endpoint.failure_reason #=> String
|
|
5605
|
+
#
|
|
5606
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteHarnessEndpoint AWS API Documentation
|
|
5607
|
+
#
|
|
5608
|
+
# @overload delete_harness_endpoint(params = {})
|
|
5609
|
+
# @param [Hash] params ({})
|
|
5610
|
+
def delete_harness_endpoint(params = {}, options = {})
|
|
5611
|
+
req = build_request(:delete_harness_endpoint, params)
|
|
5612
|
+
req.send_request(options)
|
|
5613
|
+
end
|
|
5614
|
+
|
|
5259
5615
|
# Deletes an Amazon Bedrock AgentCore Memory resource.
|
|
5260
5616
|
#
|
|
5261
5617
|
# @option params [String] :client_token
|
|
@@ -5494,6 +5850,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5494
5850
|
# * {Types::DeletePolicyResponse#updated_at #updated_at} => Time
|
|
5495
5851
|
# * {Types::DeletePolicyResponse#policy_arn #policy_arn} => String
|
|
5496
5852
|
# * {Types::DeletePolicyResponse#status #status} => String
|
|
5853
|
+
# * {Types::DeletePolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
5497
5854
|
# * {Types::DeletePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
5498
5855
|
# * {Types::DeletePolicyResponse#description #description} => String
|
|
5499
5856
|
# * {Types::DeletePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -5514,9 +5871,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5514
5871
|
# resp.updated_at #=> Time
|
|
5515
5872
|
# resp.policy_arn #=> String
|
|
5516
5873
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
5874
|
+
# resp.enforcement_mode #=> String, one of "ACTIVE", "LOG_ONLY"
|
|
5517
5875
|
# resp.definition.cedar.statement #=> String
|
|
5518
5876
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
5519
5877
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
5878
|
+
# resp.definition.policy.statement #=> String
|
|
5520
5879
|
# resp.description #=> String
|
|
5521
5880
|
# resp.status_reasons #=> Array
|
|
5522
5881
|
# resp.status_reasons[0] #=> String
|
|
@@ -5796,6 +6155,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5796
6155
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
5797
6156
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
5798
6157
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
6158
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
6159
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
6160
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
6161
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
5799
6162
|
# resp.request_header_configuration.request_header_allowlist #=> Array
|
|
5800
6163
|
# resp.request_header_configuration.request_header_allowlist[0] #=> String
|
|
5801
6164
|
# resp.metadata_configuration.require_mmdsv2 #=> Boolean
|
|
@@ -6098,6 +6461,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6098
6461
|
# * {Types::GetConfigurationBundleResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
|
|
6099
6462
|
# * {Types::GetConfigurationBundleResponse#created_at #created_at} => Time
|
|
6100
6463
|
# * {Types::GetConfigurationBundleResponse#updated_at #updated_at} => Time
|
|
6464
|
+
# * {Types::GetConfigurationBundleResponse#kms_key_arn #kms_key_arn} => String
|
|
6101
6465
|
#
|
|
6102
6466
|
# @example Request syntax with placeholder values
|
|
6103
6467
|
#
|
|
@@ -6122,6 +6486,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6122
6486
|
# resp.lineage_metadata.commit_message #=> String
|
|
6123
6487
|
# resp.created_at #=> Time
|
|
6124
6488
|
# resp.updated_at #=> Time
|
|
6489
|
+
# resp.kms_key_arn #=> String
|
|
6125
6490
|
#
|
|
6126
6491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundle AWS API Documentation
|
|
6127
6492
|
#
|
|
@@ -6153,6 +6518,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6153
6518
|
# * {Types::GetConfigurationBundleVersionResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
|
|
6154
6519
|
# * {Types::GetConfigurationBundleVersionResponse#created_at #created_at} => Time
|
|
6155
6520
|
# * {Types::GetConfigurationBundleVersionResponse#version_created_at #version_created_at} => Time
|
|
6521
|
+
# * {Types::GetConfigurationBundleVersionResponse#kms_key_arn #kms_key_arn} => String
|
|
6156
6522
|
#
|
|
6157
6523
|
# @example Request syntax with placeholder values
|
|
6158
6524
|
#
|
|
@@ -6177,6 +6543,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6177
6543
|
# resp.lineage_metadata.commit_message #=> String
|
|
6178
6544
|
# resp.created_at #=> Time
|
|
6179
6545
|
# resp.version_created_at #=> Time
|
|
6546
|
+
# resp.kms_key_arn #=> String
|
|
6180
6547
|
#
|
|
6181
6548
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersion AWS API Documentation
|
|
6182
6549
|
#
|
|
@@ -6350,10 +6717,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6350
6717
|
# * {Types::GetGatewayResponse#authorizer_type #authorizer_type} => String
|
|
6351
6718
|
# * {Types::GetGatewayResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
6352
6719
|
# * {Types::GetGatewayResponse#kms_key_arn #kms_key_arn} => String
|
|
6720
|
+
# * {Types::GetGatewayResponse#custom_transform_configuration #custom_transform_configuration} => Types::CustomTransformConfiguration
|
|
6353
6721
|
# * {Types::GetGatewayResponse#interceptor_configurations #interceptor_configurations} => Array<Types::GatewayInterceptorConfiguration>
|
|
6354
6722
|
# * {Types::GetGatewayResponse#policy_engine_configuration #policy_engine_configuration} => Types::GatewayPolicyEngineConfiguration
|
|
6355
6723
|
# * {Types::GetGatewayResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
6356
6724
|
# * {Types::GetGatewayResponse#exception_level #exception_level} => String
|
|
6725
|
+
# * {Types::GetGatewayResponse#web_acl_arn #web_acl_arn} => String
|
|
6726
|
+
# * {Types::GetGatewayResponse#waf_configuration #waf_configuration} => Types::WafConfiguration
|
|
6357
6727
|
#
|
|
6358
6728
|
# @example Request syntax with placeholder values
|
|
6359
6729
|
#
|
|
@@ -6418,16 +6788,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
6418
6788
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
6419
6789
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
6420
6790
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
6791
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
6792
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
6793
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
6794
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
6421
6795
|
# resp.kms_key_arn #=> String
|
|
6796
|
+
# resp.custom_transform_configuration.lambda.arn #=> String
|
|
6422
6797
|
# resp.interceptor_configurations #=> Array
|
|
6423
6798
|
# resp.interceptor_configurations[0].interceptor.lambda.arn #=> String
|
|
6424
6799
|
# resp.interceptor_configurations[0].interception_points #=> Array
|
|
6425
6800
|
# resp.interceptor_configurations[0].interception_points[0] #=> String, one of "REQUEST", "RESPONSE"
|
|
6426
6801
|
# resp.interceptor_configurations[0].input_configuration.pass_request_headers #=> Boolean
|
|
6802
|
+
# resp.interceptor_configurations[0].input_configuration.payload_filter.exclude #=> Array
|
|
6803
|
+
# resp.interceptor_configurations[0].input_configuration.payload_filter.exclude[0].field #=> String, one of "RESPONSE_BODY"
|
|
6427
6804
|
# resp.policy_engine_configuration.arn #=> String
|
|
6428
6805
|
# resp.policy_engine_configuration.mode #=> String, one of "LOG_ONLY", "ENFORCE"
|
|
6429
6806
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
6430
6807
|
# resp.exception_level #=> String, one of "DEBUG"
|
|
6808
|
+
# resp.web_acl_arn #=> String
|
|
6809
|
+
# resp.waf_configuration.failure_mode #=> String, one of "FAIL_CLOSE", "FAIL_OPEN"
|
|
6431
6810
|
#
|
|
6432
6811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGateway AWS API Documentation
|
|
6433
6812
|
#
|
|
@@ -6599,8 +6978,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
6599
6978
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
6600
6979
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
6601
6980
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
6981
|
+
# resp.target_configuration.mcp.connector.source.connector_id #=> String
|
|
6982
|
+
# resp.target_configuration.mcp.connector.enabled #=> Array
|
|
6983
|
+
# resp.target_configuration.mcp.connector.enabled[0] #=> String
|
|
6984
|
+
# resp.target_configuration.mcp.connector.configurations #=> Array
|
|
6985
|
+
# resp.target_configuration.mcp.connector.configurations[0].name #=> String
|
|
6986
|
+
# resp.target_configuration.mcp.connector.configurations[0].description #=> String
|
|
6987
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides #=> Array
|
|
6988
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].path #=> String
|
|
6989
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].description #=> String
|
|
6990
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].visible #=> Boolean
|
|
6602
6991
|
# resp.target_configuration.http.agentcore_runtime.arn #=> String
|
|
6603
6992
|
# resp.target_configuration.http.agentcore_runtime.qualifier #=> String
|
|
6993
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.s3.uri #=> String
|
|
6994
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.s3.bucket_owner_account_id #=> String
|
|
6995
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.inline_payload #=> String
|
|
6996
|
+
# resp.target_configuration.http.passthrough.endpoint #=> String
|
|
6997
|
+
# resp.target_configuration.http.passthrough.protocol_type #=> String, one of "MCP", "A2A", "INFERENCE", "CUSTOM"
|
|
6998
|
+
# resp.target_configuration.http.passthrough.schema.source.s3.uri #=> String
|
|
6999
|
+
# resp.target_configuration.http.passthrough.schema.source.s3.bucket_owner_account_id #=> String
|
|
7000
|
+
# resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
7001
|
+
# resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
7002
|
+
# resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
7003
|
+
# resp.target_configuration.inference.connector.source.connector_id #=> String
|
|
7004
|
+
# resp.target_configuration.inference.provider.endpoint #=> String
|
|
7005
|
+
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
7006
|
+
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.separator #=> String
|
|
7007
|
+
# resp.target_configuration.inference.provider.operations #=> Array
|
|
7008
|
+
# resp.target_configuration.inference.provider.operations[0].path #=> String
|
|
7009
|
+
# resp.target_configuration.inference.provider.operations[0].provider_path #=> String
|
|
7010
|
+
# resp.target_configuration.inference.provider.operations[0].models #=> Array
|
|
7011
|
+
# resp.target_configuration.inference.provider.operations[0].models[0].model #=> String
|
|
6604
7012
|
# resp.credential_provider_configurations #=> Array
|
|
6605
7013
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
|
|
6606
7014
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -6650,11 +7058,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
6650
7058
|
req.send_request(options)
|
|
6651
7059
|
end
|
|
6652
7060
|
|
|
6653
|
-
# Operation to get a single
|
|
7061
|
+
# Operation to get a single harness.
|
|
6654
7062
|
#
|
|
6655
7063
|
# @option params [required, String] :harness_id
|
|
6656
7064
|
# The ID of the harness to retrieve.
|
|
6657
7065
|
#
|
|
7066
|
+
# @option params [String] :harness_version
|
|
7067
|
+
# Specific version of the harness to retrieve. If omitted, returns the
|
|
7068
|
+
# current Harness configuration, including its status.
|
|
7069
|
+
#
|
|
6658
7070
|
# @return [Types::GetHarnessResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6659
7071
|
#
|
|
6660
7072
|
# * {Types::GetHarnessResponse#harness #harness} => Types::Harness
|
|
@@ -6663,6 +7075,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6663
7075
|
#
|
|
6664
7076
|
# resp = client.get_harness({
|
|
6665
7077
|
# harness_id: "HarnessId", # required
|
|
7078
|
+
# harness_version: "HarnessVersion",
|
|
6666
7079
|
# })
|
|
6667
7080
|
#
|
|
6668
7081
|
# @example Response structure
|
|
@@ -6671,6 +7084,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6671
7084
|
# resp.harness.harness_name #=> String
|
|
6672
7085
|
# resp.harness.arn #=> String
|
|
6673
7086
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
7087
|
+
# resp.harness.harness_version #=> String
|
|
6674
7088
|
# resp.harness.execution_role_arn #=> String
|
|
6675
7089
|
# resp.harness.created_at #=> Time
|
|
6676
7090
|
# resp.harness.updated_at #=> Time
|
|
@@ -6723,6 +7137,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6723
7137
|
# resp.harness.skills[0].git.path #=> String
|
|
6724
7138
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
6725
7139
|
# resp.harness.skills[0].git.auth.username #=> String
|
|
7140
|
+
# resp.harness.skills[0].aws_skills.paths #=> Array
|
|
7141
|
+
# resp.harness.skills[0].aws_skills.paths[0] #=> String
|
|
6726
7142
|
# resp.harness.allowed_tools #=> Array
|
|
6727
7143
|
# resp.harness.allowed_tools[0] #=> String
|
|
6728
7144
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -6786,6 +7202,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
6786
7202
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
6787
7203
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
6788
7204
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
7205
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
7206
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
7207
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
7208
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
6789
7209
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
6790
7210
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
6791
7211
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -6793,6 +7213,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
6793
7213
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
6794
7214
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
6795
7215
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].strategy_id #=> String
|
|
7216
|
+
# resp.harness.memory.managed_memory_configuration.arn #=> String
|
|
7217
|
+
# resp.harness.memory.managed_memory_configuration.strategies #=> Array
|
|
7218
|
+
# resp.harness.memory.managed_memory_configuration.strategies[0] #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "EPISODIC"
|
|
7219
|
+
# resp.harness.memory.managed_memory_configuration.event_expiry_duration #=> Integer
|
|
7220
|
+
# resp.harness.memory.managed_memory_configuration.encryption_key_arn #=> String
|
|
6796
7221
|
# resp.harness.max_iterations #=> Integer
|
|
6797
7222
|
# resp.harness.max_tokens #=> Integer
|
|
6798
7223
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -6807,6 +7232,48 @@ module Aws::BedrockAgentCoreControl
|
|
|
6807
7232
|
req.send_request(options)
|
|
6808
7233
|
end
|
|
6809
7234
|
|
|
7235
|
+
# Operation to get a single harness endpoint.
|
|
7236
|
+
#
|
|
7237
|
+
# @option params [required, String] :harness_id
|
|
7238
|
+
# The ID of the harness that the endpoint belongs to.
|
|
7239
|
+
#
|
|
7240
|
+
# @option params [required, String] :endpoint_name
|
|
7241
|
+
# The name of the endpoint to retrieve.
|
|
7242
|
+
#
|
|
7243
|
+
# @return [Types::GetHarnessEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7244
|
+
#
|
|
7245
|
+
# * {Types::GetHarnessEndpointResponse#endpoint #endpoint} => Types::HarnessEndpoint
|
|
7246
|
+
#
|
|
7247
|
+
# @example Request syntax with placeholder values
|
|
7248
|
+
#
|
|
7249
|
+
# resp = client.get_harness_endpoint({
|
|
7250
|
+
# harness_id: "HarnessId", # required
|
|
7251
|
+
# endpoint_name: "HarnessEndpointName", # required
|
|
7252
|
+
# })
|
|
7253
|
+
#
|
|
7254
|
+
# @example Response structure
|
|
7255
|
+
#
|
|
7256
|
+
# resp.endpoint.harness_id #=> String
|
|
7257
|
+
# resp.endpoint.harness_name #=> String
|
|
7258
|
+
# resp.endpoint.endpoint_name #=> String
|
|
7259
|
+
# resp.endpoint.arn #=> String
|
|
7260
|
+
# resp.endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
7261
|
+
# resp.endpoint.created_at #=> Time
|
|
7262
|
+
# resp.endpoint.updated_at #=> Time
|
|
7263
|
+
# resp.endpoint.live_version #=> String
|
|
7264
|
+
# resp.endpoint.target_version #=> String
|
|
7265
|
+
# resp.endpoint.description #=> String
|
|
7266
|
+
# resp.endpoint.failure_reason #=> String
|
|
7267
|
+
#
|
|
7268
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetHarnessEndpoint AWS API Documentation
|
|
7269
|
+
#
|
|
7270
|
+
# @overload get_harness_endpoint(params = {})
|
|
7271
|
+
# @param [Hash] params ({})
|
|
7272
|
+
def get_harness_endpoint(params = {}, options = {})
|
|
7273
|
+
req = build_request(:get_harness_endpoint, params)
|
|
7274
|
+
req.send_request(options)
|
|
7275
|
+
end
|
|
7276
|
+
|
|
6810
7277
|
# Retrieve an existing Amazon Bedrock AgentCore Memory resource.
|
|
6811
7278
|
#
|
|
6812
7279
|
# @option params [required, String] :memory_id
|
|
@@ -6930,6 +7397,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6930
7397
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
|
|
6931
7398
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
|
|
6932
7399
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].level #=> String, one of "METADATA_ONLY", "FULL_CONTENT"
|
|
7400
|
+
# resp.memory.managed_by_resource_arn #=> String
|
|
6933
7401
|
#
|
|
6934
7402
|
#
|
|
6935
7403
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -7119,6 +7587,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
7119
7587
|
# * {Types::GetOnlineEvaluationConfigResponse#rule #rule} => Types::Rule
|
|
7120
7588
|
# * {Types::GetOnlineEvaluationConfigResponse#data_source_config #data_source_config} => Types::DataSourceConfig
|
|
7121
7589
|
# * {Types::GetOnlineEvaluationConfigResponse#evaluators #evaluators} => Array<Types::EvaluatorReference>
|
|
7590
|
+
# * {Types::GetOnlineEvaluationConfigResponse#insights #insights} => Array<Types::Insight>
|
|
7591
|
+
# * {Types::GetOnlineEvaluationConfigResponse#clustering_config #clustering_config} => Types::ClusteringConfig
|
|
7122
7592
|
# * {Types::GetOnlineEvaluationConfigResponse#output_config #output_config} => Types::OutputConfig
|
|
7123
7593
|
# * {Types::GetOnlineEvaluationConfigResponse#evaluation_execution_role_arn #evaluation_execution_role_arn} => String
|
|
7124
7594
|
# * {Types::GetOnlineEvaluationConfigResponse#status #status} => String
|
|
@@ -7153,6 +7623,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
7153
7623
|
# resp.data_source_config.cloud_watch_logs.service_names[0] #=> String
|
|
7154
7624
|
# resp.evaluators #=> Array
|
|
7155
7625
|
# resp.evaluators[0].evaluator_id #=> String
|
|
7626
|
+
# resp.insights #=> Array
|
|
7627
|
+
# resp.insights[0].insight_id #=> String
|
|
7628
|
+
# resp.clustering_config.frequencies #=> Array
|
|
7629
|
+
# resp.clustering_config.frequencies[0] #=> String, one of "DAILY", "WEEKLY", "MONTHLY"
|
|
7156
7630
|
# resp.output_config.cloud_watch_config.log_group_name #=> String
|
|
7157
7631
|
# resp.evaluation_execution_role_arn #=> String
|
|
7158
7632
|
# resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "ERROR"
|
|
@@ -7342,6 +7816,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
7342
7816
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
7343
7817
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
7344
7818
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
7819
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
7820
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
7821
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
7822
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
7345
7823
|
# resp.role_arn #=> String
|
|
7346
7824
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
7347
7825
|
# resp.created_at #=> Time
|
|
@@ -7381,6 +7859,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7381
7859
|
# * {Types::GetPolicyResponse#updated_at #updated_at} => Time
|
|
7382
7860
|
# * {Types::GetPolicyResponse#policy_arn #policy_arn} => String
|
|
7383
7861
|
# * {Types::GetPolicyResponse#status #status} => String
|
|
7862
|
+
# * {Types::GetPolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
7384
7863
|
# * {Types::GetPolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
7385
7864
|
# * {Types::GetPolicyResponse#description #description} => String
|
|
7386
7865
|
# * {Types::GetPolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -7401,9 +7880,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7401
7880
|
# resp.updated_at #=> Time
|
|
7402
7881
|
# resp.policy_arn #=> String
|
|
7403
7882
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
7883
|
+
# resp.enforcement_mode #=> String, one of "ACTIVE", "LOG_ONLY"
|
|
7404
7884
|
# resp.definition.cedar.statement #=> String
|
|
7405
7885
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
7406
7886
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
7887
|
+
# resp.definition.policy.statement #=> String
|
|
7407
7888
|
# resp.description #=> String
|
|
7408
7889
|
# resp.status_reasons #=> Array
|
|
7409
7890
|
# resp.status_reasons[0] #=> String
|
|
@@ -7675,6 +8156,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7675
8156
|
# * {Types::GetPolicySummaryResponse#updated_at #updated_at} => Time
|
|
7676
8157
|
# * {Types::GetPolicySummaryResponse#policy_arn #policy_arn} => String
|
|
7677
8158
|
# * {Types::GetPolicySummaryResponse#status #status} => String
|
|
8159
|
+
# * {Types::GetPolicySummaryResponse#enforcement_mode #enforcement_mode} => String
|
|
7678
8160
|
#
|
|
7679
8161
|
# @example Request syntax with placeholder values
|
|
7680
8162
|
#
|
|
@@ -7692,6 +8174,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7692
8174
|
# resp.updated_at #=> Time
|
|
7693
8175
|
# resp.policy_arn #=> String
|
|
7694
8176
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8177
|
+
# resp.enforcement_mode #=> String, one of "ACTIVE", "LOG_ONLY"
|
|
7695
8178
|
#
|
|
7696
8179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummary AWS API Documentation
|
|
7697
8180
|
#
|
|
@@ -7771,6 +8254,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
7771
8254
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
7772
8255
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
7773
8256
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
8257
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
8258
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
8259
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
8260
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
7774
8261
|
# resp.approval_configuration.auto_approval #=> Boolean
|
|
7775
8262
|
# resp.status #=> String, one of "CREATING", "READY", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
7776
8263
|
# resp.status_reason #=> String
|
|
@@ -8725,6 +9212,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
8725
9212
|
# resp.items[0].created_at #=> Time
|
|
8726
9213
|
# resp.items[0].updated_at #=> Time
|
|
8727
9214
|
# resp.items[0].resource_priority #=> Integer
|
|
9215
|
+
# resp.items[0].last_synchronized_at #=> Time
|
|
9216
|
+
# resp.items[0].authorization_data.oauth2.authorization_url #=> String
|
|
9217
|
+
# resp.items[0].authorization_data.oauth2.user_id #=> String
|
|
9218
|
+
# resp.items[0].target_type #=> String, one of "OPEN_API_SCHEMA", "SMITHY_MODEL", "MCP_SERVER", "LAMBDA", "API_GATEWAY", "CONNECTOR", "AGENTCORE_RUNTIME", "PASSTHROUGH", "PROVIDER"
|
|
9219
|
+
# resp.items[0].listing_mode #=> String, one of "DEFAULT", "DYNAMIC"
|
|
8728
9220
|
# resp.next_token #=> String
|
|
8729
9221
|
#
|
|
8730
9222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayTargets AWS API Documentation
|
|
@@ -8786,7 +9278,106 @@ module Aws::BedrockAgentCoreControl
|
|
|
8786
9278
|
req.send_request(options)
|
|
8787
9279
|
end
|
|
8788
9280
|
|
|
8789
|
-
# Operation to list
|
|
9281
|
+
# Operation to list the endpoints of a harness.
|
|
9282
|
+
#
|
|
9283
|
+
# @option params [required, String] :harness_id
|
|
9284
|
+
# The ID of the harness whose endpoints are listed.
|
|
9285
|
+
#
|
|
9286
|
+
# @option params [Integer] :max_results
|
|
9287
|
+
# The maximum number of results to return in a single call.
|
|
9288
|
+
#
|
|
9289
|
+
# @option params [String] :next_token
|
|
9290
|
+
# The token for the next set of results.
|
|
9291
|
+
#
|
|
9292
|
+
# @return [Types::ListHarnessEndpointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9293
|
+
#
|
|
9294
|
+
# * {Types::ListHarnessEndpointsResponse#endpoints #endpoints} => Array<Types::HarnessEndpoint>
|
|
9295
|
+
# * {Types::ListHarnessEndpointsResponse#next_token #next_token} => String
|
|
9296
|
+
#
|
|
9297
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
9298
|
+
#
|
|
9299
|
+
# @example Request syntax with placeholder values
|
|
9300
|
+
#
|
|
9301
|
+
# resp = client.list_harness_endpoints({
|
|
9302
|
+
# harness_id: "HarnessId", # required
|
|
9303
|
+
# max_results: 1,
|
|
9304
|
+
# next_token: "NextToken",
|
|
9305
|
+
# })
|
|
9306
|
+
#
|
|
9307
|
+
# @example Response structure
|
|
9308
|
+
#
|
|
9309
|
+
# resp.endpoints #=> Array
|
|
9310
|
+
# resp.endpoints[0].harness_id #=> String
|
|
9311
|
+
# resp.endpoints[0].harness_name #=> String
|
|
9312
|
+
# resp.endpoints[0].endpoint_name #=> String
|
|
9313
|
+
# resp.endpoints[0].arn #=> String
|
|
9314
|
+
# resp.endpoints[0].status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
9315
|
+
# resp.endpoints[0].created_at #=> Time
|
|
9316
|
+
# resp.endpoints[0].updated_at #=> Time
|
|
9317
|
+
# resp.endpoints[0].live_version #=> String
|
|
9318
|
+
# resp.endpoints[0].target_version #=> String
|
|
9319
|
+
# resp.endpoints[0].description #=> String
|
|
9320
|
+
# resp.endpoints[0].failure_reason #=> String
|
|
9321
|
+
# resp.next_token #=> String
|
|
9322
|
+
#
|
|
9323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnessEndpoints AWS API Documentation
|
|
9324
|
+
#
|
|
9325
|
+
# @overload list_harness_endpoints(params = {})
|
|
9326
|
+
# @param [Hash] params ({})
|
|
9327
|
+
def list_harness_endpoints(params = {}, options = {})
|
|
9328
|
+
req = build_request(:list_harness_endpoints, params)
|
|
9329
|
+
req.send_request(options)
|
|
9330
|
+
end
|
|
9331
|
+
|
|
9332
|
+
# Operation to list the versions of a Harness.
|
|
9333
|
+
#
|
|
9334
|
+
# @option params [required, String] :harness_id
|
|
9335
|
+
# The ID of the harness whose versions are listed.
|
|
9336
|
+
#
|
|
9337
|
+
# @option params [Integer] :max_results
|
|
9338
|
+
# The maximum number of results to return in a single call.
|
|
9339
|
+
#
|
|
9340
|
+
# @option params [String] :next_token
|
|
9341
|
+
# The token for the next set of results.
|
|
9342
|
+
#
|
|
9343
|
+
# @return [Types::ListHarnessVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9344
|
+
#
|
|
9345
|
+
# * {Types::ListHarnessVersionsResponse#harness_versions #harness_versions} => Array<Types::HarnessVersionSummary>
|
|
9346
|
+
# * {Types::ListHarnessVersionsResponse#next_token #next_token} => String
|
|
9347
|
+
#
|
|
9348
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
9349
|
+
#
|
|
9350
|
+
# @example Request syntax with placeholder values
|
|
9351
|
+
#
|
|
9352
|
+
# resp = client.list_harness_versions({
|
|
9353
|
+
# harness_id: "HarnessId", # required
|
|
9354
|
+
# max_results: 1,
|
|
9355
|
+
# next_token: "NextToken",
|
|
9356
|
+
# })
|
|
9357
|
+
#
|
|
9358
|
+
# @example Response structure
|
|
9359
|
+
#
|
|
9360
|
+
# resp.harness_versions #=> Array
|
|
9361
|
+
# resp.harness_versions[0].harness_id #=> String
|
|
9362
|
+
# resp.harness_versions[0].harness_name #=> String
|
|
9363
|
+
# resp.harness_versions[0].arn #=> String
|
|
9364
|
+
# resp.harness_versions[0].harness_version #=> String
|
|
9365
|
+
# resp.harness_versions[0].status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
9366
|
+
# resp.harness_versions[0].created_at #=> Time
|
|
9367
|
+
# resp.harness_versions[0].updated_at #=> Time
|
|
9368
|
+
# resp.harness_versions[0].failure_reason #=> String
|
|
9369
|
+
# resp.next_token #=> String
|
|
9370
|
+
#
|
|
9371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnessVersions AWS API Documentation
|
|
9372
|
+
#
|
|
9373
|
+
# @overload list_harness_versions(params = {})
|
|
9374
|
+
# @param [Hash] params ({})
|
|
9375
|
+
def list_harness_versions(params = {}, options = {})
|
|
9376
|
+
req = build_request(:list_harness_versions, params)
|
|
9377
|
+
req.send_request(options)
|
|
9378
|
+
end
|
|
9379
|
+
|
|
9380
|
+
# Operation to list harnesses.
|
|
8790
9381
|
#
|
|
8791
9382
|
# @option params [Integer] :max_results
|
|
8792
9383
|
# The maximum number of results to return in a single call.
|
|
@@ -8817,6 +9408,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8817
9408
|
# resp.harnesses[0].status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
8818
9409
|
# resp.harnesses[0].created_at #=> Time
|
|
8819
9410
|
# resp.harnesses[0].updated_at #=> Time
|
|
9411
|
+
# resp.harnesses[0].harness_version #=> String
|
|
8820
9412
|
# resp.next_token #=> String
|
|
8821
9413
|
#
|
|
8822
9414
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnesses AWS API Documentation
|
|
@@ -8862,6 +9454,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8862
9454
|
# resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
8863
9455
|
# resp.memories[0].created_at #=> Time
|
|
8864
9456
|
# resp.memories[0].updated_at #=> Time
|
|
9457
|
+
# resp.memories[0].managed_by_resource_arn #=> String
|
|
8865
9458
|
# resp.next_token #=> String
|
|
8866
9459
|
#
|
|
8867
9460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListMemories AWS API Documentation
|
|
@@ -8951,6 +9544,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
8951
9544
|
# resp.online_evaluation_configs[0].created_at #=> Time
|
|
8952
9545
|
# resp.online_evaluation_configs[0].updated_at #=> Time
|
|
8953
9546
|
# resp.online_evaluation_configs[0].failure_reason #=> String
|
|
9547
|
+
# resp.online_evaluation_configs[0].insights #=> Array
|
|
9548
|
+
# resp.online_evaluation_configs[0].insights[0].insight_id #=> String
|
|
9549
|
+
# resp.online_evaluation_configs[0].clustering_config.frequencies #=> Array
|
|
9550
|
+
# resp.online_evaluation_configs[0].clustering_config.frequencies[0] #=> String, one of "DAILY", "WEEKLY", "MONTHLY"
|
|
8954
9551
|
# resp.next_token #=> String
|
|
8955
9552
|
#
|
|
8956
9553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOnlineEvaluationConfigs AWS API Documentation
|
|
@@ -9159,9 +9756,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
9159
9756
|
# resp.policies[0].updated_at #=> Time
|
|
9160
9757
|
# resp.policies[0].policy_arn #=> String
|
|
9161
9758
|
# resp.policies[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
9759
|
+
# resp.policies[0].enforcement_mode #=> String, one of "ACTIVE", "LOG_ONLY"
|
|
9162
9760
|
# resp.policies[0].definition.cedar.statement #=> String
|
|
9163
9761
|
# resp.policies[0].definition.policy_generation.policy_generation_id #=> String
|
|
9164
9762
|
# resp.policies[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
9763
|
+
# resp.policies[0].definition.policy.statement #=> String
|
|
9165
9764
|
# resp.policies[0].description #=> String
|
|
9166
9765
|
# resp.policies[0].status_reasons #=> Array
|
|
9167
9766
|
# resp.policies[0].status_reasons[0] #=> String
|
|
@@ -9350,6 +9949,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9350
9949
|
# resp.policy_generation_assets[0].definition.cedar.statement #=> String
|
|
9351
9950
|
# resp.policy_generation_assets[0].definition.policy_generation.policy_generation_id #=> String
|
|
9352
9951
|
# resp.policy_generation_assets[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
9952
|
+
# resp.policy_generation_assets[0].definition.policy.statement #=> String
|
|
9353
9953
|
# resp.policy_generation_assets[0].raw_text_fragment #=> String
|
|
9354
9954
|
# resp.policy_generation_assets[0].findings #=> Array
|
|
9355
9955
|
# resp.policy_generation_assets[0].findings[0].type #=> String, one of "VALID", "INVALID", "NOT_TRANSLATABLE", "ALLOW_ALL", "ALLOW_NONE", "DENY_ALL", "DENY_NONE"
|
|
@@ -9541,6 +10141,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9541
10141
|
# resp.policies[0].updated_at #=> Time
|
|
9542
10142
|
# resp.policies[0].policy_arn #=> String
|
|
9543
10143
|
# resp.policies[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
10144
|
+
# resp.policies[0].enforcement_mode #=> String, one of "ACTIVE", "LOG_ONLY"
|
|
9544
10145
|
# resp.next_token #=> String
|
|
9545
10146
|
#
|
|
9546
10147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicySummaries AWS API Documentation
|
|
@@ -10070,8 +10671,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
10070
10671
|
# resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
10071
10672
|
# resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
10072
10673
|
# resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
10674
|
+
# resp.targets[0].target_configuration.mcp.connector.source.connector_id #=> String
|
|
10675
|
+
# resp.targets[0].target_configuration.mcp.connector.enabled #=> Array
|
|
10676
|
+
# resp.targets[0].target_configuration.mcp.connector.enabled[0] #=> String
|
|
10677
|
+
# resp.targets[0].target_configuration.mcp.connector.configurations #=> Array
|
|
10678
|
+
# resp.targets[0].target_configuration.mcp.connector.configurations[0].name #=> String
|
|
10679
|
+
# resp.targets[0].target_configuration.mcp.connector.configurations[0].description #=> String
|
|
10680
|
+
# resp.targets[0].target_configuration.mcp.connector.configurations[0].parameter_overrides #=> Array
|
|
10681
|
+
# resp.targets[0].target_configuration.mcp.connector.configurations[0].parameter_overrides[0].path #=> String
|
|
10682
|
+
# resp.targets[0].target_configuration.mcp.connector.configurations[0].parameter_overrides[0].description #=> String
|
|
10683
|
+
# resp.targets[0].target_configuration.mcp.connector.configurations[0].parameter_overrides[0].visible #=> Boolean
|
|
10073
10684
|
# resp.targets[0].target_configuration.http.agentcore_runtime.arn #=> String
|
|
10074
10685
|
# resp.targets[0].target_configuration.http.agentcore_runtime.qualifier #=> String
|
|
10686
|
+
# resp.targets[0].target_configuration.http.agentcore_runtime.schema.source.s3.uri #=> String
|
|
10687
|
+
# resp.targets[0].target_configuration.http.agentcore_runtime.schema.source.s3.bucket_owner_account_id #=> String
|
|
10688
|
+
# resp.targets[0].target_configuration.http.agentcore_runtime.schema.source.inline_payload #=> String
|
|
10689
|
+
# resp.targets[0].target_configuration.http.passthrough.endpoint #=> String
|
|
10690
|
+
# resp.targets[0].target_configuration.http.passthrough.protocol_type #=> String, one of "MCP", "A2A", "INFERENCE", "CUSTOM"
|
|
10691
|
+
# resp.targets[0].target_configuration.http.passthrough.schema.source.s3.uri #=> String
|
|
10692
|
+
# resp.targets[0].target_configuration.http.passthrough.schema.source.s3.bucket_owner_account_id #=> String
|
|
10693
|
+
# resp.targets[0].target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
10694
|
+
# resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
10695
|
+
# resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
10696
|
+
# resp.targets[0].target_configuration.inference.connector.source.connector_id #=> String
|
|
10697
|
+
# resp.targets[0].target_configuration.inference.provider.endpoint #=> String
|
|
10698
|
+
# resp.targets[0].target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
10699
|
+
# resp.targets[0].target_configuration.inference.provider.model_mapping.provider_prefix.separator #=> String
|
|
10700
|
+
# resp.targets[0].target_configuration.inference.provider.operations #=> Array
|
|
10701
|
+
# resp.targets[0].target_configuration.inference.provider.operations[0].path #=> String
|
|
10702
|
+
# resp.targets[0].target_configuration.inference.provider.operations[0].provider_path #=> String
|
|
10703
|
+
# resp.targets[0].target_configuration.inference.provider.operations[0].models #=> Array
|
|
10704
|
+
# resp.targets[0].target_configuration.inference.provider.operations[0].models[0].model #=> String
|
|
10075
10705
|
# resp.targets[0].credential_provider_configurations #=> Array
|
|
10076
10706
|
# resp.targets[0].credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
|
|
10077
10707
|
# resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -10333,6 +10963,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
10333
10963
|
# },
|
|
10334
10964
|
# },
|
|
10335
10965
|
# ],
|
|
10966
|
+
# allowed_workload_configuration: {
|
|
10967
|
+
# hosting_environments: [
|
|
10968
|
+
# {
|
|
10969
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
10970
|
+
# },
|
|
10971
|
+
# ],
|
|
10972
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
10973
|
+
# },
|
|
10336
10974
|
# },
|
|
10337
10975
|
# },
|
|
10338
10976
|
# request_header_configuration: {
|
|
@@ -10459,15 +11097,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
10459
11097
|
# existing API key and is encrypted and stored securely.
|
|
10460
11098
|
#
|
|
10461
11099
|
# @option params [Types::SecretReference] :api_key_secret_config
|
|
10462
|
-
# A reference to the
|
|
10463
|
-
# This includes the secret ID and the JSON key used
|
|
10464
|
-
# key value from the secret. Required when
|
|
10465
|
-
# to `EXTERNAL`.
|
|
11100
|
+
# A reference to the Amazon Web Services Secrets Manager secret that
|
|
11101
|
+
# stores the API key. This includes the secret ID and the JSON key used
|
|
11102
|
+
# to extract the API key value from the secret. Required when
|
|
11103
|
+
# `apiKeySecretSource` is set to `EXTERNAL`.
|
|
10466
11104
|
#
|
|
10467
11105
|
# @option params [String] :api_key_secret_source
|
|
10468
11106
|
# The source type of the API key secret. Use `MANAGED` if the secret is
|
|
10469
11107
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
10470
|
-
# yourself in
|
|
11108
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
10471
11109
|
#
|
|
10472
11110
|
# @return [Types::UpdateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10473
11111
|
#
|
|
@@ -10559,6 +11197,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10559
11197
|
# The source that created this version, including the source name and
|
|
10560
11198
|
# optional ARN.
|
|
10561
11199
|
#
|
|
11200
|
+
# @option params [String] :kms_key_arn
|
|
11201
|
+
# Optional KMS key ARN for encrypting component configurations. If
|
|
11202
|
+
# provided, components will be encrypted with this key. If the bundle
|
|
11203
|
+
# already has a KMS key, this rotates to the new key.
|
|
11204
|
+
#
|
|
10562
11205
|
# @return [Types::UpdateConfigurationBundleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10563
11206
|
#
|
|
10564
11207
|
# * {Types::UpdateConfigurationBundleResponse#bundle_arn #bundle_arn} => String
|
|
@@ -10586,6 +11229,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
10586
11229
|
# name: "String", # required
|
|
10587
11230
|
# arn: "String",
|
|
10588
11231
|
# },
|
|
11232
|
+
# kms_key_arn: "KmsKeyArn",
|
|
10589
11233
|
# })
|
|
10590
11234
|
#
|
|
10591
11235
|
# @example Response structure
|
|
@@ -10872,6 +11516,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10872
11516
|
# @option params [String] :kms_key_arn
|
|
10873
11517
|
# The updated ARN of the KMS key used to encrypt the gateway.
|
|
10874
11518
|
#
|
|
11519
|
+
# @option params [Types::CustomTransformConfiguration] :custom_transform_configuration
|
|
11520
|
+
# The updated custom transformation configuration for the gateway. This
|
|
11521
|
+
# configuration defines how the gateway transforms requests and
|
|
11522
|
+
# responses.
|
|
11523
|
+
#
|
|
10875
11524
|
# @option params [Array<Types::GatewayInterceptorConfiguration>] :interceptor_configurations
|
|
10876
11525
|
# The updated interceptor configurations for the gateway.
|
|
10877
11526
|
#
|
|
@@ -10892,6 +11541,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
10892
11541
|
# * If the value is omitted, a generic error message is returned to the
|
|
10893
11542
|
# end user.
|
|
10894
11543
|
#
|
|
11544
|
+
# @option params [Types::WafConfiguration] :waf_configuration
|
|
11545
|
+
# The updated Amazon Web Services WAF configuration for the gateway.
|
|
11546
|
+
#
|
|
10895
11547
|
# @return [Types::UpdateGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10896
11548
|
#
|
|
10897
11549
|
# * {Types::UpdateGatewayResponse#gateway_arn #gateway_arn} => String
|
|
@@ -10909,10 +11561,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
10909
11561
|
# * {Types::UpdateGatewayResponse#authorizer_type #authorizer_type} => String
|
|
10910
11562
|
# * {Types::UpdateGatewayResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
10911
11563
|
# * {Types::UpdateGatewayResponse#kms_key_arn #kms_key_arn} => String
|
|
11564
|
+
# * {Types::UpdateGatewayResponse#custom_transform_configuration #custom_transform_configuration} => Types::CustomTransformConfiguration
|
|
10912
11565
|
# * {Types::UpdateGatewayResponse#interceptor_configurations #interceptor_configurations} => Array<Types::GatewayInterceptorConfiguration>
|
|
10913
11566
|
# * {Types::UpdateGatewayResponse#policy_engine_configuration #policy_engine_configuration} => Types::GatewayPolicyEngineConfiguration
|
|
10914
11567
|
# * {Types::UpdateGatewayResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
10915
11568
|
# * {Types::UpdateGatewayResponse#exception_level #exception_level} => String
|
|
11569
|
+
# * {Types::UpdateGatewayResponse#web_acl_arn #web_acl_arn} => String
|
|
11570
|
+
# * {Types::UpdateGatewayResponse#waf_configuration #waf_configuration} => Types::WafConfiguration
|
|
10916
11571
|
#
|
|
10917
11572
|
# @example Request syntax with placeholder values
|
|
10918
11573
|
#
|
|
@@ -10990,9 +11645,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
10990
11645
|
# },
|
|
10991
11646
|
# },
|
|
10992
11647
|
# ],
|
|
11648
|
+
# allowed_workload_configuration: {
|
|
11649
|
+
# hosting_environments: [
|
|
11650
|
+
# {
|
|
11651
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
11652
|
+
# },
|
|
11653
|
+
# ],
|
|
11654
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
11655
|
+
# },
|
|
10993
11656
|
# },
|
|
10994
11657
|
# },
|
|
10995
11658
|
# kms_key_arn: "KmsKeyArn",
|
|
11659
|
+
# custom_transform_configuration: {
|
|
11660
|
+
# lambda: {
|
|
11661
|
+
# arn: "LambdaFunctionArn",
|
|
11662
|
+
# },
|
|
11663
|
+
# },
|
|
10996
11664
|
# interceptor_configurations: [
|
|
10997
11665
|
# {
|
|
10998
11666
|
# interceptor: { # required
|
|
@@ -11003,6 +11671,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
11003
11671
|
# interception_points: ["REQUEST"], # required, accepts REQUEST, RESPONSE
|
|
11004
11672
|
# input_configuration: {
|
|
11005
11673
|
# pass_request_headers: false, # required
|
|
11674
|
+
# payload_filter: {
|
|
11675
|
+
# exclude: [ # required
|
|
11676
|
+
# {
|
|
11677
|
+
# field: "RESPONSE_BODY", # accepts RESPONSE_BODY
|
|
11678
|
+
# },
|
|
11679
|
+
# ],
|
|
11680
|
+
# },
|
|
11006
11681
|
# },
|
|
11007
11682
|
# },
|
|
11008
11683
|
# ],
|
|
@@ -11011,6 +11686,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
11011
11686
|
# mode: "LOG_ONLY", # required, accepts LOG_ONLY, ENFORCE
|
|
11012
11687
|
# },
|
|
11013
11688
|
# exception_level: "DEBUG", # accepts DEBUG
|
|
11689
|
+
# waf_configuration: {
|
|
11690
|
+
# failure_mode: "FAIL_CLOSE", # accepts FAIL_CLOSE, FAIL_OPEN
|
|
11691
|
+
# },
|
|
11014
11692
|
# })
|
|
11015
11693
|
#
|
|
11016
11694
|
# @example Response structure
|
|
@@ -11070,16 +11748,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
11070
11748
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
11071
11749
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
11072
11750
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
11751
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
11752
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
11753
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
11754
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
11073
11755
|
# resp.kms_key_arn #=> String
|
|
11756
|
+
# resp.custom_transform_configuration.lambda.arn #=> String
|
|
11074
11757
|
# resp.interceptor_configurations #=> Array
|
|
11075
11758
|
# resp.interceptor_configurations[0].interceptor.lambda.arn #=> String
|
|
11076
11759
|
# resp.interceptor_configurations[0].interception_points #=> Array
|
|
11077
11760
|
# resp.interceptor_configurations[0].interception_points[0] #=> String, one of "REQUEST", "RESPONSE"
|
|
11078
11761
|
# resp.interceptor_configurations[0].input_configuration.pass_request_headers #=> Boolean
|
|
11762
|
+
# resp.interceptor_configurations[0].input_configuration.payload_filter.exclude #=> Array
|
|
11763
|
+
# resp.interceptor_configurations[0].input_configuration.payload_filter.exclude[0].field #=> String, one of "RESPONSE_BODY"
|
|
11079
11764
|
# resp.policy_engine_configuration.arn #=> String
|
|
11080
11765
|
# resp.policy_engine_configuration.mode #=> String, one of "LOG_ONLY", "ENFORCE"
|
|
11081
11766
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
11082
11767
|
# resp.exception_level #=> String, one of "DEBUG"
|
|
11768
|
+
# resp.web_acl_arn #=> String
|
|
11769
|
+
# resp.waf_configuration.failure_mode #=> String, one of "FAIL_CLOSE", "FAIL_OPEN"
|
|
11083
11770
|
#
|
|
11084
11771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGateway AWS API Documentation
|
|
11085
11772
|
#
|
|
@@ -11252,7 +11939,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11252
11939
|
# @option params [required, String] :target_id
|
|
11253
11940
|
# The unique identifier of the gateway target to update.
|
|
11254
11941
|
#
|
|
11255
|
-
# @option params [
|
|
11942
|
+
# @option params [String] :name
|
|
11256
11943
|
# The updated name for the gateway target.
|
|
11257
11944
|
#
|
|
11258
11945
|
# @option params [String] :description
|
|
@@ -11297,7 +11984,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11297
11984
|
# resp = client.update_gateway_target({
|
|
11298
11985
|
# gateway_identifier: "GatewayIdentifier", # required
|
|
11299
11986
|
# target_id: "TargetId", # required
|
|
11300
|
-
# name: "TargetName",
|
|
11987
|
+
# name: "TargetName",
|
|
11301
11988
|
# description: "TargetDescription",
|
|
11302
11989
|
# target_configuration: { # required
|
|
11303
11990
|
# mcp: {
|
|
@@ -11388,11 +12075,85 @@ module Aws::BedrockAgentCoreControl
|
|
|
11388
12075
|
# ],
|
|
11389
12076
|
# },
|
|
11390
12077
|
# },
|
|
12078
|
+
# connector: {
|
|
12079
|
+
# source: { # required
|
|
12080
|
+
# connector_id: "ConnectorId", # required
|
|
12081
|
+
# },
|
|
12082
|
+
# enabled: ["String"],
|
|
12083
|
+
# configurations: [
|
|
12084
|
+
# {
|
|
12085
|
+
# name: "ConnectorConfigurationNameString", # required
|
|
12086
|
+
# description: "ConnectorConfigurationDescriptionString",
|
|
12087
|
+
# parameter_values: {
|
|
12088
|
+
# },
|
|
12089
|
+
# parameter_overrides: [
|
|
12090
|
+
# {
|
|
12091
|
+
# path: "String", # required
|
|
12092
|
+
# description: "String",
|
|
12093
|
+
# visible: false,
|
|
12094
|
+
# },
|
|
12095
|
+
# ],
|
|
12096
|
+
# },
|
|
12097
|
+
# ],
|
|
12098
|
+
# },
|
|
11391
12099
|
# },
|
|
11392
12100
|
# http: {
|
|
11393
12101
|
# agentcore_runtime: {
|
|
11394
12102
|
# arn: "RuntimeArn", # required
|
|
11395
12103
|
# qualifier: "RuntimeQualifier",
|
|
12104
|
+
# schema: {
|
|
12105
|
+
# source: { # required
|
|
12106
|
+
# s3: {
|
|
12107
|
+
# uri: "S3BucketUri",
|
|
12108
|
+
# bucket_owner_account_id: "AwsAccountId",
|
|
12109
|
+
# },
|
|
12110
|
+
# inline_payload: "InlinePayload",
|
|
12111
|
+
# },
|
|
12112
|
+
# },
|
|
12113
|
+
# },
|
|
12114
|
+
# passthrough: {
|
|
12115
|
+
# endpoint: "PassthroughEndpoint", # required
|
|
12116
|
+
# protocol_type: "MCP", # required, accepts MCP, A2A, INFERENCE, CUSTOM
|
|
12117
|
+
# schema: {
|
|
12118
|
+
# source: { # required
|
|
12119
|
+
# s3: {
|
|
12120
|
+
# uri: "S3BucketUri",
|
|
12121
|
+
# bucket_owner_account_id: "AwsAccountId",
|
|
12122
|
+
# },
|
|
12123
|
+
# inline_payload: "InlinePayload",
|
|
12124
|
+
# },
|
|
12125
|
+
# },
|
|
12126
|
+
# stickiness_configuration: {
|
|
12127
|
+
# identifier: "StickinessConfigurationIdentifierString", # required
|
|
12128
|
+
# timeout: 1,
|
|
12129
|
+
# },
|
|
12130
|
+
# },
|
|
12131
|
+
# },
|
|
12132
|
+
# inference: {
|
|
12133
|
+
# connector: {
|
|
12134
|
+
# source: { # required
|
|
12135
|
+
# connector_id: "InferenceConnectorId", # required
|
|
12136
|
+
# },
|
|
12137
|
+
# },
|
|
12138
|
+
# provider: {
|
|
12139
|
+
# endpoint: "PassthroughEndpoint", # required
|
|
12140
|
+
# model_mapping: {
|
|
12141
|
+
# provider_prefix: {
|
|
12142
|
+
# strip: false,
|
|
12143
|
+
# separator: "ProviderPrefixSeparatorString",
|
|
12144
|
+
# },
|
|
12145
|
+
# },
|
|
12146
|
+
# operations: [
|
|
12147
|
+
# {
|
|
12148
|
+
# path: "InferenceOperationPath", # required
|
|
12149
|
+
# provider_path: "InferenceOperationPath",
|
|
12150
|
+
# models: [
|
|
12151
|
+
# {
|
|
12152
|
+
# model: "ModelPattern", # required
|
|
12153
|
+
# },
|
|
12154
|
+
# ],
|
|
12155
|
+
# },
|
|
12156
|
+
# ],
|
|
11396
12157
|
# },
|
|
11397
12158
|
# },
|
|
11398
12159
|
# },
|
|
@@ -11498,8 +12259,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
11498
12259
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
11499
12260
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
11500
12261
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
|
|
12262
|
+
# resp.target_configuration.mcp.connector.source.connector_id #=> String
|
|
12263
|
+
# resp.target_configuration.mcp.connector.enabled #=> Array
|
|
12264
|
+
# resp.target_configuration.mcp.connector.enabled[0] #=> String
|
|
12265
|
+
# resp.target_configuration.mcp.connector.configurations #=> Array
|
|
12266
|
+
# resp.target_configuration.mcp.connector.configurations[0].name #=> String
|
|
12267
|
+
# resp.target_configuration.mcp.connector.configurations[0].description #=> String
|
|
12268
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides #=> Array
|
|
12269
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].path #=> String
|
|
12270
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].description #=> String
|
|
12271
|
+
# resp.target_configuration.mcp.connector.configurations[0].parameter_overrides[0].visible #=> Boolean
|
|
11501
12272
|
# resp.target_configuration.http.agentcore_runtime.arn #=> String
|
|
11502
12273
|
# resp.target_configuration.http.agentcore_runtime.qualifier #=> String
|
|
12274
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.s3.uri #=> String
|
|
12275
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.s3.bucket_owner_account_id #=> String
|
|
12276
|
+
# resp.target_configuration.http.agentcore_runtime.schema.source.inline_payload #=> String
|
|
12277
|
+
# resp.target_configuration.http.passthrough.endpoint #=> String
|
|
12278
|
+
# resp.target_configuration.http.passthrough.protocol_type #=> String, one of "MCP", "A2A", "INFERENCE", "CUSTOM"
|
|
12279
|
+
# resp.target_configuration.http.passthrough.schema.source.s3.uri #=> String
|
|
12280
|
+
# resp.target_configuration.http.passthrough.schema.source.s3.bucket_owner_account_id #=> String
|
|
12281
|
+
# resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
12282
|
+
# resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
12283
|
+
# resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
12284
|
+
# resp.target_configuration.inference.connector.source.connector_id #=> String
|
|
12285
|
+
# resp.target_configuration.inference.provider.endpoint #=> String
|
|
12286
|
+
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
12287
|
+
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.separator #=> String
|
|
12288
|
+
# resp.target_configuration.inference.provider.operations #=> Array
|
|
12289
|
+
# resp.target_configuration.inference.provider.operations[0].path #=> String
|
|
12290
|
+
# resp.target_configuration.inference.provider.operations[0].provider_path #=> String
|
|
12291
|
+
# resp.target_configuration.inference.provider.operations[0].models #=> Array
|
|
12292
|
+
# resp.target_configuration.inference.provider.operations[0].models[0].model #=> String
|
|
11503
12293
|
# resp.credential_provider_configurations #=> Array
|
|
11504
12294
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
|
|
11505
12295
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -11549,7 +12339,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11549
12339
|
req.send_request(options)
|
|
11550
12340
|
end
|
|
11551
12341
|
|
|
11552
|
-
# Operation to update a
|
|
12342
|
+
# Operation to update a harness.
|
|
11553
12343
|
#
|
|
11554
12344
|
# @option params [required, String] :harness_id
|
|
11555
12345
|
# The ID of the harness to update.
|
|
@@ -11735,6 +12525,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
11735
12525
|
# },
|
|
11736
12526
|
# },
|
|
11737
12527
|
# ],
|
|
12528
|
+
# allowed_workload_configuration: {
|
|
12529
|
+
# hosting_environments: [
|
|
12530
|
+
# {
|
|
12531
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
12532
|
+
# },
|
|
12533
|
+
# ],
|
|
12534
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
12535
|
+
# },
|
|
11738
12536
|
# },
|
|
11739
12537
|
# },
|
|
11740
12538
|
# },
|
|
@@ -11839,6 +12637,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
11839
12637
|
# username: "String",
|
|
11840
12638
|
# },
|
|
11841
12639
|
# },
|
|
12640
|
+
# aws_skills: {
|
|
12641
|
+
# paths: ["HarnessAwsSkillPath"],
|
|
12642
|
+
# },
|
|
11842
12643
|
# },
|
|
11843
12644
|
# ],
|
|
11844
12645
|
# allowed_tools: ["HarnessAllowedTool"],
|
|
@@ -11856,6 +12657,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
11856
12657
|
# },
|
|
11857
12658
|
# },
|
|
11858
12659
|
# },
|
|
12660
|
+
# managed_memory_configuration: {
|
|
12661
|
+
# arn: "MemoryArn",
|
|
12662
|
+
# strategies: ["SEMANTIC"], # accepts SEMANTIC, SUMMARIZATION, USER_PREFERENCE, EPISODIC
|
|
12663
|
+
# event_expiry_duration: 1,
|
|
12664
|
+
# encryption_key_arn: "KmsKeyArn",
|
|
12665
|
+
# },
|
|
12666
|
+
# disabled: {
|
|
12667
|
+
# },
|
|
11859
12668
|
# },
|
|
11860
12669
|
# },
|
|
11861
12670
|
# truncation: {
|
|
@@ -11882,6 +12691,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11882
12691
|
# resp.harness.harness_name #=> String
|
|
11883
12692
|
# resp.harness.arn #=> String
|
|
11884
12693
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
12694
|
+
# resp.harness.harness_version #=> String
|
|
11885
12695
|
# resp.harness.execution_role_arn #=> String
|
|
11886
12696
|
# resp.harness.created_at #=> Time
|
|
11887
12697
|
# resp.harness.updated_at #=> Time
|
|
@@ -11934,6 +12744,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
11934
12744
|
# resp.harness.skills[0].git.path #=> String
|
|
11935
12745
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
11936
12746
|
# resp.harness.skills[0].git.auth.username #=> String
|
|
12747
|
+
# resp.harness.skills[0].aws_skills.paths #=> Array
|
|
12748
|
+
# resp.harness.skills[0].aws_skills.paths[0] #=> String
|
|
11937
12749
|
# resp.harness.allowed_tools #=> Array
|
|
11938
12750
|
# resp.harness.allowed_tools[0] #=> String
|
|
11939
12751
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -11997,6 +12809,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
11997
12809
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
11998
12810
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
11999
12811
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
12812
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
12813
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
12814
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
12815
|
+
# resp.harness.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
12000
12816
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
12001
12817
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
12002
12818
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -12004,6 +12820,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
12004
12820
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
12005
12821
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
12006
12822
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].strategy_id #=> String
|
|
12823
|
+
# resp.harness.memory.managed_memory_configuration.arn #=> String
|
|
12824
|
+
# resp.harness.memory.managed_memory_configuration.strategies #=> Array
|
|
12825
|
+
# resp.harness.memory.managed_memory_configuration.strategies[0] #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "EPISODIC"
|
|
12826
|
+
# resp.harness.memory.managed_memory_configuration.event_expiry_duration #=> Integer
|
|
12827
|
+
# resp.harness.memory.managed_memory_configuration.encryption_key_arn #=> String
|
|
12007
12828
|
# resp.harness.max_iterations #=> Integer
|
|
12008
12829
|
# resp.harness.max_tokens #=> Integer
|
|
12009
12830
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -12018,6 +12839,66 @@ module Aws::BedrockAgentCoreControl
|
|
|
12018
12839
|
req.send_request(options)
|
|
12019
12840
|
end
|
|
12020
12841
|
|
|
12842
|
+
# Operation to update a harness endpoint.
|
|
12843
|
+
#
|
|
12844
|
+
# @option params [required, String] :harness_id
|
|
12845
|
+
# The ID of the harness that the endpoint belongs to.
|
|
12846
|
+
#
|
|
12847
|
+
# @option params [required, String] :endpoint_name
|
|
12848
|
+
# The name of the endpoint to update.
|
|
12849
|
+
#
|
|
12850
|
+
# @option params [String] :target_version
|
|
12851
|
+
# The harness version that the endpoint points to. If not specified, the
|
|
12852
|
+
# existing value is retained.
|
|
12853
|
+
#
|
|
12854
|
+
# @option params [String] :description
|
|
12855
|
+
# A description of the endpoint. If not specified, the existing value is
|
|
12856
|
+
# retained.
|
|
12857
|
+
#
|
|
12858
|
+
# @option params [String] :client_token
|
|
12859
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
12860
|
+
# request.
|
|
12861
|
+
#
|
|
12862
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
12863
|
+
# not need to pass this option.**
|
|
12864
|
+
#
|
|
12865
|
+
# @return [Types::UpdateHarnessEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12866
|
+
#
|
|
12867
|
+
# * {Types::UpdateHarnessEndpointResponse#endpoint #endpoint} => Types::HarnessEndpoint
|
|
12868
|
+
#
|
|
12869
|
+
# @example Request syntax with placeholder values
|
|
12870
|
+
#
|
|
12871
|
+
# resp = client.update_harness_endpoint({
|
|
12872
|
+
# harness_id: "HarnessId", # required
|
|
12873
|
+
# endpoint_name: "HarnessEndpointName", # required
|
|
12874
|
+
# target_version: "HarnessVersion",
|
|
12875
|
+
# description: "HarnessEndpointDescription",
|
|
12876
|
+
# client_token: "ClientToken",
|
|
12877
|
+
# })
|
|
12878
|
+
#
|
|
12879
|
+
# @example Response structure
|
|
12880
|
+
#
|
|
12881
|
+
# resp.endpoint.harness_id #=> String
|
|
12882
|
+
# resp.endpoint.harness_name #=> String
|
|
12883
|
+
# resp.endpoint.endpoint_name #=> String
|
|
12884
|
+
# resp.endpoint.arn #=> String
|
|
12885
|
+
# resp.endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
12886
|
+
# resp.endpoint.created_at #=> Time
|
|
12887
|
+
# resp.endpoint.updated_at #=> Time
|
|
12888
|
+
# resp.endpoint.live_version #=> String
|
|
12889
|
+
# resp.endpoint.target_version #=> String
|
|
12890
|
+
# resp.endpoint.description #=> String
|
|
12891
|
+
# resp.endpoint.failure_reason #=> String
|
|
12892
|
+
#
|
|
12893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateHarnessEndpoint AWS API Documentation
|
|
12894
|
+
#
|
|
12895
|
+
# @overload update_harness_endpoint(params = {})
|
|
12896
|
+
# @param [Hash] params ({})
|
|
12897
|
+
def update_harness_endpoint(params = {}, options = {})
|
|
12898
|
+
req = build_request(:update_harness_endpoint, params)
|
|
12899
|
+
req.send_request(options)
|
|
12900
|
+
end
|
|
12901
|
+
|
|
12021
12902
|
# Update an Amazon Bedrock AgentCore Memory resource memory.
|
|
12022
12903
|
#
|
|
12023
12904
|
# @option params [String] :client_token
|
|
@@ -12660,6 +13541,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12660
13541
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
|
|
12661
13542
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
|
|
12662
13543
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].level #=> String, one of "METADATA_ONLY", "FULL_CONTENT"
|
|
13544
|
+
# resp.memory.managed_by_resource_arn #=> String
|
|
12663
13545
|
#
|
|
12664
13546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateMemory AWS API Documentation
|
|
12665
13547
|
#
|
|
@@ -13008,6 +13890,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
13008
13890
|
# @option params [Array<Types::EvaluatorReference>] :evaluators
|
|
13009
13891
|
# The updated list of evaluators to apply during online evaluation.
|
|
13010
13892
|
#
|
|
13893
|
+
# @option params [Array<Types::Insight>] :insights
|
|
13894
|
+
# The updated list of insight types to run against agent sessions.
|
|
13895
|
+
#
|
|
13896
|
+
# @option params [Types::ClusteringConfig] :clustering_config
|
|
13897
|
+
# The updated clustering configuration for periodic batch evaluation.
|
|
13898
|
+
#
|
|
13011
13899
|
# @option params [String] :evaluation_execution_role_arn
|
|
13012
13900
|
# The updated Amazon Resource Name (ARN) of the IAM role used for
|
|
13013
13901
|
# evaluation execution.
|
|
@@ -13061,6 +13949,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13061
13949
|
# evaluator_id: "EvaluatorId",
|
|
13062
13950
|
# },
|
|
13063
13951
|
# ],
|
|
13952
|
+
# insights: [
|
|
13953
|
+
# {
|
|
13954
|
+
# insight_id: "InsightId", # required
|
|
13955
|
+
# },
|
|
13956
|
+
# ],
|
|
13957
|
+
# clustering_config: {
|
|
13958
|
+
# frequencies: ["DAILY"], # required, accepts DAILY, WEEKLY, MONTHLY
|
|
13959
|
+
# },
|
|
13064
13960
|
# evaluation_execution_role_arn: "RoleArn",
|
|
13065
13961
|
# execution_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
13066
13962
|
# })
|
|
@@ -13365,6 +14261,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13365
14261
|
# },
|
|
13366
14262
|
# },
|
|
13367
14263
|
# ],
|
|
14264
|
+
# allowed_workload_configuration: {
|
|
14265
|
+
# hosting_environments: [
|
|
14266
|
+
# {
|
|
14267
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
14268
|
+
# },
|
|
14269
|
+
# ],
|
|
14270
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
14271
|
+
# },
|
|
13368
14272
|
# },
|
|
13369
14273
|
# },
|
|
13370
14274
|
# role_arn: "RoleArn",
|
|
@@ -13427,6 +14331,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
13427
14331
|
# FAIL\_ON\_ANY\_FINDINGS to ensure policy correctness during updates,
|
|
13428
14332
|
# especially when modifying policy logic or conditions.
|
|
13429
14333
|
#
|
|
14334
|
+
# @option params [String] :enforcement_mode
|
|
14335
|
+
# The enforcement mode for the policy. Run this policy in `LOG_ONLY`
|
|
14336
|
+
# mode to collect data on how it affects your application. Once you are
|
|
14337
|
+
# satisfied with the data gathered, switch the policy to `ACTIVE`. If
|
|
14338
|
+
# you omit this field, the policy's existing enforcement mode is
|
|
14339
|
+
# unchanged.
|
|
14340
|
+
#
|
|
13430
14341
|
# @return [Types::UpdatePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13431
14342
|
#
|
|
13432
14343
|
# * {Types::UpdatePolicyResponse#policy_id #policy_id} => String
|
|
@@ -13436,6 +14347,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
13436
14347
|
# * {Types::UpdatePolicyResponse#updated_at #updated_at} => Time
|
|
13437
14348
|
# * {Types::UpdatePolicyResponse#policy_arn #policy_arn} => String
|
|
13438
14349
|
# * {Types::UpdatePolicyResponse#status #status} => String
|
|
14350
|
+
# * {Types::UpdatePolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
13439
14351
|
# * {Types::UpdatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
13440
14352
|
# * {Types::UpdatePolicyResponse#description #description} => String
|
|
13441
14353
|
# * {Types::UpdatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -13456,8 +14368,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
13456
14368
|
# policy_generation_id: "ResourceId", # required
|
|
13457
14369
|
# policy_generation_asset_id: "ResourceId", # required
|
|
13458
14370
|
# },
|
|
14371
|
+
# policy: {
|
|
14372
|
+
# statement: "Statement", # required
|
|
14373
|
+
# },
|
|
13459
14374
|
# },
|
|
13460
14375
|
# validation_mode: "FAIL_ON_ANY_FINDINGS", # accepts FAIL_ON_ANY_FINDINGS, IGNORE_ALL_FINDINGS
|
|
14376
|
+
# enforcement_mode: "ACTIVE", # accepts ACTIVE, LOG_ONLY
|
|
13461
14377
|
# })
|
|
13462
14378
|
#
|
|
13463
14379
|
# @example Response structure
|
|
@@ -13469,9 +14385,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
13469
14385
|
# resp.updated_at #=> Time
|
|
13470
14386
|
# resp.policy_arn #=> String
|
|
13471
14387
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
14388
|
+
# resp.enforcement_mode #=> String, one of "ACTIVE", "LOG_ONLY"
|
|
13472
14389
|
# resp.definition.cedar.statement #=> String
|
|
13473
14390
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
13474
14391
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
14392
|
+
# resp.definition.policy.statement #=> String
|
|
13475
14393
|
# resp.description #=> String
|
|
13476
14394
|
# resp.status_reasons #=> Array
|
|
13477
14395
|
# resp.status_reasons[0] #=> String
|
|
@@ -13643,6 +14561,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13643
14561
|
# },
|
|
13644
14562
|
# },
|
|
13645
14563
|
# ],
|
|
14564
|
+
# allowed_workload_configuration: {
|
|
14565
|
+
# hosting_environments: [
|
|
14566
|
+
# {
|
|
14567
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
14568
|
+
# },
|
|
14569
|
+
# ],
|
|
14570
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
14571
|
+
# },
|
|
13646
14572
|
# },
|
|
13647
14573
|
# },
|
|
13648
14574
|
# },
|
|
@@ -13696,6 +14622,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
13696
14622
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
13697
14623
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
13698
14624
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
14625
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments #=> Array
|
|
14626
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.hosting_environments[0].arn #=> String
|
|
14627
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities #=> Array
|
|
14628
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_workload_configuration.workload_identities[0] #=> String
|
|
13699
14629
|
# resp.approval_configuration.auto_approval #=> Boolean
|
|
13700
14630
|
# resp.status #=> String, one of "CREATING", "READY", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
13701
14631
|
# resp.status_reason #=> String
|
|
@@ -14027,7 +14957,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14027
14957
|
tracer: tracer
|
|
14028
14958
|
)
|
|
14029
14959
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
14030
|
-
context[:gem_version] = '1.
|
|
14960
|
+
context[:gem_version] = '1.54.0'
|
|
14031
14961
|
Seahorse::Client::Request.new(handlers, context)
|
|
14032
14962
|
end
|
|
14033
14963
|
|