aws-sdk-bedrockagentcorecontrol 1.45.0 → 1.46.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 +425 -60
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +240 -23
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +766 -195
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +123 -25
- data/sig/types.rbs +150 -22
- metadata +3 -3
|
@@ -562,6 +562,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
562
562
|
# network_mode_config: {
|
|
563
563
|
# security_groups: ["SecurityGroupId"], # required
|
|
564
564
|
# subnets: ["SubnetId"], # required
|
|
565
|
+
# require_service_s3_endpoint: false,
|
|
565
566
|
# },
|
|
566
567
|
# },
|
|
567
568
|
# client_token: "ClientToken",
|
|
@@ -851,6 +852,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
851
852
|
# vpc_config: {
|
|
852
853
|
# security_groups: ["SecurityGroupId"], # required
|
|
853
854
|
# subnets: ["SubnetId"], # required
|
|
855
|
+
# require_service_s3_endpoint: false,
|
|
854
856
|
# },
|
|
855
857
|
# },
|
|
856
858
|
# recording: {
|
|
@@ -1021,6 +1023,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1021
1023
|
# vpc_config: {
|
|
1022
1024
|
# security_groups: ["SecurityGroupId"], # required
|
|
1023
1025
|
# subnets: ["SubnetId"], # required
|
|
1026
|
+
# require_service_s3_endpoint: false,
|
|
1024
1027
|
# },
|
|
1025
1028
|
# },
|
|
1026
1029
|
# certificates: [
|
|
@@ -2137,6 +2140,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2137
2140
|
# network_mode_config: {
|
|
2138
2141
|
# security_groups: ["SecurityGroupId"], # required
|
|
2139
2142
|
# subnets: ["SubnetId"], # required
|
|
2143
|
+
# require_service_s3_endpoint: false,
|
|
2140
2144
|
# },
|
|
2141
2145
|
# },
|
|
2142
2146
|
# filesystem_configurations: [
|
|
@@ -2394,6 +2398,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2394
2398
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
2395
2399
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
2396
2400
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
2401
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
2397
2402
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
2398
2403
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
2399
2404
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -3431,16 +3436,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
3431
3436
|
# payment providers.
|
|
3432
3437
|
#
|
|
3433
3438
|
# @option params [required, String] :name
|
|
3434
|
-
# Unique name for the payment credential provider
|
|
3439
|
+
# Unique name for the payment credential provider.
|
|
3435
3440
|
#
|
|
3436
3441
|
# @option params [required, String] :credential_provider_vendor
|
|
3437
|
-
# The vendor type (e.g.,
|
|
3442
|
+
# The vendor type for the payment credential provider (e.g.,
|
|
3443
|
+
# CoinbaseCDP, StripePrivy).
|
|
3438
3444
|
#
|
|
3439
3445
|
# @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
|
|
3440
|
-
# Configuration specific to the vendor, including API credentials
|
|
3446
|
+
# Configuration specific to the vendor, including API credentials.
|
|
3441
3447
|
#
|
|
3442
3448
|
# @option params [Hash<String,String>] :tags
|
|
3443
|
-
# Optional tags for resource organization
|
|
3449
|
+
# Optional tags for resource organization.
|
|
3444
3450
|
#
|
|
3445
3451
|
# @return [Types::CreatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3446
3452
|
#
|
|
@@ -3748,12 +3754,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3748
3754
|
# * {Types::CreatePolicyResponse#policy_id #policy_id} => String
|
|
3749
3755
|
# * {Types::CreatePolicyResponse#name #name} => String
|
|
3750
3756
|
# * {Types::CreatePolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
3751
|
-
# * {Types::CreatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
3752
|
-
# * {Types::CreatePolicyResponse#description #description} => String
|
|
3753
3757
|
# * {Types::CreatePolicyResponse#created_at #created_at} => Time
|
|
3754
3758
|
# * {Types::CreatePolicyResponse#updated_at #updated_at} => Time
|
|
3755
3759
|
# * {Types::CreatePolicyResponse#policy_arn #policy_arn} => String
|
|
3756
3760
|
# * {Types::CreatePolicyResponse#status #status} => String
|
|
3761
|
+
# * {Types::CreatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
3762
|
+
# * {Types::CreatePolicyResponse#description #description} => String
|
|
3757
3763
|
# * {Types::CreatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
3758
3764
|
#
|
|
3759
3765
|
# @example Request syntax with placeholder values
|
|
@@ -3780,14 +3786,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3780
3786
|
# resp.policy_id #=> String
|
|
3781
3787
|
# resp.name #=> String
|
|
3782
3788
|
# resp.policy_engine_id #=> String
|
|
3783
|
-
# resp.definition.cedar.statement #=> String
|
|
3784
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
3785
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
3786
|
-
# resp.description #=> String
|
|
3787
3789
|
# resp.created_at #=> Time
|
|
3788
3790
|
# resp.updated_at #=> Time
|
|
3789
3791
|
# resp.policy_arn #=> String
|
|
3790
3792
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
3793
|
+
# resp.definition.cedar.statement #=> String
|
|
3794
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
3795
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
3796
|
+
# resp.description #=> String
|
|
3791
3797
|
# resp.status_reasons #=> Array
|
|
3792
3798
|
# resp.status_reasons[0] #=> String
|
|
3793
3799
|
#
|
|
@@ -3849,13 +3855,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
3849
3855
|
#
|
|
3850
3856
|
# * {Types::CreatePolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
3851
3857
|
# * {Types::CreatePolicyEngineResponse#name #name} => String
|
|
3852
|
-
# * {Types::CreatePolicyEngineResponse#description #description} => String
|
|
3853
3858
|
# * {Types::CreatePolicyEngineResponse#created_at #created_at} => Time
|
|
3854
3859
|
# * {Types::CreatePolicyEngineResponse#updated_at #updated_at} => Time
|
|
3855
3860
|
# * {Types::CreatePolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
3856
3861
|
# * {Types::CreatePolicyEngineResponse#status #status} => String
|
|
3857
|
-
# * {Types::CreatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
3858
3862
|
# * {Types::CreatePolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
3863
|
+
# * {Types::CreatePolicyEngineResponse#description #description} => String
|
|
3864
|
+
# * {Types::CreatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
3859
3865
|
#
|
|
3860
3866
|
# @example Request syntax with placeholder values
|
|
3861
3867
|
#
|
|
@@ -3873,14 +3879,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3873
3879
|
#
|
|
3874
3880
|
# resp.policy_engine_id #=> String
|
|
3875
3881
|
# resp.name #=> String
|
|
3876
|
-
# resp.description #=> String
|
|
3877
3882
|
# resp.created_at #=> Time
|
|
3878
3883
|
# resp.updated_at #=> Time
|
|
3879
3884
|
# resp.policy_engine_arn #=> String
|
|
3880
3885
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
3886
|
+
# resp.encryption_key_arn #=> String
|
|
3887
|
+
# resp.description #=> String
|
|
3881
3888
|
# resp.status_reasons #=> Array
|
|
3882
3889
|
# resp.status_reasons[0] #=> String
|
|
3883
|
-
# resp.encryption_key_arn #=> String
|
|
3884
3890
|
#
|
|
3885
3891
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePolicyEngine AWS API Documentation
|
|
3886
3892
|
#
|
|
@@ -4712,6 +4718,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4712
4718
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
4713
4719
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
4714
4720
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
4721
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
4715
4722
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
4716
4723
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
4717
4724
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -5012,12 +5019,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
5012
5019
|
# * {Types::DeletePolicyResponse#policy_id #policy_id} => String
|
|
5013
5020
|
# * {Types::DeletePolicyResponse#name #name} => String
|
|
5014
5021
|
# * {Types::DeletePolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
5015
|
-
# * {Types::DeletePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
5016
|
-
# * {Types::DeletePolicyResponse#description #description} => String
|
|
5017
5022
|
# * {Types::DeletePolicyResponse#created_at #created_at} => Time
|
|
5018
5023
|
# * {Types::DeletePolicyResponse#updated_at #updated_at} => Time
|
|
5019
5024
|
# * {Types::DeletePolicyResponse#policy_arn #policy_arn} => String
|
|
5020
5025
|
# * {Types::DeletePolicyResponse#status #status} => String
|
|
5026
|
+
# * {Types::DeletePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
5027
|
+
# * {Types::DeletePolicyResponse#description #description} => String
|
|
5021
5028
|
# * {Types::DeletePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
5022
5029
|
#
|
|
5023
5030
|
# @example Request syntax with placeholder values
|
|
@@ -5032,14 +5039,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
5032
5039
|
# resp.policy_id #=> String
|
|
5033
5040
|
# resp.name #=> String
|
|
5034
5041
|
# resp.policy_engine_id #=> String
|
|
5035
|
-
# resp.definition.cedar.statement #=> String
|
|
5036
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
5037
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
5038
|
-
# resp.description #=> String
|
|
5039
5042
|
# resp.created_at #=> Time
|
|
5040
5043
|
# resp.updated_at #=> Time
|
|
5041
5044
|
# resp.policy_arn #=> String
|
|
5042
5045
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
5046
|
+
# resp.definition.cedar.statement #=> String
|
|
5047
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
5048
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
5049
|
+
# resp.description #=> String
|
|
5043
5050
|
# resp.status_reasons #=> Array
|
|
5044
5051
|
# resp.status_reasons[0] #=> String
|
|
5045
5052
|
#
|
|
@@ -5067,13 +5074,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
5067
5074
|
#
|
|
5068
5075
|
# * {Types::DeletePolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
5069
5076
|
# * {Types::DeletePolicyEngineResponse#name #name} => String
|
|
5070
|
-
# * {Types::DeletePolicyEngineResponse#description #description} => String
|
|
5071
5077
|
# * {Types::DeletePolicyEngineResponse#created_at #created_at} => Time
|
|
5072
5078
|
# * {Types::DeletePolicyEngineResponse#updated_at #updated_at} => Time
|
|
5073
5079
|
# * {Types::DeletePolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
5074
5080
|
# * {Types::DeletePolicyEngineResponse#status #status} => String
|
|
5075
|
-
# * {Types::DeletePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
5076
5081
|
# * {Types::DeletePolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
5082
|
+
# * {Types::DeletePolicyEngineResponse#description #description} => String
|
|
5083
|
+
# * {Types::DeletePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
5077
5084
|
#
|
|
5078
5085
|
# @example Request syntax with placeholder values
|
|
5079
5086
|
#
|
|
@@ -5085,14 +5092,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
5085
5092
|
#
|
|
5086
5093
|
# resp.policy_engine_id #=> String
|
|
5087
5094
|
# resp.name #=> String
|
|
5088
|
-
# resp.description #=> String
|
|
5089
5095
|
# resp.created_at #=> Time
|
|
5090
5096
|
# resp.updated_at #=> Time
|
|
5091
5097
|
# resp.policy_engine_arn #=> String
|
|
5092
5098
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
5099
|
+
# resp.encryption_key_arn #=> String
|
|
5100
|
+
# resp.description #=> String
|
|
5093
5101
|
# resp.status_reasons #=> Array
|
|
5094
5102
|
# resp.status_reasons[0] #=> String
|
|
5095
|
-
# resp.encryption_key_arn #=> String
|
|
5096
5103
|
#
|
|
5097
5104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePolicyEngine AWS API Documentation
|
|
5098
5105
|
#
|
|
@@ -5265,6 +5272,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5265
5272
|
# resp.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
5266
5273
|
# resp.network_configuration.network_mode_config.subnets #=> Array
|
|
5267
5274
|
# resp.network_configuration.network_mode_config.subnets[0] #=> String
|
|
5275
|
+
# resp.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
5268
5276
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
|
5269
5277
|
# resp.lifecycle_configuration.idle_runtime_session_timeout #=> Integer
|
|
5270
5278
|
# resp.lifecycle_configuration.max_lifetime #=> Integer
|
|
@@ -5465,6 +5473,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5465
5473
|
# resp.network_configuration.vpc_config.security_groups[0] #=> String
|
|
5466
5474
|
# resp.network_configuration.vpc_config.subnets #=> Array
|
|
5467
5475
|
# resp.network_configuration.vpc_config.subnets[0] #=> String
|
|
5476
|
+
# resp.network_configuration.vpc_config.require_service_s3_endpoint #=> Boolean
|
|
5468
5477
|
# resp.recording.enabled #=> Boolean
|
|
5469
5478
|
# resp.recording.s3_location.bucket #=> String
|
|
5470
5479
|
# resp.recording.s3_location.prefix #=> String
|
|
@@ -5574,6 +5583,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5574
5583
|
# resp.network_configuration.vpc_config.security_groups[0] #=> String
|
|
5575
5584
|
# resp.network_configuration.vpc_config.subnets #=> Array
|
|
5576
5585
|
# resp.network_configuration.vpc_config.subnets[0] #=> String
|
|
5586
|
+
# resp.network_configuration.vpc_config.require_service_s3_endpoint #=> Boolean
|
|
5577
5587
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
5578
5588
|
# resp.certificates #=> Array
|
|
5579
5589
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
@@ -6176,6 +6186,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6176
6186
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
6177
6187
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
6178
6188
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
6189
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
6179
6190
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
6180
6191
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
6181
6192
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -6797,12 +6808,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
6797
6808
|
# * {Types::GetPolicyResponse#policy_id #policy_id} => String
|
|
6798
6809
|
# * {Types::GetPolicyResponse#name #name} => String
|
|
6799
6810
|
# * {Types::GetPolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
6800
|
-
# * {Types::GetPolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
6801
|
-
# * {Types::GetPolicyResponse#description #description} => String
|
|
6802
6811
|
# * {Types::GetPolicyResponse#created_at #created_at} => Time
|
|
6803
6812
|
# * {Types::GetPolicyResponse#updated_at #updated_at} => Time
|
|
6804
6813
|
# * {Types::GetPolicyResponse#policy_arn #policy_arn} => String
|
|
6805
6814
|
# * {Types::GetPolicyResponse#status #status} => String
|
|
6815
|
+
# * {Types::GetPolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
6816
|
+
# * {Types::GetPolicyResponse#description #description} => String
|
|
6806
6817
|
# * {Types::GetPolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
6807
6818
|
#
|
|
6808
6819
|
# @example Request syntax with placeholder values
|
|
@@ -6817,14 +6828,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
6817
6828
|
# resp.policy_id #=> String
|
|
6818
6829
|
# resp.name #=> String
|
|
6819
6830
|
# resp.policy_engine_id #=> String
|
|
6820
|
-
# resp.definition.cedar.statement #=> String
|
|
6821
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
6822
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
6823
|
-
# resp.description #=> String
|
|
6824
6831
|
# resp.created_at #=> Time
|
|
6825
6832
|
# resp.updated_at #=> Time
|
|
6826
6833
|
# resp.policy_arn #=> String
|
|
6827
6834
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6835
|
+
# resp.definition.cedar.statement #=> String
|
|
6836
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
6837
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
6838
|
+
# resp.description #=> String
|
|
6828
6839
|
# resp.status_reasons #=> Array
|
|
6829
6840
|
# resp.status_reasons[0] #=> String
|
|
6830
6841
|
#
|
|
@@ -6856,13 +6867,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6856
6867
|
#
|
|
6857
6868
|
# * {Types::GetPolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
6858
6869
|
# * {Types::GetPolicyEngineResponse#name #name} => String
|
|
6859
|
-
# * {Types::GetPolicyEngineResponse#description #description} => String
|
|
6860
6870
|
# * {Types::GetPolicyEngineResponse#created_at #created_at} => Time
|
|
6861
6871
|
# * {Types::GetPolicyEngineResponse#updated_at #updated_at} => Time
|
|
6862
6872
|
# * {Types::GetPolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
6863
6873
|
# * {Types::GetPolicyEngineResponse#status #status} => String
|
|
6864
|
-
# * {Types::GetPolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
6865
6874
|
# * {Types::GetPolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
6875
|
+
# * {Types::GetPolicyEngineResponse#description #description} => String
|
|
6876
|
+
# * {Types::GetPolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
6866
6877
|
#
|
|
6867
6878
|
# @example Request syntax with placeholder values
|
|
6868
6879
|
#
|
|
@@ -6874,14 +6885,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
6874
6885
|
#
|
|
6875
6886
|
# resp.policy_engine_id #=> String
|
|
6876
6887
|
# resp.name #=> String
|
|
6877
|
-
# resp.description #=> String
|
|
6878
6888
|
# resp.created_at #=> Time
|
|
6879
6889
|
# resp.updated_at #=> Time
|
|
6880
6890
|
# resp.policy_engine_arn #=> String
|
|
6881
6891
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6892
|
+
# resp.encryption_key_arn #=> String
|
|
6893
|
+
# resp.description #=> String
|
|
6882
6894
|
# resp.status_reasons #=> Array
|
|
6883
6895
|
# resp.status_reasons[0] #=> String
|
|
6884
|
-
# resp.encryption_key_arn #=> String
|
|
6885
6896
|
#
|
|
6886
6897
|
#
|
|
6887
6898
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -6898,6 +6909,54 @@ module Aws::BedrockAgentCoreControl
|
|
|
6898
6909
|
req.send_request(options)
|
|
6899
6910
|
end
|
|
6900
6911
|
|
|
6912
|
+
# Retrieves a metadata-only summary of a specific policy engine without
|
|
6913
|
+
# decrypting customer content. This lightweight read operation returns
|
|
6914
|
+
# resource identifiers, status, timestamps, and the encryption key ARN,
|
|
6915
|
+
# but does not include the description or status reasons. Because this
|
|
6916
|
+
# operation does not require access to the customer's KMS key, it is
|
|
6917
|
+
# suitable for resource discovery, inventory, and integration scenarios
|
|
6918
|
+
# where only metadata is needed.
|
|
6919
|
+
#
|
|
6920
|
+
# @option params [required, String] :policy_engine_id
|
|
6921
|
+
# The unique identifier of the policy engine to retrieve the summary
|
|
6922
|
+
# for. This must be a valid policy engine ID that exists within the
|
|
6923
|
+
# account.
|
|
6924
|
+
#
|
|
6925
|
+
# @return [Types::GetPolicyEngineSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6926
|
+
#
|
|
6927
|
+
# * {Types::GetPolicyEngineSummaryResponse#policy_engine_id #policy_engine_id} => String
|
|
6928
|
+
# * {Types::GetPolicyEngineSummaryResponse#name #name} => String
|
|
6929
|
+
# * {Types::GetPolicyEngineSummaryResponse#created_at #created_at} => Time
|
|
6930
|
+
# * {Types::GetPolicyEngineSummaryResponse#updated_at #updated_at} => Time
|
|
6931
|
+
# * {Types::GetPolicyEngineSummaryResponse#policy_engine_arn #policy_engine_arn} => String
|
|
6932
|
+
# * {Types::GetPolicyEngineSummaryResponse#status #status} => String
|
|
6933
|
+
# * {Types::GetPolicyEngineSummaryResponse#encryption_key_arn #encryption_key_arn} => String
|
|
6934
|
+
#
|
|
6935
|
+
# @example Request syntax with placeholder values
|
|
6936
|
+
#
|
|
6937
|
+
# resp = client.get_policy_engine_summary({
|
|
6938
|
+
# policy_engine_id: "ResourceId", # required
|
|
6939
|
+
# })
|
|
6940
|
+
#
|
|
6941
|
+
# @example Response structure
|
|
6942
|
+
#
|
|
6943
|
+
# resp.policy_engine_id #=> String
|
|
6944
|
+
# resp.name #=> String
|
|
6945
|
+
# resp.created_at #=> Time
|
|
6946
|
+
# resp.updated_at #=> Time
|
|
6947
|
+
# resp.policy_engine_arn #=> String
|
|
6948
|
+
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6949
|
+
# resp.encryption_key_arn #=> String
|
|
6950
|
+
#
|
|
6951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineSummary AWS API Documentation
|
|
6952
|
+
#
|
|
6953
|
+
# @overload get_policy_engine_summary(params = {})
|
|
6954
|
+
# @param [Hash] params ({})
|
|
6955
|
+
def get_policy_engine_summary(params = {}, options = {})
|
|
6956
|
+
req = build_request(:get_policy_engine_summary, params)
|
|
6957
|
+
req.send_request(options)
|
|
6958
|
+
end
|
|
6959
|
+
|
|
6901
6960
|
# Retrieves information about a policy generation request within the
|
|
6902
6961
|
# AgentCore Policy system. Policy generation converts natural language
|
|
6903
6962
|
# descriptions into Cedar policy statements using AI-powered
|
|
@@ -6927,8 +6986,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6927
6986
|
# * {Types::GetPolicyGenerationResponse#created_at #created_at} => Time
|
|
6928
6987
|
# * {Types::GetPolicyGenerationResponse#updated_at #updated_at} => Time
|
|
6929
6988
|
# * {Types::GetPolicyGenerationResponse#status #status} => String
|
|
6930
|
-
# * {Types::GetPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
6931
6989
|
# * {Types::GetPolicyGenerationResponse#findings #findings} => String
|
|
6990
|
+
# * {Types::GetPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
6932
6991
|
#
|
|
6933
6992
|
# @example Request syntax with placeholder values
|
|
6934
6993
|
#
|
|
@@ -6947,9 +7006,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
6947
7006
|
# resp.created_at #=> Time
|
|
6948
7007
|
# resp.updated_at #=> Time
|
|
6949
7008
|
# resp.status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
7009
|
+
# resp.findings #=> String
|
|
6950
7010
|
# resp.status_reasons #=> Array
|
|
6951
7011
|
# resp.status_reasons[0] #=> String
|
|
6952
|
-
# resp.findings #=> String
|
|
6953
7012
|
#
|
|
6954
7013
|
#
|
|
6955
7014
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -6965,6 +7024,115 @@ module Aws::BedrockAgentCoreControl
|
|
|
6965
7024
|
req.send_request(options)
|
|
6966
7025
|
end
|
|
6967
7026
|
|
|
7027
|
+
# Retrieves a metadata-only summary of a specific policy generation
|
|
7028
|
+
# request without decrypting customer content. This lightweight read
|
|
7029
|
+
# operation returns resource identifiers, status, timestamps, and
|
|
7030
|
+
# findings, but does not include status reasons. Because this operation
|
|
7031
|
+
# does not require access to the customer's KMS key, it is suitable for
|
|
7032
|
+
# resource discovery, inventory, and integration scenarios where only
|
|
7033
|
+
# metadata is needed.
|
|
7034
|
+
#
|
|
7035
|
+
# @option params [required, String] :policy_generation_id
|
|
7036
|
+
# The unique identifier of the policy generation request to retrieve the
|
|
7037
|
+
# summary for.
|
|
7038
|
+
#
|
|
7039
|
+
# @option params [required, String] :policy_engine_id
|
|
7040
|
+
# The identifier of the policy engine associated with the policy
|
|
7041
|
+
# generation request.
|
|
7042
|
+
#
|
|
7043
|
+
# @return [Types::GetPolicyGenerationSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7044
|
+
#
|
|
7045
|
+
# * {Types::GetPolicyGenerationSummaryResponse#policy_engine_id #policy_engine_id} => String
|
|
7046
|
+
# * {Types::GetPolicyGenerationSummaryResponse#policy_generation_id #policy_generation_id} => String
|
|
7047
|
+
# * {Types::GetPolicyGenerationSummaryResponse#name #name} => String
|
|
7048
|
+
# * {Types::GetPolicyGenerationSummaryResponse#policy_generation_arn #policy_generation_arn} => String
|
|
7049
|
+
# * {Types::GetPolicyGenerationSummaryResponse#resource #resource} => Types::Resource
|
|
7050
|
+
# * {Types::GetPolicyGenerationSummaryResponse#created_at #created_at} => Time
|
|
7051
|
+
# * {Types::GetPolicyGenerationSummaryResponse#updated_at #updated_at} => Time
|
|
7052
|
+
# * {Types::GetPolicyGenerationSummaryResponse#status #status} => String
|
|
7053
|
+
# * {Types::GetPolicyGenerationSummaryResponse#findings #findings} => String
|
|
7054
|
+
#
|
|
7055
|
+
# @example Request syntax with placeholder values
|
|
7056
|
+
#
|
|
7057
|
+
# resp = client.get_policy_generation_summary({
|
|
7058
|
+
# policy_generation_id: "ResourceId", # required
|
|
7059
|
+
# policy_engine_id: "ResourceId", # required
|
|
7060
|
+
# })
|
|
7061
|
+
#
|
|
7062
|
+
# @example Response structure
|
|
7063
|
+
#
|
|
7064
|
+
# resp.policy_engine_id #=> String
|
|
7065
|
+
# resp.policy_generation_id #=> String
|
|
7066
|
+
# resp.name #=> String
|
|
7067
|
+
# resp.policy_generation_arn #=> String
|
|
7068
|
+
# resp.resource.arn #=> String
|
|
7069
|
+
# resp.created_at #=> Time
|
|
7070
|
+
# resp.updated_at #=> Time
|
|
7071
|
+
# resp.status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
7072
|
+
# resp.findings #=> String
|
|
7073
|
+
#
|
|
7074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationSummary AWS API Documentation
|
|
7075
|
+
#
|
|
7076
|
+
# @overload get_policy_generation_summary(params = {})
|
|
7077
|
+
# @param [Hash] params ({})
|
|
7078
|
+
def get_policy_generation_summary(params = {}, options = {})
|
|
7079
|
+
req = build_request(:get_policy_generation_summary, params)
|
|
7080
|
+
req.send_request(options)
|
|
7081
|
+
end
|
|
7082
|
+
|
|
7083
|
+
# Retrieves a metadata-only summary of a specific policy without
|
|
7084
|
+
# decrypting customer content. This lightweight read operation returns
|
|
7085
|
+
# resource identifiers, status, and timestamps, but does not include the
|
|
7086
|
+
# policy definition, description, or status reasons. Because this
|
|
7087
|
+
# operation does not require access to the customer's KMS key, it is
|
|
7088
|
+
# suitable for resource discovery, inventory, and integration scenarios
|
|
7089
|
+
# where only metadata is needed.
|
|
7090
|
+
#
|
|
7091
|
+
# @option params [required, String] :policy_engine_id
|
|
7092
|
+
# The identifier of the policy engine that manages the policy to
|
|
7093
|
+
# retrieve the summary for.
|
|
7094
|
+
#
|
|
7095
|
+
# @option params [required, String] :policy_id
|
|
7096
|
+
# The unique identifier of the policy to retrieve the summary for. This
|
|
7097
|
+
# must be a valid policy ID that exists within the specified policy
|
|
7098
|
+
# engine.
|
|
7099
|
+
#
|
|
7100
|
+
# @return [Types::GetPolicySummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7101
|
+
#
|
|
7102
|
+
# * {Types::GetPolicySummaryResponse#policy_id #policy_id} => String
|
|
7103
|
+
# * {Types::GetPolicySummaryResponse#name #name} => String
|
|
7104
|
+
# * {Types::GetPolicySummaryResponse#policy_engine_id #policy_engine_id} => String
|
|
7105
|
+
# * {Types::GetPolicySummaryResponse#created_at #created_at} => Time
|
|
7106
|
+
# * {Types::GetPolicySummaryResponse#updated_at #updated_at} => Time
|
|
7107
|
+
# * {Types::GetPolicySummaryResponse#policy_arn #policy_arn} => String
|
|
7108
|
+
# * {Types::GetPolicySummaryResponse#status #status} => String
|
|
7109
|
+
#
|
|
7110
|
+
# @example Request syntax with placeholder values
|
|
7111
|
+
#
|
|
7112
|
+
# resp = client.get_policy_summary({
|
|
7113
|
+
# policy_engine_id: "ResourceId", # required
|
|
7114
|
+
# policy_id: "ResourceId", # required
|
|
7115
|
+
# })
|
|
7116
|
+
#
|
|
7117
|
+
# @example Response structure
|
|
7118
|
+
#
|
|
7119
|
+
# resp.policy_id #=> String
|
|
7120
|
+
# resp.name #=> String
|
|
7121
|
+
# resp.policy_engine_id #=> String
|
|
7122
|
+
# resp.created_at #=> Time
|
|
7123
|
+
# resp.updated_at #=> Time
|
|
7124
|
+
# resp.policy_arn #=> String
|
|
7125
|
+
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
7126
|
+
#
|
|
7127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummary AWS API Documentation
|
|
7128
|
+
#
|
|
7129
|
+
# @overload get_policy_summary(params = {})
|
|
7130
|
+
# @param [Hash] params ({})
|
|
7131
|
+
def get_policy_summary(params = {}, options = {})
|
|
7132
|
+
req = build_request(:get_policy_summary, params)
|
|
7133
|
+
req.send_request(options)
|
|
7134
|
+
end
|
|
7135
|
+
|
|
6968
7136
|
# Retrieves information about a specific registry.
|
|
6969
7137
|
#
|
|
6970
7138
|
# @option params [required, String] :registry_id
|
|
@@ -8272,14 +8440,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
8272
8440
|
# resp.policies[0].policy_id #=> String
|
|
8273
8441
|
# resp.policies[0].name #=> String
|
|
8274
8442
|
# resp.policies[0].policy_engine_id #=> String
|
|
8275
|
-
# resp.policies[0].definition.cedar.statement #=> String
|
|
8276
|
-
# resp.policies[0].definition.policy_generation.policy_generation_id #=> String
|
|
8277
|
-
# resp.policies[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
8278
|
-
# resp.policies[0].description #=> String
|
|
8279
8443
|
# resp.policies[0].created_at #=> Time
|
|
8280
8444
|
# resp.policies[0].updated_at #=> Time
|
|
8281
8445
|
# resp.policies[0].policy_arn #=> String
|
|
8282
8446
|
# resp.policies[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8447
|
+
# resp.policies[0].definition.cedar.statement #=> String
|
|
8448
|
+
# resp.policies[0].definition.policy_generation.policy_generation_id #=> String
|
|
8449
|
+
# resp.policies[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
8450
|
+
# resp.policies[0].description #=> String
|
|
8283
8451
|
# resp.policies[0].status_reasons #=> Array
|
|
8284
8452
|
# resp.policies[0].status_reasons[0] #=> String
|
|
8285
8453
|
# resp.next_token #=> String
|
|
@@ -8293,6 +8461,62 @@ module Aws::BedrockAgentCoreControl
|
|
|
8293
8461
|
req.send_request(options)
|
|
8294
8462
|
end
|
|
8295
8463
|
|
|
8464
|
+
# Retrieves a paginated list of metadata-only policy engine summaries
|
|
8465
|
+
# without decrypting customer content. This lightweight read operation
|
|
8466
|
+
# returns resource identifiers, status, and timestamps for each policy
|
|
8467
|
+
# engine, but does not include descriptions or status reasons. Because
|
|
8468
|
+
# this operation does not require access to the customer's KMS key, it
|
|
8469
|
+
# is suitable for resource discovery, inventory, and integration
|
|
8470
|
+
# scenarios where only metadata is needed.
|
|
8471
|
+
#
|
|
8472
|
+
# @option params [String] :next_token
|
|
8473
|
+
# A pagination token returned from a previous
|
|
8474
|
+
# [ListPolicyEngineSummaries][1] call. Use this token to retrieve the
|
|
8475
|
+
# next page of results when the response is paginated.
|
|
8476
|
+
#
|
|
8477
|
+
#
|
|
8478
|
+
#
|
|
8479
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyEngineSummaries.html
|
|
8480
|
+
#
|
|
8481
|
+
# @option params [Integer] :max_results
|
|
8482
|
+
# The maximum number of policy engine summaries to return in a single
|
|
8483
|
+
# response.
|
|
8484
|
+
#
|
|
8485
|
+
# @return [Types::ListPolicyEngineSummariesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8486
|
+
#
|
|
8487
|
+
# * {Types::ListPolicyEngineSummariesResponse#policy_engines #policy_engines} => Array<Types::PolicyEngineSummary>
|
|
8488
|
+
# * {Types::ListPolicyEngineSummariesResponse#next_token #next_token} => String
|
|
8489
|
+
#
|
|
8490
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8491
|
+
#
|
|
8492
|
+
# @example Request syntax with placeholder values
|
|
8493
|
+
#
|
|
8494
|
+
# resp = client.list_policy_engine_summaries({
|
|
8495
|
+
# next_token: "NextToken",
|
|
8496
|
+
# max_results: 1,
|
|
8497
|
+
# })
|
|
8498
|
+
#
|
|
8499
|
+
# @example Response structure
|
|
8500
|
+
#
|
|
8501
|
+
# resp.policy_engines #=> Array
|
|
8502
|
+
# resp.policy_engines[0].policy_engine_id #=> String
|
|
8503
|
+
# resp.policy_engines[0].name #=> String
|
|
8504
|
+
# resp.policy_engines[0].created_at #=> Time
|
|
8505
|
+
# resp.policy_engines[0].updated_at #=> Time
|
|
8506
|
+
# resp.policy_engines[0].policy_engine_arn #=> String
|
|
8507
|
+
# resp.policy_engines[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8508
|
+
# resp.policy_engines[0].encryption_key_arn #=> String
|
|
8509
|
+
# resp.next_token #=> String
|
|
8510
|
+
#
|
|
8511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyEngineSummaries AWS API Documentation
|
|
8512
|
+
#
|
|
8513
|
+
# @overload list_policy_engine_summaries(params = {})
|
|
8514
|
+
# @param [Hash] params ({})
|
|
8515
|
+
def list_policy_engine_summaries(params = {}, options = {})
|
|
8516
|
+
req = build_request(:list_policy_engine_summaries, params)
|
|
8517
|
+
req.send_request(options)
|
|
8518
|
+
end
|
|
8519
|
+
|
|
8296
8520
|
# Retrieves a list of policy engines within the AgentCore Policy system.
|
|
8297
8521
|
# This operation supports pagination to help administrators discover and
|
|
8298
8522
|
# manage policy engines across their account. Each policy engine serves
|
|
@@ -8331,14 +8555,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
8331
8555
|
# resp.policy_engines #=> Array
|
|
8332
8556
|
# resp.policy_engines[0].policy_engine_id #=> String
|
|
8333
8557
|
# resp.policy_engines[0].name #=> String
|
|
8334
|
-
# resp.policy_engines[0].description #=> String
|
|
8335
8558
|
# resp.policy_engines[0].created_at #=> Time
|
|
8336
8559
|
# resp.policy_engines[0].updated_at #=> Time
|
|
8337
8560
|
# resp.policy_engines[0].policy_engine_arn #=> String
|
|
8338
8561
|
# resp.policy_engines[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8562
|
+
# resp.policy_engines[0].encryption_key_arn #=> String
|
|
8563
|
+
# resp.policy_engines[0].description #=> String
|
|
8339
8564
|
# resp.policy_engines[0].status_reasons #=> Array
|
|
8340
8565
|
# resp.policy_engines[0].status_reasons[0] #=> String
|
|
8341
|
-
# resp.policy_engines[0].encryption_key_arn #=> String
|
|
8342
8566
|
# resp.next_token #=> String
|
|
8343
8567
|
#
|
|
8344
8568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyEngines AWS API Documentation
|
|
@@ -8426,6 +8650,69 @@ module Aws::BedrockAgentCoreControl
|
|
|
8426
8650
|
req.send_request(options)
|
|
8427
8651
|
end
|
|
8428
8652
|
|
|
8653
|
+
# Retrieves a paginated list of metadata-only policy generation
|
|
8654
|
+
# summaries within a policy engine without decrypting customer content.
|
|
8655
|
+
# This lightweight read operation returns resource identifiers, status,
|
|
8656
|
+
# timestamps, and findings for each policy generation, but does not
|
|
8657
|
+
# include status reasons. Because this operation does not require access
|
|
8658
|
+
# to the customer's KMS key, it is suitable for resource discovery,
|
|
8659
|
+
# inventory, and integration scenarios where only metadata is needed.
|
|
8660
|
+
#
|
|
8661
|
+
# @option params [String] :next_token
|
|
8662
|
+
# A pagination token returned from a previous
|
|
8663
|
+
# [ListPolicyGenerationSummaries][1] call. Use this token to retrieve
|
|
8664
|
+
# the next page of results when the response is paginated.
|
|
8665
|
+
#
|
|
8666
|
+
#
|
|
8667
|
+
#
|
|
8668
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyGenerationSummaries.html
|
|
8669
|
+
#
|
|
8670
|
+
# @option params [Integer] :max_results
|
|
8671
|
+
# The maximum number of policy generation summaries to return in a
|
|
8672
|
+
# single response.
|
|
8673
|
+
#
|
|
8674
|
+
# @option params [required, String] :policy_engine_id
|
|
8675
|
+
# The identifier of the policy engine whose policy generation summaries
|
|
8676
|
+
# to retrieve.
|
|
8677
|
+
#
|
|
8678
|
+
# @return [Types::ListPolicyGenerationSummariesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8679
|
+
#
|
|
8680
|
+
# * {Types::ListPolicyGenerationSummariesResponse#policy_generations #policy_generations} => Array<Types::PolicyGenerationSummary>
|
|
8681
|
+
# * {Types::ListPolicyGenerationSummariesResponse#next_token #next_token} => String
|
|
8682
|
+
#
|
|
8683
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8684
|
+
#
|
|
8685
|
+
# @example Request syntax with placeholder values
|
|
8686
|
+
#
|
|
8687
|
+
# resp = client.list_policy_generation_summaries({
|
|
8688
|
+
# next_token: "NextToken",
|
|
8689
|
+
# max_results: 1,
|
|
8690
|
+
# policy_engine_id: "ResourceId", # required
|
|
8691
|
+
# })
|
|
8692
|
+
#
|
|
8693
|
+
# @example Response structure
|
|
8694
|
+
#
|
|
8695
|
+
# resp.policy_generations #=> Array
|
|
8696
|
+
# resp.policy_generations[0].policy_engine_id #=> String
|
|
8697
|
+
# resp.policy_generations[0].policy_generation_id #=> String
|
|
8698
|
+
# resp.policy_generations[0].name #=> String
|
|
8699
|
+
# resp.policy_generations[0].policy_generation_arn #=> String
|
|
8700
|
+
# resp.policy_generations[0].resource.arn #=> String
|
|
8701
|
+
# resp.policy_generations[0].created_at #=> Time
|
|
8702
|
+
# resp.policy_generations[0].updated_at #=> Time
|
|
8703
|
+
# resp.policy_generations[0].status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
8704
|
+
# resp.policy_generations[0].findings #=> String
|
|
8705
|
+
# resp.next_token #=> String
|
|
8706
|
+
#
|
|
8707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerationSummaries AWS API Documentation
|
|
8708
|
+
#
|
|
8709
|
+
# @overload list_policy_generation_summaries(params = {})
|
|
8710
|
+
# @param [Hash] params ({})
|
|
8711
|
+
def list_policy_generation_summaries(params = {}, options = {})
|
|
8712
|
+
req = build_request(:list_policy_generation_summaries, params)
|
|
8713
|
+
req.send_request(options)
|
|
8714
|
+
end
|
|
8715
|
+
|
|
8429
8716
|
# Retrieves a list of policy generation requests within the AgentCore
|
|
8430
8717
|
# Policy system. This operation supports pagination and filtering to
|
|
8431
8718
|
# help track and manage AI-powered policy generation operations.
|
|
@@ -8468,9 +8755,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
8468
8755
|
# resp.policy_generations[0].created_at #=> Time
|
|
8469
8756
|
# resp.policy_generations[0].updated_at #=> Time
|
|
8470
8757
|
# resp.policy_generations[0].status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
8758
|
+
# resp.policy_generations[0].findings #=> String
|
|
8471
8759
|
# resp.policy_generations[0].status_reasons #=> Array
|
|
8472
8760
|
# resp.policy_generations[0].status_reasons[0] #=> String
|
|
8473
|
-
# resp.policy_generations[0].findings #=> String
|
|
8474
8761
|
# resp.next_token #=> String
|
|
8475
8762
|
#
|
|
8476
8763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerations AWS API Documentation
|
|
@@ -8482,8 +8769,77 @@ module Aws::BedrockAgentCoreControl
|
|
|
8482
8769
|
req.send_request(options)
|
|
8483
8770
|
end
|
|
8484
8771
|
|
|
8772
|
+
# Retrieves a paginated list of metadata-only policy summaries within a
|
|
8773
|
+
# policy engine without decrypting customer content. This lightweight
|
|
8774
|
+
# read operation returns resource identifiers, status, and timestamps
|
|
8775
|
+
# for each policy, but does not include policy definitions,
|
|
8776
|
+
# descriptions, or status reasons. Because this operation does not
|
|
8777
|
+
# require access to the customer's KMS key, it is suitable for resource
|
|
8778
|
+
# discovery, inventory, and integration scenarios where only metadata is
|
|
8779
|
+
# needed.
|
|
8780
|
+
#
|
|
8781
|
+
# @option params [String] :next_token
|
|
8782
|
+
# A pagination token returned from a previous [ListPolicySummaries][1]
|
|
8783
|
+
# call. Use this token to retrieve the next page of results when the
|
|
8784
|
+
# response is paginated.
|
|
8785
|
+
#
|
|
8786
|
+
#
|
|
8787
|
+
#
|
|
8788
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicySummaries.html
|
|
8789
|
+
#
|
|
8790
|
+
# @option params [Integer] :max_results
|
|
8791
|
+
# The maximum number of policy summaries to return in a single response.
|
|
8792
|
+
#
|
|
8793
|
+
# @option params [required, String] :policy_engine_id
|
|
8794
|
+
# The identifier of the policy engine whose policy summaries to
|
|
8795
|
+
# retrieve.
|
|
8796
|
+
#
|
|
8797
|
+
# @option params [String] :target_resource_scope
|
|
8798
|
+
# Optional filter to list policy summaries that apply to a specific
|
|
8799
|
+
# resource scope or resource type. This helps narrow down results to
|
|
8800
|
+
# those relevant for particular Amazon Web Services resources, agent
|
|
8801
|
+
# tools, or operational contexts within the policy engine ecosystem.
|
|
8802
|
+
#
|
|
8803
|
+
# @return [Types::ListPolicySummariesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8804
|
+
#
|
|
8805
|
+
# * {Types::ListPolicySummariesResponse#policies #policies} => Array<Types::PolicySummary>
|
|
8806
|
+
# * {Types::ListPolicySummariesResponse#next_token #next_token} => String
|
|
8807
|
+
#
|
|
8808
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8809
|
+
#
|
|
8810
|
+
# @example Request syntax with placeholder values
|
|
8811
|
+
#
|
|
8812
|
+
# resp = client.list_policy_summaries({
|
|
8813
|
+
# next_token: "NextToken",
|
|
8814
|
+
# max_results: 1,
|
|
8815
|
+
# policy_engine_id: "ResourceId", # required
|
|
8816
|
+
# target_resource_scope: "BedrockAgentcoreResourceArn",
|
|
8817
|
+
# })
|
|
8818
|
+
#
|
|
8819
|
+
# @example Response structure
|
|
8820
|
+
#
|
|
8821
|
+
# resp.policies #=> Array
|
|
8822
|
+
# resp.policies[0].policy_id #=> String
|
|
8823
|
+
# resp.policies[0].name #=> String
|
|
8824
|
+
# resp.policies[0].policy_engine_id #=> String
|
|
8825
|
+
# resp.policies[0].created_at #=> Time
|
|
8826
|
+
# resp.policies[0].updated_at #=> Time
|
|
8827
|
+
# resp.policies[0].policy_arn #=> String
|
|
8828
|
+
# resp.policies[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8829
|
+
# resp.next_token #=> String
|
|
8830
|
+
#
|
|
8831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicySummaries AWS API Documentation
|
|
8832
|
+
#
|
|
8833
|
+
# @overload list_policy_summaries(params = {})
|
|
8834
|
+
# @param [Hash] params ({})
|
|
8835
|
+
def list_policy_summaries(params = {}, options = {})
|
|
8836
|
+
req = build_request(:list_policy_summaries, params)
|
|
8837
|
+
req.send_request(options)
|
|
8838
|
+
end
|
|
8839
|
+
|
|
8485
8840
|
# Lists all registries in the account. You can optionally filter results
|
|
8486
|
-
# by status using the `status` parameter
|
|
8841
|
+
# by status using the `status` parameter, or by authorizer type using
|
|
8842
|
+
# the `authorizerType` parameter.
|
|
8487
8843
|
#
|
|
8488
8844
|
# @option params [Integer] :max_results
|
|
8489
8845
|
# The maximum number of results to return in the response. If the total
|
|
@@ -8502,6 +8858,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
8502
8858
|
# `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
|
|
8503
8859
|
# `DELETING`, and `DELETE_FAILED`.
|
|
8504
8860
|
#
|
|
8861
|
+
# @option params [String] :authorizer_type
|
|
8862
|
+
# Filter registries by their authorizer type. Possible values are
|
|
8863
|
+
# `CUSTOM_JWT` and `AWS_IAM`. For more information about authorizer
|
|
8864
|
+
# types, see the `RegistryAuthorizerType` enum.
|
|
8865
|
+
#
|
|
8505
8866
|
# @return [Types::ListRegistriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8506
8867
|
#
|
|
8507
8868
|
# * {Types::ListRegistriesResponse#registries #registries} => Array<Types::RegistrySummary>
|
|
@@ -8515,6 +8876,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8515
8876
|
# max_results: 1,
|
|
8516
8877
|
# next_token: "NextToken",
|
|
8517
8878
|
# status: "CREATING", # accepts CREATING, READY, UPDATING, CREATE_FAILED, UPDATE_FAILED, DELETING, DELETE_FAILED
|
|
8879
|
+
# authorizer_type: "CUSTOM_JWT", # accepts CUSTOM_JWT, AWS_IAM
|
|
8518
8880
|
# })
|
|
8519
8881
|
#
|
|
8520
8882
|
# @example Response structure
|
|
@@ -8825,8 +9187,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
8825
9187
|
# * {Types::StartPolicyGenerationResponse#created_at #created_at} => Time
|
|
8826
9188
|
# * {Types::StartPolicyGenerationResponse#updated_at #updated_at} => Time
|
|
8827
9189
|
# * {Types::StartPolicyGenerationResponse#status #status} => String
|
|
8828
|
-
# * {Types::StartPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
8829
9190
|
# * {Types::StartPolicyGenerationResponse#findings #findings} => String
|
|
9191
|
+
# * {Types::StartPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
8830
9192
|
#
|
|
8831
9193
|
# @example Request syntax with placeholder values
|
|
8832
9194
|
#
|
|
@@ -8852,9 +9214,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
8852
9214
|
# resp.created_at #=> Time
|
|
8853
9215
|
# resp.updated_at #=> Time
|
|
8854
9216
|
# resp.status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
9217
|
+
# resp.findings #=> String
|
|
8855
9218
|
# resp.status_reasons #=> Array
|
|
8856
9219
|
# resp.status_reasons[0] #=> String
|
|
8857
|
-
# resp.findings #=> String
|
|
8858
9220
|
#
|
|
8859
9221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StartPolicyGeneration AWS API Documentation
|
|
8860
9222
|
#
|
|
@@ -9198,6 +9560,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9198
9560
|
# network_mode_config: {
|
|
9199
9561
|
# security_groups: ["SecurityGroupId"], # required
|
|
9200
9562
|
# subnets: ["SubnetId"], # required
|
|
9563
|
+
# require_service_s3_endpoint: false,
|
|
9201
9564
|
# },
|
|
9202
9565
|
# },
|
|
9203
9566
|
# description: "Description",
|
|
@@ -10435,6 +10798,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
10435
10798
|
# network_mode_config: {
|
|
10436
10799
|
# security_groups: ["SecurityGroupId"], # required
|
|
10437
10800
|
# subnets: ["SubnetId"], # required
|
|
10801
|
+
# require_service_s3_endpoint: false,
|
|
10438
10802
|
# },
|
|
10439
10803
|
# },
|
|
10440
10804
|
# filesystem_configurations: [
|
|
@@ -10695,6 +11059,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
10695
11059
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
10696
11060
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
10697
11061
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
11062
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
10698
11063
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
10699
11064
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
10700
11065
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -11855,11 +12220,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
11855
12220
|
# The name of the payment credential provider to update.
|
|
11856
12221
|
#
|
|
11857
12222
|
# @option params [required, String] :credential_provider_vendor
|
|
11858
|
-
#
|
|
11859
|
-
#
|
|
12223
|
+
# The vendor type for the payment credential provider (e.g.,
|
|
12224
|
+
# CoinbaseCDP, StripePrivy).
|
|
11860
12225
|
#
|
|
11861
12226
|
# @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
|
|
11862
|
-
# Configuration specific to the vendor, including API credentials
|
|
12227
|
+
# Configuration specific to the vendor, including API credentials.
|
|
11863
12228
|
#
|
|
11864
12229
|
# @return [Types::UpdatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
11865
12230
|
#
|
|
@@ -12085,12 +12450,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
12085
12450
|
# * {Types::UpdatePolicyResponse#policy_id #policy_id} => String
|
|
12086
12451
|
# * {Types::UpdatePolicyResponse#name #name} => String
|
|
12087
12452
|
# * {Types::UpdatePolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
12088
|
-
# * {Types::UpdatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
12089
|
-
# * {Types::UpdatePolicyResponse#description #description} => String
|
|
12090
12453
|
# * {Types::UpdatePolicyResponse#created_at #created_at} => Time
|
|
12091
12454
|
# * {Types::UpdatePolicyResponse#updated_at #updated_at} => Time
|
|
12092
12455
|
# * {Types::UpdatePolicyResponse#policy_arn #policy_arn} => String
|
|
12093
12456
|
# * {Types::UpdatePolicyResponse#status #status} => String
|
|
12457
|
+
# * {Types::UpdatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
12458
|
+
# * {Types::UpdatePolicyResponse#description #description} => String
|
|
12094
12459
|
# * {Types::UpdatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
12095
12460
|
#
|
|
12096
12461
|
# @example Request syntax with placeholder values
|
|
@@ -12118,14 +12483,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
12118
12483
|
# resp.policy_id #=> String
|
|
12119
12484
|
# resp.name #=> String
|
|
12120
12485
|
# resp.policy_engine_id #=> String
|
|
12121
|
-
# resp.definition.cedar.statement #=> String
|
|
12122
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
12123
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
12124
|
-
# resp.description #=> String
|
|
12125
12486
|
# resp.created_at #=> Time
|
|
12126
12487
|
# resp.updated_at #=> Time
|
|
12127
12488
|
# resp.policy_arn #=> String
|
|
12128
12489
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
12490
|
+
# resp.definition.cedar.statement #=> String
|
|
12491
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
12492
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
12493
|
+
# resp.description #=> String
|
|
12129
12494
|
# resp.status_reasons #=> Array
|
|
12130
12495
|
# resp.status_reasons[0] #=> String
|
|
12131
12496
|
#
|
|
@@ -12154,13 +12519,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
12154
12519
|
#
|
|
12155
12520
|
# * {Types::UpdatePolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
12156
12521
|
# * {Types::UpdatePolicyEngineResponse#name #name} => String
|
|
12157
|
-
# * {Types::UpdatePolicyEngineResponse#description #description} => String
|
|
12158
12522
|
# * {Types::UpdatePolicyEngineResponse#created_at #created_at} => Time
|
|
12159
12523
|
# * {Types::UpdatePolicyEngineResponse#updated_at #updated_at} => Time
|
|
12160
12524
|
# * {Types::UpdatePolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
12161
12525
|
# * {Types::UpdatePolicyEngineResponse#status #status} => String
|
|
12162
|
-
# * {Types::UpdatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
12163
12526
|
# * {Types::UpdatePolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
12527
|
+
# * {Types::UpdatePolicyEngineResponse#description #description} => String
|
|
12528
|
+
# * {Types::UpdatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
12164
12529
|
#
|
|
12165
12530
|
# @example Request syntax with placeholder values
|
|
12166
12531
|
#
|
|
@@ -12175,14 +12540,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
12175
12540
|
#
|
|
12176
12541
|
# resp.policy_engine_id #=> String
|
|
12177
12542
|
# resp.name #=> String
|
|
12178
|
-
# resp.description #=> String
|
|
12179
12543
|
# resp.created_at #=> Time
|
|
12180
12544
|
# resp.updated_at #=> Time
|
|
12181
12545
|
# resp.policy_engine_arn #=> String
|
|
12182
12546
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
12547
|
+
# resp.encryption_key_arn #=> String
|
|
12548
|
+
# resp.description #=> String
|
|
12183
12549
|
# resp.status_reasons #=> Array
|
|
12184
12550
|
# resp.status_reasons[0] #=> String
|
|
12185
|
-
# resp.encryption_key_arn #=> String
|
|
12186
12551
|
#
|
|
12187
12552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePolicyEngine AWS API Documentation
|
|
12188
12553
|
#
|
|
@@ -12680,7 +13045,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12680
13045
|
tracer: tracer
|
|
12681
13046
|
)
|
|
12682
13047
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
12683
|
-
context[:gem_version] = '1.
|
|
13048
|
+
context[:gem_version] = '1.46.0'
|
|
12684
13049
|
Seahorse::Client::Request.new(handlers, context)
|
|
12685
13050
|
end
|
|
12686
13051
|
|