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
data/sig/client.rbs
CHANGED
|
@@ -111,7 +111,8 @@ module Aws
|
|
|
111
111
|
network_mode: ("PUBLIC" | "VPC"),
|
|
112
112
|
network_mode_config: {
|
|
113
113
|
security_groups: Array[::String],
|
|
114
|
-
subnets: Array[::String]
|
|
114
|
+
subnets: Array[::String],
|
|
115
|
+
require_service_s3_endpoint: bool?
|
|
115
116
|
}?
|
|
116
117
|
},
|
|
117
118
|
?client_token: ::String,
|
|
@@ -249,7 +250,8 @@ module Aws
|
|
|
249
250
|
network_mode: ("PUBLIC" | "VPC"),
|
|
250
251
|
vpc_config: {
|
|
251
252
|
security_groups: Array[::String],
|
|
252
|
-
subnets: Array[::String]
|
|
253
|
+
subnets: Array[::String],
|
|
254
|
+
require_service_s3_endpoint: bool?
|
|
253
255
|
}?
|
|
254
256
|
},
|
|
255
257
|
?recording: {
|
|
@@ -321,7 +323,8 @@ module Aws
|
|
|
321
323
|
network_mode: ("PUBLIC" | "SANDBOX" | "VPC"),
|
|
322
324
|
vpc_config: {
|
|
323
325
|
security_groups: Array[::String],
|
|
324
|
-
subnets: Array[::String]
|
|
326
|
+
subnets: Array[::String],
|
|
327
|
+
require_service_s3_endpoint: bool?
|
|
325
328
|
}?
|
|
326
329
|
},
|
|
327
330
|
?certificates: Array[
|
|
@@ -791,7 +794,8 @@ module Aws
|
|
|
791
794
|
network_mode: ("PUBLIC" | "VPC"),
|
|
792
795
|
network_mode_config: {
|
|
793
796
|
security_groups: Array[::String],
|
|
794
|
-
subnets: Array[::String]
|
|
797
|
+
subnets: Array[::String],
|
|
798
|
+
require_service_s3_endpoint: bool?
|
|
795
799
|
}?
|
|
796
800
|
}?,
|
|
797
801
|
filesystem_configurations: Array[
|
|
@@ -1600,12 +1604,12 @@ module Aws
|
|
|
1600
1604
|
def policy_id: () -> ::String
|
|
1601
1605
|
def name: () -> ::String
|
|
1602
1606
|
def policy_engine_id: () -> ::String
|
|
1603
|
-
def definition: () -> Types::PolicyDefinition
|
|
1604
|
-
def description: () -> ::String
|
|
1605
1607
|
def created_at: () -> ::Time
|
|
1606
1608
|
def updated_at: () -> ::Time
|
|
1607
1609
|
def policy_arn: () -> ::String
|
|
1608
1610
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1611
|
+
def definition: () -> Types::PolicyDefinition
|
|
1612
|
+
def description: () -> ::String
|
|
1609
1613
|
def status_reasons: () -> ::Array[::String]
|
|
1610
1614
|
end
|
|
1611
1615
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_policy-instance_method
|
|
@@ -1631,13 +1635,13 @@ module Aws
|
|
|
1631
1635
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePolicyEngineResponse]
|
|
1632
1636
|
def policy_engine_id: () -> ::String
|
|
1633
1637
|
def name: () -> ::String
|
|
1634
|
-
def description: () -> ::String
|
|
1635
1638
|
def created_at: () -> ::Time
|
|
1636
1639
|
def updated_at: () -> ::Time
|
|
1637
1640
|
def policy_engine_arn: () -> ::String
|
|
1638
1641
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1639
|
-
def status_reasons: () -> ::Array[::String]
|
|
1640
1642
|
def encryption_key_arn: () -> ::String
|
|
1643
|
+
def description: () -> ::String
|
|
1644
|
+
def status_reasons: () -> ::Array[::String]
|
|
1641
1645
|
end
|
|
1642
1646
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_policy_engine-instance_method
|
|
1643
1647
|
def create_policy_engine: (
|
|
@@ -2021,12 +2025,12 @@ module Aws
|
|
|
2021
2025
|
def policy_id: () -> ::String
|
|
2022
2026
|
def name: () -> ::String
|
|
2023
2027
|
def policy_engine_id: () -> ::String
|
|
2024
|
-
def definition: () -> Types::PolicyDefinition
|
|
2025
|
-
def description: () -> ::String
|
|
2026
2028
|
def created_at: () -> ::Time
|
|
2027
2029
|
def updated_at: () -> ::Time
|
|
2028
2030
|
def policy_arn: () -> ::String
|
|
2029
2031
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2032
|
+
def definition: () -> Types::PolicyDefinition
|
|
2033
|
+
def description: () -> ::String
|
|
2030
2034
|
def status_reasons: () -> ::Array[::String]
|
|
2031
2035
|
end
|
|
2032
2036
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_policy-instance_method
|
|
@@ -2040,13 +2044,13 @@ module Aws
|
|
|
2040
2044
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePolicyEngineResponse]
|
|
2041
2045
|
def policy_engine_id: () -> ::String
|
|
2042
2046
|
def name: () -> ::String
|
|
2043
|
-
def description: () -> ::String
|
|
2044
2047
|
def created_at: () -> ::Time
|
|
2045
2048
|
def updated_at: () -> ::Time
|
|
2046
2049
|
def policy_engine_arn: () -> ::String
|
|
2047
2050
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2048
|
-
def status_reasons: () -> ::Array[::String]
|
|
2049
2051
|
def encryption_key_arn: () -> ::String
|
|
2052
|
+
def description: () -> ::String
|
|
2053
|
+
def status_reasons: () -> ::Array[::String]
|
|
2050
2054
|
end
|
|
2051
2055
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_policy_engine-instance_method
|
|
2052
2056
|
def delete_policy_engine: (
|
|
@@ -2475,12 +2479,12 @@ module Aws
|
|
|
2475
2479
|
def policy_id: () -> ::String
|
|
2476
2480
|
def name: () -> ::String
|
|
2477
2481
|
def policy_engine_id: () -> ::String
|
|
2478
|
-
def definition: () -> Types::PolicyDefinition
|
|
2479
|
-
def description: () -> ::String
|
|
2480
2482
|
def created_at: () -> ::Time
|
|
2481
2483
|
def updated_at: () -> ::Time
|
|
2482
2484
|
def policy_arn: () -> ::String
|
|
2483
2485
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2486
|
+
def definition: () -> Types::PolicyDefinition
|
|
2487
|
+
def description: () -> ::String
|
|
2484
2488
|
def status_reasons: () -> ::Array[::String]
|
|
2485
2489
|
end
|
|
2486
2490
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy-instance_method
|
|
@@ -2494,13 +2498,13 @@ module Aws
|
|
|
2494
2498
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyEngineResponse]
|
|
2495
2499
|
def policy_engine_id: () -> ::String
|
|
2496
2500
|
def name: () -> ::String
|
|
2497
|
-
def description: () -> ::String
|
|
2498
2501
|
def created_at: () -> ::Time
|
|
2499
2502
|
def updated_at: () -> ::Time
|
|
2500
2503
|
def policy_engine_arn: () -> ::String
|
|
2501
2504
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2502
|
-
def status_reasons: () -> ::Array[::String]
|
|
2503
2505
|
def encryption_key_arn: () -> ::String
|
|
2506
|
+
def description: () -> ::String
|
|
2507
|
+
def status_reasons: () -> ::Array[::String]
|
|
2504
2508
|
end
|
|
2505
2509
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_engine-instance_method
|
|
2506
2510
|
def get_policy_engine: (
|
|
@@ -2508,6 +2512,22 @@ module Aws
|
|
|
2508
2512
|
) -> _GetPolicyEngineResponseSuccess
|
|
2509
2513
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyEngineResponseSuccess
|
|
2510
2514
|
|
|
2515
|
+
interface _GetPolicyEngineSummaryResponseSuccess
|
|
2516
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyEngineSummaryResponse]
|
|
2517
|
+
def policy_engine_id: () -> ::String
|
|
2518
|
+
def name: () -> ::String
|
|
2519
|
+
def created_at: () -> ::Time
|
|
2520
|
+
def updated_at: () -> ::Time
|
|
2521
|
+
def policy_engine_arn: () -> ::String
|
|
2522
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2523
|
+
def encryption_key_arn: () -> ::String
|
|
2524
|
+
end
|
|
2525
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_engine_summary-instance_method
|
|
2526
|
+
def get_policy_engine_summary: (
|
|
2527
|
+
policy_engine_id: ::String
|
|
2528
|
+
) -> _GetPolicyEngineSummaryResponseSuccess
|
|
2529
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyEngineSummaryResponseSuccess
|
|
2530
|
+
|
|
2511
2531
|
interface _GetPolicyGenerationResponseSuccess
|
|
2512
2532
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyGenerationResponse]
|
|
2513
2533
|
def policy_engine_id: () -> ::String
|
|
@@ -2518,8 +2538,8 @@ module Aws
|
|
|
2518
2538
|
def created_at: () -> ::Time
|
|
2519
2539
|
def updated_at: () -> ::Time
|
|
2520
2540
|
def status: () -> ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2521
|
-
def status_reasons: () -> ::Array[::String]
|
|
2522
2541
|
def findings: () -> ::String
|
|
2542
|
+
def status_reasons: () -> ::Array[::String]
|
|
2523
2543
|
end
|
|
2524
2544
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_generation-instance_method
|
|
2525
2545
|
def get_policy_generation: (
|
|
@@ -2528,6 +2548,42 @@ module Aws
|
|
|
2528
2548
|
) -> _GetPolicyGenerationResponseSuccess
|
|
2529
2549
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyGenerationResponseSuccess
|
|
2530
2550
|
|
|
2551
|
+
interface _GetPolicyGenerationSummaryResponseSuccess
|
|
2552
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyGenerationSummaryResponse]
|
|
2553
|
+
def policy_engine_id: () -> ::String
|
|
2554
|
+
def policy_generation_id: () -> ::String
|
|
2555
|
+
def name: () -> ::String
|
|
2556
|
+
def policy_generation_arn: () -> ::String
|
|
2557
|
+
def resource: () -> Types::Resource
|
|
2558
|
+
def created_at: () -> ::Time
|
|
2559
|
+
def updated_at: () -> ::Time
|
|
2560
|
+
def status: () -> ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2561
|
+
def findings: () -> ::String
|
|
2562
|
+
end
|
|
2563
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_generation_summary-instance_method
|
|
2564
|
+
def get_policy_generation_summary: (
|
|
2565
|
+
policy_generation_id: ::String,
|
|
2566
|
+
policy_engine_id: ::String
|
|
2567
|
+
) -> _GetPolicyGenerationSummaryResponseSuccess
|
|
2568
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyGenerationSummaryResponseSuccess
|
|
2569
|
+
|
|
2570
|
+
interface _GetPolicySummaryResponseSuccess
|
|
2571
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicySummaryResponse]
|
|
2572
|
+
def policy_id: () -> ::String
|
|
2573
|
+
def name: () -> ::String
|
|
2574
|
+
def policy_engine_id: () -> ::String
|
|
2575
|
+
def created_at: () -> ::Time
|
|
2576
|
+
def updated_at: () -> ::Time
|
|
2577
|
+
def policy_arn: () -> ::String
|
|
2578
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2579
|
+
end
|
|
2580
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_summary-instance_method
|
|
2581
|
+
def get_policy_summary: (
|
|
2582
|
+
policy_engine_id: ::String,
|
|
2583
|
+
policy_id: ::String
|
|
2584
|
+
) -> _GetPolicySummaryResponseSuccess
|
|
2585
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicySummaryResponseSuccess
|
|
2586
|
+
|
|
2531
2587
|
interface _GetRegistryResponseSuccess
|
|
2532
2588
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRegistryResponse]
|
|
2533
2589
|
def name: () -> ::String
|
|
@@ -2876,6 +2932,18 @@ module Aws
|
|
|
2876
2932
|
) -> _ListPoliciesResponseSuccess
|
|
2877
2933
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPoliciesResponseSuccess
|
|
2878
2934
|
|
|
2935
|
+
interface _ListPolicyEngineSummariesResponseSuccess
|
|
2936
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyEngineSummariesResponse]
|
|
2937
|
+
def policy_engines: () -> ::Array[Types::PolicyEngineSummary]
|
|
2938
|
+
def next_token: () -> ::String
|
|
2939
|
+
end
|
|
2940
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_policy_engine_summaries-instance_method
|
|
2941
|
+
def list_policy_engine_summaries: (
|
|
2942
|
+
?next_token: ::String,
|
|
2943
|
+
?max_results: ::Integer
|
|
2944
|
+
) -> _ListPolicyEngineSummariesResponseSuccess
|
|
2945
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyEngineSummariesResponseSuccess
|
|
2946
|
+
|
|
2879
2947
|
interface _ListPolicyEnginesResponseSuccess
|
|
2880
2948
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyEnginesResponse]
|
|
2881
2949
|
def policy_engines: () -> ::Array[Types::PolicyEngine]
|
|
@@ -2902,6 +2970,19 @@ module Aws
|
|
|
2902
2970
|
) -> _ListPolicyGenerationAssetsResponseSuccess
|
|
2903
2971
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGenerationAssetsResponseSuccess
|
|
2904
2972
|
|
|
2973
|
+
interface _ListPolicyGenerationSummariesResponseSuccess
|
|
2974
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyGenerationSummariesResponse]
|
|
2975
|
+
def policy_generations: () -> ::Array[Types::PolicyGenerationSummary]
|
|
2976
|
+
def next_token: () -> ::String
|
|
2977
|
+
end
|
|
2978
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_policy_generation_summaries-instance_method
|
|
2979
|
+
def list_policy_generation_summaries: (
|
|
2980
|
+
?next_token: ::String,
|
|
2981
|
+
?max_results: ::Integer,
|
|
2982
|
+
policy_engine_id: ::String
|
|
2983
|
+
) -> _ListPolicyGenerationSummariesResponseSuccess
|
|
2984
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGenerationSummariesResponseSuccess
|
|
2985
|
+
|
|
2905
2986
|
interface _ListPolicyGenerationsResponseSuccess
|
|
2906
2987
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyGenerationsResponse]
|
|
2907
2988
|
def policy_generations: () -> ::Array[Types::PolicyGeneration]
|
|
@@ -2915,6 +2996,20 @@ module Aws
|
|
|
2915
2996
|
) -> _ListPolicyGenerationsResponseSuccess
|
|
2916
2997
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGenerationsResponseSuccess
|
|
2917
2998
|
|
|
2999
|
+
interface _ListPolicySummariesResponseSuccess
|
|
3000
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicySummariesResponse]
|
|
3001
|
+
def policies: () -> ::Array[Types::PolicySummary]
|
|
3002
|
+
def next_token: () -> ::String
|
|
3003
|
+
end
|
|
3004
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_policy_summaries-instance_method
|
|
3005
|
+
def list_policy_summaries: (
|
|
3006
|
+
?next_token: ::String,
|
|
3007
|
+
?max_results: ::Integer,
|
|
3008
|
+
policy_engine_id: ::String,
|
|
3009
|
+
?target_resource_scope: ::String
|
|
3010
|
+
) -> _ListPolicySummariesResponseSuccess
|
|
3011
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicySummariesResponseSuccess
|
|
3012
|
+
|
|
2918
3013
|
interface _ListRegistriesResponseSuccess
|
|
2919
3014
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRegistriesResponse]
|
|
2920
3015
|
def registries: () -> ::Array[Types::RegistrySummary]
|
|
@@ -2924,7 +3019,8 @@ module Aws
|
|
|
2924
3019
|
def list_registries: (
|
|
2925
3020
|
?max_results: ::Integer,
|
|
2926
3021
|
?next_token: ::String,
|
|
2927
|
-
?status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
3022
|
+
?status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED"),
|
|
3023
|
+
?authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
|
2928
3024
|
) -> _ListRegistriesResponseSuccess
|
|
2929
3025
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRegistriesResponseSuccess
|
|
2930
3026
|
|
|
@@ -3003,8 +3099,8 @@ module Aws
|
|
|
3003
3099
|
def created_at: () -> ::Time
|
|
3004
3100
|
def updated_at: () -> ::Time
|
|
3005
3101
|
def status: () -> ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
3006
|
-
def status_reasons: () -> ::Array[::String]
|
|
3007
3102
|
def findings: () -> ::String
|
|
3103
|
+
def status_reasons: () -> ::Array[::String]
|
|
3008
3104
|
end
|
|
3009
3105
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#start_policy_generation-instance_method
|
|
3010
3106
|
def start_policy_generation: (
|
|
@@ -3100,7 +3196,8 @@ module Aws
|
|
|
3100
3196
|
network_mode: ("PUBLIC" | "VPC"),
|
|
3101
3197
|
network_mode_config: {
|
|
3102
3198
|
security_groups: Array[::String],
|
|
3103
|
-
subnets: Array[::String]
|
|
3199
|
+
subnets: Array[::String],
|
|
3200
|
+
require_service_s3_endpoint: bool?
|
|
3104
3201
|
}?
|
|
3105
3202
|
},
|
|
3106
3203
|
?description: ::String,
|
|
@@ -3677,7 +3774,8 @@ module Aws
|
|
|
3677
3774
|
network_mode: ("PUBLIC" | "VPC"),
|
|
3678
3775
|
network_mode_config: {
|
|
3679
3776
|
security_groups: Array[::String],
|
|
3680
|
-
subnets: Array[::String]
|
|
3777
|
+
subnets: Array[::String],
|
|
3778
|
+
require_service_s3_endpoint: bool?
|
|
3681
3779
|
}?
|
|
3682
3780
|
}?,
|
|
3683
3781
|
filesystem_configurations: Array[
|
|
@@ -4655,12 +4753,12 @@ module Aws
|
|
|
4655
4753
|
def policy_id: () -> ::String
|
|
4656
4754
|
def name: () -> ::String
|
|
4657
4755
|
def policy_engine_id: () -> ::String
|
|
4658
|
-
def definition: () -> Types::PolicyDefinition
|
|
4659
|
-
def description: () -> ::String
|
|
4660
4756
|
def created_at: () -> ::Time
|
|
4661
4757
|
def updated_at: () -> ::Time
|
|
4662
4758
|
def policy_arn: () -> ::String
|
|
4663
4759
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4760
|
+
def definition: () -> Types::PolicyDefinition
|
|
4761
|
+
def description: () -> ::String
|
|
4664
4762
|
def status_reasons: () -> ::Array[::String]
|
|
4665
4763
|
end
|
|
4666
4764
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_policy-instance_method
|
|
@@ -4687,13 +4785,13 @@ module Aws
|
|
|
4687
4785
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePolicyEngineResponse]
|
|
4688
4786
|
def policy_engine_id: () -> ::String
|
|
4689
4787
|
def name: () -> ::String
|
|
4690
|
-
def description: () -> ::String
|
|
4691
4788
|
def created_at: () -> ::Time
|
|
4692
4789
|
def updated_at: () -> ::Time
|
|
4693
4790
|
def policy_engine_arn: () -> ::String
|
|
4694
4791
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4695
|
-
def status_reasons: () -> ::Array[::String]
|
|
4696
4792
|
def encryption_key_arn: () -> ::String
|
|
4793
|
+
def description: () -> ::String
|
|
4794
|
+
def status_reasons: () -> ::Array[::String]
|
|
4697
4795
|
end
|
|
4698
4796
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_policy_engine-instance_method
|
|
4699
4797
|
def update_policy_engine: (
|