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/types.rbs
CHANGED
|
@@ -865,13 +865,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
865
865
|
class CreatePolicyEngineResponse
|
|
866
866
|
attr_accessor policy_engine_id: ::String
|
|
867
867
|
attr_accessor name: ::String
|
|
868
|
-
attr_accessor description: ::String
|
|
869
868
|
attr_accessor created_at: ::Time
|
|
870
869
|
attr_accessor updated_at: ::Time
|
|
871
870
|
attr_accessor policy_engine_arn: ::String
|
|
872
871
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
873
|
-
attr_accessor status_reasons: ::Array[::String]
|
|
874
872
|
attr_accessor encryption_key_arn: ::String
|
|
873
|
+
attr_accessor description: ::String
|
|
874
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
875
875
|
SENSITIVE: [:description]
|
|
876
876
|
end
|
|
877
877
|
|
|
@@ -889,12 +889,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
889
889
|
attr_accessor policy_id: ::String
|
|
890
890
|
attr_accessor name: ::String
|
|
891
891
|
attr_accessor policy_engine_id: ::String
|
|
892
|
-
attr_accessor definition: Types::PolicyDefinition
|
|
893
|
-
attr_accessor description: ::String
|
|
894
892
|
attr_accessor created_at: ::Time
|
|
895
893
|
attr_accessor updated_at: ::Time
|
|
896
894
|
attr_accessor policy_arn: ::String
|
|
897
895
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
896
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
897
|
+
attr_accessor description: ::String
|
|
898
898
|
attr_accessor status_reasons: ::Array[::String]
|
|
899
899
|
SENSITIVE: [:description]
|
|
900
900
|
end
|
|
@@ -1398,13 +1398,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1398
1398
|
class DeletePolicyEngineResponse
|
|
1399
1399
|
attr_accessor policy_engine_id: ::String
|
|
1400
1400
|
attr_accessor name: ::String
|
|
1401
|
-
attr_accessor description: ::String
|
|
1402
1401
|
attr_accessor created_at: ::Time
|
|
1403
1402
|
attr_accessor updated_at: ::Time
|
|
1404
1403
|
attr_accessor policy_engine_arn: ::String
|
|
1405
1404
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1406
|
-
attr_accessor status_reasons: ::Array[::String]
|
|
1407
1405
|
attr_accessor encryption_key_arn: ::String
|
|
1406
|
+
attr_accessor description: ::String
|
|
1407
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
1408
1408
|
SENSITIVE: [:description]
|
|
1409
1409
|
end
|
|
1410
1410
|
|
|
@@ -1418,12 +1418,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1418
1418
|
attr_accessor policy_id: ::String
|
|
1419
1419
|
attr_accessor name: ::String
|
|
1420
1420
|
attr_accessor policy_engine_id: ::String
|
|
1421
|
-
attr_accessor definition: Types::PolicyDefinition
|
|
1422
|
-
attr_accessor description: ::String
|
|
1423
1421
|
attr_accessor created_at: ::Time
|
|
1424
1422
|
attr_accessor updated_at: ::Time
|
|
1425
1423
|
attr_accessor policy_arn: ::String
|
|
1426
1424
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1425
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
1426
|
+
attr_accessor description: ::String
|
|
1427
1427
|
attr_accessor status_reasons: ::Array[::String]
|
|
1428
1428
|
SENSITIVE: [:description]
|
|
1429
1429
|
end
|
|
@@ -2137,16 +2137,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
2137
2137
|
class GetPolicyEngineResponse
|
|
2138
2138
|
attr_accessor policy_engine_id: ::String
|
|
2139
2139
|
attr_accessor name: ::String
|
|
2140
|
-
attr_accessor description: ::String
|
|
2141
2140
|
attr_accessor created_at: ::Time
|
|
2142
2141
|
attr_accessor updated_at: ::Time
|
|
2143
2142
|
attr_accessor policy_engine_arn: ::String
|
|
2144
2143
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2145
|
-
attr_accessor status_reasons: ::Array[::String]
|
|
2146
2144
|
attr_accessor encryption_key_arn: ::String
|
|
2145
|
+
attr_accessor description: ::String
|
|
2146
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
2147
2147
|
SENSITIVE: [:description]
|
|
2148
2148
|
end
|
|
2149
2149
|
|
|
2150
|
+
class GetPolicyEngineSummaryRequest
|
|
2151
|
+
attr_accessor policy_engine_id: ::String
|
|
2152
|
+
SENSITIVE: []
|
|
2153
|
+
end
|
|
2154
|
+
|
|
2155
|
+
class GetPolicyEngineSummaryResponse
|
|
2156
|
+
attr_accessor policy_engine_id: ::String
|
|
2157
|
+
attr_accessor name: ::String
|
|
2158
|
+
attr_accessor created_at: ::Time
|
|
2159
|
+
attr_accessor updated_at: ::Time
|
|
2160
|
+
attr_accessor policy_engine_arn: ::String
|
|
2161
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2162
|
+
attr_accessor encryption_key_arn: ::String
|
|
2163
|
+
SENSITIVE: []
|
|
2164
|
+
end
|
|
2165
|
+
|
|
2150
2166
|
class GetPolicyGenerationRequest
|
|
2151
2167
|
attr_accessor policy_generation_id: ::String
|
|
2152
2168
|
attr_accessor policy_engine_id: ::String
|
|
@@ -2162,7 +2178,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
2162
2178
|
attr_accessor created_at: ::Time
|
|
2163
2179
|
attr_accessor updated_at: ::Time
|
|
2164
2180
|
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2181
|
+
attr_accessor findings: ::String
|
|
2165
2182
|
attr_accessor status_reasons: ::Array[::String]
|
|
2183
|
+
SENSITIVE: []
|
|
2184
|
+
end
|
|
2185
|
+
|
|
2186
|
+
class GetPolicyGenerationSummaryRequest
|
|
2187
|
+
attr_accessor policy_generation_id: ::String
|
|
2188
|
+
attr_accessor policy_engine_id: ::String
|
|
2189
|
+
SENSITIVE: []
|
|
2190
|
+
end
|
|
2191
|
+
|
|
2192
|
+
class GetPolicyGenerationSummaryResponse
|
|
2193
|
+
attr_accessor policy_engine_id: ::String
|
|
2194
|
+
attr_accessor policy_generation_id: ::String
|
|
2195
|
+
attr_accessor name: ::String
|
|
2196
|
+
attr_accessor policy_generation_arn: ::String
|
|
2197
|
+
attr_accessor resource: Types::Resource
|
|
2198
|
+
attr_accessor created_at: ::Time
|
|
2199
|
+
attr_accessor updated_at: ::Time
|
|
2200
|
+
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2166
2201
|
attr_accessor findings: ::String
|
|
2167
2202
|
SENSITIVE: []
|
|
2168
2203
|
end
|
|
@@ -2177,16 +2212,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
2177
2212
|
attr_accessor policy_id: ::String
|
|
2178
2213
|
attr_accessor name: ::String
|
|
2179
2214
|
attr_accessor policy_engine_id: ::String
|
|
2180
|
-
attr_accessor definition: Types::PolicyDefinition
|
|
2181
|
-
attr_accessor description: ::String
|
|
2182
2215
|
attr_accessor created_at: ::Time
|
|
2183
2216
|
attr_accessor updated_at: ::Time
|
|
2184
2217
|
attr_accessor policy_arn: ::String
|
|
2185
2218
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2219
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
2220
|
+
attr_accessor description: ::String
|
|
2186
2221
|
attr_accessor status_reasons: ::Array[::String]
|
|
2187
2222
|
SENSITIVE: [:description]
|
|
2188
2223
|
end
|
|
2189
2224
|
|
|
2225
|
+
class GetPolicySummaryRequest
|
|
2226
|
+
attr_accessor policy_engine_id: ::String
|
|
2227
|
+
attr_accessor policy_id: ::String
|
|
2228
|
+
SENSITIVE: []
|
|
2229
|
+
end
|
|
2230
|
+
|
|
2231
|
+
class GetPolicySummaryResponse
|
|
2232
|
+
attr_accessor policy_id: ::String
|
|
2233
|
+
attr_accessor name: ::String
|
|
2234
|
+
attr_accessor policy_engine_id: ::String
|
|
2235
|
+
attr_accessor created_at: ::Time
|
|
2236
|
+
attr_accessor updated_at: ::Time
|
|
2237
|
+
attr_accessor policy_arn: ::String
|
|
2238
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2239
|
+
SENSITIVE: []
|
|
2240
|
+
end
|
|
2241
|
+
|
|
2190
2242
|
class GetRegistryRecordRequest
|
|
2191
2243
|
attr_accessor registry_id: ::String
|
|
2192
2244
|
attr_accessor record_id: ::String
|
|
@@ -2966,6 +3018,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
2966
3018
|
SENSITIVE: []
|
|
2967
3019
|
end
|
|
2968
3020
|
|
|
3021
|
+
class ListPolicyEngineSummariesRequest
|
|
3022
|
+
attr_accessor next_token: ::String
|
|
3023
|
+
attr_accessor max_results: ::Integer
|
|
3024
|
+
SENSITIVE: []
|
|
3025
|
+
end
|
|
3026
|
+
|
|
3027
|
+
class ListPolicyEngineSummariesResponse
|
|
3028
|
+
attr_accessor policy_engines: ::Array[Types::PolicyEngineSummary]
|
|
3029
|
+
attr_accessor next_token: ::String
|
|
3030
|
+
SENSITIVE: []
|
|
3031
|
+
end
|
|
3032
|
+
|
|
2969
3033
|
class ListPolicyEnginesRequest
|
|
2970
3034
|
attr_accessor next_token: ::String
|
|
2971
3035
|
attr_accessor max_results: ::Integer
|
|
@@ -2992,6 +3056,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
2992
3056
|
SENSITIVE: []
|
|
2993
3057
|
end
|
|
2994
3058
|
|
|
3059
|
+
class ListPolicyGenerationSummariesRequest
|
|
3060
|
+
attr_accessor next_token: ::String
|
|
3061
|
+
attr_accessor max_results: ::Integer
|
|
3062
|
+
attr_accessor policy_engine_id: ::String
|
|
3063
|
+
SENSITIVE: []
|
|
3064
|
+
end
|
|
3065
|
+
|
|
3066
|
+
class ListPolicyGenerationSummariesResponse
|
|
3067
|
+
attr_accessor policy_generations: ::Array[Types::PolicyGenerationSummary]
|
|
3068
|
+
attr_accessor next_token: ::String
|
|
3069
|
+
SENSITIVE: []
|
|
3070
|
+
end
|
|
3071
|
+
|
|
2995
3072
|
class ListPolicyGenerationsRequest
|
|
2996
3073
|
attr_accessor next_token: ::String
|
|
2997
3074
|
attr_accessor max_results: ::Integer
|
|
@@ -3005,10 +3082,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
3005
3082
|
SENSITIVE: []
|
|
3006
3083
|
end
|
|
3007
3084
|
|
|
3085
|
+
class ListPolicySummariesRequest
|
|
3086
|
+
attr_accessor next_token: ::String
|
|
3087
|
+
attr_accessor max_results: ::Integer
|
|
3088
|
+
attr_accessor policy_engine_id: ::String
|
|
3089
|
+
attr_accessor target_resource_scope: ::String
|
|
3090
|
+
SENSITIVE: []
|
|
3091
|
+
end
|
|
3092
|
+
|
|
3093
|
+
class ListPolicySummariesResponse
|
|
3094
|
+
attr_accessor policies: ::Array[Types::PolicySummary]
|
|
3095
|
+
attr_accessor next_token: ::String
|
|
3096
|
+
SENSITIVE: []
|
|
3097
|
+
end
|
|
3098
|
+
|
|
3008
3099
|
class ListRegistriesRequest
|
|
3009
3100
|
attr_accessor max_results: ::Integer
|
|
3010
3101
|
attr_accessor next_token: ::String
|
|
3011
3102
|
attr_accessor status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
3103
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
|
3012
3104
|
SENSITIVE: []
|
|
3013
3105
|
end
|
|
3014
3106
|
|
|
@@ -3583,12 +3675,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3583
3675
|
attr_accessor policy_id: ::String
|
|
3584
3676
|
attr_accessor name: ::String
|
|
3585
3677
|
attr_accessor policy_engine_id: ::String
|
|
3586
|
-
attr_accessor definition: Types::PolicyDefinition
|
|
3587
|
-
attr_accessor description: ::String
|
|
3588
3678
|
attr_accessor created_at: ::Time
|
|
3589
3679
|
attr_accessor updated_at: ::Time
|
|
3590
3680
|
attr_accessor policy_arn: ::String
|
|
3591
3681
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
3682
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
3683
|
+
attr_accessor description: ::String
|
|
3592
3684
|
attr_accessor status_reasons: ::Array[::String]
|
|
3593
3685
|
SENSITIVE: [:description]
|
|
3594
3686
|
end
|
|
@@ -3610,16 +3702,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
3610
3702
|
class PolicyEngine
|
|
3611
3703
|
attr_accessor policy_engine_id: ::String
|
|
3612
3704
|
attr_accessor name: ::String
|
|
3613
|
-
attr_accessor description: ::String
|
|
3614
3705
|
attr_accessor created_at: ::Time
|
|
3615
3706
|
attr_accessor updated_at: ::Time
|
|
3616
3707
|
attr_accessor policy_engine_arn: ::String
|
|
3617
3708
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
3618
|
-
attr_accessor status_reasons: ::Array[::String]
|
|
3619
3709
|
attr_accessor encryption_key_arn: ::String
|
|
3710
|
+
attr_accessor description: ::String
|
|
3711
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
3620
3712
|
SENSITIVE: [:description]
|
|
3621
3713
|
end
|
|
3622
3714
|
|
|
3715
|
+
class PolicyEngineSummary
|
|
3716
|
+
attr_accessor policy_engine_id: ::String
|
|
3717
|
+
attr_accessor name: ::String
|
|
3718
|
+
attr_accessor created_at: ::Time
|
|
3719
|
+
attr_accessor updated_at: ::Time
|
|
3720
|
+
attr_accessor policy_engine_arn: ::String
|
|
3721
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
3722
|
+
attr_accessor encryption_key_arn: ::String
|
|
3723
|
+
SENSITIVE: []
|
|
3724
|
+
end
|
|
3725
|
+
|
|
3623
3726
|
class PolicyGeneration
|
|
3624
3727
|
attr_accessor policy_engine_id: ::String
|
|
3625
3728
|
attr_accessor policy_generation_id: ::String
|
|
@@ -3629,8 +3732,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3629
3732
|
attr_accessor created_at: ::Time
|
|
3630
3733
|
attr_accessor updated_at: ::Time
|
|
3631
3734
|
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
3632
|
-
attr_accessor status_reasons: ::Array[::String]
|
|
3633
3735
|
attr_accessor findings: ::String
|
|
3736
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
3634
3737
|
SENSITIVE: []
|
|
3635
3738
|
end
|
|
3636
3739
|
|
|
@@ -3648,6 +3751,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
3648
3751
|
SENSITIVE: []
|
|
3649
3752
|
end
|
|
3650
3753
|
|
|
3754
|
+
class PolicyGenerationSummary
|
|
3755
|
+
attr_accessor policy_engine_id: ::String
|
|
3756
|
+
attr_accessor policy_generation_id: ::String
|
|
3757
|
+
attr_accessor name: ::String
|
|
3758
|
+
attr_accessor policy_generation_arn: ::String
|
|
3759
|
+
attr_accessor resource: Types::Resource
|
|
3760
|
+
attr_accessor created_at: ::Time
|
|
3761
|
+
attr_accessor updated_at: ::Time
|
|
3762
|
+
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
3763
|
+
attr_accessor findings: ::String
|
|
3764
|
+
SENSITIVE: []
|
|
3765
|
+
end
|
|
3766
|
+
|
|
3767
|
+
class PolicySummary
|
|
3768
|
+
attr_accessor policy_id: ::String
|
|
3769
|
+
attr_accessor name: ::String
|
|
3770
|
+
attr_accessor policy_engine_id: ::String
|
|
3771
|
+
attr_accessor created_at: ::Time
|
|
3772
|
+
attr_accessor updated_at: ::Time
|
|
3773
|
+
attr_accessor policy_arn: ::String
|
|
3774
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
3775
|
+
SENSITIVE: []
|
|
3776
|
+
end
|
|
3777
|
+
|
|
3651
3778
|
class PrivateEndpoint
|
|
3652
3779
|
attr_accessor self_managed_lattice_resource: Types::SelfManagedLatticeResource
|
|
3653
3780
|
attr_accessor managed_vpc_resource: Types::ManagedVpcResource
|
|
@@ -4059,8 +4186,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4059
4186
|
attr_accessor created_at: ::Time
|
|
4060
4187
|
attr_accessor updated_at: ::Time
|
|
4061
4188
|
attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
4062
|
-
attr_accessor status_reasons: ::Array[::String]
|
|
4063
4189
|
attr_accessor findings: ::String
|
|
4190
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
4064
4191
|
SENSITIVE: []
|
|
4065
4192
|
end
|
|
4066
4193
|
|
|
@@ -4712,13 +4839,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4712
4839
|
class UpdatePolicyEngineResponse
|
|
4713
4840
|
attr_accessor policy_engine_id: ::String
|
|
4714
4841
|
attr_accessor name: ::String
|
|
4715
|
-
attr_accessor description: ::String
|
|
4716
4842
|
attr_accessor created_at: ::Time
|
|
4717
4843
|
attr_accessor updated_at: ::Time
|
|
4718
4844
|
attr_accessor policy_engine_arn: ::String
|
|
4719
4845
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4720
|
-
attr_accessor status_reasons: ::Array[::String]
|
|
4721
4846
|
attr_accessor encryption_key_arn: ::String
|
|
4847
|
+
attr_accessor description: ::String
|
|
4848
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
4722
4849
|
SENSITIVE: [:description]
|
|
4723
4850
|
end
|
|
4724
4851
|
|
|
@@ -4735,12 +4862,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4735
4862
|
attr_accessor policy_id: ::String
|
|
4736
4863
|
attr_accessor name: ::String
|
|
4737
4864
|
attr_accessor policy_engine_id: ::String
|
|
4738
|
-
attr_accessor definition: Types::PolicyDefinition
|
|
4739
|
-
attr_accessor description: ::String
|
|
4740
4865
|
attr_accessor created_at: ::Time
|
|
4741
4866
|
attr_accessor updated_at: ::Time
|
|
4742
4867
|
attr_accessor policy_arn: ::String
|
|
4743
4868
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4869
|
+
attr_accessor definition: Types::PolicyDefinition
|
|
4870
|
+
attr_accessor description: ::String
|
|
4744
4871
|
attr_accessor status_reasons: ::Array[::String]
|
|
4745
4872
|
SENSITIVE: [:description]
|
|
4746
4873
|
end
|
|
@@ -5027,6 +5154,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5027
5154
|
class VpcConfig
|
|
5028
5155
|
attr_accessor security_groups: ::Array[::String]
|
|
5029
5156
|
attr_accessor subnets: ::Array[::String]
|
|
5157
|
+
attr_accessor require_service_s3_endpoint: bool
|
|
5030
5158
|
SENSITIVE: []
|
|
5031
5159
|
end
|
|
5032
5160
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-bedrockagentcorecontrol
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.46.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|