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
data/sig/client.rbs
CHANGED
|
@@ -377,10 +377,13 @@ module Aws
|
|
|
377
377
|
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
378
378
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
|
379
379
|
def kms_key_arn: () -> ::String
|
|
380
|
+
def custom_transform_configuration: () -> Types::CustomTransformConfiguration
|
|
380
381
|
def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
|
|
381
382
|
def policy_engine_configuration: () -> Types::GatewayPolicyEngineConfiguration
|
|
382
383
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
|
383
384
|
def exception_level: () -> ("DEBUG")
|
|
385
|
+
def web_acl_arn: () -> ::String
|
|
386
|
+
def waf_configuration: () -> Types::WafConfiguration
|
|
384
387
|
end
|
|
385
388
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway-instance_method
|
|
386
389
|
def create_gateway: (
|
|
@@ -454,7 +457,7 @@ module Aws
|
|
|
454
457
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
|
|
455
458
|
def create_gateway_target: (
|
|
456
459
|
gateway_identifier: ::String,
|
|
457
|
-
name: ::String,
|
|
460
|
+
?name: ::String,
|
|
458
461
|
?description: ::String,
|
|
459
462
|
?client_token: ::String,
|
|
460
463
|
target_configuration: Params::target_configuration,
|
|
@@ -509,6 +512,21 @@ module Aws
|
|
|
509
512
|
) -> _CreateHarnessResponseSuccess
|
|
510
513
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHarnessResponseSuccess
|
|
511
514
|
|
|
515
|
+
interface _CreateHarnessEndpointResponseSuccess
|
|
516
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateHarnessEndpointResponse]
|
|
517
|
+
def endpoint: () -> Types::HarnessEndpoint
|
|
518
|
+
end
|
|
519
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_harness_endpoint-instance_method
|
|
520
|
+
def create_harness_endpoint: (
|
|
521
|
+
harness_id: ::String,
|
|
522
|
+
endpoint_name: ::String,
|
|
523
|
+
?target_version: ::String,
|
|
524
|
+
?description: ::String,
|
|
525
|
+
?client_token: ::String,
|
|
526
|
+
?tags: Hash[::String, ::String]
|
|
527
|
+
) -> _CreateHarnessEndpointResponseSuccess
|
|
528
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHarnessEndpointResponseSuccess
|
|
529
|
+
|
|
512
530
|
interface _CreateMemoryResponseSuccess
|
|
513
531
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMemoryOutput]
|
|
514
532
|
def memory: () -> Types::Memory
|
|
@@ -669,6 +687,7 @@ module Aws
|
|
|
669
687
|
def updated_at: () -> ::Time
|
|
670
688
|
def policy_arn: () -> ::String
|
|
671
689
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
690
|
+
def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
|
|
672
691
|
def definition: () -> Types::PolicyDefinition
|
|
673
692
|
def description: () -> ::String
|
|
674
693
|
def status_reasons: () -> ::Array[::String]
|
|
@@ -679,6 +698,7 @@ module Aws
|
|
|
679
698
|
definition: Params::policy_definition,
|
|
680
699
|
?description: ::String,
|
|
681
700
|
?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS"),
|
|
701
|
+
?enforcement_mode: ("ACTIVE" | "LOG_ONLY"),
|
|
682
702
|
policy_engine_id: ::String,
|
|
683
703
|
?client_token: ::String
|
|
684
704
|
) -> _CreatePolicyResponseSuccess
|
|
@@ -960,10 +980,23 @@ module Aws
|
|
|
960
980
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_harness-instance_method
|
|
961
981
|
def delete_harness: (
|
|
962
982
|
harness_id: ::String,
|
|
963
|
-
?client_token: ::String
|
|
983
|
+
?client_token: ::String,
|
|
984
|
+
?delete_managed_memory: bool
|
|
964
985
|
) -> _DeleteHarnessResponseSuccess
|
|
965
986
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteHarnessResponseSuccess
|
|
966
987
|
|
|
988
|
+
interface _DeleteHarnessEndpointResponseSuccess
|
|
989
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteHarnessEndpointResponse]
|
|
990
|
+
def endpoint: () -> Types::HarnessEndpoint
|
|
991
|
+
end
|
|
992
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_harness_endpoint-instance_method
|
|
993
|
+
def delete_harness_endpoint: (
|
|
994
|
+
harness_id: ::String,
|
|
995
|
+
endpoint_name: ::String,
|
|
996
|
+
?client_token: ::String
|
|
997
|
+
) -> _DeleteHarnessEndpointResponseSuccess
|
|
998
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteHarnessEndpointResponseSuccess
|
|
999
|
+
|
|
967
1000
|
interface _DeleteMemoryResponseSuccess
|
|
968
1001
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMemoryOutput]
|
|
969
1002
|
def memory_id: () -> ::String
|
|
@@ -1040,6 +1073,7 @@ module Aws
|
|
|
1040
1073
|
def updated_at: () -> ::Time
|
|
1041
1074
|
def policy_arn: () -> ::String
|
|
1042
1075
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1076
|
+
def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
|
|
1043
1077
|
def definition: () -> Types::PolicyDefinition
|
|
1044
1078
|
def description: () -> ::String
|
|
1045
1079
|
def status_reasons: () -> ::Array[::String]
|
|
@@ -1340,10 +1374,13 @@ module Aws
|
|
|
1340
1374
|
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1341
1375
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
|
1342
1376
|
def kms_key_arn: () -> ::String
|
|
1377
|
+
def custom_transform_configuration: () -> Types::CustomTransformConfiguration
|
|
1343
1378
|
def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
|
|
1344
1379
|
def policy_engine_configuration: () -> Types::GatewayPolicyEngineConfiguration
|
|
1345
1380
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
|
1346
1381
|
def exception_level: () -> ("DEBUG")
|
|
1382
|
+
def web_acl_arn: () -> ::String
|
|
1383
|
+
def waf_configuration: () -> Types::WafConfiguration
|
|
1347
1384
|
end
|
|
1348
1385
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway-instance_method
|
|
1349
1386
|
def get_gateway: (
|
|
@@ -1403,10 +1440,22 @@ module Aws
|
|
|
1403
1440
|
end
|
|
1404
1441
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_harness-instance_method
|
|
1405
1442
|
def get_harness: (
|
|
1406
|
-
harness_id: ::String
|
|
1443
|
+
harness_id: ::String,
|
|
1444
|
+
?harness_version: ::String
|
|
1407
1445
|
) -> _GetHarnessResponseSuccess
|
|
1408
1446
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHarnessResponseSuccess
|
|
1409
1447
|
|
|
1448
|
+
interface _GetHarnessEndpointResponseSuccess
|
|
1449
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetHarnessEndpointResponse]
|
|
1450
|
+
def endpoint: () -> Types::HarnessEndpoint
|
|
1451
|
+
end
|
|
1452
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_harness_endpoint-instance_method
|
|
1453
|
+
def get_harness_endpoint: (
|
|
1454
|
+
harness_id: ::String,
|
|
1455
|
+
endpoint_name: ::String
|
|
1456
|
+
) -> _GetHarnessEndpointResponseSuccess
|
|
1457
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHarnessEndpointResponseSuccess
|
|
1458
|
+
|
|
1410
1459
|
interface _GetMemoryResponseSuccess
|
|
1411
1460
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetMemoryOutput]
|
|
1412
1461
|
def memory: () -> Types::Memory
|
|
@@ -1528,6 +1577,7 @@ module Aws
|
|
|
1528
1577
|
def updated_at: () -> ::Time
|
|
1529
1578
|
def policy_arn: () -> ::String
|
|
1530
1579
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1580
|
+
def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
|
|
1531
1581
|
def definition: () -> Types::PolicyDefinition
|
|
1532
1582
|
def description: () -> ::String
|
|
1533
1583
|
def status_reasons: () -> ::Array[::String]
|
|
@@ -1621,6 +1671,7 @@ module Aws
|
|
|
1621
1671
|
def updated_at: () -> ::Time
|
|
1622
1672
|
def policy_arn: () -> ::String
|
|
1623
1673
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1674
|
+
def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
|
|
1624
1675
|
end
|
|
1625
1676
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_summary-instance_method
|
|
1626
1677
|
def get_policy_summary: (
|
|
@@ -1920,6 +1971,32 @@ module Aws
|
|
|
1920
1971
|
) -> _ListGatewaysResponseSuccess
|
|
1921
1972
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewaysResponseSuccess
|
|
1922
1973
|
|
|
1974
|
+
interface _ListHarnessEndpointsResponseSuccess
|
|
1975
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListHarnessEndpointsResponse]
|
|
1976
|
+
def endpoints: () -> ::Array[Types::HarnessEndpoint]
|
|
1977
|
+
def next_token: () -> ::String
|
|
1978
|
+
end
|
|
1979
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_harness_endpoints-instance_method
|
|
1980
|
+
def list_harness_endpoints: (
|
|
1981
|
+
harness_id: ::String,
|
|
1982
|
+
?max_results: ::Integer,
|
|
1983
|
+
?next_token: ::String
|
|
1984
|
+
) -> _ListHarnessEndpointsResponseSuccess
|
|
1985
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHarnessEndpointsResponseSuccess
|
|
1986
|
+
|
|
1987
|
+
interface _ListHarnessVersionsResponseSuccess
|
|
1988
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListHarnessVersionsResponse]
|
|
1989
|
+
def harness_versions: () -> ::Array[Types::HarnessVersionSummary]
|
|
1990
|
+
def next_token: () -> ::String
|
|
1991
|
+
end
|
|
1992
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_harness_versions-instance_method
|
|
1993
|
+
def list_harness_versions: (
|
|
1994
|
+
harness_id: ::String,
|
|
1995
|
+
?max_results: ::Integer,
|
|
1996
|
+
?next_token: ::String
|
|
1997
|
+
) -> _ListHarnessVersionsResponseSuccess
|
|
1998
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHarnessVersionsResponseSuccess
|
|
1999
|
+
|
|
1923
2000
|
interface _ListHarnessesResponseSuccess
|
|
1924
2001
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListHarnessesResponse]
|
|
1925
2002
|
def harnesses: () -> ::Array[Types::HarnessSummary]
|
|
@@ -2426,10 +2503,13 @@ module Aws
|
|
|
2426
2503
|
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
2427
2504
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
|
2428
2505
|
def kms_key_arn: () -> ::String
|
|
2506
|
+
def custom_transform_configuration: () -> Types::CustomTransformConfiguration
|
|
2429
2507
|
def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
|
|
2430
2508
|
def policy_engine_configuration: () -> Types::GatewayPolicyEngineConfiguration
|
|
2431
2509
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
|
2432
2510
|
def exception_level: () -> ("DEBUG")
|
|
2511
|
+
def web_acl_arn: () -> ::String
|
|
2512
|
+
def waf_configuration: () -> Types::WafConfiguration
|
|
2433
2513
|
end
|
|
2434
2514
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway-instance_method
|
|
2435
2515
|
def update_gateway: (
|
|
@@ -2442,6 +2522,11 @@ module Aws
|
|
|
2442
2522
|
authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
|
|
2443
2523
|
?authorizer_configuration: Params::authorizer_configuration,
|
|
2444
2524
|
?kms_key_arn: ::String,
|
|
2525
|
+
?custom_transform_configuration: {
|
|
2526
|
+
lambda: {
|
|
2527
|
+
arn: ::String?
|
|
2528
|
+
}?
|
|
2529
|
+
},
|
|
2445
2530
|
?interceptor_configurations: Array[
|
|
2446
2531
|
Params::gateway_interceptor_configuration
|
|
2447
2532
|
],
|
|
@@ -2449,7 +2534,10 @@ module Aws
|
|
|
2449
2534
|
arn: ::String,
|
|
2450
2535
|
mode: ("LOG_ONLY" | "ENFORCE")
|
|
2451
2536
|
},
|
|
2452
|
-
?exception_level: ("DEBUG")
|
|
2537
|
+
?exception_level: ("DEBUG"),
|
|
2538
|
+
?waf_configuration: {
|
|
2539
|
+
failure_mode: ("FAIL_CLOSE" | "FAIL_OPEN")?
|
|
2540
|
+
}
|
|
2453
2541
|
) -> _UpdateGatewayResponseSuccess
|
|
2454
2542
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayResponseSuccess
|
|
2455
2543
|
|
|
@@ -2504,7 +2592,7 @@ module Aws
|
|
|
2504
2592
|
def update_gateway_target: (
|
|
2505
2593
|
gateway_identifier: ::String,
|
|
2506
2594
|
target_id: ::String,
|
|
2507
|
-
name: ::String,
|
|
2595
|
+
?name: ::String,
|
|
2508
2596
|
?description: ::String,
|
|
2509
2597
|
target_configuration: Params::target_configuration,
|
|
2510
2598
|
?credential_provider_configurations: Array[
|
|
@@ -2561,6 +2649,20 @@ module Aws
|
|
|
2561
2649
|
) -> _UpdateHarnessResponseSuccess
|
|
2562
2650
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateHarnessResponseSuccess
|
|
2563
2651
|
|
|
2652
|
+
interface _UpdateHarnessEndpointResponseSuccess
|
|
2653
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateHarnessEndpointResponse]
|
|
2654
|
+
def endpoint: () -> Types::HarnessEndpoint
|
|
2655
|
+
end
|
|
2656
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_harness_endpoint-instance_method
|
|
2657
|
+
def update_harness_endpoint: (
|
|
2658
|
+
harness_id: ::String,
|
|
2659
|
+
endpoint_name: ::String,
|
|
2660
|
+
?target_version: ::String,
|
|
2661
|
+
?description: ::String,
|
|
2662
|
+
?client_token: ::String
|
|
2663
|
+
) -> _UpdateHarnessEndpointResponseSuccess
|
|
2664
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateHarnessEndpointResponseSuccess
|
|
2665
|
+
|
|
2564
2666
|
interface _UpdateMemoryResponseSuccess
|
|
2565
2667
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMemoryOutput]
|
|
2566
2668
|
def memory: () -> Types::Memory
|
|
@@ -2787,6 +2889,7 @@ module Aws
|
|
|
2787
2889
|
def updated_at: () -> ::Time
|
|
2788
2890
|
def policy_arn: () -> ::String
|
|
2789
2891
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2892
|
+
def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
|
|
2790
2893
|
def definition: () -> Types::PolicyDefinition
|
|
2791
2894
|
def description: () -> ::String
|
|
2792
2895
|
def status_reasons: () -> ::Array[::String]
|
|
@@ -2799,7 +2902,8 @@ module Aws
|
|
|
2799
2902
|
optional_value: ::String?
|
|
2800
2903
|
},
|
|
2801
2904
|
?definition: Params::policy_definition,
|
|
2802
|
-
?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
2905
|
+
?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS"),
|
|
2906
|
+
?enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
2803
2907
|
) -> _UpdatePolicyResponseSuccess
|
|
2804
2908
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePolicyResponseSuccess
|
|
2805
2909
|
|
data/sig/params.rbs
CHANGED
|
@@ -75,7 +75,15 @@ module Aws
|
|
|
75
75
|
private_endpoint: Params::private_endpoint?,
|
|
76
76
|
private_endpoint_overrides: Array[
|
|
77
77
|
Params::private_endpoint_override
|
|
78
|
-
]
|
|
78
|
+
]?,
|
|
79
|
+
allowed_workload_configuration: {
|
|
80
|
+
hosting_environments: Array[
|
|
81
|
+
{
|
|
82
|
+
arn: ::String
|
|
83
|
+
}
|
|
84
|
+
]?,
|
|
85
|
+
workload_identities: Array[::String]?
|
|
86
|
+
}?
|
|
79
87
|
}
|
|
80
88
|
|
|
81
89
|
type authorizer_configuration = {
|
|
@@ -177,6 +185,17 @@ module Aws
|
|
|
177
185
|
mcp: Params::mcp_gateway_configuration?
|
|
178
186
|
}
|
|
179
187
|
|
|
188
|
+
type interceptor_input_configuration = {
|
|
189
|
+
pass_request_headers: bool,
|
|
190
|
+
payload_filter: {
|
|
191
|
+
exclude: Array[
|
|
192
|
+
{
|
|
193
|
+
field: ("RESPONSE_BODY")?
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
}?
|
|
197
|
+
}
|
|
198
|
+
|
|
180
199
|
type gateway_interceptor_configuration = {
|
|
181
200
|
interceptor: {
|
|
182
201
|
lambda: {
|
|
@@ -184,9 +203,7 @@ module Aws
|
|
|
184
203
|
}?
|
|
185
204
|
},
|
|
186
205
|
interception_points: Array[("REQUEST" | "RESPONSE")],
|
|
187
|
-
input_configuration:
|
|
188
|
-
pass_request_headers: bool
|
|
189
|
-
}?
|
|
206
|
+
input_configuration: Params::interceptor_input_configuration?
|
|
190
207
|
}
|
|
191
208
|
|
|
192
209
|
type match_principals = {
|
|
@@ -307,6 +324,16 @@ module Aws
|
|
|
307
324
|
api_gateway_tool_configuration: Params::api_gateway_tool_configuration
|
|
308
325
|
}
|
|
309
326
|
|
|
327
|
+
type connector_target_configuration = {
|
|
328
|
+
source: {
|
|
329
|
+
connector_id: ::String
|
|
330
|
+
},
|
|
331
|
+
enabled: Array[::String]?,
|
|
332
|
+
configurations: Array[
|
|
333
|
+
Params::connector_configuration
|
|
334
|
+
]?
|
|
335
|
+
}
|
|
336
|
+
|
|
310
337
|
type mcp_target_configuration = {
|
|
311
338
|
open_api_schema: {
|
|
312
339
|
s3: {
|
|
@@ -324,17 +351,75 @@ module Aws
|
|
|
324
351
|
}?,
|
|
325
352
|
lambda: Params::mcp_lambda_target_configuration?,
|
|
326
353
|
mcp_server: Params::mcp_server_target_configuration?,
|
|
327
|
-
api_gateway: Params::api_gateway_target_configuration
|
|
354
|
+
api_gateway: Params::api_gateway_target_configuration?,
|
|
355
|
+
connector: Params::connector_target_configuration?
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
type http_api_schema_configuration = {
|
|
359
|
+
source: {
|
|
360
|
+
s3: {
|
|
361
|
+
uri: ::String?,
|
|
362
|
+
bucket_owner_account_id: ::String?
|
|
363
|
+
}?,
|
|
364
|
+
inline_payload: ::String?
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
type runtime_target_configuration = {
|
|
369
|
+
arn: ::String,
|
|
370
|
+
qualifier: ::String?,
|
|
371
|
+
schema: Params::http_api_schema_configuration?
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
type passthrough_target_configuration = {
|
|
375
|
+
endpoint: ::String,
|
|
376
|
+
protocol_type: ("MCP" | "A2A" | "INFERENCE" | "CUSTOM"),
|
|
377
|
+
schema: Params::http_api_schema_configuration?,
|
|
378
|
+
stickiness_configuration: {
|
|
379
|
+
identifier: ::String,
|
|
380
|
+
timeout: ::Integer?
|
|
381
|
+
}?
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
type http_target_configuration = {
|
|
385
|
+
agentcore_runtime: Params::runtime_target_configuration?,
|
|
386
|
+
passthrough: Params::passthrough_target_configuration?
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
type inference_provider_target_configuration = {
|
|
390
|
+
endpoint: ::String,
|
|
391
|
+
model_mapping: {
|
|
392
|
+
provider_prefix: {
|
|
393
|
+
strip: bool?,
|
|
394
|
+
separator: ::String?
|
|
395
|
+
}?
|
|
396
|
+
}?,
|
|
397
|
+
operations: Array[
|
|
398
|
+
{
|
|
399
|
+
path: ::String,
|
|
400
|
+
provider_path: ::String?,
|
|
401
|
+
models: Array[
|
|
402
|
+
{
|
|
403
|
+
model: ::String
|
|
404
|
+
}
|
|
405
|
+
]?
|
|
406
|
+
}
|
|
407
|
+
]?
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
type inference_target_configuration = {
|
|
411
|
+
connector: {
|
|
412
|
+
source: {
|
|
413
|
+
connector_id: ::String
|
|
414
|
+
}
|
|
415
|
+
}?,
|
|
416
|
+
provider: Params::inference_provider_target_configuration?
|
|
328
417
|
}
|
|
329
418
|
|
|
330
419
|
type target_configuration = {
|
|
331
420
|
mcp: Params::mcp_target_configuration?,
|
|
332
|
-
http:
|
|
333
|
-
|
|
334
|
-
arn: ::String,
|
|
335
|
-
qualifier: ::String?
|
|
336
|
-
}?
|
|
337
|
-
}?
|
|
421
|
+
http: Params::http_target_configuration?,
|
|
422
|
+
inference: Params::inference_target_configuration?
|
|
338
423
|
}
|
|
339
424
|
|
|
340
425
|
type schema_definition = {
|
|
@@ -364,6 +449,20 @@ module Aws
|
|
|
364
449
|
output_schema: Params::schema_definition?
|
|
365
450
|
}
|
|
366
451
|
|
|
452
|
+
type connector_configuration = {
|
|
453
|
+
name: ::String,
|
|
454
|
+
description: ::String?,
|
|
455
|
+
parameter_values: {
|
|
456
|
+
}?,
|
|
457
|
+
parameter_overrides: Array[
|
|
458
|
+
{
|
|
459
|
+
path: ::String,
|
|
460
|
+
description: ::String?,
|
|
461
|
+
visible: bool?
|
|
462
|
+
}
|
|
463
|
+
]?
|
|
464
|
+
}
|
|
465
|
+
|
|
367
466
|
type credential_provider = {
|
|
368
467
|
oauth_credential_provider: {
|
|
369
468
|
provider_arn: ::String,
|
|
@@ -510,7 +609,10 @@ module Aws
|
|
|
510
609
|
s3: {
|
|
511
610
|
uri: ::String
|
|
512
611
|
}?,
|
|
513
|
-
git: Params::harness_skill_git_source
|
|
612
|
+
git: Params::harness_skill_git_source?,
|
|
613
|
+
aws_skills: {
|
|
614
|
+
paths: Array[::String]?
|
|
615
|
+
}?
|
|
514
616
|
}
|
|
515
617
|
|
|
516
618
|
type harness_agent_core_memory_configuration = {
|
|
@@ -525,7 +627,15 @@ module Aws
|
|
|
525
627
|
}
|
|
526
628
|
|
|
527
629
|
type harness_memory_configuration = {
|
|
528
|
-
agent_core_memory_configuration: Params::harness_agent_core_memory_configuration
|
|
630
|
+
agent_core_memory_configuration: Params::harness_agent_core_memory_configuration?,
|
|
631
|
+
managed_memory_configuration: {
|
|
632
|
+
arn: ::String?,
|
|
633
|
+
strategies: Array[("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "EPISODIC")]?,
|
|
634
|
+
event_expiry_duration: ::Integer?,
|
|
635
|
+
encryption_key_arn: ::String?
|
|
636
|
+
}?,
|
|
637
|
+
disabled: {
|
|
638
|
+
}?
|
|
529
639
|
}
|
|
530
640
|
|
|
531
641
|
type harness_truncation_strategy_configuration = {
|
|
@@ -939,6 +1049,9 @@ module Aws
|
|
|
939
1049
|
policy_generation: {
|
|
940
1050
|
policy_generation_id: ::String,
|
|
941
1051
|
policy_generation_asset_id: ::String
|
|
1052
|
+
}?,
|
|
1053
|
+
policy: {
|
|
1054
|
+
statement: ::String
|
|
942
1055
|
}?
|
|
943
1056
|
}
|
|
944
1057
|
|