aws-sdk-bedrockagentcore 1.16.0 → 1.17.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-bedrockagentcore/client.rb +20 -1
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +60 -30
- data/lib/aws-sdk-bedrockagentcore/errors.rb +20 -0
- data/lib/aws-sdk-bedrockagentcore/types.rb +92 -0
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +12 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +30 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6c25c3ec02c27dd990fa1839479a5a3c948e56be51d0355a2fd720c3c1cb79c
|
|
4
|
+
data.tar.gz: 8ea8733bebc6f69b933e720158c98a95fc5b98ed7fb9a229d373b798b122701b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a068332ce6bf5a465d1aba7a9b914ab5954e9778cb9a00ab0e2af434e0a49af600f31a739a3a6751d2438429896e4294a7d8e6afbad2dcd03ba6fd64587d6f80
|
|
7
|
+
data.tar.gz: e327079e9446b90456bf73186c2b38ada2abd530611388904466db55347d97e34a80349cc44f4e72d566632ac3acd9f525c55f176b902e4a2a5174a18d2e4073
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.17.0 (2026-01-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Supports custom browser extensions for AgentCore Browser and increased message payloads up to 100KB per message in an Event for AgentCore Memory
|
|
8
|
+
|
|
4
9
|
1.16.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.17.0
|
|
@@ -1028,6 +1028,7 @@ module Aws::BedrockAgentCore
|
|
|
1028
1028
|
# * {Types::GetBrowserSessionResponse#name #name} => String
|
|
1029
1029
|
# * {Types::GetBrowserSessionResponse#created_at #created_at} => Time
|
|
1030
1030
|
# * {Types::GetBrowserSessionResponse#view_port #view_port} => Types::ViewPort
|
|
1031
|
+
# * {Types::GetBrowserSessionResponse#extensions #extensions} => Array<Types::BrowserExtension>
|
|
1031
1032
|
# * {Types::GetBrowserSessionResponse#session_timeout_seconds #session_timeout_seconds} => Integer
|
|
1032
1033
|
# * {Types::GetBrowserSessionResponse#status #status} => String
|
|
1033
1034
|
# * {Types::GetBrowserSessionResponse#streams #streams} => Types::BrowserSessionStream
|
|
@@ -1049,6 +1050,10 @@ module Aws::BedrockAgentCore
|
|
|
1049
1050
|
# resp.created_at #=> Time
|
|
1050
1051
|
# resp.view_port.width #=> Integer
|
|
1051
1052
|
# resp.view_port.height #=> Integer
|
|
1053
|
+
# resp.extensions #=> Array
|
|
1054
|
+
# resp.extensions[0].location.s3.bucket #=> String
|
|
1055
|
+
# resp.extensions[0].location.s3.prefix #=> String
|
|
1056
|
+
# resp.extensions[0].location.s3.version_id #=> String
|
|
1052
1057
|
# resp.session_timeout_seconds #=> Integer
|
|
1053
1058
|
# resp.status #=> String, one of "READY", "TERMINATED"
|
|
1054
1059
|
# resp.streams.automation_stream.stream_endpoint #=> String
|
|
@@ -2525,6 +2530,9 @@ module Aws::BedrockAgentCore
|
|
|
2525
2530
|
# pages are rendered. If not specified, Amazon Bedrock uses a default
|
|
2526
2531
|
# viewport size.
|
|
2527
2532
|
#
|
|
2533
|
+
# @option params [Array<Types::BrowserExtension>] :extensions
|
|
2534
|
+
# A list of browser extensions to load into the browser session.
|
|
2535
|
+
#
|
|
2528
2536
|
# @option params [String] :client_token
|
|
2529
2537
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
2530
2538
|
# completes no more than one time. If this token matches a previous
|
|
@@ -2554,6 +2562,17 @@ module Aws::BedrockAgentCore
|
|
|
2554
2562
|
# width: 1, # required
|
|
2555
2563
|
# height: 1, # required
|
|
2556
2564
|
# },
|
|
2565
|
+
# extensions: [
|
|
2566
|
+
# {
|
|
2567
|
+
# location: { # required
|
|
2568
|
+
# s3: {
|
|
2569
|
+
# bucket: "S3LocationBucketString", # required
|
|
2570
|
+
# prefix: "S3LocationPrefixString", # required
|
|
2571
|
+
# version_id: "S3LocationVersionIdString",
|
|
2572
|
+
# },
|
|
2573
|
+
# },
|
|
2574
|
+
# },
|
|
2575
|
+
# ],
|
|
2557
2576
|
# client_token: "ClientToken",
|
|
2558
2577
|
# })
|
|
2559
2578
|
#
|
|
@@ -2980,7 +2999,7 @@ module Aws::BedrockAgentCore
|
|
|
2980
2999
|
tracer: tracer
|
|
2981
3000
|
)
|
|
2982
3001
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
2983
|
-
context[:gem_version] = '1.
|
|
3002
|
+
context[:gem_version] = '1.17.0'
|
|
2984
3003
|
Seahorse::Client::Request.new(handlers, context)
|
|
2985
3004
|
end
|
|
2986
3005
|
|
|
@@ -37,6 +37,8 @@ module Aws::BedrockAgentCore
|
|
|
37
37
|
Branch = Shapes::StructureShape.new(name: 'Branch')
|
|
38
38
|
BranchFilter = Shapes::StructureShape.new(name: 'BranchFilter')
|
|
39
39
|
BranchName = Shapes::StringShape.new(name: 'BranchName')
|
|
40
|
+
BrowserExtension = Shapes::StructureShape.new(name: 'BrowserExtension')
|
|
41
|
+
BrowserExtensions = Shapes::ListShape.new(name: 'BrowserExtensions')
|
|
40
42
|
BrowserSessionId = Shapes::StringShape.new(name: 'BrowserSessionId')
|
|
41
43
|
BrowserSessionStatus = Shapes::StringShape.new(name: 'BrowserSessionStatus')
|
|
42
44
|
BrowserSessionStream = Shapes::StructureShape.new(name: 'BrowserSessionStream')
|
|
@@ -198,14 +200,20 @@ module Aws::BedrockAgentCore
|
|
|
198
200
|
RequestUri = Shapes::StringShape.new(name: 'RequestUri')
|
|
199
201
|
ResourceContent = Shapes::StructureShape.new(name: 'ResourceContent')
|
|
200
202
|
ResourceContentType = Shapes::StringShape.new(name: 'ResourceContentType')
|
|
203
|
+
ResourceLocation = Shapes::UnionShape.new(name: 'ResourceLocation')
|
|
201
204
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
202
205
|
ResourceOauth2ReturnUrlType = Shapes::StringShape.new(name: 'ResourceOauth2ReturnUrlType')
|
|
203
206
|
ResponseStream = Shapes::BlobShape.new(name: 'ResponseStream', streaming: true)
|
|
204
207
|
RetrieveMemoryRecordsInput = Shapes::StructureShape.new(name: 'RetrieveMemoryRecordsInput')
|
|
205
208
|
RetrieveMemoryRecordsOutput = Shapes::StructureShape.new(name: 'RetrieveMemoryRecordsOutput')
|
|
209
|
+
RetryableConflictException = Shapes::StructureShape.new(name: 'RetryableConflictException')
|
|
206
210
|
RightExpression = Shapes::UnionShape.new(name: 'RightExpression')
|
|
207
211
|
Role = Shapes::StringShape.new(name: 'Role')
|
|
208
212
|
RuntimeClientError = Shapes::StructureShape.new(name: 'RuntimeClientError')
|
|
213
|
+
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
214
|
+
S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
|
|
215
|
+
S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
|
|
216
|
+
S3LocationVersionIdString = Shapes::StringShape.new(name: 'S3LocationVersionIdString')
|
|
209
217
|
ScopeType = Shapes::StringShape.new(name: 'ScopeType')
|
|
210
218
|
ScopesListType = Shapes::ListShape.new(name: 'ScopesListType')
|
|
211
219
|
SearchCriteria = Shapes::StructureShape.new(name: 'SearchCriteria')
|
|
@@ -322,6 +330,11 @@ module Aws::BedrockAgentCore
|
|
|
322
330
|
BranchFilter.add_member(:include_parent_branches, Shapes::ShapeRef.new(shape: Boolean, location_name: "includeParentBranches"))
|
|
323
331
|
BranchFilter.struct_class = Types::BranchFilter
|
|
324
332
|
|
|
333
|
+
BrowserExtension.add_member(:location, Shapes::ShapeRef.new(shape: ResourceLocation, required: true, location_name: "location"))
|
|
334
|
+
BrowserExtension.struct_class = Types::BrowserExtension
|
|
335
|
+
|
|
336
|
+
BrowserExtensions.member = Shapes::ShapeRef.new(shape: BrowserExtension)
|
|
337
|
+
|
|
325
338
|
BrowserSessionStream.add_member(:automation_stream, Shapes::ShapeRef.new(shape: AutomationStream, required: true, location_name: "automationStream"))
|
|
326
339
|
BrowserSessionStream.add_member(:live_view_stream, Shapes::ShapeRef.new(shape: LiveViewStream, location_name: "liveViewStream"))
|
|
327
340
|
BrowserSessionStream.struct_class = Types::BrowserSessionStream
|
|
@@ -540,6 +553,7 @@ module Aws::BedrockAgentCore
|
|
|
540
553
|
GetBrowserSessionResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
|
541
554
|
GetBrowserSessionResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
542
555
|
GetBrowserSessionResponse.add_member(:view_port, Shapes::ShapeRef.new(shape: ViewPort, location_name: "viewPort"))
|
|
556
|
+
GetBrowserSessionResponse.add_member(:extensions, Shapes::ShapeRef.new(shape: BrowserExtensions, location_name: "extensions"))
|
|
543
557
|
GetBrowserSessionResponse.add_member(:session_timeout_seconds, Shapes::ShapeRef.new(shape: BrowserSessionTimeout, location_name: "sessionTimeoutSeconds"))
|
|
544
558
|
GetBrowserSessionResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserSessionStatus, location_name: "status"))
|
|
545
559
|
GetBrowserSessionResponse.add_member(:streams, Shapes::ShapeRef.new(shape: BrowserSessionStream, location_name: "streams"))
|
|
@@ -858,6 +872,12 @@ module Aws::BedrockAgentCore
|
|
|
858
872
|
ResourceContent.add_member(:blob, Shapes::ShapeRef.new(shape: Blob, location_name: "blob"))
|
|
859
873
|
ResourceContent.struct_class = Types::ResourceContent
|
|
860
874
|
|
|
875
|
+
ResourceLocation.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3"))
|
|
876
|
+
ResourceLocation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
877
|
+
ResourceLocation.add_member_subclass(:s3, Types::ResourceLocation::S3)
|
|
878
|
+
ResourceLocation.add_member_subclass(:unknown, Types::ResourceLocation::Unknown)
|
|
879
|
+
ResourceLocation.struct_class = Types::ResourceLocation
|
|
880
|
+
|
|
861
881
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
862
882
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
863
883
|
|
|
@@ -872,6 +892,9 @@ module Aws::BedrockAgentCore
|
|
|
872
892
|
RetrieveMemoryRecordsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
|
873
893
|
RetrieveMemoryRecordsOutput.struct_class = Types::RetrieveMemoryRecordsOutput
|
|
874
894
|
|
|
895
|
+
RetryableConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
896
|
+
RetryableConflictException.struct_class = Types::RetryableConflictException
|
|
897
|
+
|
|
875
898
|
RightExpression.add_member(:metadata_value, Shapes::ShapeRef.new(shape: MetadataValue, location_name: "metadataValue"))
|
|
876
899
|
RightExpression.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
877
900
|
RightExpression.add_member_subclass(:metadata_value, Types::RightExpression::MetadataValue)
|
|
@@ -881,6 +904,11 @@ module Aws::BedrockAgentCore
|
|
|
881
904
|
RuntimeClientError.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
882
905
|
RuntimeClientError.struct_class = Types::RuntimeClientError
|
|
883
906
|
|
|
907
|
+
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
|
|
908
|
+
S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
|
|
909
|
+
S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
|
|
910
|
+
S3Location.struct_class = Types::S3Location
|
|
911
|
+
|
|
884
912
|
ScopesListType.member = Shapes::ShapeRef.new(shape: ScopeType)
|
|
885
913
|
|
|
886
914
|
SearchCriteria.add_member(:search_query, Shapes::ShapeRef.new(shape: SearchCriteriaSearchQueryString, required: true, location_name: "searchQuery"))
|
|
@@ -917,6 +945,7 @@ module Aws::BedrockAgentCore
|
|
|
917
945
|
StartBrowserSessionRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
|
918
946
|
StartBrowserSessionRequest.add_member(:session_timeout_seconds, Shapes::ShapeRef.new(shape: BrowserSessionTimeout, location_name: "sessionTimeoutSeconds"))
|
|
919
947
|
StartBrowserSessionRequest.add_member(:view_port, Shapes::ShapeRef.new(shape: ViewPort, location_name: "viewPort"))
|
|
948
|
+
StartBrowserSessionRequest.add_member(:extensions, Shapes::ShapeRef.new(shape: BrowserExtensions, location_name: "extensions"))
|
|
920
949
|
StartBrowserSessionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
921
950
|
StartBrowserSessionRequest.struct_class = Types::StartBrowserSessionRequest
|
|
922
951
|
|
|
@@ -1085,11 +1114,11 @@ module Aws::BedrockAgentCore
|
|
|
1085
1114
|
o.input = Shapes::ShapeRef.new(shape: BatchCreateMemoryRecordsInput)
|
|
1086
1115
|
o.output = Shapes::ShapeRef.new(shape: BatchCreateMemoryRecordsOutput)
|
|
1087
1116
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1117
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1118
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1088
1119
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1089
1120
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1090
1121
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1091
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1092
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1093
1122
|
end)
|
|
1094
1123
|
|
|
1095
1124
|
api.add_operation(:batch_delete_memory_records, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1099,11 +1128,11 @@ module Aws::BedrockAgentCore
|
|
|
1099
1128
|
o.input = Shapes::ShapeRef.new(shape: BatchDeleteMemoryRecordsInput)
|
|
1100
1129
|
o.output = Shapes::ShapeRef.new(shape: BatchDeleteMemoryRecordsOutput)
|
|
1101
1130
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1131
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1132
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1102
1133
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1103
1134
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1104
1135
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1105
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1106
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1107
1136
|
end)
|
|
1108
1137
|
|
|
1109
1138
|
api.add_operation(:batch_update_memory_records, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1113,11 +1142,11 @@ module Aws::BedrockAgentCore
|
|
|
1113
1142
|
o.input = Shapes::ShapeRef.new(shape: BatchUpdateMemoryRecordsInput)
|
|
1114
1143
|
o.output = Shapes::ShapeRef.new(shape: BatchUpdateMemoryRecordsOutput)
|
|
1115
1144
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1145
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1146
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1116
1147
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1117
1148
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1118
1149
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1119
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1120
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1121
1150
|
end)
|
|
1122
1151
|
|
|
1123
1152
|
api.add_operation(:complete_resource_token_auth, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1141,12 +1170,13 @@ module Aws::BedrockAgentCore
|
|
|
1141
1170
|
o.input = Shapes::ShapeRef.new(shape: CreateEventInput)
|
|
1142
1171
|
o.output = Shapes::ShapeRef.new(shape: CreateEventOutput)
|
|
1143
1172
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1173
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1174
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1175
|
+
o.errors << Shapes::ShapeRef.new(shape: RetryableConflictException)
|
|
1144
1176
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1145
1177
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1146
1178
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1147
1179
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1148
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1149
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1150
1180
|
end)
|
|
1151
1181
|
|
|
1152
1182
|
api.add_operation(:delete_event, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1156,12 +1186,12 @@ module Aws::BedrockAgentCore
|
|
|
1156
1186
|
o.input = Shapes::ShapeRef.new(shape: DeleteEventInput)
|
|
1157
1187
|
o.output = Shapes::ShapeRef.new(shape: DeleteEventOutput)
|
|
1158
1188
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1189
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1190
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1159
1191
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1160
1192
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1161
1193
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1162
1194
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1163
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1164
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1165
1195
|
end)
|
|
1166
1196
|
|
|
1167
1197
|
api.add_operation(:delete_memory_record, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1171,12 +1201,12 @@ module Aws::BedrockAgentCore
|
|
|
1171
1201
|
o.input = Shapes::ShapeRef.new(shape: DeleteMemoryRecordInput)
|
|
1172
1202
|
o.output = Shapes::ShapeRef.new(shape: DeleteMemoryRecordOutput)
|
|
1173
1203
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1204
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1205
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1174
1206
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1175
1207
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1176
1208
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1177
1209
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1178
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1179
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1180
1210
|
end)
|
|
1181
1211
|
|
|
1182
1212
|
api.add_operation(:evaluate, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1244,12 +1274,12 @@ module Aws::BedrockAgentCore
|
|
|
1244
1274
|
o.input = Shapes::ShapeRef.new(shape: GetEventInput)
|
|
1245
1275
|
o.output = Shapes::ShapeRef.new(shape: GetEventOutput)
|
|
1246
1276
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1277
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1278
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1247
1279
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1248
1280
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1249
1281
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1250
1282
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1251
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1252
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1253
1283
|
end)
|
|
1254
1284
|
|
|
1255
1285
|
api.add_operation(:get_memory_record, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1259,12 +1289,12 @@ module Aws::BedrockAgentCore
|
|
|
1259
1289
|
o.input = Shapes::ShapeRef.new(shape: GetMemoryRecordInput)
|
|
1260
1290
|
o.output = Shapes::ShapeRef.new(shape: GetMemoryRecordOutput)
|
|
1261
1291
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1292
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1293
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1262
1294
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1263
1295
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1264
1296
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1265
1297
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1266
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1267
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1268
1298
|
end)
|
|
1269
1299
|
|
|
1270
1300
|
api.add_operation(:get_resource_api_key, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1374,12 +1404,12 @@ module Aws::BedrockAgentCore
|
|
|
1374
1404
|
o.input = Shapes::ShapeRef.new(shape: ListActorsInput)
|
|
1375
1405
|
o.output = Shapes::ShapeRef.new(shape: ListActorsOutput)
|
|
1376
1406
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1407
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1408
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1377
1409
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1378
1410
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1379
1411
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1380
1412
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1381
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1382
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1383
1413
|
o[:pager] = Aws::Pager.new(
|
|
1384
1414
|
limit_key: "max_results",
|
|
1385
1415
|
tokens: {
|
|
@@ -1421,12 +1451,12 @@ module Aws::BedrockAgentCore
|
|
|
1421
1451
|
o.input = Shapes::ShapeRef.new(shape: ListEventsInput)
|
|
1422
1452
|
o.output = Shapes::ShapeRef.new(shape: ListEventsOutput)
|
|
1423
1453
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1454
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1455
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1424
1456
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1425
1457
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1426
1458
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1427
1459
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1428
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1429
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1430
1460
|
o[:pager] = Aws::Pager.new(
|
|
1431
1461
|
limit_key: "max_results",
|
|
1432
1462
|
tokens: {
|
|
@@ -1442,11 +1472,11 @@ module Aws::BedrockAgentCore
|
|
|
1442
1472
|
o.input = Shapes::ShapeRef.new(shape: ListMemoryExtractionJobsInput)
|
|
1443
1473
|
o.output = Shapes::ShapeRef.new(shape: ListMemoryExtractionJobsOutput)
|
|
1444
1474
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1475
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1476
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1445
1477
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1446
1478
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1447
1479
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1448
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1449
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1450
1480
|
o[:pager] = Aws::Pager.new(
|
|
1451
1481
|
limit_key: "max_results",
|
|
1452
1482
|
tokens: {
|
|
@@ -1462,12 +1492,12 @@ module Aws::BedrockAgentCore
|
|
|
1462
1492
|
o.input = Shapes::ShapeRef.new(shape: ListMemoryRecordsInput)
|
|
1463
1493
|
o.output = Shapes::ShapeRef.new(shape: ListMemoryRecordsOutput)
|
|
1464
1494
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1495
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1496
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1465
1497
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1466
1498
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1467
1499
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1468
1500
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1469
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1470
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1471
1501
|
o[:pager] = Aws::Pager.new(
|
|
1472
1502
|
limit_key: "max_results",
|
|
1473
1503
|
tokens: {
|
|
@@ -1483,12 +1513,12 @@ module Aws::BedrockAgentCore
|
|
|
1483
1513
|
o.input = Shapes::ShapeRef.new(shape: ListSessionsInput)
|
|
1484
1514
|
o.output = Shapes::ShapeRef.new(shape: ListSessionsOutput)
|
|
1485
1515
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1516
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1517
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1486
1518
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1487
1519
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1488
1520
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1489
1521
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1490
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1491
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1492
1522
|
o[:pager] = Aws::Pager.new(
|
|
1493
1523
|
limit_key: "max_results",
|
|
1494
1524
|
tokens: {
|
|
@@ -1504,12 +1534,12 @@ module Aws::BedrockAgentCore
|
|
|
1504
1534
|
o.input = Shapes::ShapeRef.new(shape: RetrieveMemoryRecordsInput)
|
|
1505
1535
|
o.output = Shapes::ShapeRef.new(shape: RetrieveMemoryRecordsOutput)
|
|
1506
1536
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1537
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1538
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1507
1539
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1508
1540
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1509
1541
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1510
1542
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1511
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1512
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1513
1543
|
o[:pager] = Aws::Pager.new(
|
|
1514
1544
|
limit_key: "max_results",
|
|
1515
1545
|
tokens: {
|
|
@@ -1555,11 +1585,11 @@ module Aws::BedrockAgentCore
|
|
|
1555
1585
|
o.input = Shapes::ShapeRef.new(shape: StartMemoryExtractionJobInput)
|
|
1556
1586
|
o.output = Shapes::ShapeRef.new(shape: StartMemoryExtractionJobOutput)
|
|
1557
1587
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1588
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1589
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1558
1590
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1559
1591
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1560
1592
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1561
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
|
|
1562
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1563
1593
|
end)
|
|
1564
1594
|
|
|
1565
1595
|
api.add_operation(:stop_browser_session, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -33,6 +33,7 @@ module Aws::BedrockAgentCore
|
|
|
33
33
|
# * {InternalServerException}
|
|
34
34
|
# * {InvalidInputException}
|
|
35
35
|
# * {ResourceNotFoundException}
|
|
36
|
+
# * {RetryableConflictException}
|
|
36
37
|
# * {RuntimeClientError}
|
|
37
38
|
# * {ServiceException}
|
|
38
39
|
# * {ServiceQuotaExceededException}
|
|
@@ -137,6 +138,25 @@ module Aws::BedrockAgentCore
|
|
|
137
138
|
end
|
|
138
139
|
end
|
|
139
140
|
|
|
141
|
+
class RetryableConflictException < ServiceError
|
|
142
|
+
|
|
143
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
144
|
+
# @param [String] message
|
|
145
|
+
# @param [Aws::BedrockAgentCore::Types::RetryableConflictException] data
|
|
146
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
147
|
+
super(context, message, data)
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# @return [String]
|
|
151
|
+
def message
|
|
152
|
+
@message || @data[:message]
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
def retryable?
|
|
156
|
+
true
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
|
|
140
160
|
class RuntimeClientError < ServiceError
|
|
141
161
|
|
|
142
162
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -243,6 +243,22 @@ module Aws::BedrockAgentCore
|
|
|
243
243
|
include Aws::Structure
|
|
244
244
|
end
|
|
245
245
|
|
|
246
|
+
# Browser extension configuration.
|
|
247
|
+
#
|
|
248
|
+
# @!attribute [rw] location
|
|
249
|
+
# The location where the browser extension files are stored. This
|
|
250
|
+
# specifies the source from which the extension will be loaded and
|
|
251
|
+
# installed.
|
|
252
|
+
# @return [Types::ResourceLocation]
|
|
253
|
+
#
|
|
254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/BrowserExtension AWS API Documentation
|
|
255
|
+
#
|
|
256
|
+
class BrowserExtension < Struct.new(
|
|
257
|
+
:location)
|
|
258
|
+
SENSITIVE = []
|
|
259
|
+
include Aws::Structure
|
|
260
|
+
end
|
|
261
|
+
|
|
246
262
|
# The collection of streams associated with a browser session in Amazon
|
|
247
263
|
# Bedrock. These streams provide different ways to interact with and
|
|
248
264
|
# observe the browser session, including programmatic control and visual
|
|
@@ -1219,6 +1235,11 @@ module Aws::BedrockAgentCore
|
|
|
1219
1235
|
# correctly for the agent's browsing tasks.
|
|
1220
1236
|
# @return [Types::ViewPort]
|
|
1221
1237
|
#
|
|
1238
|
+
# @!attribute [rw] extensions
|
|
1239
|
+
# The list of browser extensions that are configured in the browser
|
|
1240
|
+
# session.
|
|
1241
|
+
# @return [Array<Types::BrowserExtension>]
|
|
1242
|
+
#
|
|
1222
1243
|
# @!attribute [rw] session_timeout_seconds
|
|
1223
1244
|
# The timeout period for the browser session in seconds.
|
|
1224
1245
|
# @return [Integer]
|
|
@@ -1249,6 +1270,7 @@ module Aws::BedrockAgentCore
|
|
|
1249
1270
|
:name,
|
|
1250
1271
|
:created_at,
|
|
1251
1272
|
:view_port,
|
|
1273
|
+
:extensions,
|
|
1252
1274
|
:session_timeout_seconds,
|
|
1253
1275
|
:status,
|
|
1254
1276
|
:streams,
|
|
@@ -2657,6 +2679,30 @@ module Aws::BedrockAgentCore
|
|
|
2657
2679
|
include Aws::Structure
|
|
2658
2680
|
end
|
|
2659
2681
|
|
|
2682
|
+
# The location of the browser extension.
|
|
2683
|
+
#
|
|
2684
|
+
# @note ResourceLocation is a union - when making an API calls you must set exactly one of the members.
|
|
2685
|
+
#
|
|
2686
|
+
# @note ResourceLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceLocation corresponding to the set member.
|
|
2687
|
+
#
|
|
2688
|
+
# @!attribute [rw] s3
|
|
2689
|
+
# The Amazon S3 location of the resource. Use this when the resource
|
|
2690
|
+
# is stored in an Amazon S3 bucket.
|
|
2691
|
+
# @return [Types::S3Location]
|
|
2692
|
+
#
|
|
2693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/ResourceLocation AWS API Documentation
|
|
2694
|
+
#
|
|
2695
|
+
class ResourceLocation < Struct.new(
|
|
2696
|
+
:s3,
|
|
2697
|
+
:unknown)
|
|
2698
|
+
SENSITIVE = []
|
|
2699
|
+
include Aws::Structure
|
|
2700
|
+
include Aws::Structure::Union
|
|
2701
|
+
|
|
2702
|
+
class S3 < ResourceLocation; end
|
|
2703
|
+
class Unknown < ResourceLocation; end
|
|
2704
|
+
end
|
|
2705
|
+
|
|
2660
2706
|
# The exception that occurs when the specified resource does not exist.
|
|
2661
2707
|
# This can happen when using an invalid identifier or when trying to
|
|
2662
2708
|
# access a resource that has been deleted.
|
|
@@ -2731,6 +2777,22 @@ module Aws::BedrockAgentCore
|
|
|
2731
2777
|
include Aws::Structure
|
|
2732
2778
|
end
|
|
2733
2779
|
|
|
2780
|
+
# The exception that occurs when there is a retryable conflict
|
|
2781
|
+
# performing an operation. This is a temporary condition that may
|
|
2782
|
+
# resolve itself with retries. We recommend implementing exponential
|
|
2783
|
+
# backoff retry logic in your application.
|
|
2784
|
+
#
|
|
2785
|
+
# @!attribute [rw] message
|
|
2786
|
+
# @return [String]
|
|
2787
|
+
#
|
|
2788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/RetryableConflictException AWS API Documentation
|
|
2789
|
+
#
|
|
2790
|
+
class RetryableConflictException < Struct.new(
|
|
2791
|
+
:message)
|
|
2792
|
+
SENSITIVE = []
|
|
2793
|
+
include Aws::Structure
|
|
2794
|
+
end
|
|
2795
|
+
|
|
2734
2796
|
# Right expression of the `eventMetadata`filter.
|
|
2735
2797
|
#
|
|
2736
2798
|
# @note RightExpression is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -2768,6 +2830,31 @@ module Aws::BedrockAgentCore
|
|
|
2768
2830
|
include Aws::Structure
|
|
2769
2831
|
end
|
|
2770
2832
|
|
|
2833
|
+
# The Amazon S3 location configuration of a resource.
|
|
2834
|
+
#
|
|
2835
|
+
# @!attribute [rw] bucket
|
|
2836
|
+
# The name of the Amazon S3 bucket where the resource is stored.
|
|
2837
|
+
# @return [String]
|
|
2838
|
+
#
|
|
2839
|
+
# @!attribute [rw] prefix
|
|
2840
|
+
# The name of the Amazon S3 prefix/key where the resource is stored.
|
|
2841
|
+
# @return [String]
|
|
2842
|
+
#
|
|
2843
|
+
# @!attribute [rw] version_id
|
|
2844
|
+
# The name of the Amazon S3 version ID where the resource is stored
|
|
2845
|
+
# (Optional).
|
|
2846
|
+
# @return [String]
|
|
2847
|
+
#
|
|
2848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/S3Location AWS API Documentation
|
|
2849
|
+
#
|
|
2850
|
+
class S3Location < Struct.new(
|
|
2851
|
+
:bucket,
|
|
2852
|
+
:prefix,
|
|
2853
|
+
:version_id)
|
|
2854
|
+
SENSITIVE = []
|
|
2855
|
+
include Aws::Structure
|
|
2856
|
+
end
|
|
2857
|
+
|
|
2771
2858
|
# Contains search criteria for retrieving memory records.
|
|
2772
2859
|
#
|
|
2773
2860
|
# @!attribute [rw] search_query
|
|
@@ -2919,6 +3006,10 @@ module Aws::BedrockAgentCore
|
|
|
2919
3006
|
# viewport size.
|
|
2920
3007
|
# @return [Types::ViewPort]
|
|
2921
3008
|
#
|
|
3009
|
+
# @!attribute [rw] extensions
|
|
3010
|
+
# A list of browser extensions to load into the browser session.
|
|
3011
|
+
# @return [Array<Types::BrowserExtension>]
|
|
3012
|
+
#
|
|
2922
3013
|
# @!attribute [rw] client_token
|
|
2923
3014
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
2924
3015
|
# completes no more than one time. If this token matches a previous
|
|
@@ -2939,6 +3030,7 @@ module Aws::BedrockAgentCore
|
|
|
2939
3030
|
:name,
|
|
2940
3031
|
:session_timeout_seconds,
|
|
2941
3032
|
:view_port,
|
|
3033
|
+
:extensions,
|
|
2942
3034
|
:client_token)
|
|
2943
3035
|
SENSITIVE = []
|
|
2944
3036
|
include Aws::Structure
|
data/sig/client.rbs
CHANGED
|
@@ -253,6 +253,7 @@ module Aws
|
|
|
253
253
|
def name: () -> ::String
|
|
254
254
|
def created_at: () -> ::Time
|
|
255
255
|
def view_port: () -> Types::ViewPort
|
|
256
|
+
def extensions: () -> ::Array[Types::BrowserExtension]
|
|
256
257
|
def session_timeout_seconds: () -> ::Integer
|
|
257
258
|
def status: () -> ("READY" | "TERMINATED")
|
|
258
259
|
def streams: () -> Types::BrowserSessionStream
|
|
@@ -608,6 +609,17 @@ module Aws
|
|
|
608
609
|
width: ::Integer,
|
|
609
610
|
height: ::Integer
|
|
610
611
|
},
|
|
612
|
+
?extensions: Array[
|
|
613
|
+
{
|
|
614
|
+
location: {
|
|
615
|
+
s3: {
|
|
616
|
+
bucket: ::String,
|
|
617
|
+
prefix: ::String,
|
|
618
|
+
version_id: ::String?
|
|
619
|
+
}?
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
],
|
|
611
623
|
?client_token: ::String
|
|
612
624
|
) -> _StartBrowserSessionResponseSuccess
|
|
613
625
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBrowserSessionResponseSuccess
|
data/sig/errors.rbs
CHANGED
|
@@ -29,6 +29,9 @@ module Aws
|
|
|
29
29
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
|
30
30
|
def message: () -> ::String
|
|
31
31
|
end
|
|
32
|
+
class RetryableConflictException < ::Aws::Errors::ServiceError
|
|
33
|
+
def message: () -> ::String
|
|
34
|
+
end
|
|
32
35
|
class RuntimeClientError < ::Aws::Errors::ServiceError
|
|
33
36
|
def message: () -> ::String
|
|
34
37
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -79,6 +79,11 @@ module Aws::BedrockAgentCore
|
|
|
79
79
|
SENSITIVE: []
|
|
80
80
|
end
|
|
81
81
|
|
|
82
|
+
class BrowserExtension
|
|
83
|
+
attr_accessor location: Types::ResourceLocation
|
|
84
|
+
SENSITIVE: []
|
|
85
|
+
end
|
|
86
|
+
|
|
82
87
|
class BrowserSessionStream
|
|
83
88
|
attr_accessor automation_stream: Types::AutomationStream
|
|
84
89
|
attr_accessor live_view_stream: Types::LiveViewStream
|
|
@@ -352,6 +357,7 @@ module Aws::BedrockAgentCore
|
|
|
352
357
|
attr_accessor name: ::String
|
|
353
358
|
attr_accessor created_at: ::Time
|
|
354
359
|
attr_accessor view_port: Types::ViewPort
|
|
360
|
+
attr_accessor extensions: ::Array[Types::BrowserExtension]
|
|
355
361
|
attr_accessor session_timeout_seconds: ::Integer
|
|
356
362
|
attr_accessor status: ("READY" | "TERMINATED")
|
|
357
363
|
attr_accessor streams: Types::BrowserSessionStream
|
|
@@ -758,6 +764,17 @@ module Aws::BedrockAgentCore
|
|
|
758
764
|
SENSITIVE: []
|
|
759
765
|
end
|
|
760
766
|
|
|
767
|
+
class ResourceLocation
|
|
768
|
+
attr_accessor s3: Types::S3Location
|
|
769
|
+
attr_accessor unknown: untyped
|
|
770
|
+
SENSITIVE: []
|
|
771
|
+
|
|
772
|
+
class S3 < ResourceLocation
|
|
773
|
+
end
|
|
774
|
+
class Unknown < ResourceLocation
|
|
775
|
+
end
|
|
776
|
+
end
|
|
777
|
+
|
|
761
778
|
class ResourceNotFoundException
|
|
762
779
|
attr_accessor message: ::String
|
|
763
780
|
attr_accessor event_type: untyped
|
|
@@ -779,6 +796,11 @@ module Aws::BedrockAgentCore
|
|
|
779
796
|
SENSITIVE: []
|
|
780
797
|
end
|
|
781
798
|
|
|
799
|
+
class RetryableConflictException
|
|
800
|
+
attr_accessor message: ::String
|
|
801
|
+
SENSITIVE: []
|
|
802
|
+
end
|
|
803
|
+
|
|
782
804
|
class RightExpression
|
|
783
805
|
attr_accessor metadata_value: Types::MetadataValue
|
|
784
806
|
attr_accessor unknown: untyped
|
|
@@ -795,6 +817,13 @@ module Aws::BedrockAgentCore
|
|
|
795
817
|
SENSITIVE: []
|
|
796
818
|
end
|
|
797
819
|
|
|
820
|
+
class S3Location
|
|
821
|
+
attr_accessor bucket: ::String
|
|
822
|
+
attr_accessor prefix: ::String
|
|
823
|
+
attr_accessor version_id: ::String
|
|
824
|
+
SENSITIVE: []
|
|
825
|
+
end
|
|
826
|
+
|
|
798
827
|
class SearchCriteria
|
|
799
828
|
attr_accessor search_query: ::String
|
|
800
829
|
attr_accessor memory_strategy_id: ::String
|
|
@@ -835,6 +864,7 @@ module Aws::BedrockAgentCore
|
|
|
835
864
|
attr_accessor name: ::String
|
|
836
865
|
attr_accessor session_timeout_seconds: ::Integer
|
|
837
866
|
attr_accessor view_port: Types::ViewPort
|
|
867
|
+
attr_accessor extensions: ::Array[Types::BrowserExtension]
|
|
838
868
|
attr_accessor client_token: ::String
|
|
839
869
|
SENSITIVE: []
|
|
840
870
|
end
|