aws-sdk-bedrockagentcorecontrol 1.4.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +328 -121
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +162 -51
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +479 -249
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +73 -13
- data/sig/types.rbs +72 -14
- metadata +1 -1
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
|
|
@@ -234,7 +253,8 @@ module Aws
|
|
234
253
|
}?
|
235
254
|
},
|
236
255
|
?kms_key_arn: ::String,
|
237
|
-
?exception_level: ("DEBUG")
|
256
|
+
?exception_level: ("DEBUG"),
|
257
|
+
?tags: Hash[::String, ::String]
|
238
258
|
) -> _CreateGatewayResponseSuccess
|
239
259
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
|
240
260
|
|
@@ -577,11 +597,12 @@ module Aws
|
|
577
597
|
def created_at: () -> ::Time
|
578
598
|
def last_updated_at: () -> ::Time
|
579
599
|
def role_arn: () -> ::String
|
580
|
-
def agent_runtime_artifact: () -> Types::
|
600
|
+
def agent_runtime_artifact: () -> Types::AgentRuntimeArtifact
|
581
601
|
def network_configuration: () -> Types::NetworkConfiguration
|
582
602
|
def protocol_configuration: () -> Types::ProtocolConfiguration
|
583
603
|
def environment_variables: () -> ::Hash[::String, ::String]
|
584
604
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
605
|
+
def request_header_configuration: () -> Types::RequestHeaderConfiguration
|
585
606
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
586
607
|
end
|
587
608
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime-instance_method
|
@@ -636,6 +657,7 @@ module Aws
|
|
636
657
|
def network_configuration: () -> Types::BrowserNetworkConfiguration
|
637
658
|
def recording: () -> Types::RecordingConfig
|
638
659
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
660
|
+
def failure_reason: () -> ::String
|
639
661
|
def created_at: () -> ::Time
|
640
662
|
def last_updated_at: () -> ::Time
|
641
663
|
end
|
@@ -654,6 +676,7 @@ module Aws
|
|
654
676
|
def execution_role_arn: () -> ::String
|
655
677
|
def network_configuration: () -> Types::CodeInterpreterNetworkConfiguration
|
656
678
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
679
|
+
def failure_reason: () -> ::String
|
657
680
|
def created_at: () -> ::Time
|
658
681
|
def last_updated_at: () -> ::Time
|
659
682
|
end
|
@@ -763,7 +786,7 @@ module Aws
|
|
763
786
|
|
764
787
|
interface _ListAgentRuntimeEndpointsResponseSuccess
|
765
788
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimeEndpointsResponse]
|
766
|
-
def runtime_endpoints: () -> ::Array[Types::
|
789
|
+
def runtime_endpoints: () -> ::Array[Types::AgentRuntimeEndpoint]
|
767
790
|
def next_token: () -> ::String
|
768
791
|
end
|
769
792
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtime_endpoints-instance_method
|
@@ -776,7 +799,7 @@ module Aws
|
|
776
799
|
|
777
800
|
interface _ListAgentRuntimeVersionsResponseSuccess
|
778
801
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimeVersionsResponse]
|
779
|
-
def agent_runtimes: () -> ::Array[Types::
|
802
|
+
def agent_runtimes: () -> ::Array[Types::AgentRuntime]
|
780
803
|
def next_token: () -> ::String
|
781
804
|
end
|
782
805
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtime_versions-instance_method
|
@@ -789,7 +812,7 @@ module Aws
|
|
789
812
|
|
790
813
|
interface _ListAgentRuntimesResponseSuccess
|
791
814
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimesResponse]
|
792
|
-
def agent_runtimes: () -> ::Array[Types::
|
815
|
+
def agent_runtimes: () -> ::Array[Types::AgentRuntime]
|
793
816
|
def next_token: () -> ::String
|
794
817
|
end
|
795
818
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtimes-instance_method
|
@@ -886,6 +909,16 @@ module Aws
|
|
886
909
|
) -> _ListOauth2CredentialProvidersResponseSuccess
|
887
910
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOauth2CredentialProvidersResponseSuccess
|
888
911
|
|
912
|
+
interface _ListTagsForResourceResponseSuccess
|
913
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
914
|
+
def tags: () -> ::Hash[::String, ::String]
|
915
|
+
end
|
916
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_tags_for_resource-instance_method
|
917
|
+
def list_tags_for_resource: (
|
918
|
+
resource_arn: ::String
|
919
|
+
) -> _ListTagsForResourceResponseSuccess
|
920
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
921
|
+
|
889
922
|
interface _ListWorkloadIdentitiesResponseSuccess
|
890
923
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadIdentitiesResponse]
|
891
924
|
def workload_identities: () -> ::Array[Types::WorkloadIdentityType]
|
@@ -914,6 +947,26 @@ module Aws
|
|
914
947
|
) -> _SetTokenVaultCMKResponseSuccess
|
915
948
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTokenVaultCMKResponseSuccess
|
916
949
|
|
950
|
+
interface _TagResourceResponseSuccess
|
951
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
952
|
+
end
|
953
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#tag_resource-instance_method
|
954
|
+
def tag_resource: (
|
955
|
+
resource_arn: ::String,
|
956
|
+
tags: Hash[::String, ::String]
|
957
|
+
) -> _TagResourceResponseSuccess
|
958
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
959
|
+
|
960
|
+
interface _UntagResourceResponseSuccess
|
961
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
962
|
+
end
|
963
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#untag_resource-instance_method
|
964
|
+
def untag_resource: (
|
965
|
+
resource_arn: ::String,
|
966
|
+
tag_keys: Array[::String]
|
967
|
+
) -> _UntagResourceResponseSuccess
|
968
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
969
|
+
|
917
970
|
interface _UpdateAgentRuntimeResponseSuccess
|
918
971
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAgentRuntimeResponse]
|
919
972
|
def agent_runtime_arn: () -> ::String
|
@@ -935,7 +988,11 @@ module Aws
|
|
935
988
|
},
|
936
989
|
role_arn: ::String,
|
937
990
|
network_configuration: {
|
938
|
-
network_mode: ("PUBLIC")
|
991
|
+
network_mode: ("PUBLIC" | "VPC"),
|
992
|
+
network_mode_config: {
|
993
|
+
security_groups: Array[::String],
|
994
|
+
subnets: Array[::String]
|
995
|
+
}?
|
939
996
|
},
|
940
997
|
?protocol_configuration: {
|
941
998
|
server_protocol: ("MCP" | "HTTP")
|
@@ -948,6 +1005,9 @@ module Aws
|
|
948
1005
|
allowed_audience: Array[::String]?,
|
949
1006
|
allowed_clients: Array[::String]?
|
950
1007
|
}?
|
1008
|
+
},
|
1009
|
+
?request_header_configuration: {
|
1010
|
+
request_header_allowlist: Array[::String]?
|
951
1011
|
}
|
952
1012
|
) -> _UpdateAgentRuntimeResponseSuccess
|
953
1013
|
| (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
|
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
|
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 <
|
32
|
+
class ContainerConfiguration < AgentRuntimeArtifact
|
33
33
|
end
|
34
|
-
class Unknown <
|
34
|
+
class Unknown < AgentRuntimeArtifact
|
35
35
|
end
|
36
36
|
end
|
37
37
|
|
38
|
-
class
|
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::
|
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
|
|
@@ -248,6 +255,7 @@ module Aws::BedrockAgentCoreControl
|
|
248
255
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
249
256
|
attr_accessor kms_key_arn: ::String
|
250
257
|
attr_accessor exception_level: ("DEBUG")
|
258
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
251
259
|
SENSITIVE: [:name, :description]
|
252
260
|
end
|
253
261
|
|
@@ -661,11 +669,12 @@ module Aws::BedrockAgentCoreControl
|
|
661
669
|
attr_accessor created_at: ::Time
|
662
670
|
attr_accessor last_updated_at: ::Time
|
663
671
|
attr_accessor role_arn: ::String
|
664
|
-
attr_accessor agent_runtime_artifact: Types::
|
672
|
+
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
665
673
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
666
674
|
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
667
675
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
668
676
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
677
|
+
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
669
678
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
670
679
|
SENSITIVE: [:description, :environment_variables]
|
671
680
|
end
|
@@ -698,6 +707,7 @@ module Aws::BedrockAgentCoreControl
|
|
698
707
|
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
699
708
|
attr_accessor recording: Types::RecordingConfig
|
700
709
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
710
|
+
attr_accessor failure_reason: ::String
|
701
711
|
attr_accessor created_at: ::Time
|
702
712
|
attr_accessor last_updated_at: ::Time
|
703
713
|
SENSITIVE: [:description]
|
@@ -716,6 +726,7 @@ module Aws::BedrockAgentCoreControl
|
|
716
726
|
attr_accessor execution_role_arn: ::String
|
717
727
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
718
728
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
729
|
+
attr_accessor failure_reason: ::String
|
719
730
|
attr_accessor created_at: ::Time
|
720
731
|
attr_accessor last_updated_at: ::Time
|
721
732
|
SENSITIVE: [:description]
|
@@ -860,7 +871,7 @@ module Aws::BedrockAgentCoreControl
|
|
860
871
|
end
|
861
872
|
|
862
873
|
class ListAgentRuntimeEndpointsResponse
|
863
|
-
attr_accessor runtime_endpoints: ::Array[Types::
|
874
|
+
attr_accessor runtime_endpoints: ::Array[Types::AgentRuntimeEndpoint]
|
864
875
|
attr_accessor next_token: ::String
|
865
876
|
SENSITIVE: []
|
866
877
|
end
|
@@ -873,7 +884,7 @@ module Aws::BedrockAgentCoreControl
|
|
873
884
|
end
|
874
885
|
|
875
886
|
class ListAgentRuntimeVersionsResponse
|
876
|
-
attr_accessor agent_runtimes: ::Array[Types::
|
887
|
+
attr_accessor agent_runtimes: ::Array[Types::AgentRuntime]
|
877
888
|
attr_accessor next_token: ::String
|
878
889
|
SENSITIVE: []
|
879
890
|
end
|
@@ -885,7 +896,7 @@ module Aws::BedrockAgentCoreControl
|
|
885
896
|
end
|
886
897
|
|
887
898
|
class ListAgentRuntimesResponse
|
888
|
-
attr_accessor agent_runtimes: ::Array[Types::
|
899
|
+
attr_accessor agent_runtimes: ::Array[Types::AgentRuntime]
|
889
900
|
attr_accessor next_token: ::String
|
890
901
|
SENSITIVE: []
|
891
902
|
end
|
@@ -977,6 +988,16 @@ module Aws::BedrockAgentCoreControl
|
|
977
988
|
SENSITIVE: []
|
978
989
|
end
|
979
990
|
|
991
|
+
class ListTagsForResourceRequest
|
992
|
+
attr_accessor resource_arn: ::String
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class ListTagsForResourceResponse
|
997
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
998
|
+
SENSITIVE: []
|
999
|
+
end
|
1000
|
+
|
980
1001
|
class ListWorkloadIdentitiesRequest
|
981
1002
|
attr_accessor next_token: ::String
|
982
1003
|
attr_accessor max_results: ::Integer
|
@@ -1132,7 +1153,8 @@ module Aws::BedrockAgentCoreControl
|
|
1132
1153
|
end
|
1133
1154
|
|
1134
1155
|
class NetworkConfiguration
|
1135
|
-
attr_accessor network_mode: ("PUBLIC")
|
1156
|
+
attr_accessor network_mode: ("PUBLIC" | "VPC")
|
1157
|
+
attr_accessor network_mode_config: Types::VpcConfig
|
1136
1158
|
SENSITIVE: []
|
1137
1159
|
end
|
1138
1160
|
|
@@ -1237,6 +1259,17 @@ module Aws::BedrockAgentCoreControl
|
|
1237
1259
|
SENSITIVE: []
|
1238
1260
|
end
|
1239
1261
|
|
1262
|
+
class RequestHeaderConfiguration
|
1263
|
+
attr_accessor request_header_allowlist: ::Array[::String]
|
1264
|
+
attr_accessor unknown: untyped
|
1265
|
+
SENSITIVE: []
|
1266
|
+
|
1267
|
+
class RequestHeaderAllowlist < RequestHeaderConfiguration
|
1268
|
+
end
|
1269
|
+
class Unknown < RequestHeaderConfiguration
|
1270
|
+
end
|
1271
|
+
end
|
1272
|
+
|
1240
1273
|
class ResourceLimitExceededException
|
1241
1274
|
attr_accessor message: ::String
|
1242
1275
|
SENSITIVE: []
|
@@ -1386,6 +1419,15 @@ module Aws::BedrockAgentCoreControl
|
|
1386
1419
|
SENSITIVE: [:append_to_prompt]
|
1387
1420
|
end
|
1388
1421
|
|
1422
|
+
class TagResourceRequest
|
1423
|
+
attr_accessor resource_arn: ::String
|
1424
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1425
|
+
SENSITIVE: []
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1429
|
+
end
|
1430
|
+
|
1389
1431
|
class TargetConfiguration
|
1390
1432
|
attr_accessor mcp: Types::McpTargetConfiguration
|
1391
1433
|
attr_accessor unknown: untyped
|
@@ -1444,6 +1486,15 @@ module Aws::BedrockAgentCoreControl
|
|
1444
1486
|
SENSITIVE: []
|
1445
1487
|
end
|
1446
1488
|
|
1489
|
+
class UntagResourceRequest
|
1490
|
+
attr_accessor resource_arn: ::String
|
1491
|
+
attr_accessor tag_keys: ::Array[::String]
|
1492
|
+
SENSITIVE: []
|
1493
|
+
end
|
1494
|
+
|
1495
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1496
|
+
end
|
1497
|
+
|
1447
1498
|
class UpdateAgentRuntimeEndpointRequest
|
1448
1499
|
attr_accessor agent_runtime_id: ::String
|
1449
1500
|
attr_accessor endpoint_name: ::String
|
@@ -1467,13 +1518,14 @@ module Aws::BedrockAgentCoreControl
|
|
1467
1518
|
class UpdateAgentRuntimeRequest
|
1468
1519
|
attr_accessor agent_runtime_id: ::String
|
1469
1520
|
attr_accessor description: ::String
|
1470
|
-
attr_accessor agent_runtime_artifact: Types::
|
1521
|
+
attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
|
1471
1522
|
attr_accessor role_arn: ::String
|
1472
1523
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
1473
1524
|
attr_accessor protocol_configuration: Types::ProtocolConfiguration
|
1474
1525
|
attr_accessor client_token: ::String
|
1475
1526
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
1476
1527
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1528
|
+
attr_accessor request_header_configuration: Types::RequestHeaderConfiguration
|
1477
1529
|
SENSITIVE: [:description, :environment_variables]
|
1478
1530
|
end
|
1479
1531
|
|
@@ -1660,6 +1712,12 @@ module Aws::BedrockAgentCoreControl
|
|
1660
1712
|
SENSITIVE: []
|
1661
1713
|
end
|
1662
1714
|
|
1715
|
+
class VpcConfig
|
1716
|
+
attr_accessor security_groups: ::Array[::String]
|
1717
|
+
attr_accessor subnets: ::Array[::String]
|
1718
|
+
SENSITIVE: []
|
1719
|
+
end
|
1720
|
+
|
1663
1721
|
class WorkloadIdentityDetails
|
1664
1722
|
attr_accessor workload_identity_arn: ::String
|
1665
1723
|
SENSITIVE: []
|