aws-sdk-bedrockagentcorecontrol 1.3.0 → 1.5.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.
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.3.0'
58
+ GEM_VERSION = '1.5.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -98,7 +98,11 @@ module Aws
98
98
  },
99
99
  role_arn: ::String,
100
100
  network_configuration: {
101
- network_mode: ("PUBLIC")
101
+ network_mode: ("PUBLIC" | "VPC"),
102
+ network_mode_config: {
103
+ security_groups: Array[::String],
104
+ subnets: Array[::String]
105
+ }?
102
106
  },
103
107
  ?protocol_configuration: {
104
108
  server_protocol: ("MCP" | "HTTP")
@@ -111,7 +115,11 @@ module Aws
111
115
  allowed_audience: Array[::String]?,
112
116
  allowed_clients: Array[::String]?
113
117
  }?
114
- }
118
+ },
119
+ ?request_header_configuration: {
120
+ request_header_allowlist: Array[::String]?
121
+ },
122
+ ?tags: Hash[::String, ::String]
115
123
  ) -> _CreateAgentRuntimeResponseSuccess
116
124
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentRuntimeResponseSuccess
117
125
 
@@ -129,7 +137,8 @@ module Aws
129
137
  name: ::String,
130
138
  ?agent_runtime_version: ::String,
131
139
  ?description: ::String,
132
- ?client_token: ::String
140
+ ?client_token: ::String,
141
+ ?tags: Hash[::String, ::String]
133
142
  ) -> _CreateAgentRuntimeEndpointResponseSuccess
134
143
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentRuntimeEndpointResponseSuccess
135
144
 
@@ -159,7 +168,11 @@ module Aws
159
168
  ?description: ::String,
160
169
  ?execution_role_arn: ::String,
161
170
  network_configuration: {
162
- network_mode: ("PUBLIC")
171
+ network_mode: ("PUBLIC" | "VPC"),
172
+ vpc_config: {
173
+ security_groups: Array[::String],
174
+ subnets: Array[::String]
175
+ }?
163
176
  },
164
177
  ?recording: {
165
178
  enabled: bool?,
@@ -168,7 +181,8 @@ module Aws
168
181
  prefix: ::String
169
182
  }?
170
183
  },
171
- ?client_token: ::String
184
+ ?client_token: ::String,
185
+ ?tags: Hash[::String, ::String]
172
186
  ) -> _CreateBrowserResponseSuccess
173
187
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBrowserResponseSuccess
174
188
 
@@ -185,9 +199,14 @@ module Aws
185
199
  ?description: ::String,
186
200
  ?execution_role_arn: ::String,
187
201
  network_configuration: {
188
- network_mode: ("PUBLIC" | "SANDBOX")
202
+ network_mode: ("PUBLIC" | "SANDBOX" | "VPC"),
203
+ vpc_config: {
204
+ security_groups: Array[::String],
205
+ subnets: Array[::String]
206
+ }?
189
207
  },
190
- ?client_token: ::String
208
+ ?client_token: ::String,
209
+ ?tags: Hash[::String, ::String]
191
210
  ) -> _CreateCodeInterpreterResponseSuccess
192
211
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCodeInterpreterResponseSuccess
193
212
 
@@ -577,11 +596,12 @@ module Aws
577
596
  def created_at: () -> ::Time
578
597
  def last_updated_at: () -> ::Time
579
598
  def role_arn: () -> ::String
580
- def agent_runtime_artifact: () -> Types::AgentArtifact
599
+ def agent_runtime_artifact: () -> Types::AgentRuntimeArtifact
581
600
  def network_configuration: () -> Types::NetworkConfiguration
582
601
  def protocol_configuration: () -> Types::ProtocolConfiguration
583
602
  def environment_variables: () -> ::Hash[::String, ::String]
584
603
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
604
+ def request_header_configuration: () -> Types::RequestHeaderConfiguration
585
605
  def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
586
606
  end
587
607
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime-instance_method
@@ -636,6 +656,7 @@ module Aws
636
656
  def network_configuration: () -> Types::BrowserNetworkConfiguration
637
657
  def recording: () -> Types::RecordingConfig
638
658
  def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
659
+ def failure_reason: () -> ::String
639
660
  def created_at: () -> ::Time
640
661
  def last_updated_at: () -> ::Time
641
662
  end
@@ -654,6 +675,7 @@ module Aws
654
675
  def execution_role_arn: () -> ::String
655
676
  def network_configuration: () -> Types::CodeInterpreterNetworkConfiguration
656
677
  def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
678
+ def failure_reason: () -> ::String
657
679
  def created_at: () -> ::Time
658
680
  def last_updated_at: () -> ::Time
659
681
  end
@@ -763,7 +785,7 @@ module Aws
763
785
 
764
786
  interface _ListAgentRuntimeEndpointsResponseSuccess
765
787
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimeEndpointsResponse]
766
- def runtime_endpoints: () -> ::Array[Types::AgentEndpoint]
788
+ def runtime_endpoints: () -> ::Array[Types::AgentRuntimeEndpoint]
767
789
  def next_token: () -> ::String
768
790
  end
769
791
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtime_endpoints-instance_method
@@ -776,7 +798,7 @@ module Aws
776
798
 
777
799
  interface _ListAgentRuntimeVersionsResponseSuccess
778
800
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimeVersionsResponse]
779
- def agent_runtimes: () -> ::Array[Types::Agent]
801
+ def agent_runtimes: () -> ::Array[Types::AgentRuntime]
780
802
  def next_token: () -> ::String
781
803
  end
782
804
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtime_versions-instance_method
@@ -789,7 +811,7 @@ module Aws
789
811
 
790
812
  interface _ListAgentRuntimesResponseSuccess
791
813
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimesResponse]
792
- def agent_runtimes: () -> ::Array[Types::Agent]
814
+ def agent_runtimes: () -> ::Array[Types::AgentRuntime]
793
815
  def next_token: () -> ::String
794
816
  end
795
817
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtimes-instance_method
@@ -886,6 +908,16 @@ module Aws
886
908
  ) -> _ListOauth2CredentialProvidersResponseSuccess
887
909
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOauth2CredentialProvidersResponseSuccess
888
910
 
911
+ interface _ListTagsForResourceResponseSuccess
912
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
913
+ def tags: () -> ::Hash[::String, ::String]
914
+ end
915
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_tags_for_resource-instance_method
916
+ def list_tags_for_resource: (
917
+ resource_arn: ::String
918
+ ) -> _ListTagsForResourceResponseSuccess
919
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
920
+
889
921
  interface _ListWorkloadIdentitiesResponseSuccess
890
922
  include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadIdentitiesResponse]
891
923
  def workload_identities: () -> ::Array[Types::WorkloadIdentityType]
@@ -914,6 +946,26 @@ module Aws
914
946
  ) -> _SetTokenVaultCMKResponseSuccess
915
947
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTokenVaultCMKResponseSuccess
916
948
 
949
+ interface _TagResourceResponseSuccess
950
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
951
+ end
952
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#tag_resource-instance_method
953
+ def tag_resource: (
954
+ resource_arn: ::String,
955
+ tags: Hash[::String, ::String]
956
+ ) -> _TagResourceResponseSuccess
957
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
958
+
959
+ interface _UntagResourceResponseSuccess
960
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
961
+ end
962
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#untag_resource-instance_method
963
+ def untag_resource: (
964
+ resource_arn: ::String,
965
+ tag_keys: Array[::String]
966
+ ) -> _UntagResourceResponseSuccess
967
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
968
+
917
969
  interface _UpdateAgentRuntimeResponseSuccess
918
970
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAgentRuntimeResponse]
919
971
  def agent_runtime_arn: () -> ::String
@@ -935,7 +987,11 @@ module Aws
935
987
  },
936
988
  role_arn: ::String,
937
989
  network_configuration: {
938
- network_mode: ("PUBLIC")
990
+ network_mode: ("PUBLIC" | "VPC"),
991
+ network_mode_config: {
992
+ security_groups: Array[::String],
993
+ subnets: Array[::String]
994
+ }?
939
995
  },
940
996
  ?protocol_configuration: {
941
997
  server_protocol: ("MCP" | "HTTP")
@@ -948,6 +1004,9 @@ module Aws
948
1004
  allowed_audience: Array[::String]?,
949
1005
  allowed_clients: Array[::String]?
950
1006
  }?
1007
+ },
1008
+ ?request_header_configuration: {
1009
+ request_header_allowlist: Array[::String]?
951
1010
  }
952
1011
  ) -> _UpdateAgentRuntimeResponseSuccess
953
1012
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentRuntimeResponseSuccess
data/sig/types.rbs CHANGED
@@ -13,7 +13,7 @@ module Aws::BedrockAgentCoreControl
13
13
  SENSITIVE: []
14
14
  end
15
15
 
16
- class Agent
16
+ class AgentRuntime
17
17
  attr_accessor agent_runtime_arn: ::String
18
18
  attr_accessor agent_runtime_id: ::String
19
19
  attr_accessor agent_runtime_version: ::String
@@ -24,18 +24,18 @@ module Aws::BedrockAgentCoreControl
24
24
  SENSITIVE: [:description]
25
25
  end
26
26
 
27
- class AgentArtifact
27
+ class AgentRuntimeArtifact
28
28
  attr_accessor container_configuration: Types::ContainerConfiguration
29
29
  attr_accessor unknown: untyped
30
30
  SENSITIVE: []
31
31
 
32
- class ContainerConfiguration < AgentArtifact
32
+ class ContainerConfiguration < AgentRuntimeArtifact
33
33
  end
34
- class Unknown < AgentArtifact
34
+ class Unknown < AgentRuntimeArtifact
35
35
  end
36
36
  end
37
37
 
38
- class AgentEndpoint
38
+ class AgentRuntimeEndpoint
39
39
  attr_accessor name: ::String
40
40
  attr_accessor live_version: ::String
41
41
  attr_accessor target_version: ::String
@@ -91,7 +91,8 @@ module Aws::BedrockAgentCoreControl
91
91
  end
92
92
 
93
93
  class BrowserNetworkConfiguration
94
- attr_accessor network_mode: ("PUBLIC")
94
+ attr_accessor network_mode: ("PUBLIC" | "VPC")
95
+ attr_accessor vpc_config: Types::VpcConfig
95
96
  SENSITIVE: []
96
97
  end
97
98
 
@@ -107,7 +108,8 @@ module Aws::BedrockAgentCoreControl
107
108
  end
108
109
 
109
110
  class CodeInterpreterNetworkConfiguration
110
- attr_accessor network_mode: ("PUBLIC" | "SANDBOX")
111
+ attr_accessor network_mode: ("PUBLIC" | "SANDBOX" | "VPC")
112
+ attr_accessor vpc_config: Types::VpcConfig
111
113
  SENSITIVE: []
112
114
  end
113
115
 
@@ -154,6 +156,7 @@ module Aws::BedrockAgentCoreControl
154
156
  attr_accessor agent_runtime_version: ::String
155
157
  attr_accessor description: ::String
156
158
  attr_accessor client_token: ::String
159
+ attr_accessor tags: ::Hash[::String, ::String]
157
160
  SENSITIVE: [:name]
158
161
  end
159
162
 
@@ -169,13 +172,15 @@ module Aws::BedrockAgentCoreControl
169
172
  class CreateAgentRuntimeRequest
170
173
  attr_accessor agent_runtime_name: ::String
171
174
  attr_accessor description: ::String
172
- attr_accessor agent_runtime_artifact: Types::AgentArtifact
175
+ attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
173
176
  attr_accessor role_arn: ::String
174
177
  attr_accessor network_configuration: Types::NetworkConfiguration
175
178
  attr_accessor protocol_configuration: Types::ProtocolConfiguration
176
179
  attr_accessor client_token: ::String
177
180
  attr_accessor environment_variables: ::Hash[::String, ::String]
178
181
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
182
+ attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
183
+ attr_accessor tags: ::Hash[::String, ::String]
179
184
  SENSITIVE: [:description, :environment_variables]
180
185
  end
181
186
 
@@ -209,6 +214,7 @@ module Aws::BedrockAgentCoreControl
209
214
  attr_accessor network_configuration: Types::BrowserNetworkConfiguration
210
215
  attr_accessor recording: Types::RecordingConfig
211
216
  attr_accessor client_token: ::String
217
+ attr_accessor tags: ::Hash[::String, ::String]
212
218
  SENSITIVE: [:description]
213
219
  end
214
220
 
@@ -226,6 +232,7 @@ module Aws::BedrockAgentCoreControl
226
232
  attr_accessor execution_role_arn: ::String
227
233
  attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
228
234
  attr_accessor client_token: ::String
235
+ attr_accessor tags: ::Hash[::String, ::String]
229
236
  SENSITIVE: [:description]
230
237
  end
231
238
 
@@ -661,11 +668,12 @@ module Aws::BedrockAgentCoreControl
661
668
  attr_accessor created_at: ::Time
662
669
  attr_accessor last_updated_at: ::Time
663
670
  attr_accessor role_arn: ::String
664
- attr_accessor agent_runtime_artifact: Types::AgentArtifact
671
+ attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
665
672
  attr_accessor network_configuration: Types::NetworkConfiguration
666
673
  attr_accessor protocol_configuration: Types::ProtocolConfiguration
667
674
  attr_accessor environment_variables: ::Hash[::String, ::String]
668
675
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
676
+ attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
669
677
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
670
678
  SENSITIVE: [:description, :environment_variables]
671
679
  end
@@ -698,6 +706,7 @@ module Aws::BedrockAgentCoreControl
698
706
  attr_accessor network_configuration: Types::BrowserNetworkConfiguration
699
707
  attr_accessor recording: Types::RecordingConfig
700
708
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
709
+ attr_accessor failure_reason: ::String
701
710
  attr_accessor created_at: ::Time
702
711
  attr_accessor last_updated_at: ::Time
703
712
  SENSITIVE: [:description]
@@ -716,6 +725,7 @@ module Aws::BedrockAgentCoreControl
716
725
  attr_accessor execution_role_arn: ::String
717
726
  attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
718
727
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
728
+ attr_accessor failure_reason: ::String
719
729
  attr_accessor created_at: ::Time
720
730
  attr_accessor last_updated_at: ::Time
721
731
  SENSITIVE: [:description]
@@ -860,7 +870,7 @@ module Aws::BedrockAgentCoreControl
860
870
  end
861
871
 
862
872
  class ListAgentRuntimeEndpointsResponse
863
- attr_accessor runtime_endpoints: ::Array[Types::AgentEndpoint]
873
+ attr_accessor runtime_endpoints: ::Array[Types::AgentRuntimeEndpoint]
864
874
  attr_accessor next_token: ::String
865
875
  SENSITIVE: []
866
876
  end
@@ -873,7 +883,7 @@ module Aws::BedrockAgentCoreControl
873
883
  end
874
884
 
875
885
  class ListAgentRuntimeVersionsResponse
876
- attr_accessor agent_runtimes: ::Array[Types::Agent]
886
+ attr_accessor agent_runtimes: ::Array[Types::AgentRuntime]
877
887
  attr_accessor next_token: ::String
878
888
  SENSITIVE: []
879
889
  end
@@ -885,7 +895,7 @@ module Aws::BedrockAgentCoreControl
885
895
  end
886
896
 
887
897
  class ListAgentRuntimesResponse
888
- attr_accessor agent_runtimes: ::Array[Types::Agent]
898
+ attr_accessor agent_runtimes: ::Array[Types::AgentRuntime]
889
899
  attr_accessor next_token: ::String
890
900
  SENSITIVE: []
891
901
  end
@@ -977,6 +987,16 @@ module Aws::BedrockAgentCoreControl
977
987
  SENSITIVE: []
978
988
  end
979
989
 
990
+ class ListTagsForResourceRequest
991
+ attr_accessor resource_arn: ::String
992
+ SENSITIVE: []
993
+ end
994
+
995
+ class ListTagsForResourceResponse
996
+ attr_accessor tags: ::Hash[::String, ::String]
997
+ SENSITIVE: []
998
+ end
999
+
980
1000
  class ListWorkloadIdentitiesRequest
981
1001
  attr_accessor next_token: ::String
982
1002
  attr_accessor max_results: ::Integer
@@ -1132,7 +1152,8 @@ module Aws::BedrockAgentCoreControl
1132
1152
  end
1133
1153
 
1134
1154
  class NetworkConfiguration
1135
- attr_accessor network_mode: ("PUBLIC")
1155
+ attr_accessor network_mode: ("PUBLIC" | "VPC")
1156
+ attr_accessor network_mode_config: Types::VpcConfig
1136
1157
  SENSITIVE: []
1137
1158
  end
1138
1159
 
@@ -1237,6 +1258,17 @@ module Aws::BedrockAgentCoreControl
1237
1258
  SENSITIVE: []
1238
1259
  end
1239
1260
 
1261
+ class RequestHeaderConfiguration
1262
+ attr_accessor request_header_allowlist: ::Array[::String]
1263
+ attr_accessor unknown: untyped
1264
+ SENSITIVE: []
1265
+
1266
+ class RequestHeaderAllowlist < RequestHeaderConfiguration
1267
+ end
1268
+ class Unknown < RequestHeaderConfiguration
1269
+ end
1270
+ end
1271
+
1240
1272
  class ResourceLimitExceededException
1241
1273
  attr_accessor message: ::String
1242
1274
  SENSITIVE: []
@@ -1386,6 +1418,15 @@ module Aws::BedrockAgentCoreControl
1386
1418
  SENSITIVE: [:append_to_prompt]
1387
1419
  end
1388
1420
 
1421
+ class TagResourceRequest
1422
+ attr_accessor resource_arn: ::String
1423
+ attr_accessor tags: ::Hash[::String, ::String]
1424
+ SENSITIVE: []
1425
+ end
1426
+
1427
+ class TagResourceResponse < Aws::EmptyStructure
1428
+ end
1429
+
1389
1430
  class TargetConfiguration
1390
1431
  attr_accessor mcp: Types::McpTargetConfiguration
1391
1432
  attr_accessor unknown: untyped
@@ -1444,6 +1485,15 @@ module Aws::BedrockAgentCoreControl
1444
1485
  SENSITIVE: []
1445
1486
  end
1446
1487
 
1488
+ class UntagResourceRequest
1489
+ attr_accessor resource_arn: ::String
1490
+ attr_accessor tag_keys: ::Array[::String]
1491
+ SENSITIVE: []
1492
+ end
1493
+
1494
+ class UntagResourceResponse < Aws::EmptyStructure
1495
+ end
1496
+
1447
1497
  class UpdateAgentRuntimeEndpointRequest
1448
1498
  attr_accessor agent_runtime_id: ::String
1449
1499
  attr_accessor endpoint_name: ::String
@@ -1467,13 +1517,14 @@ module Aws::BedrockAgentCoreControl
1467
1517
  class UpdateAgentRuntimeRequest
1468
1518
  attr_accessor agent_runtime_id: ::String
1469
1519
  attr_accessor description: ::String
1470
- attr_accessor agent_runtime_artifact: Types::AgentArtifact
1520
+ attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
1471
1521
  attr_accessor role_arn: ::String
1472
1522
  attr_accessor network_configuration: Types::NetworkConfiguration
1473
1523
  attr_accessor protocol_configuration: Types::ProtocolConfiguration
1474
1524
  attr_accessor client_token: ::String
1475
1525
  attr_accessor environment_variables: ::Hash[::String, ::String]
1476
1526
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
1527
+ attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
1477
1528
  SENSITIVE: [:description, :environment_variables]
1478
1529
  end
1479
1530
 
@@ -1660,6 +1711,12 @@ module Aws::BedrockAgentCoreControl
1660
1711
  SENSITIVE: []
1661
1712
  end
1662
1713
 
1714
+ class VpcConfig
1715
+ attr_accessor security_groups: ::Array[::String]
1716
+ attr_accessor subnets: ::Array[::String]
1717
+ SENSITIVE: []
1718
+ end
1719
+
1663
1720
  class WorkloadIdentityDetails
1664
1721
  attr_accessor workload_identity_arn: ::String
1665
1722
  SENSITIVE: []
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.3.0
4
+ version: 1.5.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.228.0
21
+ version: 3.231.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.228.0
31
+ version: 3.231.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement