aws-sdk-bedrockagentcorecontrol 1.53.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +896 -19
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +427 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1385 -190
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +110 -6
- data/sig/params.rbs +126 -13
- data/sig/types.rbs +329 -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
|
|
@@ -1611,10 +1619,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1611
1619
|
# * {Types::CreateGatewayResponse#authorizer_type #authorizer_type} => String
|
|
1612
1620
|
# * {Types::CreateGatewayResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
1613
1621
|
# * {Types::CreateGatewayResponse#kms_key_arn #kms_key_arn} => String
|
|
1622
|
+
# * {Types::CreateGatewayResponse#custom_transform_configuration #custom_transform_configuration} => Types::CustomTransformConfiguration
|
|
1614
1623
|
# * {Types::CreateGatewayResponse#interceptor_configurations #interceptor_configurations} => Array<Types::GatewayInterceptorConfiguration>
|
|
1615
1624
|
# * {Types::CreateGatewayResponse#policy_engine_configuration #policy_engine_configuration} => Types::GatewayPolicyEngineConfiguration
|
|
1616
1625
|
# * {Types::CreateGatewayResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
1617
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
|
|
1618
1629
|
#
|
|
1619
1630
|
# @example Request syntax with placeholder values
|
|
1620
1631
|
#
|
|
@@ -1692,6 +1703,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1692
1703
|
# },
|
|
1693
1704
|
# },
|
|
1694
1705
|
# ],
|
|
1706
|
+
# allowed_workload_configuration: {
|
|
1707
|
+
# hosting_environments: [
|
|
1708
|
+
# {
|
|
1709
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
1710
|
+
# },
|
|
1711
|
+
# ],
|
|
1712
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
1713
|
+
# },
|
|
1695
1714
|
# },
|
|
1696
1715
|
# },
|
|
1697
1716
|
# kms_key_arn: "KmsKeyArn",
|
|
@@ -1705,6 +1724,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1705
1724
|
# interception_points: ["REQUEST"], # required, accepts REQUEST, RESPONSE
|
|
1706
1725
|
# input_configuration: {
|
|
1707
1726
|
# pass_request_headers: false, # required
|
|
1727
|
+
# payload_filter: {
|
|
1728
|
+
# exclude: [ # required
|
|
1729
|
+
# {
|
|
1730
|
+
# field: "RESPONSE_BODY", # accepts RESPONSE_BODY
|
|
1731
|
+
# },
|
|
1732
|
+
# ],
|
|
1733
|
+
# },
|
|
1708
1734
|
# },
|
|
1709
1735
|
# },
|
|
1710
1736
|
# ],
|
|
@@ -1775,16 +1801,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
1775
1801
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
1776
1802
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
1777
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
|
|
1778
1808
|
# resp.kms_key_arn #=> String
|
|
1809
|
+
# resp.custom_transform_configuration.lambda.arn #=> String
|
|
1779
1810
|
# resp.interceptor_configurations #=> Array
|
|
1780
1811
|
# resp.interceptor_configurations[0].interceptor.lambda.arn #=> String
|
|
1781
1812
|
# resp.interceptor_configurations[0].interception_points #=> Array
|
|
1782
1813
|
# resp.interceptor_configurations[0].interception_points[0] #=> String, one of "REQUEST", "RESPONSE"
|
|
1783
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"
|
|
1784
1817
|
# resp.policy_engine_configuration.arn #=> String
|
|
1785
1818
|
# resp.policy_engine_configuration.mode #=> String, one of "LOG_ONLY", "ENFORCE"
|
|
1786
1819
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
1787
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"
|
|
1788
1823
|
#
|
|
1789
1824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGateway AWS API Documentation
|
|
1790
1825
|
#
|
|
@@ -1963,7 +1998,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1963
1998
|
# @option params [required, String] :gateway_identifier
|
|
1964
1999
|
# The identifier of the gateway to create a target for.
|
|
1965
2000
|
#
|
|
1966
|
-
# @option params [
|
|
2001
|
+
# @option params [String] :name
|
|
1967
2002
|
# The name of the gateway target. The name must be unique within the
|
|
1968
2003
|
# gateway.
|
|
1969
2004
|
#
|
|
@@ -2024,7 +2059,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2024
2059
|
#
|
|
2025
2060
|
# resp = client.create_gateway_target({
|
|
2026
2061
|
# gateway_identifier: "GatewayIdentifier", # required
|
|
2027
|
-
# name: "TargetName",
|
|
2062
|
+
# name: "TargetName",
|
|
2028
2063
|
# description: "TargetDescription",
|
|
2029
2064
|
# client_token: "ClientToken",
|
|
2030
2065
|
# target_configuration: { # required
|
|
@@ -2116,11 +2151,85 @@ module Aws::BedrockAgentCoreControl
|
|
|
2116
2151
|
# ],
|
|
2117
2152
|
# },
|
|
2118
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
|
+
# },
|
|
2119
2175
|
# },
|
|
2120
2176
|
# http: {
|
|
2121
2177
|
# agentcore_runtime: {
|
|
2122
2178
|
# arn: "RuntimeArn", # required
|
|
2123
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
|
+
# ],
|
|
2124
2233
|
# },
|
|
2125
2234
|
# },
|
|
2126
2235
|
# },
|
|
@@ -2226,8 +2335,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
2226
2335
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
2227
2336
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
2228
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
|
|
2229
2348
|
# resp.target_configuration.http.agentcore_runtime.arn #=> String
|
|
2230
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
|
|
2231
2369
|
# resp.credential_provider_configurations #=> Array
|
|
2232
2370
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
|
|
2233
2371
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -2277,7 +2415,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2277
2415
|
req.send_request(options)
|
|
2278
2416
|
end
|
|
2279
2417
|
|
|
2280
|
-
# Operation to create a
|
|
2418
|
+
# Operation to create a harness.
|
|
2281
2419
|
#
|
|
2282
2420
|
# @option params [required, String] :harness_name
|
|
2283
2421
|
# The name of the harness. Must start with a letter and contain only
|
|
@@ -2457,6 +2595,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2457
2595
|
# },
|
|
2458
2596
|
# },
|
|
2459
2597
|
# ],
|
|
2598
|
+
# allowed_workload_configuration: {
|
|
2599
|
+
# hosting_environments: [
|
|
2600
|
+
# {
|
|
2601
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
2602
|
+
# },
|
|
2603
|
+
# ],
|
|
2604
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
2605
|
+
# },
|
|
2460
2606
|
# },
|
|
2461
2607
|
# },
|
|
2462
2608
|
# model: {
|
|
@@ -2560,6 +2706,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2560
2706
|
# username: "String",
|
|
2561
2707
|
# },
|
|
2562
2708
|
# },
|
|
2709
|
+
# aws_skills: {
|
|
2710
|
+
# paths: ["HarnessAwsSkillPath"],
|
|
2711
|
+
# },
|
|
2563
2712
|
# },
|
|
2564
2713
|
# ],
|
|
2565
2714
|
# allowed_tools: ["HarnessAllowedTool"],
|
|
@@ -2576,6 +2725,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2576
2725
|
# },
|
|
2577
2726
|
# },
|
|
2578
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
|
+
# },
|
|
2579
2736
|
# },
|
|
2580
2737
|
# truncation: {
|
|
2581
2738
|
# strategy: "sliding_window", # required, accepts sliding_window, summarization, none
|
|
@@ -2604,6 +2761,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2604
2761
|
# resp.harness.harness_name #=> String
|
|
2605
2762
|
# resp.harness.arn #=> String
|
|
2606
2763
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
2764
|
+
# resp.harness.harness_version #=> String
|
|
2607
2765
|
# resp.harness.execution_role_arn #=> String
|
|
2608
2766
|
# resp.harness.created_at #=> Time
|
|
2609
2767
|
# resp.harness.updated_at #=> Time
|
|
@@ -2656,6 +2814,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2656
2814
|
# resp.harness.skills[0].git.path #=> String
|
|
2657
2815
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
2658
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
|
|
2659
2819
|
# resp.harness.allowed_tools #=> Array
|
|
2660
2820
|
# resp.harness.allowed_tools[0] #=> String
|
|
2661
2821
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -2719,6 +2879,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
2719
2879
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
2720
2880
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
2721
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
|
|
2722
2886
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
2723
2887
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
2724
2888
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -2726,6 +2890,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2726
2890
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
2727
2891
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
2728
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
|
|
2729
2898
|
# resp.harness.max_iterations #=> Integer
|
|
2730
2899
|
# resp.harness.max_tokens #=> Integer
|
|
2731
2900
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -2740,6 +2909,72 @@ module Aws::BedrockAgentCoreControl
|
|
|
2740
2909
|
req.send_request(options)
|
|
2741
2910
|
end
|
|
2742
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
|
+
|
|
2743
2978
|
# Creates a new Amazon Bedrock AgentCore Memory resource.
|
|
2744
2979
|
#
|
|
2745
2980
|
# @option params [String] :client_token
|
|
@@ -3226,6 +3461,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3226
3461
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
|
|
3227
3462
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
|
|
3228
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
|
|
3229
3465
|
#
|
|
3230
3466
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateMemory AWS API Documentation
|
|
3231
3467
|
#
|
|
@@ -3995,6 +4231,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3995
4231
|
# },
|
|
3996
4232
|
# },
|
|
3997
4233
|
# ],
|
|
4234
|
+
# allowed_workload_configuration: {
|
|
4235
|
+
# hosting_environments: [
|
|
4236
|
+
# {
|
|
4237
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
4238
|
+
# },
|
|
4239
|
+
# ],
|
|
4240
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
4241
|
+
# },
|
|
3998
4242
|
# },
|
|
3999
4243
|
# },
|
|
4000
4244
|
# role_arn: "RoleArn", # required
|
|
@@ -4046,6 +4290,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4046
4290
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
4047
4291
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
4048
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
|
|
4049
4297
|
# resp.role_arn #=> String
|
|
4050
4298
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
4051
4299
|
# resp.created_at #=> Time
|
|
@@ -4111,6 +4359,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4111
4359
|
# and IGNORE\_ALL\_FINDINGS only when you understand and accept the
|
|
4112
4360
|
# analyzer findings.
|
|
4113
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
|
+
#
|
|
4114
4368
|
# @option params [required, String] :policy_engine_id
|
|
4115
4369
|
# The identifier of the policy engine which contains this policy. Policy
|
|
4116
4370
|
# engines group related policies and provide the execution context for
|
|
@@ -4135,6 +4389,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4135
4389
|
# * {Types::CreatePolicyResponse#updated_at #updated_at} => Time
|
|
4136
4390
|
# * {Types::CreatePolicyResponse#policy_arn #policy_arn} => String
|
|
4137
4391
|
# * {Types::CreatePolicyResponse#status #status} => String
|
|
4392
|
+
# * {Types::CreatePolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
4138
4393
|
# * {Types::CreatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
4139
4394
|
# * {Types::CreatePolicyResponse#description #description} => String
|
|
4140
4395
|
# * {Types::CreatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -4151,9 +4406,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4151
4406
|
# policy_generation_id: "ResourceId", # required
|
|
4152
4407
|
# policy_generation_asset_id: "ResourceId", # required
|
|
4153
4408
|
# },
|
|
4409
|
+
# policy: {
|
|
4410
|
+
# statement: "Statement", # required
|
|
4411
|
+
# },
|
|
4154
4412
|
# },
|
|
4155
4413
|
# description: "Description",
|
|
4156
4414
|
# validation_mode: "FAIL_ON_ANY_FINDINGS", # accepts FAIL_ON_ANY_FINDINGS, IGNORE_ALL_FINDINGS
|
|
4415
|
+
# enforcement_mode: "ACTIVE", # accepts ACTIVE, LOG_ONLY
|
|
4157
4416
|
# policy_engine_id: "ResourceId", # required
|
|
4158
4417
|
# client_token: "ClientToken",
|
|
4159
4418
|
# })
|
|
@@ -4167,9 +4426,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4167
4426
|
# resp.updated_at #=> Time
|
|
4168
4427
|
# resp.policy_arn #=> String
|
|
4169
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"
|
|
4170
4430
|
# resp.definition.cedar.statement #=> String
|
|
4171
4431
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
4172
4432
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
4433
|
+
# resp.definition.policy.statement #=> String
|
|
4173
4434
|
# resp.description #=> String
|
|
4174
4435
|
# resp.status_reasons #=> Array
|
|
4175
4436
|
# resp.status_reasons[0] #=> String
|
|
@@ -4387,6 +4648,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4387
4648
|
# },
|
|
4388
4649
|
# },
|
|
4389
4650
|
# ],
|
|
4651
|
+
# allowed_workload_configuration: {
|
|
4652
|
+
# hosting_environments: [
|
|
4653
|
+
# {
|
|
4654
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
4655
|
+
# },
|
|
4656
|
+
# ],
|
|
4657
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
4658
|
+
# },
|
|
4390
4659
|
# },
|
|
4391
4660
|
# },
|
|
4392
4661
|
# client_token: "ClientToken",
|
|
@@ -5122,6 +5391,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5122
5391
|
# **A suitable default value is auto-generated.** You should normally
|
|
5123
5392
|
# not need to pass this option.**
|
|
5124
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
|
+
#
|
|
5125
5399
|
# @return [Types::DeleteHarnessResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5126
5400
|
#
|
|
5127
5401
|
# * {Types::DeleteHarnessResponse#harness #harness} => Types::Harness
|
|
@@ -5131,6 +5405,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5131
5405
|
# resp = client.delete_harness({
|
|
5132
5406
|
# harness_id: "HarnessId", # required
|
|
5133
5407
|
# client_token: "ClientToken",
|
|
5408
|
+
# delete_managed_memory: false,
|
|
5134
5409
|
# })
|
|
5135
5410
|
#
|
|
5136
5411
|
# @example Response structure
|
|
@@ -5139,6 +5414,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5139
5414
|
# resp.harness.harness_name #=> String
|
|
5140
5415
|
# resp.harness.arn #=> String
|
|
5141
5416
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
5417
|
+
# resp.harness.harness_version #=> String
|
|
5142
5418
|
# resp.harness.execution_role_arn #=> String
|
|
5143
5419
|
# resp.harness.created_at #=> Time
|
|
5144
5420
|
# resp.harness.updated_at #=> Time
|
|
@@ -5191,6 +5467,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5191
5467
|
# resp.harness.skills[0].git.path #=> String
|
|
5192
5468
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
5193
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
|
|
5194
5472
|
# resp.harness.allowed_tools #=> Array
|
|
5195
5473
|
# resp.harness.allowed_tools[0] #=> String
|
|
5196
5474
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -5254,6 +5532,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5254
5532
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
5255
5533
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
5256
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
|
|
5257
5539
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
5258
5540
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
5259
5541
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -5261,6 +5543,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5261
5543
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
5262
5544
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
5263
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
|
|
5264
5551
|
# resp.harness.max_iterations #=> Integer
|
|
5265
5552
|
# resp.harness.max_tokens #=> Integer
|
|
5266
5553
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -5275,6 +5562,56 @@ module Aws::BedrockAgentCoreControl
|
|
|
5275
5562
|
req.send_request(options)
|
|
5276
5563
|
end
|
|
5277
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
|
+
|
|
5278
5615
|
# Deletes an Amazon Bedrock AgentCore Memory resource.
|
|
5279
5616
|
#
|
|
5280
5617
|
# @option params [String] :client_token
|
|
@@ -5513,6 +5850,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5513
5850
|
# * {Types::DeletePolicyResponse#updated_at #updated_at} => Time
|
|
5514
5851
|
# * {Types::DeletePolicyResponse#policy_arn #policy_arn} => String
|
|
5515
5852
|
# * {Types::DeletePolicyResponse#status #status} => String
|
|
5853
|
+
# * {Types::DeletePolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
5516
5854
|
# * {Types::DeletePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
5517
5855
|
# * {Types::DeletePolicyResponse#description #description} => String
|
|
5518
5856
|
# * {Types::DeletePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -5533,9 +5871,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5533
5871
|
# resp.updated_at #=> Time
|
|
5534
5872
|
# resp.policy_arn #=> String
|
|
5535
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"
|
|
5536
5875
|
# resp.definition.cedar.statement #=> String
|
|
5537
5876
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
5538
5877
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
5878
|
+
# resp.definition.policy.statement #=> String
|
|
5539
5879
|
# resp.description #=> String
|
|
5540
5880
|
# resp.status_reasons #=> Array
|
|
5541
5881
|
# resp.status_reasons[0] #=> String
|
|
@@ -5815,6 +6155,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5815
6155
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
5816
6156
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
5817
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
|
|
5818
6162
|
# resp.request_header_configuration.request_header_allowlist #=> Array
|
|
5819
6163
|
# resp.request_header_configuration.request_header_allowlist[0] #=> String
|
|
5820
6164
|
# resp.metadata_configuration.require_mmdsv2 #=> Boolean
|
|
@@ -6373,10 +6717,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6373
6717
|
# * {Types::GetGatewayResponse#authorizer_type #authorizer_type} => String
|
|
6374
6718
|
# * {Types::GetGatewayResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
6375
6719
|
# * {Types::GetGatewayResponse#kms_key_arn #kms_key_arn} => String
|
|
6720
|
+
# * {Types::GetGatewayResponse#custom_transform_configuration #custom_transform_configuration} => Types::CustomTransformConfiguration
|
|
6376
6721
|
# * {Types::GetGatewayResponse#interceptor_configurations #interceptor_configurations} => Array<Types::GatewayInterceptorConfiguration>
|
|
6377
6722
|
# * {Types::GetGatewayResponse#policy_engine_configuration #policy_engine_configuration} => Types::GatewayPolicyEngineConfiguration
|
|
6378
6723
|
# * {Types::GetGatewayResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
6379
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
|
|
6380
6727
|
#
|
|
6381
6728
|
# @example Request syntax with placeholder values
|
|
6382
6729
|
#
|
|
@@ -6441,16 +6788,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
6441
6788
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
6442
6789
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
6443
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
|
|
6444
6795
|
# resp.kms_key_arn #=> String
|
|
6796
|
+
# resp.custom_transform_configuration.lambda.arn #=> String
|
|
6445
6797
|
# resp.interceptor_configurations #=> Array
|
|
6446
6798
|
# resp.interceptor_configurations[0].interceptor.lambda.arn #=> String
|
|
6447
6799
|
# resp.interceptor_configurations[0].interception_points #=> Array
|
|
6448
6800
|
# resp.interceptor_configurations[0].interception_points[0] #=> String, one of "REQUEST", "RESPONSE"
|
|
6449
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"
|
|
6450
6804
|
# resp.policy_engine_configuration.arn #=> String
|
|
6451
6805
|
# resp.policy_engine_configuration.mode #=> String, one of "LOG_ONLY", "ENFORCE"
|
|
6452
6806
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
6453
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"
|
|
6454
6810
|
#
|
|
6455
6811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGateway AWS API Documentation
|
|
6456
6812
|
#
|
|
@@ -6622,8 +6978,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
6622
6978
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
6623
6979
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
6624
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
|
|
6625
6991
|
# resp.target_configuration.http.agentcore_runtime.arn #=> String
|
|
6626
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
|
|
6627
7012
|
# resp.credential_provider_configurations #=> Array
|
|
6628
7013
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
|
|
6629
7014
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -6673,11 +7058,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
6673
7058
|
req.send_request(options)
|
|
6674
7059
|
end
|
|
6675
7060
|
|
|
6676
|
-
# Operation to get a single
|
|
7061
|
+
# Operation to get a single harness.
|
|
6677
7062
|
#
|
|
6678
7063
|
# @option params [required, String] :harness_id
|
|
6679
7064
|
# The ID of the harness to retrieve.
|
|
6680
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
|
+
#
|
|
6681
7070
|
# @return [Types::GetHarnessResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6682
7071
|
#
|
|
6683
7072
|
# * {Types::GetHarnessResponse#harness #harness} => Types::Harness
|
|
@@ -6686,6 +7075,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6686
7075
|
#
|
|
6687
7076
|
# resp = client.get_harness({
|
|
6688
7077
|
# harness_id: "HarnessId", # required
|
|
7078
|
+
# harness_version: "HarnessVersion",
|
|
6689
7079
|
# })
|
|
6690
7080
|
#
|
|
6691
7081
|
# @example Response structure
|
|
@@ -6694,6 +7084,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6694
7084
|
# resp.harness.harness_name #=> String
|
|
6695
7085
|
# resp.harness.arn #=> String
|
|
6696
7086
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
7087
|
+
# resp.harness.harness_version #=> String
|
|
6697
7088
|
# resp.harness.execution_role_arn #=> String
|
|
6698
7089
|
# resp.harness.created_at #=> Time
|
|
6699
7090
|
# resp.harness.updated_at #=> Time
|
|
@@ -6746,6 +7137,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6746
7137
|
# resp.harness.skills[0].git.path #=> String
|
|
6747
7138
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
6748
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
|
|
6749
7142
|
# resp.harness.allowed_tools #=> Array
|
|
6750
7143
|
# resp.harness.allowed_tools[0] #=> String
|
|
6751
7144
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -6809,6 +7202,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
6809
7202
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
6810
7203
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
6811
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
|
|
6812
7209
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
6813
7210
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
6814
7211
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -6816,6 +7213,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
6816
7213
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
6817
7214
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
6818
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
|
|
6819
7221
|
# resp.harness.max_iterations #=> Integer
|
|
6820
7222
|
# resp.harness.max_tokens #=> Integer
|
|
6821
7223
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -6830,6 +7232,48 @@ module Aws::BedrockAgentCoreControl
|
|
|
6830
7232
|
req.send_request(options)
|
|
6831
7233
|
end
|
|
6832
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
|
+
|
|
6833
7277
|
# Retrieve an existing Amazon Bedrock AgentCore Memory resource.
|
|
6834
7278
|
#
|
|
6835
7279
|
# @option params [required, String] :memory_id
|
|
@@ -6953,6 +7397,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6953
7397
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
|
|
6954
7398
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
|
|
6955
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
|
|
6956
7401
|
#
|
|
6957
7402
|
#
|
|
6958
7403
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -7371,6 +7816,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
7371
7816
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
7372
7817
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
7373
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
|
|
7374
7823
|
# resp.role_arn #=> String
|
|
7375
7824
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
7376
7825
|
# resp.created_at #=> Time
|
|
@@ -7410,6 +7859,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7410
7859
|
# * {Types::GetPolicyResponse#updated_at #updated_at} => Time
|
|
7411
7860
|
# * {Types::GetPolicyResponse#policy_arn #policy_arn} => String
|
|
7412
7861
|
# * {Types::GetPolicyResponse#status #status} => String
|
|
7862
|
+
# * {Types::GetPolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
7413
7863
|
# * {Types::GetPolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
7414
7864
|
# * {Types::GetPolicyResponse#description #description} => String
|
|
7415
7865
|
# * {Types::GetPolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -7430,9 +7880,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7430
7880
|
# resp.updated_at #=> Time
|
|
7431
7881
|
# resp.policy_arn #=> String
|
|
7432
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"
|
|
7433
7884
|
# resp.definition.cedar.statement #=> String
|
|
7434
7885
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
7435
7886
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
7887
|
+
# resp.definition.policy.statement #=> String
|
|
7436
7888
|
# resp.description #=> String
|
|
7437
7889
|
# resp.status_reasons #=> Array
|
|
7438
7890
|
# resp.status_reasons[0] #=> String
|
|
@@ -7704,6 +8156,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7704
8156
|
# * {Types::GetPolicySummaryResponse#updated_at #updated_at} => Time
|
|
7705
8157
|
# * {Types::GetPolicySummaryResponse#policy_arn #policy_arn} => String
|
|
7706
8158
|
# * {Types::GetPolicySummaryResponse#status #status} => String
|
|
8159
|
+
# * {Types::GetPolicySummaryResponse#enforcement_mode #enforcement_mode} => String
|
|
7707
8160
|
#
|
|
7708
8161
|
# @example Request syntax with placeholder values
|
|
7709
8162
|
#
|
|
@@ -7721,6 +8174,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7721
8174
|
# resp.updated_at #=> Time
|
|
7722
8175
|
# resp.policy_arn #=> String
|
|
7723
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"
|
|
7724
8178
|
#
|
|
7725
8179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummary AWS API Documentation
|
|
7726
8180
|
#
|
|
@@ -7800,6 +8254,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
7800
8254
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
7801
8255
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
7802
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
|
|
7803
8261
|
# resp.approval_configuration.auto_approval #=> Boolean
|
|
7804
8262
|
# resp.status #=> String, one of "CREATING", "READY", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
7805
8263
|
# resp.status_reason #=> String
|
|
@@ -8754,6 +9212,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
8754
9212
|
# resp.items[0].created_at #=> Time
|
|
8755
9213
|
# resp.items[0].updated_at #=> Time
|
|
8756
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"
|
|
8757
9220
|
# resp.next_token #=> String
|
|
8758
9221
|
#
|
|
8759
9222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayTargets AWS API Documentation
|
|
@@ -8815,7 +9278,106 @@ module Aws::BedrockAgentCoreControl
|
|
|
8815
9278
|
req.send_request(options)
|
|
8816
9279
|
end
|
|
8817
9280
|
|
|
8818
|
-
# 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.
|
|
8819
9381
|
#
|
|
8820
9382
|
# @option params [Integer] :max_results
|
|
8821
9383
|
# The maximum number of results to return in a single call.
|
|
@@ -8846,6 +9408,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8846
9408
|
# resp.harnesses[0].status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
8847
9409
|
# resp.harnesses[0].created_at #=> Time
|
|
8848
9410
|
# resp.harnesses[0].updated_at #=> Time
|
|
9411
|
+
# resp.harnesses[0].harness_version #=> String
|
|
8849
9412
|
# resp.next_token #=> String
|
|
8850
9413
|
#
|
|
8851
9414
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnesses AWS API Documentation
|
|
@@ -8891,6 +9454,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8891
9454
|
# resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
8892
9455
|
# resp.memories[0].created_at #=> Time
|
|
8893
9456
|
# resp.memories[0].updated_at #=> Time
|
|
9457
|
+
# resp.memories[0].managed_by_resource_arn #=> String
|
|
8894
9458
|
# resp.next_token #=> String
|
|
8895
9459
|
#
|
|
8896
9460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListMemories AWS API Documentation
|
|
@@ -9192,9 +9756,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
9192
9756
|
# resp.policies[0].updated_at #=> Time
|
|
9193
9757
|
# resp.policies[0].policy_arn #=> String
|
|
9194
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"
|
|
9195
9760
|
# resp.policies[0].definition.cedar.statement #=> String
|
|
9196
9761
|
# resp.policies[0].definition.policy_generation.policy_generation_id #=> String
|
|
9197
9762
|
# resp.policies[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
9763
|
+
# resp.policies[0].definition.policy.statement #=> String
|
|
9198
9764
|
# resp.policies[0].description #=> String
|
|
9199
9765
|
# resp.policies[0].status_reasons #=> Array
|
|
9200
9766
|
# resp.policies[0].status_reasons[0] #=> String
|
|
@@ -9383,6 +9949,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9383
9949
|
# resp.policy_generation_assets[0].definition.cedar.statement #=> String
|
|
9384
9950
|
# resp.policy_generation_assets[0].definition.policy_generation.policy_generation_id #=> String
|
|
9385
9951
|
# resp.policy_generation_assets[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
9952
|
+
# resp.policy_generation_assets[0].definition.policy.statement #=> String
|
|
9386
9953
|
# resp.policy_generation_assets[0].raw_text_fragment #=> String
|
|
9387
9954
|
# resp.policy_generation_assets[0].findings #=> Array
|
|
9388
9955
|
# resp.policy_generation_assets[0].findings[0].type #=> String, one of "VALID", "INVALID", "NOT_TRANSLATABLE", "ALLOW_ALL", "ALLOW_NONE", "DENY_ALL", "DENY_NONE"
|
|
@@ -9574,6 +10141,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9574
10141
|
# resp.policies[0].updated_at #=> Time
|
|
9575
10142
|
# resp.policies[0].policy_arn #=> String
|
|
9576
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"
|
|
9577
10145
|
# resp.next_token #=> String
|
|
9578
10146
|
#
|
|
9579
10147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicySummaries AWS API Documentation
|
|
@@ -10103,8 +10671,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
10103
10671
|
# resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
10104
10672
|
# resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
10105
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
|
|
10106
10684
|
# resp.targets[0].target_configuration.http.agentcore_runtime.arn #=> String
|
|
10107
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
|
|
10108
10705
|
# resp.targets[0].credential_provider_configurations #=> Array
|
|
10109
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"
|
|
10110
10707
|
# resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -10366,6 +10963,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
10366
10963
|
# },
|
|
10367
10964
|
# },
|
|
10368
10965
|
# ],
|
|
10966
|
+
# allowed_workload_configuration: {
|
|
10967
|
+
# hosting_environments: [
|
|
10968
|
+
# {
|
|
10969
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
10970
|
+
# },
|
|
10971
|
+
# ],
|
|
10972
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
10973
|
+
# },
|
|
10369
10974
|
# },
|
|
10370
10975
|
# },
|
|
10371
10976
|
# request_header_configuration: {
|
|
@@ -10492,15 +11097,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
10492
11097
|
# existing API key and is encrypted and stored securely.
|
|
10493
11098
|
#
|
|
10494
11099
|
# @option params [Types::SecretReference] :api_key_secret_config
|
|
10495
|
-
# A reference to the
|
|
10496
|
-
# This includes the secret ID and the JSON key used
|
|
10497
|
-
# key value from the secret. Required when
|
|
10498
|
-
# 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`.
|
|
10499
11104
|
#
|
|
10500
11105
|
# @option params [String] :api_key_secret_source
|
|
10501
11106
|
# The source type of the API key secret. Use `MANAGED` if the secret is
|
|
10502
11107
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
10503
|
-
# yourself in
|
|
11108
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
10504
11109
|
#
|
|
10505
11110
|
# @return [Types::UpdateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10506
11111
|
#
|
|
@@ -10911,6 +11516,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10911
11516
|
# @option params [String] :kms_key_arn
|
|
10912
11517
|
# The updated ARN of the KMS key used to encrypt the gateway.
|
|
10913
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
|
+
#
|
|
10914
11524
|
# @option params [Array<Types::GatewayInterceptorConfiguration>] :interceptor_configurations
|
|
10915
11525
|
# The updated interceptor configurations for the gateway.
|
|
10916
11526
|
#
|
|
@@ -10931,6 +11541,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
10931
11541
|
# * If the value is omitted, a generic error message is returned to the
|
|
10932
11542
|
# end user.
|
|
10933
11543
|
#
|
|
11544
|
+
# @option params [Types::WafConfiguration] :waf_configuration
|
|
11545
|
+
# The updated Amazon Web Services WAF configuration for the gateway.
|
|
11546
|
+
#
|
|
10934
11547
|
# @return [Types::UpdateGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10935
11548
|
#
|
|
10936
11549
|
# * {Types::UpdateGatewayResponse#gateway_arn #gateway_arn} => String
|
|
@@ -10948,10 +11561,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
10948
11561
|
# * {Types::UpdateGatewayResponse#authorizer_type #authorizer_type} => String
|
|
10949
11562
|
# * {Types::UpdateGatewayResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
10950
11563
|
# * {Types::UpdateGatewayResponse#kms_key_arn #kms_key_arn} => String
|
|
11564
|
+
# * {Types::UpdateGatewayResponse#custom_transform_configuration #custom_transform_configuration} => Types::CustomTransformConfiguration
|
|
10951
11565
|
# * {Types::UpdateGatewayResponse#interceptor_configurations #interceptor_configurations} => Array<Types::GatewayInterceptorConfiguration>
|
|
10952
11566
|
# * {Types::UpdateGatewayResponse#policy_engine_configuration #policy_engine_configuration} => Types::GatewayPolicyEngineConfiguration
|
|
10953
11567
|
# * {Types::UpdateGatewayResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
10954
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
|
|
10955
11571
|
#
|
|
10956
11572
|
# @example Request syntax with placeholder values
|
|
10957
11573
|
#
|
|
@@ -11029,9 +11645,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
11029
11645
|
# },
|
|
11030
11646
|
# },
|
|
11031
11647
|
# ],
|
|
11648
|
+
# allowed_workload_configuration: {
|
|
11649
|
+
# hosting_environments: [
|
|
11650
|
+
# {
|
|
11651
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
11652
|
+
# },
|
|
11653
|
+
# ],
|
|
11654
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
11655
|
+
# },
|
|
11032
11656
|
# },
|
|
11033
11657
|
# },
|
|
11034
11658
|
# kms_key_arn: "KmsKeyArn",
|
|
11659
|
+
# custom_transform_configuration: {
|
|
11660
|
+
# lambda: {
|
|
11661
|
+
# arn: "LambdaFunctionArn",
|
|
11662
|
+
# },
|
|
11663
|
+
# },
|
|
11035
11664
|
# interceptor_configurations: [
|
|
11036
11665
|
# {
|
|
11037
11666
|
# interceptor: { # required
|
|
@@ -11042,6 +11671,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
11042
11671
|
# interception_points: ["REQUEST"], # required, accepts REQUEST, RESPONSE
|
|
11043
11672
|
# input_configuration: {
|
|
11044
11673
|
# pass_request_headers: false, # required
|
|
11674
|
+
# payload_filter: {
|
|
11675
|
+
# exclude: [ # required
|
|
11676
|
+
# {
|
|
11677
|
+
# field: "RESPONSE_BODY", # accepts RESPONSE_BODY
|
|
11678
|
+
# },
|
|
11679
|
+
# ],
|
|
11680
|
+
# },
|
|
11045
11681
|
# },
|
|
11046
11682
|
# },
|
|
11047
11683
|
# ],
|
|
@@ -11050,6 +11686,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
11050
11686
|
# mode: "LOG_ONLY", # required, accepts LOG_ONLY, ENFORCE
|
|
11051
11687
|
# },
|
|
11052
11688
|
# exception_level: "DEBUG", # accepts DEBUG
|
|
11689
|
+
# waf_configuration: {
|
|
11690
|
+
# failure_mode: "FAIL_CLOSE", # accepts FAIL_CLOSE, FAIL_OPEN
|
|
11691
|
+
# },
|
|
11053
11692
|
# })
|
|
11054
11693
|
#
|
|
11055
11694
|
# @example Response structure
|
|
@@ -11109,16 +11748,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
11109
11748
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
11110
11749
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
11111
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
|
|
11112
11755
|
# resp.kms_key_arn #=> String
|
|
11756
|
+
# resp.custom_transform_configuration.lambda.arn #=> String
|
|
11113
11757
|
# resp.interceptor_configurations #=> Array
|
|
11114
11758
|
# resp.interceptor_configurations[0].interceptor.lambda.arn #=> String
|
|
11115
11759
|
# resp.interceptor_configurations[0].interception_points #=> Array
|
|
11116
11760
|
# resp.interceptor_configurations[0].interception_points[0] #=> String, one of "REQUEST", "RESPONSE"
|
|
11117
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"
|
|
11118
11764
|
# resp.policy_engine_configuration.arn #=> String
|
|
11119
11765
|
# resp.policy_engine_configuration.mode #=> String, one of "LOG_ONLY", "ENFORCE"
|
|
11120
11766
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
11121
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"
|
|
11122
11770
|
#
|
|
11123
11771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGateway AWS API Documentation
|
|
11124
11772
|
#
|
|
@@ -11291,7 +11939,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11291
11939
|
# @option params [required, String] :target_id
|
|
11292
11940
|
# The unique identifier of the gateway target to update.
|
|
11293
11941
|
#
|
|
11294
|
-
# @option params [
|
|
11942
|
+
# @option params [String] :name
|
|
11295
11943
|
# The updated name for the gateway target.
|
|
11296
11944
|
#
|
|
11297
11945
|
# @option params [String] :description
|
|
@@ -11336,7 +11984,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11336
11984
|
# resp = client.update_gateway_target({
|
|
11337
11985
|
# gateway_identifier: "GatewayIdentifier", # required
|
|
11338
11986
|
# target_id: "TargetId", # required
|
|
11339
|
-
# name: "TargetName",
|
|
11987
|
+
# name: "TargetName",
|
|
11340
11988
|
# description: "TargetDescription",
|
|
11341
11989
|
# target_configuration: { # required
|
|
11342
11990
|
# mcp: {
|
|
@@ -11427,11 +12075,85 @@ module Aws::BedrockAgentCoreControl
|
|
|
11427
12075
|
# ],
|
|
11428
12076
|
# },
|
|
11429
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
|
+
# },
|
|
11430
12099
|
# },
|
|
11431
12100
|
# http: {
|
|
11432
12101
|
# agentcore_runtime: {
|
|
11433
12102
|
# arn: "RuntimeArn", # required
|
|
11434
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
|
+
# ],
|
|
11435
12157
|
# },
|
|
11436
12158
|
# },
|
|
11437
12159
|
# },
|
|
@@ -11537,8 +12259,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
11537
12259
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
|
|
11538
12260
|
# resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
|
|
11539
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
|
|
11540
12272
|
# resp.target_configuration.http.agentcore_runtime.arn #=> String
|
|
11541
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
|
|
11542
12293
|
# resp.credential_provider_configurations #=> Array
|
|
11543
12294
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
|
|
11544
12295
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -11588,7 +12339,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11588
12339
|
req.send_request(options)
|
|
11589
12340
|
end
|
|
11590
12341
|
|
|
11591
|
-
# Operation to update a
|
|
12342
|
+
# Operation to update a harness.
|
|
11592
12343
|
#
|
|
11593
12344
|
# @option params [required, String] :harness_id
|
|
11594
12345
|
# The ID of the harness to update.
|
|
@@ -11774,6 +12525,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
11774
12525
|
# },
|
|
11775
12526
|
# },
|
|
11776
12527
|
# ],
|
|
12528
|
+
# allowed_workload_configuration: {
|
|
12529
|
+
# hosting_environments: [
|
|
12530
|
+
# {
|
|
12531
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
12532
|
+
# },
|
|
12533
|
+
# ],
|
|
12534
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
12535
|
+
# },
|
|
11777
12536
|
# },
|
|
11778
12537
|
# },
|
|
11779
12538
|
# },
|
|
@@ -11878,6 +12637,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
11878
12637
|
# username: "String",
|
|
11879
12638
|
# },
|
|
11880
12639
|
# },
|
|
12640
|
+
# aws_skills: {
|
|
12641
|
+
# paths: ["HarnessAwsSkillPath"],
|
|
12642
|
+
# },
|
|
11881
12643
|
# },
|
|
11882
12644
|
# ],
|
|
11883
12645
|
# allowed_tools: ["HarnessAllowedTool"],
|
|
@@ -11895,6 +12657,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
11895
12657
|
# },
|
|
11896
12658
|
# },
|
|
11897
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
|
+
# },
|
|
11898
12668
|
# },
|
|
11899
12669
|
# },
|
|
11900
12670
|
# truncation: {
|
|
@@ -11921,6 +12691,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11921
12691
|
# resp.harness.harness_name #=> String
|
|
11922
12692
|
# resp.harness.arn #=> String
|
|
11923
12693
|
# resp.harness.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING", "DELETE_FAILED"
|
|
12694
|
+
# resp.harness.harness_version #=> String
|
|
11924
12695
|
# resp.harness.execution_role_arn #=> String
|
|
11925
12696
|
# resp.harness.created_at #=> Time
|
|
11926
12697
|
# resp.harness.updated_at #=> Time
|
|
@@ -11973,6 +12744,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
11973
12744
|
# resp.harness.skills[0].git.path #=> String
|
|
11974
12745
|
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
11975
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
|
|
11976
12749
|
# resp.harness.allowed_tools #=> Array
|
|
11977
12750
|
# resp.harness.allowed_tools[0] #=> String
|
|
11978
12751
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -12036,6 +12809,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
12036
12809
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
12037
12810
|
# resp.harness.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
12038
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
|
|
12039
12816
|
# resp.harness.memory.agent_core_memory_configuration.arn #=> String
|
|
12040
12817
|
# resp.harness.memory.agent_core_memory_configuration.actor_id #=> String
|
|
12041
12818
|
# resp.harness.memory.agent_core_memory_configuration.messages_count #=> Integer
|
|
@@ -12043,6 +12820,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
12043
12820
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].top_k #=> Integer
|
|
12044
12821
|
# resp.harness.memory.agent_core_memory_configuration.retrieval_config["String"].relevance_score #=> Float
|
|
12045
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
|
|
12046
12828
|
# resp.harness.max_iterations #=> Integer
|
|
12047
12829
|
# resp.harness.max_tokens #=> Integer
|
|
12048
12830
|
# resp.harness.timeout_seconds #=> Integer
|
|
@@ -12057,6 +12839,66 @@ module Aws::BedrockAgentCoreControl
|
|
|
12057
12839
|
req.send_request(options)
|
|
12058
12840
|
end
|
|
12059
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
|
+
|
|
12060
12902
|
# Update an Amazon Bedrock AgentCore Memory resource memory.
|
|
12061
12903
|
#
|
|
12062
12904
|
# @option params [String] :client_token
|
|
@@ -12699,6 +13541,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12699
13541
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
|
|
12700
13542
|
# resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
|
|
12701
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
|
|
12702
13545
|
#
|
|
12703
13546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateMemory AWS API Documentation
|
|
12704
13547
|
#
|
|
@@ -13418,6 +14261,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13418
14261
|
# },
|
|
13419
14262
|
# },
|
|
13420
14263
|
# ],
|
|
14264
|
+
# allowed_workload_configuration: {
|
|
14265
|
+
# hosting_environments: [
|
|
14266
|
+
# {
|
|
14267
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
14268
|
+
# },
|
|
14269
|
+
# ],
|
|
14270
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
14271
|
+
# },
|
|
13421
14272
|
# },
|
|
13422
14273
|
# },
|
|
13423
14274
|
# role_arn: "RoleArn",
|
|
@@ -13480,6 +14331,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
13480
14331
|
# FAIL\_ON\_ANY\_FINDINGS to ensure policy correctness during updates,
|
|
13481
14332
|
# especially when modifying policy logic or conditions.
|
|
13482
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
|
+
#
|
|
13483
14341
|
# @return [Types::UpdatePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13484
14342
|
#
|
|
13485
14343
|
# * {Types::UpdatePolicyResponse#policy_id #policy_id} => String
|
|
@@ -13489,6 +14347,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
13489
14347
|
# * {Types::UpdatePolicyResponse#updated_at #updated_at} => Time
|
|
13490
14348
|
# * {Types::UpdatePolicyResponse#policy_arn #policy_arn} => String
|
|
13491
14349
|
# * {Types::UpdatePolicyResponse#status #status} => String
|
|
14350
|
+
# * {Types::UpdatePolicyResponse#enforcement_mode #enforcement_mode} => String
|
|
13492
14351
|
# * {Types::UpdatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
13493
14352
|
# * {Types::UpdatePolicyResponse#description #description} => String
|
|
13494
14353
|
# * {Types::UpdatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
@@ -13509,8 +14368,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
13509
14368
|
# policy_generation_id: "ResourceId", # required
|
|
13510
14369
|
# policy_generation_asset_id: "ResourceId", # required
|
|
13511
14370
|
# },
|
|
14371
|
+
# policy: {
|
|
14372
|
+
# statement: "Statement", # required
|
|
14373
|
+
# },
|
|
13512
14374
|
# },
|
|
13513
14375
|
# validation_mode: "FAIL_ON_ANY_FINDINGS", # accepts FAIL_ON_ANY_FINDINGS, IGNORE_ALL_FINDINGS
|
|
14376
|
+
# enforcement_mode: "ACTIVE", # accepts ACTIVE, LOG_ONLY
|
|
13514
14377
|
# })
|
|
13515
14378
|
#
|
|
13516
14379
|
# @example Response structure
|
|
@@ -13522,9 +14385,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
13522
14385
|
# resp.updated_at #=> Time
|
|
13523
14386
|
# resp.policy_arn #=> String
|
|
13524
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"
|
|
13525
14389
|
# resp.definition.cedar.statement #=> String
|
|
13526
14390
|
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
13527
14391
|
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
14392
|
+
# resp.definition.policy.statement #=> String
|
|
13528
14393
|
# resp.description #=> String
|
|
13529
14394
|
# resp.status_reasons #=> Array
|
|
13530
14395
|
# resp.status_reasons[0] #=> String
|
|
@@ -13696,6 +14561,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13696
14561
|
# },
|
|
13697
14562
|
# },
|
|
13698
14563
|
# ],
|
|
14564
|
+
# allowed_workload_configuration: {
|
|
14565
|
+
# hosting_environments: [
|
|
14566
|
+
# {
|
|
14567
|
+
# arn: "BedrockAgentcoreResourceArn", # required
|
|
14568
|
+
# },
|
|
14569
|
+
# ],
|
|
14570
|
+
# workload_identities: ["WorkloadIdentityNameType"],
|
|
14571
|
+
# },
|
|
13699
14572
|
# },
|
|
13700
14573
|
# },
|
|
13701
14574
|
# },
|
|
@@ -13749,6 +14622,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
13749
14622
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
13750
14623
|
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
13751
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
|
|
13752
14629
|
# resp.approval_configuration.auto_approval #=> Boolean
|
|
13753
14630
|
# resp.status #=> String, one of "CREATING", "READY", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
13754
14631
|
# resp.status_reason #=> String
|
|
@@ -14080,7 +14957,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14080
14957
|
tracer: tracer
|
|
14081
14958
|
)
|
|
14082
14959
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
14083
|
-
context[:gem_version] = '1.
|
|
14960
|
+
context[:gem_version] = '1.54.0'
|
|
14084
14961
|
Seahorse::Client::Request.new(handlers, context)
|
|
14085
14962
|
end
|
|
14086
14963
|
|