aws-sdk-bedrockagentcorecontrol 1.53.0 → 1.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +950 -19
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +432 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1410 -193
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +110 -6
- data/sig/params.rbs +127 -13
- data/sig/types.rbs +330 -7
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -100,6 +100,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
100
100
|
SENSITIVE: []
|
|
101
101
|
end
|
|
102
102
|
|
|
103
|
+
class AllowedWorkloadConfiguration
|
|
104
|
+
attr_accessor hosting_environments: ::Array[Types::HostingEnvironment]
|
|
105
|
+
attr_accessor workload_identities: ::Array[::String]
|
|
106
|
+
SENSITIVE: []
|
|
107
|
+
end
|
|
108
|
+
|
|
103
109
|
class ApiGatewayTargetConfiguration
|
|
104
110
|
attr_accessor rest_api_id: ::String
|
|
105
111
|
attr_accessor stage: ::String
|
|
@@ -450,6 +456,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
450
456
|
SENSITIVE: []
|
|
451
457
|
end
|
|
452
458
|
|
|
459
|
+
class ConnectorConfiguration
|
|
460
|
+
attr_accessor name: ::String
|
|
461
|
+
attr_accessor description: ::String
|
|
462
|
+
attr_accessor parameter_values: untyped
|
|
463
|
+
attr_accessor parameter_overrides: ::Array[Types::ConnectorParameterOverride]
|
|
464
|
+
SENSITIVE: []
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
class ConnectorParameterOverride
|
|
468
|
+
attr_accessor path: ::String
|
|
469
|
+
attr_accessor description: ::String
|
|
470
|
+
attr_accessor visible: bool
|
|
471
|
+
SENSITIVE: []
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
class ConnectorSource
|
|
475
|
+
attr_accessor connector_id: ::String
|
|
476
|
+
SENSITIVE: []
|
|
477
|
+
end
|
|
478
|
+
|
|
479
|
+
class ConnectorTargetConfiguration
|
|
480
|
+
attr_accessor source: Types::ConnectorSource
|
|
481
|
+
attr_accessor enabled: ::Array[::String]
|
|
482
|
+
attr_accessor configurations: ::Array[Types::ConnectorConfiguration]
|
|
483
|
+
SENSITIVE: []
|
|
484
|
+
end
|
|
485
|
+
|
|
453
486
|
class ConsolidationConfiguration
|
|
454
487
|
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfiguration
|
|
455
488
|
attr_accessor unknown: untyped
|
|
@@ -694,7 +727,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
694
727
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
695
728
|
attr_accessor exception_level: ("DEBUG")
|
|
696
729
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
697
|
-
SENSITIVE: [:
|
|
730
|
+
SENSITIVE: [:description]
|
|
698
731
|
end
|
|
699
732
|
|
|
700
733
|
class CreateGatewayResponse
|
|
@@ -713,11 +746,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
713
746
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
714
747
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
715
748
|
attr_accessor kms_key_arn: ::String
|
|
749
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
716
750
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
717
751
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
718
752
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
719
753
|
attr_accessor exception_level: ("DEBUG")
|
|
720
|
-
|
|
754
|
+
attr_accessor web_acl_arn: ::String
|
|
755
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
756
|
+
SENSITIVE: [:description]
|
|
721
757
|
end
|
|
722
758
|
|
|
723
759
|
class CreateGatewayRuleRequest
|
|
@@ -775,6 +811,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
775
811
|
SENSITIVE: [:name, :description]
|
|
776
812
|
end
|
|
777
813
|
|
|
814
|
+
class CreateHarnessEndpointRequest
|
|
815
|
+
attr_accessor harness_id: ::String
|
|
816
|
+
attr_accessor endpoint_name: ::String
|
|
817
|
+
attr_accessor target_version: ::String
|
|
818
|
+
attr_accessor description: ::String
|
|
819
|
+
attr_accessor client_token: ::String
|
|
820
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
821
|
+
SENSITIVE: []
|
|
822
|
+
end
|
|
823
|
+
|
|
824
|
+
class CreateHarnessEndpointResponse
|
|
825
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
826
|
+
SENSITIVE: []
|
|
827
|
+
end
|
|
828
|
+
|
|
778
829
|
class CreateHarnessRequest
|
|
779
830
|
attr_accessor harness_name: ::String
|
|
780
831
|
attr_accessor client_token: ::String
|
|
@@ -956,6 +1007,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
956
1007
|
attr_accessor definition: Types::PolicyDefinition
|
|
957
1008
|
attr_accessor description: ::String
|
|
958
1009
|
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
1010
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
959
1011
|
attr_accessor policy_engine_id: ::String
|
|
960
1012
|
attr_accessor client_token: ::String
|
|
961
1013
|
SENSITIVE: [:description]
|
|
@@ -969,6 +1021,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
969
1021
|
attr_accessor updated_at: ::Time
|
|
970
1022
|
attr_accessor policy_arn: ::String
|
|
971
1023
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1024
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
972
1025
|
attr_accessor definition: Types::PolicyDefinition
|
|
973
1026
|
attr_accessor description: ::String
|
|
974
1027
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -1174,9 +1227,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1174
1227
|
attr_accessor allowed_audience: ::Array[::String]
|
|
1175
1228
|
attr_accessor allowed_clients: ::Array[::String]
|
|
1176
1229
|
attr_accessor allowed_scopes: ::Array[::String]
|
|
1230
|
+
attr_accessor advertised_scope_mapping: ::Hash[::String, ::String]
|
|
1177
1231
|
attr_accessor custom_claims: ::Array[Types::CustomClaimValidationType]
|
|
1178
1232
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1179
1233
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1234
|
+
attr_accessor allowed_workload_configuration: Types::AllowedWorkloadConfiguration
|
|
1180
1235
|
SENSITIVE: []
|
|
1181
1236
|
end
|
|
1182
1237
|
|
|
@@ -1235,6 +1290,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1235
1290
|
end
|
|
1236
1291
|
end
|
|
1237
1292
|
|
|
1293
|
+
class CustomTransformConfiguration
|
|
1294
|
+
attr_accessor lambda: Types::LambdaTransformConfiguration
|
|
1295
|
+
SENSITIVE: []
|
|
1296
|
+
end
|
|
1297
|
+
|
|
1238
1298
|
class DataSourceConfig
|
|
1239
1299
|
attr_accessor cloud_watch_logs: Types::CloudWatchLogsInputConfig
|
|
1240
1300
|
attr_accessor unknown: untyped
|
|
@@ -1453,9 +1513,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
1453
1513
|
SENSITIVE: []
|
|
1454
1514
|
end
|
|
1455
1515
|
|
|
1516
|
+
class DeleteHarnessEndpointRequest
|
|
1517
|
+
attr_accessor harness_id: ::String
|
|
1518
|
+
attr_accessor endpoint_name: ::String
|
|
1519
|
+
attr_accessor client_token: ::String
|
|
1520
|
+
SENSITIVE: []
|
|
1521
|
+
end
|
|
1522
|
+
|
|
1523
|
+
class DeleteHarnessEndpointResponse
|
|
1524
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
1525
|
+
SENSITIVE: []
|
|
1526
|
+
end
|
|
1527
|
+
|
|
1456
1528
|
class DeleteHarnessRequest
|
|
1457
1529
|
attr_accessor harness_id: ::String
|
|
1458
1530
|
attr_accessor client_token: ::String
|
|
1531
|
+
attr_accessor delete_managed_memory: bool
|
|
1459
1532
|
SENSITIVE: []
|
|
1460
1533
|
end
|
|
1461
1534
|
|
|
@@ -1566,6 +1639,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1566
1639
|
attr_accessor updated_at: ::Time
|
|
1567
1640
|
attr_accessor policy_arn: ::String
|
|
1568
1641
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1642
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
1569
1643
|
attr_accessor definition: Types::PolicyDefinition
|
|
1570
1644
|
attr_accessor description: ::String
|
|
1571
1645
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -1872,7 +1946,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1872
1946
|
attr_accessor updated_at: ::Time
|
|
1873
1947
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1874
1948
|
attr_accessor protocol_type: ("MCP")
|
|
1875
|
-
SENSITIVE: [:
|
|
1949
|
+
SENSITIVE: [:description]
|
|
1876
1950
|
end
|
|
1877
1951
|
|
|
1878
1952
|
class GatewayTarget
|
|
@@ -2132,11 +2206,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2132
2206
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
2133
2207
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
2134
2208
|
attr_accessor kms_key_arn: ::String
|
|
2209
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
2135
2210
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
2136
2211
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
2137
2212
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
2138
2213
|
attr_accessor exception_level: ("DEBUG")
|
|
2139
|
-
|
|
2214
|
+
attr_accessor web_acl_arn: ::String
|
|
2215
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
2216
|
+
SENSITIVE: [:description]
|
|
2140
2217
|
end
|
|
2141
2218
|
|
|
2142
2219
|
class GetGatewayRuleRequest
|
|
@@ -2185,8 +2262,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
2185
2262
|
SENSITIVE: [:name, :description]
|
|
2186
2263
|
end
|
|
2187
2264
|
|
|
2265
|
+
class GetHarnessEndpointRequest
|
|
2266
|
+
attr_accessor harness_id: ::String
|
|
2267
|
+
attr_accessor endpoint_name: ::String
|
|
2268
|
+
SENSITIVE: []
|
|
2269
|
+
end
|
|
2270
|
+
|
|
2271
|
+
class GetHarnessEndpointResponse
|
|
2272
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
2273
|
+
SENSITIVE: []
|
|
2274
|
+
end
|
|
2275
|
+
|
|
2188
2276
|
class GetHarnessRequest
|
|
2189
2277
|
attr_accessor harness_id: ::String
|
|
2278
|
+
attr_accessor harness_version: ::String
|
|
2190
2279
|
SENSITIVE: []
|
|
2191
2280
|
end
|
|
2192
2281
|
|
|
@@ -2394,6 +2483,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2394
2483
|
attr_accessor updated_at: ::Time
|
|
2395
2484
|
attr_accessor policy_arn: ::String
|
|
2396
2485
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2486
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
2397
2487
|
attr_accessor definition: Types::PolicyDefinition
|
|
2398
2488
|
attr_accessor description: ::String
|
|
2399
2489
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -2414,6 +2504,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2414
2504
|
attr_accessor updated_at: ::Time
|
|
2415
2505
|
attr_accessor policy_arn: ::String
|
|
2416
2506
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2507
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
2417
2508
|
SENSITIVE: []
|
|
2418
2509
|
end
|
|
2419
2510
|
|
|
@@ -2530,6 +2621,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2530
2621
|
attr_accessor harness_name: ::String
|
|
2531
2622
|
attr_accessor arn: ::String
|
|
2532
2623
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2624
|
+
attr_accessor harness_version: ::String
|
|
2533
2625
|
attr_accessor execution_role_arn: ::String
|
|
2534
2626
|
attr_accessor created_at: ::Time
|
|
2535
2627
|
attr_accessor updated_at: ::Time
|
|
@@ -2609,6 +2701,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
2609
2701
|
SENSITIVE: []
|
|
2610
2702
|
end
|
|
2611
2703
|
|
|
2704
|
+
class HarnessDisabledMemoryConfiguration < Aws::EmptyStructure
|
|
2705
|
+
end
|
|
2706
|
+
|
|
2707
|
+
class HarnessEndpoint
|
|
2708
|
+
attr_accessor harness_id: ::String
|
|
2709
|
+
attr_accessor harness_name: ::String
|
|
2710
|
+
attr_accessor endpoint_name: ::String
|
|
2711
|
+
attr_accessor arn: ::String
|
|
2712
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2713
|
+
attr_accessor created_at: ::Time
|
|
2714
|
+
attr_accessor updated_at: ::Time
|
|
2715
|
+
attr_accessor live_version: ::String
|
|
2716
|
+
attr_accessor target_version: ::String
|
|
2717
|
+
attr_accessor description: ::String
|
|
2718
|
+
attr_accessor failure_reason: ::String
|
|
2719
|
+
SENSITIVE: []
|
|
2720
|
+
end
|
|
2721
|
+
|
|
2612
2722
|
class HarnessEnvironmentArtifact
|
|
2613
2723
|
attr_accessor container_configuration: Types::ContainerConfiguration
|
|
2614
2724
|
attr_accessor unknown: untyped
|
|
@@ -2686,13 +2796,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
2686
2796
|
SENSITIVE: [:api_base]
|
|
2687
2797
|
end
|
|
2688
2798
|
|
|
2799
|
+
class HarnessManagedMemoryConfiguration
|
|
2800
|
+
attr_accessor arn: ::String
|
|
2801
|
+
attr_accessor strategies: ::Array[("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "EPISODIC")]
|
|
2802
|
+
attr_accessor event_expiry_duration: ::Integer
|
|
2803
|
+
attr_accessor encryption_key_arn: ::String
|
|
2804
|
+
SENSITIVE: []
|
|
2805
|
+
end
|
|
2806
|
+
|
|
2689
2807
|
class HarnessMemoryConfiguration
|
|
2690
2808
|
attr_accessor agent_core_memory_configuration: Types::HarnessAgentCoreMemoryConfiguration
|
|
2809
|
+
attr_accessor managed_memory_configuration: Types::HarnessManagedMemoryConfiguration
|
|
2810
|
+
attr_accessor disabled: Types::HarnessDisabledMemoryConfiguration
|
|
2691
2811
|
attr_accessor unknown: untyped
|
|
2692
2812
|
SENSITIVE: []
|
|
2693
2813
|
|
|
2694
2814
|
class AgentCoreMemoryConfiguration < HarnessMemoryConfiguration
|
|
2695
2815
|
end
|
|
2816
|
+
class ManagedMemoryConfiguration < HarnessMemoryConfiguration
|
|
2817
|
+
end
|
|
2818
|
+
class Disabled < HarnessMemoryConfiguration
|
|
2819
|
+
end
|
|
2696
2820
|
class Unknown < HarnessMemoryConfiguration
|
|
2697
2821
|
end
|
|
2698
2822
|
end
|
|
@@ -2738,6 +2862,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2738
2862
|
attr_accessor path: ::String
|
|
2739
2863
|
attr_accessor s3: Types::HarnessSkillS3Source
|
|
2740
2864
|
attr_accessor git: Types::HarnessSkillGitSource
|
|
2865
|
+
attr_accessor aws_skills: Types::HarnessSkillAwsSkillsSource
|
|
2741
2866
|
attr_accessor unknown: untyped
|
|
2742
2867
|
SENSITIVE: []
|
|
2743
2868
|
|
|
@@ -2747,10 +2872,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2747
2872
|
end
|
|
2748
2873
|
class Git < HarnessSkill
|
|
2749
2874
|
end
|
|
2875
|
+
class AwsSkills < HarnessSkill
|
|
2876
|
+
end
|
|
2750
2877
|
class Unknown < HarnessSkill
|
|
2751
2878
|
end
|
|
2752
2879
|
end
|
|
2753
2880
|
|
|
2881
|
+
class HarnessSkillAwsSkillsSource
|
|
2882
|
+
attr_accessor paths: ::Array[::String]
|
|
2883
|
+
SENSITIVE: []
|
|
2884
|
+
end
|
|
2885
|
+
|
|
2754
2886
|
class HarnessSkillGitAuth
|
|
2755
2887
|
attr_accessor credential_arn: ::String
|
|
2756
2888
|
attr_accessor username: ::String
|
|
@@ -2788,6 +2920,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2788
2920
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2789
2921
|
attr_accessor created_at: ::Time
|
|
2790
2922
|
attr_accessor updated_at: ::Time
|
|
2923
|
+
attr_accessor harness_version: ::String
|
|
2791
2924
|
SENSITIVE: []
|
|
2792
2925
|
end
|
|
2793
2926
|
|
|
@@ -2852,13 +2985,38 @@ module Aws::BedrockAgentCoreControl
|
|
|
2852
2985
|
end
|
|
2853
2986
|
end
|
|
2854
2987
|
|
|
2988
|
+
class HarnessVersionSummary
|
|
2989
|
+
attr_accessor harness_id: ::String
|
|
2990
|
+
attr_accessor harness_name: ::String
|
|
2991
|
+
attr_accessor arn: ::String
|
|
2992
|
+
attr_accessor harness_version: ::String
|
|
2993
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2994
|
+
attr_accessor created_at: ::Time
|
|
2995
|
+
attr_accessor updated_at: ::Time
|
|
2996
|
+
attr_accessor failure_reason: ::String
|
|
2997
|
+
SENSITIVE: []
|
|
2998
|
+
end
|
|
2999
|
+
|
|
3000
|
+
class HostingEnvironment
|
|
3001
|
+
attr_accessor arn: ::String
|
|
3002
|
+
SENSITIVE: []
|
|
3003
|
+
end
|
|
3004
|
+
|
|
3005
|
+
class HttpApiSchemaConfiguration
|
|
3006
|
+
attr_accessor source: Types::ApiSchemaConfiguration
|
|
3007
|
+
SENSITIVE: []
|
|
3008
|
+
end
|
|
3009
|
+
|
|
2855
3010
|
class HttpTargetConfiguration
|
|
2856
3011
|
attr_accessor agentcore_runtime: Types::RuntimeTargetConfiguration
|
|
3012
|
+
attr_accessor passthrough: Types::PassthroughTargetConfiguration
|
|
2857
3013
|
attr_accessor unknown: untyped
|
|
2858
3014
|
SENSITIVE: []
|
|
2859
3015
|
|
|
2860
3016
|
class AgentcoreRuntime < HttpTargetConfiguration
|
|
2861
3017
|
end
|
|
3018
|
+
class Passthrough < HttpTargetConfiguration
|
|
3019
|
+
end
|
|
2862
3020
|
class Unknown < HttpTargetConfiguration
|
|
2863
3021
|
end
|
|
2864
3022
|
end
|
|
@@ -2906,6 +3064,44 @@ module Aws::BedrockAgentCoreControl
|
|
|
2906
3064
|
SENSITIVE: []
|
|
2907
3065
|
end
|
|
2908
3066
|
|
|
3067
|
+
class InferenceConnectorSource
|
|
3068
|
+
attr_accessor connector_id: ::String
|
|
3069
|
+
SENSITIVE: []
|
|
3070
|
+
end
|
|
3071
|
+
|
|
3072
|
+
class InferenceConnectorTargetConfiguration
|
|
3073
|
+
attr_accessor source: Types::InferenceConnectorSource
|
|
3074
|
+
SENSITIVE: []
|
|
3075
|
+
end
|
|
3076
|
+
|
|
3077
|
+
class InferenceOperationConfiguration
|
|
3078
|
+
attr_accessor path: ::String
|
|
3079
|
+
attr_accessor provider_path: ::String
|
|
3080
|
+
attr_accessor models: ::Array[Types::ModelEntry]
|
|
3081
|
+
SENSITIVE: []
|
|
3082
|
+
end
|
|
3083
|
+
|
|
3084
|
+
class InferenceProviderTargetConfiguration
|
|
3085
|
+
attr_accessor endpoint: ::String
|
|
3086
|
+
attr_accessor model_mapping: Types::ModelMapping
|
|
3087
|
+
attr_accessor operations: ::Array[Types::InferenceOperationConfiguration]
|
|
3088
|
+
SENSITIVE: []
|
|
3089
|
+
end
|
|
3090
|
+
|
|
3091
|
+
class InferenceTargetConfiguration
|
|
3092
|
+
attr_accessor connector: Types::InferenceConnectorTargetConfiguration
|
|
3093
|
+
attr_accessor provider: Types::InferenceProviderTargetConfiguration
|
|
3094
|
+
attr_accessor unknown: untyped
|
|
3095
|
+
SENSITIVE: []
|
|
3096
|
+
|
|
3097
|
+
class Connector < InferenceTargetConfiguration
|
|
3098
|
+
end
|
|
3099
|
+
class Provider < InferenceTargetConfiguration
|
|
3100
|
+
end
|
|
3101
|
+
class Unknown < InferenceTargetConfiguration
|
|
3102
|
+
end
|
|
3103
|
+
end
|
|
3104
|
+
|
|
2909
3105
|
class InlineExamplesSource
|
|
2910
3106
|
attr_accessor examples: ::Array[untyped]
|
|
2911
3107
|
SENSITIVE: []
|
|
@@ -2929,6 +3125,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
2929
3125
|
|
|
2930
3126
|
class InterceptorInputConfiguration
|
|
2931
3127
|
attr_accessor pass_request_headers: bool
|
|
3128
|
+
attr_accessor payload_filter: Types::InterceptorPayloadFilter
|
|
3129
|
+
SENSITIVE: []
|
|
3130
|
+
end
|
|
3131
|
+
|
|
3132
|
+
class InterceptorPayloadExclusionSelector
|
|
3133
|
+
attr_accessor field: ("RESPONSE_BODY")
|
|
3134
|
+
attr_accessor unknown: untyped
|
|
3135
|
+
SENSITIVE: []
|
|
3136
|
+
|
|
3137
|
+
class Field < InterceptorPayloadExclusionSelector
|
|
3138
|
+
end
|
|
3139
|
+
class Unknown < InterceptorPayloadExclusionSelector
|
|
3140
|
+
end
|
|
3141
|
+
end
|
|
3142
|
+
|
|
3143
|
+
class InterceptorPayloadFilter
|
|
3144
|
+
attr_accessor exclude: ::Array[Types::InterceptorPayloadExclusionSelector]
|
|
2932
3145
|
SENSITIVE: []
|
|
2933
3146
|
end
|
|
2934
3147
|
|
|
@@ -2972,6 +3185,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2972
3185
|
SENSITIVE: []
|
|
2973
3186
|
end
|
|
2974
3187
|
|
|
3188
|
+
class LambdaTransformConfiguration
|
|
3189
|
+
attr_accessor arn: ::String
|
|
3190
|
+
SENSITIVE: []
|
|
3191
|
+
end
|
|
3192
|
+
|
|
2975
3193
|
class LifecycleConfiguration
|
|
2976
3194
|
attr_accessor idle_runtime_session_timeout: ::Integer
|
|
2977
3195
|
attr_accessor max_lifetime: ::Integer
|
|
@@ -3199,6 +3417,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
3199
3417
|
SENSITIVE: []
|
|
3200
3418
|
end
|
|
3201
3419
|
|
|
3420
|
+
class ListHarnessEndpointsRequest
|
|
3421
|
+
attr_accessor harness_id: ::String
|
|
3422
|
+
attr_accessor max_results: ::Integer
|
|
3423
|
+
attr_accessor next_token: ::String
|
|
3424
|
+
SENSITIVE: []
|
|
3425
|
+
end
|
|
3426
|
+
|
|
3427
|
+
class ListHarnessEndpointsResponse
|
|
3428
|
+
attr_accessor endpoints: ::Array[Types::HarnessEndpoint]
|
|
3429
|
+
attr_accessor next_token: ::String
|
|
3430
|
+
SENSITIVE: []
|
|
3431
|
+
end
|
|
3432
|
+
|
|
3433
|
+
class ListHarnessVersionsRequest
|
|
3434
|
+
attr_accessor harness_id: ::String
|
|
3435
|
+
attr_accessor max_results: ::Integer
|
|
3436
|
+
attr_accessor next_token: ::String
|
|
3437
|
+
SENSITIVE: []
|
|
3438
|
+
end
|
|
3439
|
+
|
|
3440
|
+
class ListHarnessVersionsResponse
|
|
3441
|
+
attr_accessor harness_versions: ::Array[Types::HarnessVersionSummary]
|
|
3442
|
+
attr_accessor next_token: ::String
|
|
3443
|
+
SENSITIVE: []
|
|
3444
|
+
end
|
|
3445
|
+
|
|
3202
3446
|
class ListHarnessesRequest
|
|
3203
3447
|
attr_accessor max_results: ::Integer
|
|
3204
3448
|
attr_accessor next_token: ::String
|
|
@@ -3448,7 +3692,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3448
3692
|
attr_accessor search_type: ("SEMANTIC")
|
|
3449
3693
|
attr_accessor session_configuration: Types::SessionConfiguration
|
|
3450
3694
|
attr_accessor streaming_configuration: Types::StreamingConfiguration
|
|
3451
|
-
SENSITIVE: []
|
|
3695
|
+
SENSITIVE: [:instructions]
|
|
3452
3696
|
end
|
|
3453
3697
|
|
|
3454
3698
|
class ManagedResourceDetails
|
|
@@ -3515,6 +3759,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3515
3759
|
attr_accessor lambda: Types::McpLambdaTargetConfiguration
|
|
3516
3760
|
attr_accessor mcp_server: Types::McpServerTargetConfiguration
|
|
3517
3761
|
attr_accessor api_gateway: Types::ApiGatewayTargetConfiguration
|
|
3762
|
+
attr_accessor connector: Types::ConnectorTargetConfiguration
|
|
3518
3763
|
attr_accessor unknown: untyped
|
|
3519
3764
|
SENSITIVE: []
|
|
3520
3765
|
|
|
@@ -3528,6 +3773,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3528
3773
|
end
|
|
3529
3774
|
class ApiGateway < McpTargetConfiguration
|
|
3530
3775
|
end
|
|
3776
|
+
class Connector < McpTargetConfiguration
|
|
3777
|
+
end
|
|
3531
3778
|
class Unknown < McpTargetConfiguration
|
|
3532
3779
|
end
|
|
3533
3780
|
end
|
|
@@ -3561,6 +3808,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3561
3808
|
attr_accessor strategies: ::Array[Types::MemoryStrategy]
|
|
3562
3809
|
attr_accessor indexed_keys: ::Array[Types::IndexedKey]
|
|
3563
3810
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
3811
|
+
attr_accessor managed_by_resource_arn: ::String
|
|
3564
3812
|
SENSITIVE: [:description]
|
|
3565
3813
|
end
|
|
3566
3814
|
|
|
@@ -3613,6 +3861,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3613
3861
|
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
3614
3862
|
attr_accessor created_at: ::Time
|
|
3615
3863
|
attr_accessor updated_at: ::Time
|
|
3864
|
+
attr_accessor managed_by_resource_arn: ::String
|
|
3616
3865
|
SENSITIVE: []
|
|
3617
3866
|
end
|
|
3618
3867
|
|
|
@@ -3656,6 +3905,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
3656
3905
|
SENSITIVE: []
|
|
3657
3906
|
end
|
|
3658
3907
|
|
|
3908
|
+
class ModelEntry
|
|
3909
|
+
attr_accessor model: ::String
|
|
3910
|
+
SENSITIVE: []
|
|
3911
|
+
end
|
|
3912
|
+
|
|
3913
|
+
class ModelMapping
|
|
3914
|
+
attr_accessor provider_prefix: Types::ProviderPrefix
|
|
3915
|
+
SENSITIVE: []
|
|
3916
|
+
end
|
|
3917
|
+
|
|
3659
3918
|
class ModifyConsolidationConfiguration
|
|
3660
3919
|
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfigurationInput
|
|
3661
3920
|
attr_accessor unknown: untyped
|
|
@@ -3892,6 +4151,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3892
4151
|
SENSITIVE: []
|
|
3893
4152
|
end
|
|
3894
4153
|
|
|
4154
|
+
class PassthroughTargetConfiguration
|
|
4155
|
+
attr_accessor endpoint: ::String
|
|
4156
|
+
attr_accessor protocol_type: ("MCP" | "A2A" | "INFERENCE" | "CUSTOM")
|
|
4157
|
+
attr_accessor schema: Types::HttpApiSchemaConfiguration
|
|
4158
|
+
attr_accessor stickiness_configuration: Types::StickinessConfiguration
|
|
4159
|
+
SENSITIVE: []
|
|
4160
|
+
end
|
|
4161
|
+
|
|
3895
4162
|
class PaymentConnectorSummary
|
|
3896
4163
|
attr_accessor payment_connector_id: ::String
|
|
3897
4164
|
attr_accessor name: ::String
|
|
@@ -3964,6 +4231,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3964
4231
|
attr_accessor updated_at: ::Time
|
|
3965
4232
|
attr_accessor policy_arn: ::String
|
|
3966
4233
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4234
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
3967
4235
|
attr_accessor definition: Types::PolicyDefinition
|
|
3968
4236
|
attr_accessor description: ::String
|
|
3969
4237
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -3973,6 +4241,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3973
4241
|
class PolicyDefinition
|
|
3974
4242
|
attr_accessor cedar: Types::CedarPolicy
|
|
3975
4243
|
attr_accessor policy_generation: Types::PolicyGenerationDetails
|
|
4244
|
+
attr_accessor policy: Types::PolicyStatement
|
|
3976
4245
|
attr_accessor unknown: untyped
|
|
3977
4246
|
SENSITIVE: []
|
|
3978
4247
|
|
|
@@ -3980,6 +4249,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3980
4249
|
end
|
|
3981
4250
|
class PolicyGeneration < PolicyDefinition
|
|
3982
4251
|
end
|
|
4252
|
+
class Policy < PolicyDefinition
|
|
4253
|
+
end
|
|
3983
4254
|
class Unknown < PolicyDefinition
|
|
3984
4255
|
end
|
|
3985
4256
|
end
|
|
@@ -4049,6 +4320,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4049
4320
|
SENSITIVE: []
|
|
4050
4321
|
end
|
|
4051
4322
|
|
|
4323
|
+
class PolicyStatement
|
|
4324
|
+
attr_accessor statement: ::String
|
|
4325
|
+
SENSITIVE: []
|
|
4326
|
+
end
|
|
4327
|
+
|
|
4052
4328
|
class PolicySummary
|
|
4053
4329
|
attr_accessor policy_id: ::String
|
|
4054
4330
|
attr_accessor name: ::String
|
|
@@ -4057,6 +4333,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4057
4333
|
attr_accessor updated_at: ::Time
|
|
4058
4334
|
attr_accessor policy_arn: ::String
|
|
4059
4335
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4336
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
4060
4337
|
SENSITIVE: []
|
|
4061
4338
|
end
|
|
4062
4339
|
|
|
@@ -4085,6 +4362,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4085
4362
|
SENSITIVE: []
|
|
4086
4363
|
end
|
|
4087
4364
|
|
|
4365
|
+
class ProviderPrefix
|
|
4366
|
+
attr_accessor strip: bool
|
|
4367
|
+
attr_accessor separator: ::String
|
|
4368
|
+
SENSITIVE: []
|
|
4369
|
+
end
|
|
4370
|
+
|
|
4088
4371
|
class PutResourcePolicyRequest
|
|
4089
4372
|
attr_accessor resource_arn: ::String
|
|
4090
4373
|
attr_accessor policy: ::String
|
|
@@ -4264,6 +4547,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4264
4547
|
class RuntimeTargetConfiguration
|
|
4265
4548
|
attr_accessor arn: ::String
|
|
4266
4549
|
attr_accessor qualifier: ::String
|
|
4550
|
+
attr_accessor schema: Types::HttpApiSchemaConfiguration
|
|
4267
4551
|
SENSITIVE: []
|
|
4268
4552
|
end
|
|
4269
4553
|
|
|
@@ -4502,6 +4786,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4502
4786
|
SENSITIVE: [:target_name]
|
|
4503
4787
|
end
|
|
4504
4788
|
|
|
4789
|
+
class StickinessConfiguration
|
|
4790
|
+
attr_accessor identifier: ::String
|
|
4791
|
+
attr_accessor timeout: ::Integer
|
|
4792
|
+
SENSITIVE: []
|
|
4793
|
+
end
|
|
4794
|
+
|
|
4505
4795
|
class StrategyConfiguration
|
|
4506
4796
|
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED" | "EPISODIC_OVERRIDE")
|
|
4507
4797
|
attr_accessor extraction: Types::ExtractionConfiguration
|
|
@@ -4641,6 +4931,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4641
4931
|
class TargetConfiguration
|
|
4642
4932
|
attr_accessor mcp: Types::McpTargetConfiguration
|
|
4643
4933
|
attr_accessor http: Types::HttpTargetConfiguration
|
|
4934
|
+
attr_accessor inference: Types::InferenceTargetConfiguration
|
|
4644
4935
|
attr_accessor unknown: untyped
|
|
4645
4936
|
SENSITIVE: []
|
|
4646
4937
|
|
|
@@ -4648,6 +4939,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4648
4939
|
end
|
|
4649
4940
|
class Http < TargetConfiguration
|
|
4650
4941
|
end
|
|
4942
|
+
class Inference < TargetConfiguration
|
|
4943
|
+
end
|
|
4651
4944
|
class Unknown < TargetConfiguration
|
|
4652
4945
|
end
|
|
4653
4946
|
end
|
|
@@ -4660,6 +4953,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4660
4953
|
attr_accessor created_at: ::Time
|
|
4661
4954
|
attr_accessor updated_at: ::Time
|
|
4662
4955
|
attr_accessor resource_priority: ::Integer
|
|
4956
|
+
attr_accessor last_synchronized_at: ::Time
|
|
4957
|
+
attr_accessor authorization_data: Types::AuthorizationData
|
|
4958
|
+
attr_accessor target_type: ("OPEN_API_SCHEMA" | "SMITHY_MODEL" | "MCP_SERVER" | "LAMBDA" | "API_GATEWAY" | "CONNECTOR" | "AGENTCORE_RUNTIME" | "PASSTHROUGH" | "PROVIDER")
|
|
4959
|
+
attr_accessor listing_mode: ("DEFAULT" | "DYNAMIC")
|
|
4663
4960
|
SENSITIVE: [:name, :description]
|
|
4664
4961
|
end
|
|
4665
4962
|
|
|
@@ -4943,10 +5240,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4943
5240
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
4944
5241
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
4945
5242
|
attr_accessor kms_key_arn: ::String
|
|
5243
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
4946
5244
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
4947
5245
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
4948
5246
|
attr_accessor exception_level: ("DEBUG")
|
|
4949
|
-
|
|
5247
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
5248
|
+
SENSITIVE: [:description]
|
|
4950
5249
|
end
|
|
4951
5250
|
|
|
4952
5251
|
class UpdateGatewayResponse
|
|
@@ -4965,11 +5264,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4965
5264
|
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
4966
5265
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
4967
5266
|
attr_accessor kms_key_arn: ::String
|
|
5267
|
+
attr_accessor custom_transform_configuration: Types::CustomTransformConfiguration
|
|
4968
5268
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
4969
5269
|
attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
|
|
4970
5270
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
|
4971
5271
|
attr_accessor exception_level: ("DEBUG")
|
|
4972
|
-
|
|
5272
|
+
attr_accessor web_acl_arn: ::String
|
|
5273
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
|
5274
|
+
SENSITIVE: [:description]
|
|
4973
5275
|
end
|
|
4974
5276
|
|
|
4975
5277
|
class UpdateGatewayRuleRequest
|
|
@@ -5028,6 +5330,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
5028
5330
|
SENSITIVE: [:name, :description]
|
|
5029
5331
|
end
|
|
5030
5332
|
|
|
5333
|
+
class UpdateHarnessEndpointRequest
|
|
5334
|
+
attr_accessor harness_id: ::String
|
|
5335
|
+
attr_accessor endpoint_name: ::String
|
|
5336
|
+
attr_accessor target_version: ::String
|
|
5337
|
+
attr_accessor description: ::String
|
|
5338
|
+
attr_accessor client_token: ::String
|
|
5339
|
+
SENSITIVE: []
|
|
5340
|
+
end
|
|
5341
|
+
|
|
5342
|
+
class UpdateHarnessEndpointResponse
|
|
5343
|
+
attr_accessor endpoint: Types::HarnessEndpoint
|
|
5344
|
+
SENSITIVE: []
|
|
5345
|
+
end
|
|
5346
|
+
|
|
5031
5347
|
class UpdateHarnessRequest
|
|
5032
5348
|
attr_accessor harness_id: ::String
|
|
5033
5349
|
attr_accessor client_token: ::String
|
|
@@ -5202,6 +5518,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5202
5518
|
attr_accessor description: Types::UpdatedDescription
|
|
5203
5519
|
attr_accessor definition: Types::PolicyDefinition
|
|
5204
5520
|
attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
|
|
5521
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
5205
5522
|
SENSITIVE: []
|
|
5206
5523
|
end
|
|
5207
5524
|
|
|
@@ -5213,6 +5530,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5213
5530
|
attr_accessor updated_at: ::Time
|
|
5214
5531
|
attr_accessor policy_arn: ::String
|
|
5215
5532
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
5533
|
+
attr_accessor enforcement_mode: ("ACTIVE" | "LOG_ONLY")
|
|
5216
5534
|
attr_accessor definition: Types::PolicyDefinition
|
|
5217
5535
|
attr_accessor description: ::String
|
|
5218
5536
|
attr_accessor status_reasons: ::Array[::String]
|
|
@@ -5505,6 +5823,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5505
5823
|
SENSITIVE: []
|
|
5506
5824
|
end
|
|
5507
5825
|
|
|
5826
|
+
class WafConfiguration
|
|
5827
|
+
attr_accessor failure_mode: ("FAIL_CLOSE" | "FAIL_OPEN")
|
|
5828
|
+
SENSITIVE: []
|
|
5829
|
+
end
|
|
5830
|
+
|
|
5508
5831
|
class WeightedOverride
|
|
5509
5832
|
attr_accessor traffic_split: ::Array[Types::TrafficSplitEntry]
|
|
5510
5833
|
SENSITIVE: []
|