@aws-sdk/client-bedrock-agentcore 3.987.0 → 3.988.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.
- package/dist-cjs/index.js +55 -1787
- package/dist-cjs/models/BedrockAgentCoreServiceException.js +12 -0
- package/dist-cjs/models/errors.js +191 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1392 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +104 -98
- package/dist-types/schemas/schemas_0.d.ts +21 -14
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -14
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -16,6 +16,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
16
16
|
var runtimeConfig = require('./runtimeConfig');
|
|
17
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
18
18
|
var protocolHttp = require('@smithy/protocol-http');
|
|
19
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var BedrockAgentCoreServiceException = require('./models/BedrockAgentCoreServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -112,1559 +115,6 @@ class BedrockAgentCoreClient extends smithyClient.Client {
|
|
|
112
115
|
}
|
|
113
116
|
}
|
|
114
117
|
|
|
115
|
-
class BedrockAgentCoreServiceException extends smithyClient.ServiceException {
|
|
116
|
-
constructor(options) {
|
|
117
|
-
super(options);
|
|
118
|
-
Object.setPrototypeOf(this, BedrockAgentCoreServiceException.prototype);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
class AccessDeniedException extends BedrockAgentCoreServiceException {
|
|
123
|
-
name = "AccessDeniedException";
|
|
124
|
-
$fault = "client";
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InternalServerException extends BedrockAgentCoreServiceException {
|
|
135
|
-
name = "InternalServerException";
|
|
136
|
-
$fault = "server";
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "InternalServerException",
|
|
140
|
-
$fault: "server",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class ResourceNotFoundException extends BedrockAgentCoreServiceException {
|
|
147
|
-
name = "ResourceNotFoundException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
constructor(opts) {
|
|
150
|
-
super({
|
|
151
|
-
name: "ResourceNotFoundException",
|
|
152
|
-
$fault: "client",
|
|
153
|
-
...opts,
|
|
154
|
-
});
|
|
155
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class RuntimeClientError extends BedrockAgentCoreServiceException {
|
|
159
|
-
name = "RuntimeClientError";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "RuntimeClientError",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, RuntimeClientError.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ServiceQuotaExceededException extends BedrockAgentCoreServiceException {
|
|
171
|
-
name = "ServiceQuotaExceededException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "ServiceQuotaExceededException",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class ThrottlingException extends BedrockAgentCoreServiceException {
|
|
183
|
-
name = "ThrottlingException";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "ThrottlingException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class ValidationException extends BedrockAgentCoreServiceException {
|
|
195
|
-
name = "ValidationException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
reason;
|
|
198
|
-
fieldList;
|
|
199
|
-
constructor(opts) {
|
|
200
|
-
super({
|
|
201
|
-
name: "ValidationException",
|
|
202
|
-
$fault: "client",
|
|
203
|
-
...opts,
|
|
204
|
-
});
|
|
205
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
206
|
-
this.reason = opts.reason;
|
|
207
|
-
this.fieldList = opts.fieldList;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class ConflictException extends BedrockAgentCoreServiceException {
|
|
211
|
-
name = "ConflictException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
constructor(opts) {
|
|
214
|
-
super({
|
|
215
|
-
name: "ConflictException",
|
|
216
|
-
$fault: "client",
|
|
217
|
-
...opts,
|
|
218
|
-
});
|
|
219
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
class UnauthorizedException extends BedrockAgentCoreServiceException {
|
|
223
|
-
name = "UnauthorizedException";
|
|
224
|
-
$fault = "client";
|
|
225
|
-
constructor(opts) {
|
|
226
|
-
super({
|
|
227
|
-
name: "UnauthorizedException",
|
|
228
|
-
$fault: "client",
|
|
229
|
-
...opts,
|
|
230
|
-
});
|
|
231
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
class DuplicateIdException extends BedrockAgentCoreServiceException {
|
|
235
|
-
name = "DuplicateIdException";
|
|
236
|
-
$fault = "client";
|
|
237
|
-
constructor(opts) {
|
|
238
|
-
super({
|
|
239
|
-
name: "DuplicateIdException",
|
|
240
|
-
$fault: "client",
|
|
241
|
-
...opts,
|
|
242
|
-
});
|
|
243
|
-
Object.setPrototypeOf(this, DuplicateIdException.prototype);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
class ServiceException extends BedrockAgentCoreServiceException {
|
|
247
|
-
name = "ServiceException";
|
|
248
|
-
$fault = "server";
|
|
249
|
-
constructor(opts) {
|
|
250
|
-
super({
|
|
251
|
-
name: "ServiceException",
|
|
252
|
-
$fault: "server",
|
|
253
|
-
...opts,
|
|
254
|
-
});
|
|
255
|
-
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
class ThrottledException extends BedrockAgentCoreServiceException {
|
|
259
|
-
name = "ThrottledException";
|
|
260
|
-
$fault = "client";
|
|
261
|
-
constructor(opts) {
|
|
262
|
-
super({
|
|
263
|
-
name: "ThrottledException",
|
|
264
|
-
$fault: "client",
|
|
265
|
-
...opts,
|
|
266
|
-
});
|
|
267
|
-
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
class InvalidInputException extends BedrockAgentCoreServiceException {
|
|
271
|
-
name = "InvalidInputException";
|
|
272
|
-
$fault = "client";
|
|
273
|
-
constructor(opts) {
|
|
274
|
-
super({
|
|
275
|
-
name: "InvalidInputException",
|
|
276
|
-
$fault: "client",
|
|
277
|
-
...opts,
|
|
278
|
-
});
|
|
279
|
-
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
class RetryableConflictException extends BedrockAgentCoreServiceException {
|
|
283
|
-
name = "RetryableConflictException";
|
|
284
|
-
$fault = "client";
|
|
285
|
-
$retryable = {};
|
|
286
|
-
constructor(opts) {
|
|
287
|
-
super({
|
|
288
|
-
name: "RetryableConflictException",
|
|
289
|
-
$fault: "client",
|
|
290
|
-
...opts,
|
|
291
|
-
});
|
|
292
|
-
Object.setPrototypeOf(this, RetryableConflictException.prototype);
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
const _A = "Accept";
|
|
297
|
-
const _ADE = "AccessDeniedException";
|
|
298
|
-
const _AKT = "ApiKeyType";
|
|
299
|
-
const _AS = "ActorSummary";
|
|
300
|
-
const _ASL = "ActorSummaryList";
|
|
301
|
-
const _ASU = "AutomationStreamUpdate";
|
|
302
|
-
const _ASu = "AutomationStream";
|
|
303
|
-
const _ATT = "AccessTokenType";
|
|
304
|
-
const _AUT = "AuthorizationUrlType";
|
|
305
|
-
const _B = "Body";
|
|
306
|
-
const _BA = "BasicAuth";
|
|
307
|
-
const _BCMR = "BatchCreateMemoryRecords";
|
|
308
|
-
const _BCMRI = "BatchCreateMemoryRecordsInput";
|
|
309
|
-
const _BCMRO = "BatchCreateMemoryRecordsOutput";
|
|
310
|
-
const _BDMR = "BatchDeleteMemoryRecords";
|
|
311
|
-
const _BDMRI = "BatchDeleteMemoryRecordsInput";
|
|
312
|
-
const _BDMRO = "BatchDeleteMemoryRecordsOutput";
|
|
313
|
-
const _BE = "BrowserExtension";
|
|
314
|
-
const _BEr = "BrowserExtensions";
|
|
315
|
-
const _BF = "BranchFilter";
|
|
316
|
-
const _BPC = "BrowserProfileConfiguration";
|
|
317
|
-
const _BSS = "BrowserSessionStream";
|
|
318
|
-
const _BSSr = "BrowserSessionSummary";
|
|
319
|
-
const _BSSro = "BrowserSessionSummaries";
|
|
320
|
-
const _BUMR = "BatchUpdateMemoryRecords";
|
|
321
|
-
const _BUMRI = "BatchUpdateMemoryRecordsInput";
|
|
322
|
-
const _BUMRO = "BatchUpdateMemoryRecordsOutput";
|
|
323
|
-
const _Br = "Branch";
|
|
324
|
-
const _C = "Conversational";
|
|
325
|
-
const _CB = "ContentBlock";
|
|
326
|
-
const _CBL = "ContentBlockList";
|
|
327
|
-
const _CE = "ConflictException";
|
|
328
|
-
const _CEI = "CreateEventInput";
|
|
329
|
-
const _CEO = "CreateEventOutput";
|
|
330
|
-
const _CEr = "CreateEvent";
|
|
331
|
-
const _CIR = "CodeInterpreterResult";
|
|
332
|
-
const _CISO = "CodeInterpreterStreamOutput";
|
|
333
|
-
const _CISS = "CodeInterpreterSessionSummary";
|
|
334
|
-
const _CISSo = "CodeInterpreterSessionSummaries";
|
|
335
|
-
const _CRPT = "CustomRequestParametersType";
|
|
336
|
-
const _CRTA = "CompleteResourceTokenAuth";
|
|
337
|
-
const _CRTAR = "CompleteResourceTokenAuthRequest";
|
|
338
|
-
const _CRTARo = "CompleteResourceTokenAuthResponse";
|
|
339
|
-
const _CRVT = "CustomRequestValueType";
|
|
340
|
-
const _CT = "Content-Type";
|
|
341
|
-
const _Co = "Content";
|
|
342
|
-
const _Con = "Context";
|
|
343
|
-
const _D = "Document";
|
|
344
|
-
const _DE = "DeleteEvent";
|
|
345
|
-
const _DEI = "DeleteEventInput";
|
|
346
|
-
const _DEO = "DeleteEventOutput";
|
|
347
|
-
const _DIE = "DuplicateIdException";
|
|
348
|
-
const _DMR = "DeleteMemoryRecord";
|
|
349
|
-
const _DMRI = "DeleteMemoryRecordInput";
|
|
350
|
-
const _DMRO = "DeleteMemoryRecordOutput";
|
|
351
|
-
const _E = "Event";
|
|
352
|
-
const _EE = "EvaluationExplanation";
|
|
353
|
-
const _EI = "EvaluationInput";
|
|
354
|
-
const _EJ = "ExtractionJob";
|
|
355
|
-
const _EJFI = "ExtractionJobFilterInput";
|
|
356
|
-
const _EJM = "ExtractionJobMetadata";
|
|
357
|
-
const _EJML = "ExtractionJobMetadataList";
|
|
358
|
-
const _EJMx = "ExtractionJobMessages";
|
|
359
|
-
const _EL = "EventList";
|
|
360
|
-
const _EMFE = "EventMetadataFilterExpression";
|
|
361
|
-
const _EMFL = "EventMetadataFilterList";
|
|
362
|
-
const _EP = "ExternalProxy";
|
|
363
|
-
const _ER = "EvaluateRequest";
|
|
364
|
-
const _ERC = "EvaluationResultContent";
|
|
365
|
-
const _ERv = "EvaluateResponse";
|
|
366
|
-
const _ERva = "EvaluationResults";
|
|
367
|
-
const _ET = "EvaluationTarget";
|
|
368
|
-
const _Ev = "Evaluate";
|
|
369
|
-
const _FI = "FilterInput";
|
|
370
|
-
const _GAC = "GetAgentCard";
|
|
371
|
-
const _GACR = "GetAgentCardRequest";
|
|
372
|
-
const _GACRe = "GetAgentCardResponse";
|
|
373
|
-
const _GBS = "GetBrowserSession";
|
|
374
|
-
const _GBSR = "GetBrowserSessionRequest";
|
|
375
|
-
const _GBSRe = "GetBrowserSessionResponse";
|
|
376
|
-
const _GCIS = "GetCodeInterpreterSession";
|
|
377
|
-
const _GCISR = "GetCodeInterpreterSessionRequest";
|
|
378
|
-
const _GCISRe = "GetCodeInterpreterSessionResponse";
|
|
379
|
-
const _GE = "GetEvent";
|
|
380
|
-
const _GEI = "GetEventInput";
|
|
381
|
-
const _GEO = "GetEventOutput";
|
|
382
|
-
const _GMR = "GetMemoryRecord";
|
|
383
|
-
const _GMRI = "GetMemoryRecordInput";
|
|
384
|
-
const _GMRO = "GetMemoryRecordOutput";
|
|
385
|
-
const _GRAK = "GetResourceApiKey";
|
|
386
|
-
const _GRAKR = "GetResourceApiKeyRequest";
|
|
387
|
-
const _GRAKRe = "GetResourceApiKeyResponse";
|
|
388
|
-
const _GROT = "GetResourceOauth2Token";
|
|
389
|
-
const _GROTR = "GetResourceOauth2TokenRequest";
|
|
390
|
-
const _GROTRe = "GetResourceOauth2TokenResponse";
|
|
391
|
-
const _GWAT = "GetWorkloadAccessToken";
|
|
392
|
-
const _GWATFJWT = "GetWorkloadAccessTokenForJWT";
|
|
393
|
-
const _GWATFJWTR = "GetWorkloadAccessTokenForJWTRequest";
|
|
394
|
-
const _GWATFJWTRe = "GetWorkloadAccessTokenForJWTResponse";
|
|
395
|
-
const _GWATFUI = "GetWorkloadAccessTokenForUserId";
|
|
396
|
-
const _GWATFUIR = "GetWorkloadAccessTokenForUserIdRequest";
|
|
397
|
-
const _GWATFUIRe = "GetWorkloadAccessTokenForUserIdResponse";
|
|
398
|
-
const _GWATR = "GetWorkloadAccessTokenRequest";
|
|
399
|
-
const _GWATRe = "GetWorkloadAccessTokenResponse";
|
|
400
|
-
const _IAR = "InvokeAgentRuntime";
|
|
401
|
-
const _IARR = "InvokeAgentRuntimeRequest";
|
|
402
|
-
const _IARRn = "InvokeAgentRuntimeResponse";
|
|
403
|
-
const _ICB = "InputContentBlock";
|
|
404
|
-
const _ICBL = "InputContentBlockList";
|
|
405
|
-
const _ICI = "InvokeCodeInterpreter";
|
|
406
|
-
const _ICIR = "InvokeCodeInterpreterRequest";
|
|
407
|
-
const _ICIRn = "InvokeCodeInterpreterResponse";
|
|
408
|
-
const _IIE = "InvalidInputException";
|
|
409
|
-
const _ISE = "InternalServerException";
|
|
410
|
-
const _LA = "ListActors";
|
|
411
|
-
const _LAI = "ListActorsInput";
|
|
412
|
-
const _LAO = "ListActorsOutput";
|
|
413
|
-
const _LBS = "ListBrowserSessions";
|
|
414
|
-
const _LBSR = "ListBrowserSessionsRequest";
|
|
415
|
-
const _LBSRi = "ListBrowserSessionsResponse";
|
|
416
|
-
const _LCIS = "ListCodeInterpreterSessions";
|
|
417
|
-
const _LCISR = "ListCodeInterpreterSessionsRequest";
|
|
418
|
-
const _LCISRi = "ListCodeInterpreterSessionsResponse";
|
|
419
|
-
const _LE = "LeftExpression";
|
|
420
|
-
const _LEI = "ListEventsInput";
|
|
421
|
-
const _LEO = "ListEventsOutput";
|
|
422
|
-
const _LEi = "ListEvents";
|
|
423
|
-
const _LMEJ = "ListMemoryExtractionJobs";
|
|
424
|
-
const _LMEJI = "ListMemoryExtractionJobsInput";
|
|
425
|
-
const _LMEJO = "ListMemoryExtractionJobsOutput";
|
|
426
|
-
const _LMR = "ListMemoryRecords";
|
|
427
|
-
const _LMRI = "ListMemoryRecordsInput";
|
|
428
|
-
const _LMRO = "ListMemoryRecordsOutput";
|
|
429
|
-
const _LS = "ListSessions";
|
|
430
|
-
const _LSI = "ListSessionsInput";
|
|
431
|
-
const _LSO = "ListSessionsOutput";
|
|
432
|
-
const _LVS = "LiveViewStream";
|
|
433
|
-
const _MC = "MemoryContent";
|
|
434
|
-
const _ML = "MessagesList";
|
|
435
|
-
const _MM = "MessageMetadata";
|
|
436
|
-
const _MMFE = "MemoryMetadataFilterExpression";
|
|
437
|
-
const _MMFL = "MemoryMetadataFilterList";
|
|
438
|
-
const _MMe = "MetadataMap";
|
|
439
|
-
const _MPV = "Mcp-Protocol-Version";
|
|
440
|
-
const _MR = "MemoryRecord";
|
|
441
|
-
const _MRCI = "MemoryRecordCreateInput";
|
|
442
|
-
const _MRCIL = "MemoryRecordsCreateInputList";
|
|
443
|
-
const _MRDI = "MemoryRecordDeleteInput";
|
|
444
|
-
const _MRDIL = "MemoryRecordsDeleteInputList";
|
|
445
|
-
const _MRO = "MemoryRecordOutput";
|
|
446
|
-
const _MROL = "MemoryRecordsOutputList";
|
|
447
|
-
const _MRS = "MemoryRecordSummary";
|
|
448
|
-
const _MRSL = "MemoryRecordSummaryList";
|
|
449
|
-
const _MRUI = "MemoryRecordUpdateInput";
|
|
450
|
-
const _MRUIL = "MemoryRecordsUpdateInputList";
|
|
451
|
-
const _MSI = "Mcp-Session-Id";
|
|
452
|
-
const _MV = "MetadataValue";
|
|
453
|
-
const _P = "Proxies";
|
|
454
|
-
const _PB = "ProxyBypass";
|
|
455
|
-
const _PC = "ProxyConfiguration";
|
|
456
|
-
const _PCr = "ProxyCredentials";
|
|
457
|
-
const _PT = "PayloadType";
|
|
458
|
-
const _PTL = "PayloadTypeList";
|
|
459
|
-
const _Pr = "Proxy";
|
|
460
|
-
const _RC = "ResourceContent";
|
|
461
|
-
const _RCE = "RetryableConflictException";
|
|
462
|
-
const _RCEu = "RuntimeClientError";
|
|
463
|
-
const _RE = "RightExpression";
|
|
464
|
-
const _RL = "ResourceLocation";
|
|
465
|
-
const _RMR = "RetrieveMemoryRecords";
|
|
466
|
-
const _RMRI = "RetrieveMemoryRecordsInput";
|
|
467
|
-
const _RMRO = "RetrieveMemoryRecordsOutput";
|
|
468
|
-
const _RNFE = "ResourceNotFoundException";
|
|
469
|
-
const _RS = "ResponseStream";
|
|
470
|
-
const _S = "State";
|
|
471
|
-
const _SBS = "StartBrowserSession";
|
|
472
|
-
const _SBSP = "SaveBrowserSessionProfile";
|
|
473
|
-
const _SBSPR = "SaveBrowserSessionProfileRequest";
|
|
474
|
-
const _SBSPRa = "SaveBrowserSessionProfileResponse";
|
|
475
|
-
const _SBSR = "StartBrowserSessionRequest";
|
|
476
|
-
const _SBSRt = "StartBrowserSessionResponse";
|
|
477
|
-
const _SBSRto = "StopBrowserSessionRequest";
|
|
478
|
-
const _SBSRtop = "StopBrowserSessionResponse";
|
|
479
|
-
const _SBSt = "StopBrowserSession";
|
|
480
|
-
const _SC = "SearchCriteria";
|
|
481
|
-
const _SCIS = "StartCodeInterpreterSession";
|
|
482
|
-
const _SCISR = "StartCodeInterpreterSessionRequest";
|
|
483
|
-
const _SCISRt = "StartCodeInterpreterSessionResponse";
|
|
484
|
-
const _SCISRto = "StopCodeInterpreterSessionRequest";
|
|
485
|
-
const _SCISRtop = "StopCodeInterpreterSessionResponse";
|
|
486
|
-
const _SCISt = "StopCodeInterpreterSession";
|
|
487
|
-
const _SCp = "SpanContext";
|
|
488
|
-
const _SE = "ServiceException";
|
|
489
|
-
const _SL = "S3Location";
|
|
490
|
-
const _SMEJ = "StartMemoryExtractionJob";
|
|
491
|
-
const _SMEJI = "StartMemoryExtractionJobInput";
|
|
492
|
-
const _SMEJO = "StartMemoryExtractionJobOutput";
|
|
493
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
494
|
-
const _SRS = "StopRuntimeSession";
|
|
495
|
-
const _SRSR = "StopRuntimeSessionRequest";
|
|
496
|
-
const _SRSRt = "StopRuntimeSessionResponse";
|
|
497
|
-
const _SS = "SensitiveString";
|
|
498
|
-
const _SSL = "SessionSummaryList";
|
|
499
|
-
const _SSe = "SessionSummary";
|
|
500
|
-
const _SU = "StreamUpdate";
|
|
501
|
-
const _Sp = "Spans";
|
|
502
|
-
const _TA = "ToolArguments";
|
|
503
|
-
const _TE = "ThrottledException";
|
|
504
|
-
const _TEh = "ThrottlingException";
|
|
505
|
-
const _TRSC = "ToolResultStructuredContent";
|
|
506
|
-
const _TU = "TokenUsage";
|
|
507
|
-
const _UBS = "UpdateBrowserStream";
|
|
508
|
-
const _UBSR = "UpdateBrowserStreamRequest";
|
|
509
|
-
const _UBSRp = "UpdateBrowserStreamResponse";
|
|
510
|
-
const _UE = "UnauthorizedException";
|
|
511
|
-
const _UI = "UserIdentifier";
|
|
512
|
-
const _UTT = "UserTokenType";
|
|
513
|
-
const _VE = "ValidationException";
|
|
514
|
-
const _VEF = "ValidationExceptionField";
|
|
515
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
516
|
-
const _VP = "ViewPort";
|
|
517
|
-
const _WITT = "WorkloadIdentityTokenType";
|
|
518
|
-
const _XABARSI = "X-Amzn-Bedrock-AgentCore-Runtime-Session-Id";
|
|
519
|
-
const _XABARUI = "X-Amzn-Bedrock-AgentCore-Runtime-User-Id";
|
|
520
|
-
const _XATI = "X-Amzn-Trace-Id";
|
|
521
|
-
const _a = "accept";
|
|
522
|
-
const _aC = "agentCard";
|
|
523
|
-
const _aDE = "accessDeniedException";
|
|
524
|
-
const _aI = "actorId";
|
|
525
|
-
const _aIc = "accountId";
|
|
526
|
-
const _aK = "apiKey";
|
|
527
|
-
const _aRA = "agentRuntimeArn";
|
|
528
|
-
const _aS = "automationStream";
|
|
529
|
-
const _aSU = "automationStreamUpdate";
|
|
530
|
-
const _aSc = "actorSummaries";
|
|
531
|
-
const _aT = "accessToken";
|
|
532
|
-
const _aU = "authorizationUrl";
|
|
533
|
-
const _ar = "arguments";
|
|
534
|
-
const _b = "branch";
|
|
535
|
-
const _bA = "basicAuth";
|
|
536
|
-
const _bI = "browserIdentifier";
|
|
537
|
-
const _ba = "baggage";
|
|
538
|
-
const _bl = "blob";
|
|
539
|
-
const _bu = "bucket";
|
|
540
|
-
const _by = "bypass";
|
|
541
|
-
const _c = "client";
|
|
542
|
-
const _cA = "createdAt";
|
|
543
|
-
const _cC = "clearContext";
|
|
544
|
-
const _cE = "conflictException";
|
|
545
|
-
const _cII = "codeInterpreterIdentifier";
|
|
546
|
-
const _cP = "customParameters";
|
|
547
|
-
const _cS = "customState";
|
|
548
|
-
const _cT = "clientToken";
|
|
549
|
-
const _cTo = "contentType";
|
|
550
|
-
const _co = "content";
|
|
551
|
-
const _cod = "code";
|
|
552
|
-
const _com = "command";
|
|
553
|
-
const _con = "context";
|
|
554
|
-
const _conv = "conversational";
|
|
555
|
-
const _cr = "credentials";
|
|
556
|
-
const _d = "data";
|
|
557
|
-
const _dP = "domainPatterns";
|
|
558
|
-
const _dPi = "directoryPath";
|
|
559
|
-
const _de = "description";
|
|
560
|
-
const _e = "error";
|
|
561
|
-
const _eA = "evaluatorArn";
|
|
562
|
-
const _eC = "errorCode";
|
|
563
|
-
const _eCx = "exitCode";
|
|
564
|
-
const _eI = "eventId";
|
|
565
|
-
const _eIv = "evaluatorId";
|
|
566
|
-
const _eIva = "evaluationInput";
|
|
567
|
-
const _eJ = "extractionJob";
|
|
568
|
-
const _eM = "errorMessage";
|
|
569
|
-
const _eMv = "eventMetadata";
|
|
570
|
-
const _eN = "evaluatorName";
|
|
571
|
-
const _eP = "externalProxy";
|
|
572
|
-
const _eR = "evaluationResults";
|
|
573
|
-
const _eT = "eventTimestamp";
|
|
574
|
-
const _eTv = "evaluationTarget";
|
|
575
|
-
const _eTx = "executionTime";
|
|
576
|
-
const _ev = "event";
|
|
577
|
-
const _eve = "events";
|
|
578
|
-
const _ex = "explanation";
|
|
579
|
-
const _ext = "extensions";
|
|
580
|
-
const _f = "filter";
|
|
581
|
-
const _fA = "forceAuthentication";
|
|
582
|
-
const _fL = "fieldList";
|
|
583
|
-
const _fR = "failedRecords";
|
|
584
|
-
const _fRa = "failureReason";
|
|
585
|
-
const _h = "height";
|
|
586
|
-
const _hE = "httpError";
|
|
587
|
-
const _hH = "httpHeader";
|
|
588
|
-
const _hQ = "httpQuery";
|
|
589
|
-
const _ht = "http";
|
|
590
|
-
const _i = "items";
|
|
591
|
-
const _iE = "isError";
|
|
592
|
-
const _iP = "includePayloads";
|
|
593
|
-
const _iPB = "includeParentBranches";
|
|
594
|
-
const _iSE = "internalServerException";
|
|
595
|
-
const _iT = "idempotencyToken";
|
|
596
|
-
const _iTn = "inputTokens";
|
|
597
|
-
const _j = "jobs";
|
|
598
|
-
const _jI = "jobId";
|
|
599
|
-
const _jID = "jobID";
|
|
600
|
-
const _l = "location";
|
|
601
|
-
const _lUA = "lastUpdatedAt";
|
|
602
|
-
const _lVS = "liveViewStream";
|
|
603
|
-
const _la = "label";
|
|
604
|
-
const _lan = "language";
|
|
605
|
-
const _le = "left";
|
|
606
|
-
const _m = "message";
|
|
607
|
-
const _mF = "metadataFilters";
|
|
608
|
-
const _mI = "memoryId";
|
|
609
|
-
const _mIe = "messageIndex";
|
|
610
|
-
const _mK = "metadataKey";
|
|
611
|
-
const _mL = "messagesList";
|
|
612
|
-
const _mPV = "mcpProtocolVersion";
|
|
613
|
-
const _mR = "memoryRecord";
|
|
614
|
-
const _mRI = "memoryRecordId";
|
|
615
|
-
const _mRS = "memoryRecordSummaries";
|
|
616
|
-
const _mRa = "maxResults";
|
|
617
|
-
const _mSI = "mcpSessionId";
|
|
618
|
-
const _mSIe = "memoryStrategyId";
|
|
619
|
-
const _mT = "mimeType";
|
|
620
|
-
const _mV = "metadataValue";
|
|
621
|
-
const _me = "metadata";
|
|
622
|
-
const _mes = "messages";
|
|
623
|
-
const _n = "name";
|
|
624
|
-
const _nT = "nextToken";
|
|
625
|
-
const _na = "namespace";
|
|
626
|
-
const _nam = "namespaces";
|
|
627
|
-
const _o = "operator";
|
|
628
|
-
const _oF = "oauth2Flow";
|
|
629
|
-
const _oT = "outputTokens";
|
|
630
|
-
const _p = "payload";
|
|
631
|
-
const _pC = "profileConfiguration";
|
|
632
|
-
const _pCr = "proxyConfiguration";
|
|
633
|
-
const _pI = "profileIdentifier";
|
|
634
|
-
const _pa = "path";
|
|
635
|
-
const _pat = "paths";
|
|
636
|
-
const _po = "port";
|
|
637
|
-
const _pr = "proxies";
|
|
638
|
-
const _pre = "prefix";
|
|
639
|
-
const _q = "qualifier";
|
|
640
|
-
const _r = "records";
|
|
641
|
-
const _rCPN = "resourceCredentialProviderName";
|
|
642
|
-
const _rEI = "rootEventId";
|
|
643
|
-
const _rI = "requestIdentifier";
|
|
644
|
-
const _rNFE = "resourceNotFoundException";
|
|
645
|
-
const _rORU = "resourceOauth2ReturnUrl";
|
|
646
|
-
const _rSI = "runtimeSessionId";
|
|
647
|
-
const _rUI = "runtimeUserId";
|
|
648
|
-
const _re = "resource";
|
|
649
|
-
const _rea = "reason";
|
|
650
|
-
const _res = "response";
|
|
651
|
-
const _resu = "result";
|
|
652
|
-
const _ri = "right";
|
|
653
|
-
const _ro = "role";
|
|
654
|
-
const _s = "sensitive";
|
|
655
|
-
const _sA = "secretArn";
|
|
656
|
-
const _sC = "structuredContent";
|
|
657
|
-
const _sCe = "searchCriteria";
|
|
658
|
-
const _sCp = "spanContext";
|
|
659
|
-
const _sCt = "statusCode";
|
|
660
|
-
const _sE = "streamEndpoint";
|
|
661
|
-
const _sI = "sessionId";
|
|
662
|
-
const _sIp = "spanId";
|
|
663
|
-
const _sIpa = "spanIds";
|
|
664
|
-
const _sIt = "strategyId";
|
|
665
|
-
const _sQ = "searchQuery";
|
|
666
|
-
const _sQEE = "serviceQuotaExceededException";
|
|
667
|
-
const _sR = "successfulRecords";
|
|
668
|
-
const _sRA = "sessionReplayArtifact";
|
|
669
|
-
const _sS = "streamStatus";
|
|
670
|
-
const _sSe = "sessionStatus";
|
|
671
|
-
const _sSes = "sessionSummaries";
|
|
672
|
-
const _sSess = "sessionSpans";
|
|
673
|
-
const _sTS = "sessionTimeoutSeconds";
|
|
674
|
-
const _sU = "sessionUri";
|
|
675
|
-
const _sUt = "streamUpdate";
|
|
676
|
-
const _sV = "stringValue";
|
|
677
|
-
const _s_ = "s3";
|
|
678
|
-
const _sc = "scopes";
|
|
679
|
-
const _sco = "score";
|
|
680
|
-
const _se = "server";
|
|
681
|
-
const _si = "size";
|
|
682
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcore";
|
|
683
|
-
const _st = "streaming";
|
|
684
|
-
const _sta = "status";
|
|
685
|
-
const _std = "stdout";
|
|
686
|
-
const _stde = "stderr";
|
|
687
|
-
const _str = "streams";
|
|
688
|
-
const _stre = "stream";
|
|
689
|
-
const _t = "type";
|
|
690
|
-
const _tE = "throttlingException";
|
|
691
|
-
const _tI = "traceId";
|
|
692
|
-
const _tIa = "taskId";
|
|
693
|
-
const _tIr = "traceIds";
|
|
694
|
-
const _tK = "topK";
|
|
695
|
-
const _tP = "traceParent";
|
|
696
|
-
const _tS = "traceState";
|
|
697
|
-
const _tSa = "taskStatus";
|
|
698
|
-
const _tT = "totalTokens";
|
|
699
|
-
const _tU = "tokenUsage";
|
|
700
|
-
const _te = "text";
|
|
701
|
-
const _ti = "timestamp";
|
|
702
|
-
const _tr = "traceparent";
|
|
703
|
-
const _tra = "tracestate";
|
|
704
|
-
const _u = "uri";
|
|
705
|
-
const _uA = "updatedAt";
|
|
706
|
-
const _uI = "userIdentifier";
|
|
707
|
-
const _uIs = "userId";
|
|
708
|
-
const _uT = "userToken";
|
|
709
|
-
const _v = "value";
|
|
710
|
-
const _vE = "validationException";
|
|
711
|
-
const _vI = "versionId";
|
|
712
|
-
const _vP = "viewPort";
|
|
713
|
-
const _w = "width";
|
|
714
|
-
const _wAT = "workloadAccessToken";
|
|
715
|
-
const _wIT = "workloadIdentityToken";
|
|
716
|
-
const _wN = "workloadName";
|
|
717
|
-
const _xacisi = "x-amzn-code-interpreter-session-id";
|
|
718
|
-
const n0 = "com.amazonaws.bedrockagentcore";
|
|
719
|
-
var AccessTokenType = [0, n0, _ATT, 8, 0];
|
|
720
|
-
var ApiKeyType = [0, n0, _AKT, 8, 0];
|
|
721
|
-
var AuthorizationUrlType = [0, n0, _AUT, 8, 0];
|
|
722
|
-
var Body = [0, n0, _B, 8, 21];
|
|
723
|
-
var CustomRequestValueType = [0, n0, _CRVT, 8, 0];
|
|
724
|
-
var Document = [0, n0, _D, 8, 15];
|
|
725
|
-
var EvaluationExplanation = [0, n0, _EE, 8, 0];
|
|
726
|
-
var ResponseStream = [0, n0, _RS, { [_s]: 1, [_st]: 1 }, 42];
|
|
727
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
728
|
-
var State = [0, n0, _S, 8, 0];
|
|
729
|
-
var UserTokenType = [0, n0, _UTT, 8, 0];
|
|
730
|
-
var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
|
|
731
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
732
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
733
|
-
[_m],
|
|
734
|
-
[0]
|
|
735
|
-
];
|
|
736
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
737
|
-
var ActorSummary$ = [3, n0, _AS,
|
|
738
|
-
0,
|
|
739
|
-
[_aI],
|
|
740
|
-
[0], 1
|
|
741
|
-
];
|
|
742
|
-
var AutomationStream$ = [3, n0, _ASu,
|
|
743
|
-
0,
|
|
744
|
-
[_sE, _sS],
|
|
745
|
-
[0, 0], 2
|
|
746
|
-
];
|
|
747
|
-
var AutomationStreamUpdate$ = [3, n0, _ASU,
|
|
748
|
-
0,
|
|
749
|
-
[_sS],
|
|
750
|
-
[0]
|
|
751
|
-
];
|
|
752
|
-
var BasicAuth$ = [3, n0, _BA,
|
|
753
|
-
0,
|
|
754
|
-
[_sA],
|
|
755
|
-
[0], 1
|
|
756
|
-
];
|
|
757
|
-
var BatchCreateMemoryRecordsInput$ = [3, n0, _BCMRI,
|
|
758
|
-
0,
|
|
759
|
-
[_mI, _r, _cT],
|
|
760
|
-
[[0, 1], [() => MemoryRecordsCreateInputList, 0], [0, 4]], 2
|
|
761
|
-
];
|
|
762
|
-
var BatchCreateMemoryRecordsOutput$ = [3, n0, _BCMRO,
|
|
763
|
-
0,
|
|
764
|
-
[_sR, _fR],
|
|
765
|
-
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList], 2
|
|
766
|
-
];
|
|
767
|
-
var BatchDeleteMemoryRecordsInput$ = [3, n0, _BDMRI,
|
|
768
|
-
0,
|
|
769
|
-
[_mI, _r],
|
|
770
|
-
[[0, 1], () => MemoryRecordsDeleteInputList], 2
|
|
771
|
-
];
|
|
772
|
-
var BatchDeleteMemoryRecordsOutput$ = [3, n0, _BDMRO,
|
|
773
|
-
0,
|
|
774
|
-
[_sR, _fR],
|
|
775
|
-
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList], 2
|
|
776
|
-
];
|
|
777
|
-
var BatchUpdateMemoryRecordsInput$ = [3, n0, _BUMRI,
|
|
778
|
-
0,
|
|
779
|
-
[_mI, _r],
|
|
780
|
-
[[0, 1], [() => MemoryRecordsUpdateInputList, 0]], 2
|
|
781
|
-
];
|
|
782
|
-
var BatchUpdateMemoryRecordsOutput$ = [3, n0, _BUMRO,
|
|
783
|
-
0,
|
|
784
|
-
[_sR, _fR],
|
|
785
|
-
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList], 2
|
|
786
|
-
];
|
|
787
|
-
var Branch$ = [3, n0, _Br,
|
|
788
|
-
0,
|
|
789
|
-
[_n, _rEI],
|
|
790
|
-
[0, 0], 1
|
|
791
|
-
];
|
|
792
|
-
var BranchFilter$ = [3, n0, _BF,
|
|
793
|
-
0,
|
|
794
|
-
[_n, _iPB],
|
|
795
|
-
[0, 2], 1
|
|
796
|
-
];
|
|
797
|
-
var BrowserExtension$ = [3, n0, _BE,
|
|
798
|
-
0,
|
|
799
|
-
[_l],
|
|
800
|
-
[() => ResourceLocation$], 1
|
|
801
|
-
];
|
|
802
|
-
var BrowserProfileConfiguration$ = [3, n0, _BPC,
|
|
803
|
-
0,
|
|
804
|
-
[_pI],
|
|
805
|
-
[0], 1
|
|
806
|
-
];
|
|
807
|
-
var BrowserSessionStream$ = [3, n0, _BSS,
|
|
808
|
-
0,
|
|
809
|
-
[_aS, _lVS],
|
|
810
|
-
[() => AutomationStream$, () => LiveViewStream$], 1
|
|
811
|
-
];
|
|
812
|
-
var BrowserSessionSummary$ = [3, n0, _BSSr,
|
|
813
|
-
0,
|
|
814
|
-
[_bI, _sI, _sta, _cA, _n, _lUA],
|
|
815
|
-
[0, 0, 0, 5, 0, 5], 4
|
|
816
|
-
];
|
|
817
|
-
var CodeInterpreterResult$ = [3, n0, _CIR,
|
|
818
|
-
0,
|
|
819
|
-
[_co, _sC, _iE],
|
|
820
|
-
[() => ContentBlockList, () => ToolResultStructuredContent$, 2], 1
|
|
821
|
-
];
|
|
822
|
-
var CodeInterpreterSessionSummary$ = [3, n0, _CISS,
|
|
823
|
-
0,
|
|
824
|
-
[_cII, _sI, _sta, _cA, _n, _lUA],
|
|
825
|
-
[0, 0, 0, 5, 0, 5], 4
|
|
826
|
-
];
|
|
827
|
-
var CompleteResourceTokenAuthRequest$ = [3, n0, _CRTAR,
|
|
828
|
-
0,
|
|
829
|
-
[_uI, _sU],
|
|
830
|
-
[[() => UserIdentifier$, 0], 0], 2
|
|
831
|
-
];
|
|
832
|
-
var CompleteResourceTokenAuthResponse$ = [3, n0, _CRTARo,
|
|
833
|
-
0,
|
|
834
|
-
[],
|
|
835
|
-
[]
|
|
836
|
-
];
|
|
837
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
838
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
839
|
-
[_m],
|
|
840
|
-
[0]
|
|
841
|
-
];
|
|
842
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
843
|
-
var ContentBlock$ = [3, n0, _CB,
|
|
844
|
-
0,
|
|
845
|
-
[_t, _te, _d, _mT, _u, _n, _de, _si, _re],
|
|
846
|
-
[0, 0, 21, 0, 0, 0, 0, 1, () => ResourceContent$], 1
|
|
847
|
-
];
|
|
848
|
-
var Conversational$ = [3, n0, _C,
|
|
849
|
-
0,
|
|
850
|
-
[_co, _ro],
|
|
851
|
-
[[() => Content$, 0], 0], 2
|
|
852
|
-
];
|
|
853
|
-
var CreateEventInput$ = [3, n0, _CEI,
|
|
854
|
-
0,
|
|
855
|
-
[_mI, _aI, _eT, _p, _sI, _b, _cT, _me],
|
|
856
|
-
[[0, 1], 0, 4, [() => PayloadTypeList, 0], 0, () => Branch$, [0, 4], () => MetadataMap], 4
|
|
857
|
-
];
|
|
858
|
-
var CreateEventOutput$ = [3, n0, _CEO,
|
|
859
|
-
0,
|
|
860
|
-
[_ev],
|
|
861
|
-
[[() => Event$, 0]], 1
|
|
862
|
-
];
|
|
863
|
-
var DeleteEventInput$ = [3, n0, _DEI,
|
|
864
|
-
0,
|
|
865
|
-
[_mI, _sI, _eI, _aI],
|
|
866
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
867
|
-
];
|
|
868
|
-
var DeleteEventOutput$ = [3, n0, _DEO,
|
|
869
|
-
0,
|
|
870
|
-
[_eI],
|
|
871
|
-
[0], 1
|
|
872
|
-
];
|
|
873
|
-
var DeleteMemoryRecordInput$ = [3, n0, _DMRI,
|
|
874
|
-
0,
|
|
875
|
-
[_mI, _mRI],
|
|
876
|
-
[[0, 1], [0, 1]], 2
|
|
877
|
-
];
|
|
878
|
-
var DeleteMemoryRecordOutput$ = [3, n0, _DMRO,
|
|
879
|
-
0,
|
|
880
|
-
[_mRI],
|
|
881
|
-
[0], 1
|
|
882
|
-
];
|
|
883
|
-
var DuplicateIdException$ = [-3, n0, _DIE,
|
|
884
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
885
|
-
[_m],
|
|
886
|
-
[0]
|
|
887
|
-
];
|
|
888
|
-
schema.TypeRegistry.for(n0).registerError(DuplicateIdException$, DuplicateIdException);
|
|
889
|
-
var EvaluateRequest$ = [3, n0, _ER,
|
|
890
|
-
0,
|
|
891
|
-
[_eIv, _eIva, _eTv],
|
|
892
|
-
[[0, 1], [() => EvaluationInput$, 0], () => EvaluationTarget$], 2
|
|
893
|
-
];
|
|
894
|
-
var EvaluateResponse$ = [3, n0, _ERv,
|
|
895
|
-
0,
|
|
896
|
-
[_eR],
|
|
897
|
-
[[() => EvaluationResults, 0]], 1
|
|
898
|
-
];
|
|
899
|
-
var EvaluationResultContent$ = [3, n0, _ERC,
|
|
900
|
-
0,
|
|
901
|
-
[_eA, _eIv, _eN, _con, _ex, _v, _la, _tU, _eM, _eC],
|
|
902
|
-
[0, 0, 0, () => Context$, [() => EvaluationExplanation, 0], 1, 0, () => TokenUsage$, 0, 0], 4
|
|
903
|
-
];
|
|
904
|
-
var Event$ = [3, n0, _E,
|
|
905
|
-
0,
|
|
906
|
-
[_mI, _aI, _sI, _eI, _eT, _p, _b, _me],
|
|
907
|
-
[0, 0, 0, 0, 4, [() => PayloadTypeList, 0], () => Branch$, () => MetadataMap], 6
|
|
908
|
-
];
|
|
909
|
-
var EventMetadataFilterExpression$ = [3, n0, _EMFE,
|
|
910
|
-
0,
|
|
911
|
-
[_le, _o, _ri],
|
|
912
|
-
[() => LeftExpression$, 0, () => RightExpression$], 2
|
|
913
|
-
];
|
|
914
|
-
var ExternalProxy$ = [3, n0, _EP,
|
|
915
|
-
0,
|
|
916
|
-
[_se, _po, _dP, _cr],
|
|
917
|
-
[0, 1, 64 | 0, () => ProxyCredentials$], 2
|
|
918
|
-
];
|
|
919
|
-
var ExtractionJob$ = [3, n0, _EJ,
|
|
920
|
-
0,
|
|
921
|
-
[_jI],
|
|
922
|
-
[0], 1
|
|
923
|
-
];
|
|
924
|
-
var ExtractionJobFilterInput$ = [3, n0, _EJFI,
|
|
925
|
-
0,
|
|
926
|
-
[_sIt, _sI, _aI, _sta],
|
|
927
|
-
[0, 0, 0, 0]
|
|
928
|
-
];
|
|
929
|
-
var ExtractionJobMetadata$ = [3, n0, _EJM,
|
|
930
|
-
0,
|
|
931
|
-
[_jID, _mes, _sta, _fRa, _sIt, _sI, _aI],
|
|
932
|
-
[0, () => ExtractionJobMessages$, 0, 0, 0, 0, 0], 2
|
|
933
|
-
];
|
|
934
|
-
var FilterInput$ = [3, n0, _FI,
|
|
935
|
-
0,
|
|
936
|
-
[_b, _eMv],
|
|
937
|
-
[() => BranchFilter$, () => EventMetadataFilterList]
|
|
938
|
-
];
|
|
939
|
-
var GetAgentCardRequest$ = [3, n0, _GACR,
|
|
940
|
-
0,
|
|
941
|
-
[_aRA, _rSI, _q],
|
|
942
|
-
[[0, 1], [0, { [_hH]: _XABARSI, [_iT]: 1 }], [0, { [_hQ]: _q }]], 1
|
|
943
|
-
];
|
|
944
|
-
var GetAgentCardResponse$ = [3, n0, _GACRe,
|
|
945
|
-
0,
|
|
946
|
-
[_aC, _rSI, _sCt],
|
|
947
|
-
[[15, 16], [0, { [_hH]: _XABARSI }], [1, 32]], 1
|
|
948
|
-
];
|
|
949
|
-
var GetBrowserSessionRequest$ = [3, n0, _GBSR,
|
|
950
|
-
0,
|
|
951
|
-
[_bI, _sI],
|
|
952
|
-
[[0, 1], [0, { [_hQ]: _sI }]], 2
|
|
953
|
-
];
|
|
954
|
-
var GetBrowserSessionResponse$ = [3, n0, _GBSRe,
|
|
955
|
-
0,
|
|
956
|
-
[_bI, _sI, _cA, _n, _vP, _ext, _pC, _sTS, _sta, _str, _pCr, _sRA, _lUA],
|
|
957
|
-
[0, 0, 5, 0, () => ViewPort$, () => BrowserExtensions, () => BrowserProfileConfiguration$, 1, 0, () => BrowserSessionStream$, () => ProxyConfiguration$, 0, 5], 3
|
|
958
|
-
];
|
|
959
|
-
var GetCodeInterpreterSessionRequest$ = [3, n0, _GCISR,
|
|
960
|
-
0,
|
|
961
|
-
[_cII, _sI],
|
|
962
|
-
[[0, 1], [0, { [_hQ]: _sI }]], 2
|
|
963
|
-
];
|
|
964
|
-
var GetCodeInterpreterSessionResponse$ = [3, n0, _GCISRe,
|
|
965
|
-
0,
|
|
966
|
-
[_cII, _sI, _cA, _n, _sTS, _sta],
|
|
967
|
-
[0, 0, 5, 0, 1, 0], 3
|
|
968
|
-
];
|
|
969
|
-
var GetEventInput$ = [3, n0, _GEI,
|
|
970
|
-
0,
|
|
971
|
-
[_mI, _sI, _aI, _eI],
|
|
972
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
973
|
-
];
|
|
974
|
-
var GetEventOutput$ = [3, n0, _GEO,
|
|
975
|
-
0,
|
|
976
|
-
[_ev],
|
|
977
|
-
[[() => Event$, 0]], 1
|
|
978
|
-
];
|
|
979
|
-
var GetMemoryRecordInput$ = [3, n0, _GMRI,
|
|
980
|
-
0,
|
|
981
|
-
[_mI, _mRI],
|
|
982
|
-
[[0, 1], [0, 1]], 2
|
|
983
|
-
];
|
|
984
|
-
var GetMemoryRecordOutput$ = [3, n0, _GMRO,
|
|
985
|
-
0,
|
|
986
|
-
[_mR],
|
|
987
|
-
[[() => MemoryRecord$, 0]], 1
|
|
988
|
-
];
|
|
989
|
-
var GetResourceApiKeyRequest$ = [3, n0, _GRAKR,
|
|
990
|
-
0,
|
|
991
|
-
[_wIT, _rCPN],
|
|
992
|
-
[[() => WorkloadIdentityTokenType, 0], 0], 2
|
|
993
|
-
];
|
|
994
|
-
var GetResourceApiKeyResponse$ = [3, n0, _GRAKRe,
|
|
995
|
-
0,
|
|
996
|
-
[_aK],
|
|
997
|
-
[[() => ApiKeyType, 0]], 1
|
|
998
|
-
];
|
|
999
|
-
var GetResourceOauth2TokenRequest$ = [3, n0, _GROTR,
|
|
1000
|
-
0,
|
|
1001
|
-
[_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP, _cS],
|
|
1002
|
-
[[() => WorkloadIdentityTokenType, 0], 0, 64 | 0, 0, 0, 0, 2, [() => CustomRequestParametersType, 0], [() => State, 0]], 4
|
|
1003
|
-
];
|
|
1004
|
-
var GetResourceOauth2TokenResponse$ = [3, n0, _GROTRe,
|
|
1005
|
-
0,
|
|
1006
|
-
[_aU, _aT, _sU, _sSe],
|
|
1007
|
-
[[() => AuthorizationUrlType, 0], [() => AccessTokenType, 0], 0, 0]
|
|
1008
|
-
];
|
|
1009
|
-
var GetWorkloadAccessTokenForJWTRequest$ = [3, n0, _GWATFJWTR,
|
|
1010
|
-
0,
|
|
1011
|
-
[_wN, _uT],
|
|
1012
|
-
[0, [() => UserTokenType, 0]], 2
|
|
1013
|
-
];
|
|
1014
|
-
var GetWorkloadAccessTokenForJWTResponse$ = [3, n0, _GWATFJWTRe,
|
|
1015
|
-
0,
|
|
1016
|
-
[_wAT],
|
|
1017
|
-
[[() => WorkloadIdentityTokenType, 0]], 1
|
|
1018
|
-
];
|
|
1019
|
-
var GetWorkloadAccessTokenForUserIdRequest$ = [3, n0, _GWATFUIR,
|
|
1020
|
-
0,
|
|
1021
|
-
[_wN, _uIs],
|
|
1022
|
-
[0, 0], 2
|
|
1023
|
-
];
|
|
1024
|
-
var GetWorkloadAccessTokenForUserIdResponse$ = [3, n0, _GWATFUIRe,
|
|
1025
|
-
0,
|
|
1026
|
-
[_wAT],
|
|
1027
|
-
[[() => WorkloadIdentityTokenType, 0]], 1
|
|
1028
|
-
];
|
|
1029
|
-
var GetWorkloadAccessTokenRequest$ = [3, n0, _GWATR,
|
|
1030
|
-
0,
|
|
1031
|
-
[_wN],
|
|
1032
|
-
[0], 1
|
|
1033
|
-
];
|
|
1034
|
-
var GetWorkloadAccessTokenResponse$ = [3, n0, _GWATRe,
|
|
1035
|
-
0,
|
|
1036
|
-
[_wAT],
|
|
1037
|
-
[[() => WorkloadIdentityTokenType, 0]], 1
|
|
1038
|
-
];
|
|
1039
|
-
var InputContentBlock$ = [3, n0, _ICB,
|
|
1040
|
-
0,
|
|
1041
|
-
[_pa, _te, _bl],
|
|
1042
|
-
[0, 0, [() => Body, 0]], 1
|
|
1043
|
-
];
|
|
1044
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1045
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1046
|
-
[_m],
|
|
1047
|
-
[0]
|
|
1048
|
-
];
|
|
1049
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1050
|
-
var InvalidInputException$ = [-3, n0, _IIE,
|
|
1051
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1052
|
-
[_m],
|
|
1053
|
-
[0], 1
|
|
1054
|
-
];
|
|
1055
|
-
schema.TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
|
|
1056
|
-
var InvokeAgentRuntimeRequest$ = [3, n0, _IARR,
|
|
1057
|
-
0,
|
|
1058
|
-
[_aRA, _p, _cTo, _a, _mSI, _rSI, _mPV, _rUI, _tI, _tP, _tS, _ba, _q, _aIc],
|
|
1059
|
-
[[0, 1], [() => Body, 16], [0, { [_hH]: _CT }], [0, { [_hH]: _A }], [0, { [_hH]: _MSI }], [0, { [_hH]: _XABARSI, [_iT]: 1 }], [0, { [_hH]: _MPV }], [0, { [_hH]: _XABARUI }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, { [_hH]: _tra }], [0, { [_hH]: _ba }], [0, { [_hQ]: _q }], [0, { [_hQ]: _aIc }]], 2
|
|
1060
|
-
];
|
|
1061
|
-
var InvokeAgentRuntimeResponse$ = [3, n0, _IARRn,
|
|
1062
|
-
0,
|
|
1063
|
-
[_cTo, _rSI, _mSI, _mPV, _tI, _tP, _tS, _ba, _res, _sCt],
|
|
1064
|
-
[[0, { [_hH]: _CT }], [0, { [_hH]: _XABARSI }], [0, { [_hH]: _MSI }], [0, { [_hH]: _MPV }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, { [_hH]: _tra }], [0, { [_hH]: _ba }], [() => ResponseStream, 16], [1, 32]], 1
|
|
1065
|
-
];
|
|
1066
|
-
var InvokeCodeInterpreterRequest$ = [3, n0, _ICIR,
|
|
1067
|
-
0,
|
|
1068
|
-
[_cII, _n, _sI, _tI, _tP, _ar],
|
|
1069
|
-
[[0, 1], 0, [0, { [_hH]: _xacisi }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [() => ToolArguments$, 0]], 2
|
|
1070
|
-
];
|
|
1071
|
-
var InvokeCodeInterpreterResponse$ = [3, n0, _ICIRn,
|
|
1072
|
-
0,
|
|
1073
|
-
[_stre, _sI],
|
|
1074
|
-
[[() => CodeInterpreterStreamOutput$, 16], [0, { [_hH]: _xacisi }]], 1
|
|
1075
|
-
];
|
|
1076
|
-
var ListActorsInput$ = [3, n0, _LAI,
|
|
1077
|
-
0,
|
|
1078
|
-
[_mI, _mRa, _nT],
|
|
1079
|
-
[[0, 1], 1, 0], 1
|
|
1080
|
-
];
|
|
1081
|
-
var ListActorsOutput$ = [3, n0, _LAO,
|
|
1082
|
-
0,
|
|
1083
|
-
[_aSc, _nT],
|
|
1084
|
-
[() => ActorSummaryList, 0], 1
|
|
1085
|
-
];
|
|
1086
|
-
var ListBrowserSessionsRequest$ = [3, n0, _LBSR,
|
|
1087
|
-
0,
|
|
1088
|
-
[_bI, _mRa, _nT, _sta],
|
|
1089
|
-
[[0, 1], 1, 0, 0], 1
|
|
1090
|
-
];
|
|
1091
|
-
var ListBrowserSessionsResponse$ = [3, n0, _LBSRi,
|
|
1092
|
-
0,
|
|
1093
|
-
[_i, _nT],
|
|
1094
|
-
[() => BrowserSessionSummaries, 0], 1
|
|
1095
|
-
];
|
|
1096
|
-
var ListCodeInterpreterSessionsRequest$ = [3, n0, _LCISR,
|
|
1097
|
-
0,
|
|
1098
|
-
[_cII, _mRa, _nT, _sta],
|
|
1099
|
-
[[0, 1], 1, 0, 0], 1
|
|
1100
|
-
];
|
|
1101
|
-
var ListCodeInterpreterSessionsResponse$ = [3, n0, _LCISRi,
|
|
1102
|
-
0,
|
|
1103
|
-
[_i, _nT],
|
|
1104
|
-
[() => CodeInterpreterSessionSummaries, 0], 1
|
|
1105
|
-
];
|
|
1106
|
-
var ListEventsInput$ = [3, n0, _LEI,
|
|
1107
|
-
0,
|
|
1108
|
-
[_mI, _sI, _aI, _iP, _f, _mRa, _nT],
|
|
1109
|
-
[[0, 1], [0, 1], [0, 1], 2, () => FilterInput$, 1, 0], 3
|
|
1110
|
-
];
|
|
1111
|
-
var ListEventsOutput$ = [3, n0, _LEO,
|
|
1112
|
-
0,
|
|
1113
|
-
[_eve, _nT],
|
|
1114
|
-
[[() => EventList, 0], 0], 1
|
|
1115
|
-
];
|
|
1116
|
-
var ListMemoryExtractionJobsInput$ = [3, n0, _LMEJI,
|
|
1117
|
-
0,
|
|
1118
|
-
[_mI, _mRa, _f, _nT],
|
|
1119
|
-
[[0, 1], 1, () => ExtractionJobFilterInput$, 0], 1
|
|
1120
|
-
];
|
|
1121
|
-
var ListMemoryExtractionJobsOutput$ = [3, n0, _LMEJO,
|
|
1122
|
-
0,
|
|
1123
|
-
[_j, _nT],
|
|
1124
|
-
[() => ExtractionJobMetadataList, 0], 1
|
|
1125
|
-
];
|
|
1126
|
-
var ListMemoryRecordsInput$ = [3, n0, _LMRI,
|
|
1127
|
-
0,
|
|
1128
|
-
[_mI, _na, _mSIe, _mRa, _nT],
|
|
1129
|
-
[[0, 1], 0, 0, 1, 0], 2
|
|
1130
|
-
];
|
|
1131
|
-
var ListMemoryRecordsOutput$ = [3, n0, _LMRO,
|
|
1132
|
-
0,
|
|
1133
|
-
[_mRS, _nT],
|
|
1134
|
-
[[() => MemoryRecordSummaryList, 0], 0], 1
|
|
1135
|
-
];
|
|
1136
|
-
var ListSessionsInput$ = [3, n0, _LSI,
|
|
1137
|
-
0,
|
|
1138
|
-
[_mI, _aI, _mRa, _nT],
|
|
1139
|
-
[[0, 1], [0, 1], 1, 0], 2
|
|
1140
|
-
];
|
|
1141
|
-
var ListSessionsOutput$ = [3, n0, _LSO,
|
|
1142
|
-
0,
|
|
1143
|
-
[_sSes, _nT],
|
|
1144
|
-
[() => SessionSummaryList, 0], 1
|
|
1145
|
-
];
|
|
1146
|
-
var LiveViewStream$ = [3, n0, _LVS,
|
|
1147
|
-
0,
|
|
1148
|
-
[_sE],
|
|
1149
|
-
[0]
|
|
1150
|
-
];
|
|
1151
|
-
var MemoryMetadataFilterExpression$ = [3, n0, _MMFE,
|
|
1152
|
-
0,
|
|
1153
|
-
[_le, _o, _ri],
|
|
1154
|
-
[() => LeftExpression$, 0, () => RightExpression$], 2
|
|
1155
|
-
];
|
|
1156
|
-
var MemoryRecord$ = [3, n0, _MR,
|
|
1157
|
-
0,
|
|
1158
|
-
[_mRI, _co, _mSIe, _nam, _cA, _me],
|
|
1159
|
-
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, () => MetadataMap], 5
|
|
1160
|
-
];
|
|
1161
|
-
var MemoryRecordCreateInput$ = [3, n0, _MRCI,
|
|
1162
|
-
0,
|
|
1163
|
-
[_rI, _nam, _co, _ti, _mSIe],
|
|
1164
|
-
[0, 64 | 0, [() => MemoryContent$, 0], 4, 0], 4
|
|
1165
|
-
];
|
|
1166
|
-
var MemoryRecordDeleteInput$ = [3, n0, _MRDI,
|
|
1167
|
-
0,
|
|
1168
|
-
[_mRI],
|
|
1169
|
-
[0], 1
|
|
1170
|
-
];
|
|
1171
|
-
var MemoryRecordOutput$ = [3, n0, _MRO,
|
|
1172
|
-
0,
|
|
1173
|
-
[_mRI, _sta, _rI, _eC, _eM],
|
|
1174
|
-
[0, 0, 0, 1, 0], 2
|
|
1175
|
-
];
|
|
1176
|
-
var MemoryRecordSummary$ = [3, n0, _MRS,
|
|
1177
|
-
0,
|
|
1178
|
-
[_mRI, _co, _mSIe, _nam, _cA, _sco, _me],
|
|
1179
|
-
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, 1, () => MetadataMap], 5
|
|
1180
|
-
];
|
|
1181
|
-
var MemoryRecordUpdateInput$ = [3, n0, _MRUI,
|
|
1182
|
-
0,
|
|
1183
|
-
[_mRI, _ti, _co, _nam, _mSIe],
|
|
1184
|
-
[0, 4, [() => MemoryContent$, 0], 64 | 0, 0], 2
|
|
1185
|
-
];
|
|
1186
|
-
var MessageMetadata$ = [3, n0, _MM,
|
|
1187
|
-
0,
|
|
1188
|
-
[_eI, _mIe],
|
|
1189
|
-
[0, 1], 2
|
|
1190
|
-
];
|
|
1191
|
-
var ProxyBypass$ = [3, n0, _PB,
|
|
1192
|
-
0,
|
|
1193
|
-
[_dP],
|
|
1194
|
-
[64 | 0]
|
|
1195
|
-
];
|
|
1196
|
-
var ProxyConfiguration$ = [3, n0, _PC,
|
|
1197
|
-
0,
|
|
1198
|
-
[_pr, _by],
|
|
1199
|
-
[() => Proxies, () => ProxyBypass$], 1
|
|
1200
|
-
];
|
|
1201
|
-
var ResourceContent$ = [3, n0, _RC,
|
|
1202
|
-
0,
|
|
1203
|
-
[_t, _u, _mT, _te, _bl],
|
|
1204
|
-
[0, 0, 0, 0, 21], 1
|
|
1205
|
-
];
|
|
1206
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1207
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1208
|
-
[_m],
|
|
1209
|
-
[0]
|
|
1210
|
-
];
|
|
1211
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1212
|
-
var RetrieveMemoryRecordsInput$ = [3, n0, _RMRI,
|
|
1213
|
-
0,
|
|
1214
|
-
[_mI, _na, _sCe, _nT, _mRa],
|
|
1215
|
-
[[0, 1], 0, [() => SearchCriteria$, 0], 0, 1], 3
|
|
1216
|
-
];
|
|
1217
|
-
var RetrieveMemoryRecordsOutput$ = [3, n0, _RMRO,
|
|
1218
|
-
0,
|
|
1219
|
-
[_mRS, _nT],
|
|
1220
|
-
[[() => MemoryRecordSummaryList, 0], 0], 1
|
|
1221
|
-
];
|
|
1222
|
-
var RetryableConflictException$ = [-3, n0, _RCE,
|
|
1223
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1224
|
-
[_m],
|
|
1225
|
-
[0], 1
|
|
1226
|
-
];
|
|
1227
|
-
schema.TypeRegistry.for(n0).registerError(RetryableConflictException$, RetryableConflictException);
|
|
1228
|
-
var RuntimeClientError$ = [-3, n0, _RCEu,
|
|
1229
|
-
{ [_e]: _c, [_hE]: 424 },
|
|
1230
|
-
[_m],
|
|
1231
|
-
[0]
|
|
1232
|
-
];
|
|
1233
|
-
schema.TypeRegistry.for(n0).registerError(RuntimeClientError$, RuntimeClientError);
|
|
1234
|
-
var S3Location$ = [3, n0, _SL,
|
|
1235
|
-
0,
|
|
1236
|
-
[_bu, _pre, _vI],
|
|
1237
|
-
[0, 0, 0], 2
|
|
1238
|
-
];
|
|
1239
|
-
var SaveBrowserSessionProfileRequest$ = [3, n0, _SBSPR,
|
|
1240
|
-
0,
|
|
1241
|
-
[_pI, _bI, _sI, _tI, _tP, _cT],
|
|
1242
|
-
[[0, 1], 0, 0, [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 4]], 3
|
|
1243
|
-
];
|
|
1244
|
-
var SaveBrowserSessionProfileResponse$ = [3, n0, _SBSPRa,
|
|
1245
|
-
0,
|
|
1246
|
-
[_pI, _bI, _sI, _lUA],
|
|
1247
|
-
[0, 0, 0, 5], 4
|
|
1248
|
-
];
|
|
1249
|
-
var SearchCriteria$ = [3, n0, _SC,
|
|
1250
|
-
0,
|
|
1251
|
-
[_sQ, _mSIe, _tK, _mF],
|
|
1252
|
-
[[() => SensitiveString, 0], 0, 1, () => MemoryMetadataFilterList], 1
|
|
1253
|
-
];
|
|
1254
|
-
var ServiceException$ = [-3, n0, _SE,
|
|
1255
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1256
|
-
[_m],
|
|
1257
|
-
[0], 1
|
|
1258
|
-
];
|
|
1259
|
-
schema.TypeRegistry.for(n0).registerError(ServiceException$, ServiceException);
|
|
1260
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1261
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1262
|
-
[_m],
|
|
1263
|
-
[0]
|
|
1264
|
-
];
|
|
1265
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1266
|
-
var SessionSummary$ = [3, n0, _SSe,
|
|
1267
|
-
0,
|
|
1268
|
-
[_sI, _aI, _cA],
|
|
1269
|
-
[0, 0, 4], 3
|
|
1270
|
-
];
|
|
1271
|
-
var SpanContext$ = [3, n0, _SCp,
|
|
1272
|
-
0,
|
|
1273
|
-
[_sI, _tI, _sIp],
|
|
1274
|
-
[0, 0, 0], 1
|
|
1275
|
-
];
|
|
1276
|
-
var StartBrowserSessionRequest$ = [3, n0, _SBSR,
|
|
1277
|
-
0,
|
|
1278
|
-
[_bI, _tI, _tP, _n, _sTS, _vP, _ext, _pC, _pCr, _cT],
|
|
1279
|
-
[[0, 1], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], 0, 1, () => ViewPort$, () => BrowserExtensions, () => BrowserProfileConfiguration$, () => ProxyConfiguration$, [0, 4]], 1
|
|
1280
|
-
];
|
|
1281
|
-
var StartBrowserSessionResponse$ = [3, n0, _SBSRt,
|
|
1282
|
-
0,
|
|
1283
|
-
[_bI, _sI, _cA, _str],
|
|
1284
|
-
[0, 0, 5, () => BrowserSessionStream$], 3
|
|
1285
|
-
];
|
|
1286
|
-
var StartCodeInterpreterSessionRequest$ = [3, n0, _SCISR,
|
|
1287
|
-
0,
|
|
1288
|
-
[_cII, _tI, _tP, _n, _sTS, _cT],
|
|
1289
|
-
[[0, 1], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], 0, 1, [0, 4]], 1
|
|
1290
|
-
];
|
|
1291
|
-
var StartCodeInterpreterSessionResponse$ = [3, n0, _SCISRt,
|
|
1292
|
-
0,
|
|
1293
|
-
[_cII, _sI, _cA],
|
|
1294
|
-
[0, 0, 5], 3
|
|
1295
|
-
];
|
|
1296
|
-
var StartMemoryExtractionJobInput$ = [3, n0, _SMEJI,
|
|
1297
|
-
0,
|
|
1298
|
-
[_mI, _eJ, _cT],
|
|
1299
|
-
[[0, 1], () => ExtractionJob$, [0, 4]], 2
|
|
1300
|
-
];
|
|
1301
|
-
var StartMemoryExtractionJobOutput$ = [3, n0, _SMEJO,
|
|
1302
|
-
0,
|
|
1303
|
-
[_jI],
|
|
1304
|
-
[0], 1
|
|
1305
|
-
];
|
|
1306
|
-
var StopBrowserSessionRequest$ = [3, n0, _SBSRto,
|
|
1307
|
-
0,
|
|
1308
|
-
[_bI, _sI, _tI, _tP, _cT],
|
|
1309
|
-
[[0, 1], [0, { [_hQ]: _sI }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 4]], 2
|
|
1310
|
-
];
|
|
1311
|
-
var StopBrowserSessionResponse$ = [3, n0, _SBSRtop,
|
|
1312
|
-
0,
|
|
1313
|
-
[_bI, _sI, _lUA],
|
|
1314
|
-
[0, 0, 5], 3
|
|
1315
|
-
];
|
|
1316
|
-
var StopCodeInterpreterSessionRequest$ = [3, n0, _SCISRto,
|
|
1317
|
-
0,
|
|
1318
|
-
[_cII, _sI, _tI, _tP, _cT],
|
|
1319
|
-
[[0, 1], [0, { [_hQ]: _sI }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 4]], 2
|
|
1320
|
-
];
|
|
1321
|
-
var StopCodeInterpreterSessionResponse$ = [3, n0, _SCISRtop,
|
|
1322
|
-
0,
|
|
1323
|
-
[_cII, _sI, _lUA],
|
|
1324
|
-
[0, 0, 5], 3
|
|
1325
|
-
];
|
|
1326
|
-
var StopRuntimeSessionRequest$ = [3, n0, _SRSR,
|
|
1327
|
-
0,
|
|
1328
|
-
[_rSI, _aRA, _q, _cT],
|
|
1329
|
-
[[0, { [_hH]: _XABARSI }], [0, 1], [0, { [_hQ]: _q }], [0, 4]], 2
|
|
1330
|
-
];
|
|
1331
|
-
var StopRuntimeSessionResponse$ = [3, n0, _SRSRt,
|
|
1332
|
-
0,
|
|
1333
|
-
[_rSI, _sCt],
|
|
1334
|
-
[[0, { [_hH]: _XABARSI }], [1, 32]]
|
|
1335
|
-
];
|
|
1336
|
-
var ThrottledException$ = [-3, n0, _TE,
|
|
1337
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1338
|
-
[_m],
|
|
1339
|
-
[0], 1
|
|
1340
|
-
];
|
|
1341
|
-
schema.TypeRegistry.for(n0).registerError(ThrottledException$, ThrottledException);
|
|
1342
|
-
var ThrottlingException$ = [-3, n0, _TEh,
|
|
1343
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1344
|
-
[_m],
|
|
1345
|
-
[0]
|
|
1346
|
-
];
|
|
1347
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1348
|
-
var TokenUsage$ = [3, n0, _TU,
|
|
1349
|
-
0,
|
|
1350
|
-
[_iTn, _oT, _tT],
|
|
1351
|
-
[1, 1, 1]
|
|
1352
|
-
];
|
|
1353
|
-
var ToolArguments$ = [3, n0, _TA,
|
|
1354
|
-
0,
|
|
1355
|
-
[_cod, _lan, _cC, _com, _pa, _pat, _co, _dPi, _tIa],
|
|
1356
|
-
[0, 0, 2, 0, 0, 64 | 0, [() => InputContentBlockList, 0], 0, 0]
|
|
1357
|
-
];
|
|
1358
|
-
var ToolResultStructuredContent$ = [3, n0, _TRSC,
|
|
1359
|
-
0,
|
|
1360
|
-
[_tIa, _tSa, _std, _stde, _eCx, _eTx],
|
|
1361
|
-
[0, 0, 0, 0, 1, 1]
|
|
1362
|
-
];
|
|
1363
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
1364
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
1365
|
-
[_m],
|
|
1366
|
-
[0]
|
|
1367
|
-
];
|
|
1368
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
1369
|
-
var UpdateBrowserStreamRequest$ = [3, n0, _UBSR,
|
|
1370
|
-
0,
|
|
1371
|
-
[_bI, _sI, _sUt, _cT],
|
|
1372
|
-
[[0, 1], [0, { [_hQ]: _sI }], () => StreamUpdate$, [0, 4]], 3
|
|
1373
|
-
];
|
|
1374
|
-
var UpdateBrowserStreamResponse$ = [3, n0, _UBSRp,
|
|
1375
|
-
0,
|
|
1376
|
-
[_bI, _sI, _str, _uA],
|
|
1377
|
-
[0, 0, () => BrowserSessionStream$, 5], 4
|
|
1378
|
-
];
|
|
1379
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1380
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1381
|
-
[_m, _rea, _fL],
|
|
1382
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
1383
|
-
];
|
|
1384
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1385
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1386
|
-
0,
|
|
1387
|
-
[_n, _m],
|
|
1388
|
-
[0, 0], 2
|
|
1389
|
-
];
|
|
1390
|
-
var ViewPort$ = [3, n0, _VP,
|
|
1391
|
-
0,
|
|
1392
|
-
[_w, _h],
|
|
1393
|
-
[1, 1], 2
|
|
1394
|
-
];
|
|
1395
|
-
var BedrockAgentCoreServiceException$ = [-3, _sm, "BedrockAgentCoreServiceException", 0, [], []];
|
|
1396
|
-
schema.TypeRegistry.for(_sm).registerError(BedrockAgentCoreServiceException$, BedrockAgentCoreServiceException);
|
|
1397
|
-
var ActorSummaryList = [1, n0, _ASL,
|
|
1398
|
-
0, () => ActorSummary$
|
|
1399
|
-
];
|
|
1400
|
-
var BrowserExtensions = [1, n0, _BEr,
|
|
1401
|
-
0, () => BrowserExtension$
|
|
1402
|
-
];
|
|
1403
|
-
var BrowserSessionSummaries = [1, n0, _BSSro,
|
|
1404
|
-
0, () => BrowserSessionSummary$
|
|
1405
|
-
];
|
|
1406
|
-
var CodeInterpreterSessionSummaries = [1, n0, _CISSo,
|
|
1407
|
-
0, () => CodeInterpreterSessionSummary$
|
|
1408
|
-
];
|
|
1409
|
-
var ContentBlockList = [1, n0, _CBL,
|
|
1410
|
-
0, () => ContentBlock$
|
|
1411
|
-
];
|
|
1412
|
-
var EvaluationResults = [1, n0, _ERva,
|
|
1413
|
-
0, [() => EvaluationResultContent$,
|
|
1414
|
-
0]
|
|
1415
|
-
];
|
|
1416
|
-
var EventList = [1, n0, _EL,
|
|
1417
|
-
0, [() => Event$,
|
|
1418
|
-
0]
|
|
1419
|
-
];
|
|
1420
|
-
var EventMetadataFilterList = [1, n0, _EMFL,
|
|
1421
|
-
0, () => EventMetadataFilterExpression$
|
|
1422
|
-
];
|
|
1423
|
-
var ExtractionJobMetadataList = [1, n0, _EJML,
|
|
1424
|
-
0, () => ExtractionJobMetadata$
|
|
1425
|
-
];
|
|
1426
|
-
var InputContentBlockList = [1, n0, _ICBL,
|
|
1427
|
-
0, [() => InputContentBlock$,
|
|
1428
|
-
0]
|
|
1429
|
-
];
|
|
1430
|
-
var MemoryMetadataFilterList = [1, n0, _MMFL,
|
|
1431
|
-
0, () => MemoryMetadataFilterExpression$
|
|
1432
|
-
];
|
|
1433
|
-
var MemoryRecordsCreateInputList = [1, n0, _MRCIL,
|
|
1434
|
-
0, [() => MemoryRecordCreateInput$,
|
|
1435
|
-
0]
|
|
1436
|
-
];
|
|
1437
|
-
var MemoryRecordsDeleteInputList = [1, n0, _MRDIL,
|
|
1438
|
-
0, () => MemoryRecordDeleteInput$
|
|
1439
|
-
];
|
|
1440
|
-
var MemoryRecordsOutputList = [1, n0, _MROL,
|
|
1441
|
-
0, () => MemoryRecordOutput$
|
|
1442
|
-
];
|
|
1443
|
-
var MemoryRecordSummaryList = [1, n0, _MRSL,
|
|
1444
|
-
0, [() => MemoryRecordSummary$,
|
|
1445
|
-
0]
|
|
1446
|
-
];
|
|
1447
|
-
var MemoryRecordsUpdateInputList = [1, n0, _MRUIL,
|
|
1448
|
-
0, [() => MemoryRecordUpdateInput$,
|
|
1449
|
-
0]
|
|
1450
|
-
];
|
|
1451
|
-
var MessagesList = [1, n0, _ML,
|
|
1452
|
-
0, () => MessageMetadata$
|
|
1453
|
-
];
|
|
1454
|
-
var PayloadTypeList = [1, n0, _PTL,
|
|
1455
|
-
0, [() => PayloadType$,
|
|
1456
|
-
0]
|
|
1457
|
-
];
|
|
1458
|
-
var Proxies = [1, n0, _P,
|
|
1459
|
-
0, () => Proxy$
|
|
1460
|
-
];
|
|
1461
|
-
var SessionSummaryList = [1, n0, _SSL,
|
|
1462
|
-
0, () => SessionSummary$
|
|
1463
|
-
];
|
|
1464
|
-
var Spans = [1, n0, _Sp,
|
|
1465
|
-
8, 15
|
|
1466
|
-
];
|
|
1467
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1468
|
-
0, () => ValidationExceptionField$
|
|
1469
|
-
];
|
|
1470
|
-
var CustomRequestParametersType = [2, n0, _CRPT,
|
|
1471
|
-
0, [0,
|
|
1472
|
-
0],
|
|
1473
|
-
[() => CustomRequestValueType,
|
|
1474
|
-
0]
|
|
1475
|
-
];
|
|
1476
|
-
var MetadataMap = [2, n0, _MMe,
|
|
1477
|
-
0, 0, () => MetadataValue$
|
|
1478
|
-
];
|
|
1479
|
-
var CodeInterpreterStreamOutput$ = [4, n0, _CISO,
|
|
1480
|
-
{ [_st]: 1 },
|
|
1481
|
-
[_resu, _aDE, _cE, _iSE, _rNFE, _sQEE, _tE, _vE],
|
|
1482
|
-
[() => CodeInterpreterResult$, [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => InternalServerException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => ValidationException$, 0]]
|
|
1483
|
-
];
|
|
1484
|
-
var Content$ = [4, n0, _Co,
|
|
1485
|
-
0,
|
|
1486
|
-
[_te],
|
|
1487
|
-
[[() => SensitiveString, 0]]
|
|
1488
|
-
];
|
|
1489
|
-
var Context$ = [4, n0, _Con,
|
|
1490
|
-
0,
|
|
1491
|
-
[_sCp],
|
|
1492
|
-
[() => SpanContext$]
|
|
1493
|
-
];
|
|
1494
|
-
var EvaluationInput$ = [4, n0, _EI,
|
|
1495
|
-
0,
|
|
1496
|
-
[_sSess],
|
|
1497
|
-
[[() => Spans, 0]]
|
|
1498
|
-
];
|
|
1499
|
-
var EvaluationTarget$ = [4, n0, _ET,
|
|
1500
|
-
0,
|
|
1501
|
-
[_sIpa, _tIr],
|
|
1502
|
-
[64 | 0, 64 | 0]
|
|
1503
|
-
];
|
|
1504
|
-
var ExtractionJobMessages$ = [4, n0, _EJMx,
|
|
1505
|
-
0,
|
|
1506
|
-
[_mL],
|
|
1507
|
-
[() => MessagesList]
|
|
1508
|
-
];
|
|
1509
|
-
var LeftExpression$ = [4, n0, _LE,
|
|
1510
|
-
0,
|
|
1511
|
-
[_mK],
|
|
1512
|
-
[0]
|
|
1513
|
-
];
|
|
1514
|
-
var MemoryContent$ = [4, n0, _MC,
|
|
1515
|
-
0,
|
|
1516
|
-
[_te],
|
|
1517
|
-
[[() => SensitiveString, 0]]
|
|
1518
|
-
];
|
|
1519
|
-
var MetadataValue$ = [4, n0, _MV,
|
|
1520
|
-
0,
|
|
1521
|
-
[_sV],
|
|
1522
|
-
[0]
|
|
1523
|
-
];
|
|
1524
|
-
var PayloadType$ = [4, n0, _PT,
|
|
1525
|
-
0,
|
|
1526
|
-
[_conv, _bl],
|
|
1527
|
-
[[() => Conversational$, 0], [() => Document, 0]]
|
|
1528
|
-
];
|
|
1529
|
-
var Proxy$ = [4, n0, _Pr,
|
|
1530
|
-
0,
|
|
1531
|
-
[_eP],
|
|
1532
|
-
[() => ExternalProxy$]
|
|
1533
|
-
];
|
|
1534
|
-
var ProxyCredentials$ = [4, n0, _PCr,
|
|
1535
|
-
0,
|
|
1536
|
-
[_bA],
|
|
1537
|
-
[() => BasicAuth$]
|
|
1538
|
-
];
|
|
1539
|
-
var ResourceLocation$ = [4, n0, _RL,
|
|
1540
|
-
0,
|
|
1541
|
-
[_s_],
|
|
1542
|
-
[() => S3Location$]
|
|
1543
|
-
];
|
|
1544
|
-
var RightExpression$ = [4, n0, _RE,
|
|
1545
|
-
0,
|
|
1546
|
-
[_mV],
|
|
1547
|
-
[() => MetadataValue$]
|
|
1548
|
-
];
|
|
1549
|
-
var StreamUpdate$ = [4, n0, _SU,
|
|
1550
|
-
0,
|
|
1551
|
-
[_aSU],
|
|
1552
|
-
[() => AutomationStreamUpdate$]
|
|
1553
|
-
];
|
|
1554
|
-
var UserIdentifier$ = [4, n0, _UI,
|
|
1555
|
-
0,
|
|
1556
|
-
[_uT, _uIs],
|
|
1557
|
-
[[() => UserTokenType, 0], 0]
|
|
1558
|
-
];
|
|
1559
|
-
var BatchCreateMemoryRecords$ = [9, n0, _BCMR,
|
|
1560
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchCreate", 201] }, () => BatchCreateMemoryRecordsInput$, () => BatchCreateMemoryRecordsOutput$
|
|
1561
|
-
];
|
|
1562
|
-
var BatchDeleteMemoryRecords$ = [9, n0, _BDMR,
|
|
1563
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchDelete", 200] }, () => BatchDeleteMemoryRecordsInput$, () => BatchDeleteMemoryRecordsOutput$
|
|
1564
|
-
];
|
|
1565
|
-
var BatchUpdateMemoryRecords$ = [9, n0, _BUMR,
|
|
1566
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchUpdate", 200] }, () => BatchUpdateMemoryRecordsInput$, () => BatchUpdateMemoryRecordsOutput$
|
|
1567
|
-
];
|
|
1568
|
-
var CompleteResourceTokenAuth$ = [9, n0, _CRTA,
|
|
1569
|
-
{ [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200] }, () => CompleteResourceTokenAuthRequest$, () => CompleteResourceTokenAuthResponse$
|
|
1570
|
-
];
|
|
1571
|
-
var CreateEvent$ = [9, n0, _CEr,
|
|
1572
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/events", 201] }, () => CreateEventInput$, () => CreateEventOutput$
|
|
1573
|
-
];
|
|
1574
|
-
var DeleteEvent$ = [9, n0, _DE,
|
|
1575
|
-
{ [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] }, () => DeleteEventInput$, () => DeleteEventOutput$
|
|
1576
|
-
];
|
|
1577
|
-
var DeleteMemoryRecord$ = [9, n0, _DMR,
|
|
1578
|
-
{ [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200] }, () => DeleteMemoryRecordInput$, () => DeleteMemoryRecordOutput$
|
|
1579
|
-
];
|
|
1580
|
-
var Evaluate$ = [9, n0, _Ev,
|
|
1581
|
-
{ [_ht]: ["POST", "/evaluations/evaluate/{evaluatorId}", 200] }, () => EvaluateRequest$, () => EvaluateResponse$
|
|
1582
|
-
];
|
|
1583
|
-
var GetAgentCard$ = [9, n0, _GAC,
|
|
1584
|
-
{ [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200] }, () => GetAgentCardRequest$, () => GetAgentCardResponse$
|
|
1585
|
-
];
|
|
1586
|
-
var GetBrowserSession$ = [9, n0, _GBS,
|
|
1587
|
-
{ [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200] }, () => GetBrowserSessionRequest$, () => GetBrowserSessionResponse$
|
|
1588
|
-
];
|
|
1589
|
-
var GetCodeInterpreterSession$ = [9, n0, _GCIS,
|
|
1590
|
-
{ [_ht]: ["GET", "/code-interpreters/{codeInterpreterIdentifier}/sessions/get", 200] }, () => GetCodeInterpreterSessionRequest$, () => GetCodeInterpreterSessionResponse$
|
|
1591
|
-
];
|
|
1592
|
-
var GetEvent$ = [9, n0, _GE,
|
|
1593
|
-
{ [_ht]: ["GET", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] }, () => GetEventInput$, () => GetEventOutput$
|
|
1594
|
-
];
|
|
1595
|
-
var GetMemoryRecord$ = [9, n0, _GMR,
|
|
1596
|
-
{ [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200] }, () => GetMemoryRecordInput$, () => GetMemoryRecordOutput$
|
|
1597
|
-
];
|
|
1598
|
-
var GetResourceApiKey$ = [9, n0, _GRAK,
|
|
1599
|
-
{ [_ht]: ["POST", "/identities/api-key", 200] }, () => GetResourceApiKeyRequest$, () => GetResourceApiKeyResponse$
|
|
1600
|
-
];
|
|
1601
|
-
var GetResourceOauth2Token$ = [9, n0, _GROT,
|
|
1602
|
-
{ [_ht]: ["POST", "/identities/oauth2/token", 200] }, () => GetResourceOauth2TokenRequest$, () => GetResourceOauth2TokenResponse$
|
|
1603
|
-
];
|
|
1604
|
-
var GetWorkloadAccessToken$ = [9, n0, _GWAT,
|
|
1605
|
-
{ [_ht]: ["POST", "/identities/GetWorkloadAccessToken", 200] }, () => GetWorkloadAccessTokenRequest$, () => GetWorkloadAccessTokenResponse$
|
|
1606
|
-
];
|
|
1607
|
-
var GetWorkloadAccessTokenForJWT$ = [9, n0, _GWATFJWT,
|
|
1608
|
-
{ [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForJWT", 200] }, () => GetWorkloadAccessTokenForJWTRequest$, () => GetWorkloadAccessTokenForJWTResponse$
|
|
1609
|
-
];
|
|
1610
|
-
var GetWorkloadAccessTokenForUserId$ = [9, n0, _GWATFUI,
|
|
1611
|
-
{ [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForUserId", 200] }, () => GetWorkloadAccessTokenForUserIdRequest$, () => GetWorkloadAccessTokenForUserIdResponse$
|
|
1612
|
-
];
|
|
1613
|
-
var InvokeAgentRuntime$ = [9, n0, _IAR,
|
|
1614
|
-
{ [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/invocations", 200] }, () => InvokeAgentRuntimeRequest$, () => InvokeAgentRuntimeResponse$
|
|
1615
|
-
];
|
|
1616
|
-
var InvokeCodeInterpreter$ = [9, n0, _ICI,
|
|
1617
|
-
{ [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/tools/invoke", 200] }, () => InvokeCodeInterpreterRequest$, () => InvokeCodeInterpreterResponse$
|
|
1618
|
-
];
|
|
1619
|
-
var ListActors$ = [9, n0, _LA,
|
|
1620
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/actors", 200] }, () => ListActorsInput$, () => ListActorsOutput$
|
|
1621
|
-
];
|
|
1622
|
-
var ListBrowserSessions$ = [9, n0, _LBS,
|
|
1623
|
-
{ [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200] }, () => ListBrowserSessionsRequest$, () => ListBrowserSessionsResponse$
|
|
1624
|
-
];
|
|
1625
|
-
var ListCodeInterpreterSessions$ = [9, n0, _LCIS,
|
|
1626
|
-
{ [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/sessions/list", 200] }, () => ListCodeInterpreterSessionsRequest$, () => ListCodeInterpreterSessionsResponse$
|
|
1627
|
-
];
|
|
1628
|
-
var ListEvents$ = [9, n0, _LEi,
|
|
1629
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}", 200] }, () => ListEventsInput$, () => ListEventsOutput$
|
|
1630
|
-
];
|
|
1631
|
-
var ListMemoryExtractionJobs$ = [9, n0, _LMEJ,
|
|
1632
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/extractionJobs", 200] }, () => ListMemoryExtractionJobsInput$, () => ListMemoryExtractionJobsOutput$
|
|
1633
|
-
];
|
|
1634
|
-
var ListMemoryRecords$ = [9, n0, _LMR,
|
|
1635
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200] }, () => ListMemoryRecordsInput$, () => ListMemoryRecordsOutput$
|
|
1636
|
-
];
|
|
1637
|
-
var ListSessions$ = [9, n0, _LS,
|
|
1638
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200] }, () => ListSessionsInput$, () => ListSessionsOutput$
|
|
1639
|
-
];
|
|
1640
|
-
var RetrieveMemoryRecords$ = [9, n0, _RMR,
|
|
1641
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/retrieve", 200] }, () => RetrieveMemoryRecordsInput$, () => RetrieveMemoryRecordsOutput$
|
|
1642
|
-
];
|
|
1643
|
-
var SaveBrowserSessionProfile$ = [9, n0, _SBSP,
|
|
1644
|
-
{ [_ht]: ["PUT", "/browser-profiles/{profileIdentifier}/save", 200] }, () => SaveBrowserSessionProfileRequest$, () => SaveBrowserSessionProfileResponse$
|
|
1645
|
-
];
|
|
1646
|
-
var StartBrowserSession$ = [9, n0, _SBS,
|
|
1647
|
-
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200] }, () => StartBrowserSessionRequest$, () => StartBrowserSessionResponse$
|
|
1648
|
-
];
|
|
1649
|
-
var StartCodeInterpreterSession$ = [9, n0, _SCIS,
|
|
1650
|
-
{ [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/start", 200] }, () => StartCodeInterpreterSessionRequest$, () => StartCodeInterpreterSessionResponse$
|
|
1651
|
-
];
|
|
1652
|
-
var StartMemoryExtractionJob$ = [9, n0, _SMEJ,
|
|
1653
|
-
{ [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200] }, () => StartMemoryExtractionJobInput$, () => StartMemoryExtractionJobOutput$
|
|
1654
|
-
];
|
|
1655
|
-
var StopBrowserSession$ = [9, n0, _SBSt,
|
|
1656
|
-
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200] }, () => StopBrowserSessionRequest$, () => StopBrowserSessionResponse$
|
|
1657
|
-
];
|
|
1658
|
-
var StopCodeInterpreterSession$ = [9, n0, _SCISt,
|
|
1659
|
-
{ [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/stop", 200] }, () => StopCodeInterpreterSessionRequest$, () => StopCodeInterpreterSessionResponse$
|
|
1660
|
-
];
|
|
1661
|
-
var StopRuntimeSession$ = [9, n0, _SRS,
|
|
1662
|
-
{ [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200] }, () => StopRuntimeSessionRequest$, () => StopRuntimeSessionResponse$
|
|
1663
|
-
];
|
|
1664
|
-
var UpdateBrowserStream$ = [9, n0, _UBS,
|
|
1665
|
-
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200] }, () => UpdateBrowserStreamRequest$, () => UpdateBrowserStreamResponse$
|
|
1666
|
-
];
|
|
1667
|
-
|
|
1668
118
|
class BatchCreateMemoryRecordsCommand extends smithyClient.Command
|
|
1669
119
|
.classBuilder()
|
|
1670
120
|
.ep(commonParams)
|
|
@@ -1673,7 +123,7 @@ class BatchCreateMemoryRecordsCommand extends smithyClient.Command
|
|
|
1673
123
|
})
|
|
1674
124
|
.s("AmazonBedrockAgentCore", "BatchCreateMemoryRecords", {})
|
|
1675
125
|
.n("BedrockAgentCoreClient", "BatchCreateMemoryRecordsCommand")
|
|
1676
|
-
.sc(BatchCreateMemoryRecords$)
|
|
126
|
+
.sc(schemas_0.BatchCreateMemoryRecords$)
|
|
1677
127
|
.build() {
|
|
1678
128
|
}
|
|
1679
129
|
|
|
@@ -1685,7 +135,7 @@ class BatchDeleteMemoryRecordsCommand extends smithyClient.Command
|
|
|
1685
135
|
})
|
|
1686
136
|
.s("AmazonBedrockAgentCore", "BatchDeleteMemoryRecords", {})
|
|
1687
137
|
.n("BedrockAgentCoreClient", "BatchDeleteMemoryRecordsCommand")
|
|
1688
|
-
.sc(BatchDeleteMemoryRecords$)
|
|
138
|
+
.sc(schemas_0.BatchDeleteMemoryRecords$)
|
|
1689
139
|
.build() {
|
|
1690
140
|
}
|
|
1691
141
|
|
|
@@ -1697,7 +147,7 @@ class BatchUpdateMemoryRecordsCommand extends smithyClient.Command
|
|
|
1697
147
|
})
|
|
1698
148
|
.s("AmazonBedrockAgentCore", "BatchUpdateMemoryRecords", {})
|
|
1699
149
|
.n("BedrockAgentCoreClient", "BatchUpdateMemoryRecordsCommand")
|
|
1700
|
-
.sc(BatchUpdateMemoryRecords$)
|
|
150
|
+
.sc(schemas_0.BatchUpdateMemoryRecords$)
|
|
1701
151
|
.build() {
|
|
1702
152
|
}
|
|
1703
153
|
|
|
@@ -1709,7 +159,7 @@ class CompleteResourceTokenAuthCommand extends smithyClient.Command
|
|
|
1709
159
|
})
|
|
1710
160
|
.s("AmazonBedrockAgentCore", "CompleteResourceTokenAuth", {})
|
|
1711
161
|
.n("BedrockAgentCoreClient", "CompleteResourceTokenAuthCommand")
|
|
1712
|
-
.sc(CompleteResourceTokenAuth$)
|
|
162
|
+
.sc(schemas_0.CompleteResourceTokenAuth$)
|
|
1713
163
|
.build() {
|
|
1714
164
|
}
|
|
1715
165
|
|
|
@@ -1721,7 +171,7 @@ class CreateEventCommand extends smithyClient.Command
|
|
|
1721
171
|
})
|
|
1722
172
|
.s("AmazonBedrockAgentCore", "CreateEvent", {})
|
|
1723
173
|
.n("BedrockAgentCoreClient", "CreateEventCommand")
|
|
1724
|
-
.sc(CreateEvent$)
|
|
174
|
+
.sc(schemas_0.CreateEvent$)
|
|
1725
175
|
.build() {
|
|
1726
176
|
}
|
|
1727
177
|
|
|
@@ -1733,7 +183,7 @@ class DeleteEventCommand extends smithyClient.Command
|
|
|
1733
183
|
})
|
|
1734
184
|
.s("AmazonBedrockAgentCore", "DeleteEvent", {})
|
|
1735
185
|
.n("BedrockAgentCoreClient", "DeleteEventCommand")
|
|
1736
|
-
.sc(DeleteEvent$)
|
|
186
|
+
.sc(schemas_0.DeleteEvent$)
|
|
1737
187
|
.build() {
|
|
1738
188
|
}
|
|
1739
189
|
|
|
@@ -1745,7 +195,7 @@ class DeleteMemoryRecordCommand extends smithyClient.Command
|
|
|
1745
195
|
})
|
|
1746
196
|
.s("AmazonBedrockAgentCore", "DeleteMemoryRecord", {})
|
|
1747
197
|
.n("BedrockAgentCoreClient", "DeleteMemoryRecordCommand")
|
|
1748
|
-
.sc(DeleteMemoryRecord$)
|
|
198
|
+
.sc(schemas_0.DeleteMemoryRecord$)
|
|
1749
199
|
.build() {
|
|
1750
200
|
}
|
|
1751
201
|
|
|
@@ -1757,7 +207,7 @@ class EvaluateCommand extends smithyClient.Command
|
|
|
1757
207
|
})
|
|
1758
208
|
.s("AmazonBedrockAgentCore", "Evaluate", {})
|
|
1759
209
|
.n("BedrockAgentCoreClient", "EvaluateCommand")
|
|
1760
|
-
.sc(Evaluate$)
|
|
210
|
+
.sc(schemas_0.Evaluate$)
|
|
1761
211
|
.build() {
|
|
1762
212
|
}
|
|
1763
213
|
|
|
@@ -1769,7 +219,7 @@ class GetAgentCardCommand extends smithyClient.Command
|
|
|
1769
219
|
})
|
|
1770
220
|
.s("AmazonBedrockAgentCore", "GetAgentCard", {})
|
|
1771
221
|
.n("BedrockAgentCoreClient", "GetAgentCardCommand")
|
|
1772
|
-
.sc(GetAgentCard$)
|
|
222
|
+
.sc(schemas_0.GetAgentCard$)
|
|
1773
223
|
.build() {
|
|
1774
224
|
}
|
|
1775
225
|
|
|
@@ -1781,7 +231,7 @@ class GetBrowserSessionCommand extends smithyClient.Command
|
|
|
1781
231
|
})
|
|
1782
232
|
.s("AmazonBedrockAgentCore", "GetBrowserSession", {})
|
|
1783
233
|
.n("BedrockAgentCoreClient", "GetBrowserSessionCommand")
|
|
1784
|
-
.sc(GetBrowserSession$)
|
|
234
|
+
.sc(schemas_0.GetBrowserSession$)
|
|
1785
235
|
.build() {
|
|
1786
236
|
}
|
|
1787
237
|
|
|
@@ -1793,7 +243,7 @@ class GetCodeInterpreterSessionCommand extends smithyClient.Command
|
|
|
1793
243
|
})
|
|
1794
244
|
.s("AmazonBedrockAgentCore", "GetCodeInterpreterSession", {})
|
|
1795
245
|
.n("BedrockAgentCoreClient", "GetCodeInterpreterSessionCommand")
|
|
1796
|
-
.sc(GetCodeInterpreterSession$)
|
|
246
|
+
.sc(schemas_0.GetCodeInterpreterSession$)
|
|
1797
247
|
.build() {
|
|
1798
248
|
}
|
|
1799
249
|
|
|
@@ -1805,7 +255,7 @@ class GetEventCommand extends smithyClient.Command
|
|
|
1805
255
|
})
|
|
1806
256
|
.s("AmazonBedrockAgentCore", "GetEvent", {})
|
|
1807
257
|
.n("BedrockAgentCoreClient", "GetEventCommand")
|
|
1808
|
-
.sc(GetEvent$)
|
|
258
|
+
.sc(schemas_0.GetEvent$)
|
|
1809
259
|
.build() {
|
|
1810
260
|
}
|
|
1811
261
|
|
|
@@ -1817,7 +267,7 @@ class GetMemoryRecordCommand extends smithyClient.Command
|
|
|
1817
267
|
})
|
|
1818
268
|
.s("AmazonBedrockAgentCore", "GetMemoryRecord", {})
|
|
1819
269
|
.n("BedrockAgentCoreClient", "GetMemoryRecordCommand")
|
|
1820
|
-
.sc(GetMemoryRecord$)
|
|
270
|
+
.sc(schemas_0.GetMemoryRecord$)
|
|
1821
271
|
.build() {
|
|
1822
272
|
}
|
|
1823
273
|
|
|
@@ -1829,7 +279,7 @@ class GetResourceApiKeyCommand extends smithyClient.Command
|
|
|
1829
279
|
})
|
|
1830
280
|
.s("AmazonBedrockAgentCore", "GetResourceApiKey", {})
|
|
1831
281
|
.n("BedrockAgentCoreClient", "GetResourceApiKeyCommand")
|
|
1832
|
-
.sc(GetResourceApiKey$)
|
|
282
|
+
.sc(schemas_0.GetResourceApiKey$)
|
|
1833
283
|
.build() {
|
|
1834
284
|
}
|
|
1835
285
|
|
|
@@ -1841,7 +291,7 @@ class GetResourceOauth2TokenCommand extends smithyClient.Command
|
|
|
1841
291
|
})
|
|
1842
292
|
.s("AmazonBedrockAgentCore", "GetResourceOauth2Token", {})
|
|
1843
293
|
.n("BedrockAgentCoreClient", "GetResourceOauth2TokenCommand")
|
|
1844
|
-
.sc(GetResourceOauth2Token$)
|
|
294
|
+
.sc(schemas_0.GetResourceOauth2Token$)
|
|
1845
295
|
.build() {
|
|
1846
296
|
}
|
|
1847
297
|
|
|
@@ -1853,7 +303,7 @@ class GetWorkloadAccessTokenCommand extends smithyClient.Command
|
|
|
1853
303
|
})
|
|
1854
304
|
.s("AmazonBedrockAgentCore", "GetWorkloadAccessToken", {})
|
|
1855
305
|
.n("BedrockAgentCoreClient", "GetWorkloadAccessTokenCommand")
|
|
1856
|
-
.sc(GetWorkloadAccessToken$)
|
|
306
|
+
.sc(schemas_0.GetWorkloadAccessToken$)
|
|
1857
307
|
.build() {
|
|
1858
308
|
}
|
|
1859
309
|
|
|
@@ -1865,7 +315,7 @@ class GetWorkloadAccessTokenForJWTCommand extends smithyClient.Command
|
|
|
1865
315
|
})
|
|
1866
316
|
.s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForJWT", {})
|
|
1867
317
|
.n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForJWTCommand")
|
|
1868
|
-
.sc(GetWorkloadAccessTokenForJWT$)
|
|
318
|
+
.sc(schemas_0.GetWorkloadAccessTokenForJWT$)
|
|
1869
319
|
.build() {
|
|
1870
320
|
}
|
|
1871
321
|
|
|
@@ -1877,7 +327,7 @@ class GetWorkloadAccessTokenForUserIdCommand extends smithyClient.Command
|
|
|
1877
327
|
})
|
|
1878
328
|
.s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForUserId", {})
|
|
1879
329
|
.n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForUserIdCommand")
|
|
1880
|
-
.sc(GetWorkloadAccessTokenForUserId$)
|
|
330
|
+
.sc(schemas_0.GetWorkloadAccessTokenForUserId$)
|
|
1881
331
|
.build() {
|
|
1882
332
|
}
|
|
1883
333
|
|
|
@@ -1889,7 +339,7 @@ class InvokeAgentRuntimeCommand extends smithyClient.Command
|
|
|
1889
339
|
})
|
|
1890
340
|
.s("AmazonBedrockAgentCore", "InvokeAgentRuntime", {})
|
|
1891
341
|
.n("BedrockAgentCoreClient", "InvokeAgentRuntimeCommand")
|
|
1892
|
-
.sc(InvokeAgentRuntime$)
|
|
342
|
+
.sc(schemas_0.InvokeAgentRuntime$)
|
|
1893
343
|
.build() {
|
|
1894
344
|
}
|
|
1895
345
|
|
|
@@ -1905,7 +355,7 @@ class InvokeCodeInterpreterCommand extends smithyClient.Command
|
|
|
1905
355
|
},
|
|
1906
356
|
})
|
|
1907
357
|
.n("BedrockAgentCoreClient", "InvokeCodeInterpreterCommand")
|
|
1908
|
-
.sc(InvokeCodeInterpreter$)
|
|
358
|
+
.sc(schemas_0.InvokeCodeInterpreter$)
|
|
1909
359
|
.build() {
|
|
1910
360
|
}
|
|
1911
361
|
|
|
@@ -1917,7 +367,7 @@ class ListActorsCommand extends smithyClient.Command
|
|
|
1917
367
|
})
|
|
1918
368
|
.s("AmazonBedrockAgentCore", "ListActors", {})
|
|
1919
369
|
.n("BedrockAgentCoreClient", "ListActorsCommand")
|
|
1920
|
-
.sc(ListActors$)
|
|
370
|
+
.sc(schemas_0.ListActors$)
|
|
1921
371
|
.build() {
|
|
1922
372
|
}
|
|
1923
373
|
|
|
@@ -1929,7 +379,7 @@ class ListBrowserSessionsCommand extends smithyClient.Command
|
|
|
1929
379
|
})
|
|
1930
380
|
.s("AmazonBedrockAgentCore", "ListBrowserSessions", {})
|
|
1931
381
|
.n("BedrockAgentCoreClient", "ListBrowserSessionsCommand")
|
|
1932
|
-
.sc(ListBrowserSessions$)
|
|
382
|
+
.sc(schemas_0.ListBrowserSessions$)
|
|
1933
383
|
.build() {
|
|
1934
384
|
}
|
|
1935
385
|
|
|
@@ -1941,7 +391,7 @@ class ListCodeInterpreterSessionsCommand extends smithyClient.Command
|
|
|
1941
391
|
})
|
|
1942
392
|
.s("AmazonBedrockAgentCore", "ListCodeInterpreterSessions", {})
|
|
1943
393
|
.n("BedrockAgentCoreClient", "ListCodeInterpreterSessionsCommand")
|
|
1944
|
-
.sc(ListCodeInterpreterSessions$)
|
|
394
|
+
.sc(schemas_0.ListCodeInterpreterSessions$)
|
|
1945
395
|
.build() {
|
|
1946
396
|
}
|
|
1947
397
|
|
|
@@ -1953,7 +403,7 @@ class ListEventsCommand extends smithyClient.Command
|
|
|
1953
403
|
})
|
|
1954
404
|
.s("AmazonBedrockAgentCore", "ListEvents", {})
|
|
1955
405
|
.n("BedrockAgentCoreClient", "ListEventsCommand")
|
|
1956
|
-
.sc(ListEvents$)
|
|
406
|
+
.sc(schemas_0.ListEvents$)
|
|
1957
407
|
.build() {
|
|
1958
408
|
}
|
|
1959
409
|
|
|
@@ -1965,7 +415,7 @@ class ListMemoryExtractionJobsCommand extends smithyClient.Command
|
|
|
1965
415
|
})
|
|
1966
416
|
.s("AmazonBedrockAgentCore", "ListMemoryExtractionJobs", {})
|
|
1967
417
|
.n("BedrockAgentCoreClient", "ListMemoryExtractionJobsCommand")
|
|
1968
|
-
.sc(ListMemoryExtractionJobs$)
|
|
418
|
+
.sc(schemas_0.ListMemoryExtractionJobs$)
|
|
1969
419
|
.build() {
|
|
1970
420
|
}
|
|
1971
421
|
|
|
@@ -1977,7 +427,7 @@ class ListMemoryRecordsCommand extends smithyClient.Command
|
|
|
1977
427
|
})
|
|
1978
428
|
.s("AmazonBedrockAgentCore", "ListMemoryRecords", {})
|
|
1979
429
|
.n("BedrockAgentCoreClient", "ListMemoryRecordsCommand")
|
|
1980
|
-
.sc(ListMemoryRecords$)
|
|
430
|
+
.sc(schemas_0.ListMemoryRecords$)
|
|
1981
431
|
.build() {
|
|
1982
432
|
}
|
|
1983
433
|
|
|
@@ -1989,7 +439,7 @@ class ListSessionsCommand extends smithyClient.Command
|
|
|
1989
439
|
})
|
|
1990
440
|
.s("AmazonBedrockAgentCore", "ListSessions", {})
|
|
1991
441
|
.n("BedrockAgentCoreClient", "ListSessionsCommand")
|
|
1992
|
-
.sc(ListSessions$)
|
|
442
|
+
.sc(schemas_0.ListSessions$)
|
|
1993
443
|
.build() {
|
|
1994
444
|
}
|
|
1995
445
|
|
|
@@ -2001,7 +451,7 @@ class RetrieveMemoryRecordsCommand extends smithyClient.Command
|
|
|
2001
451
|
})
|
|
2002
452
|
.s("AmazonBedrockAgentCore", "RetrieveMemoryRecords", {})
|
|
2003
453
|
.n("BedrockAgentCoreClient", "RetrieveMemoryRecordsCommand")
|
|
2004
|
-
.sc(RetrieveMemoryRecords$)
|
|
454
|
+
.sc(schemas_0.RetrieveMemoryRecords$)
|
|
2005
455
|
.build() {
|
|
2006
456
|
}
|
|
2007
457
|
|
|
@@ -2013,7 +463,7 @@ class SaveBrowserSessionProfileCommand extends smithyClient.Command
|
|
|
2013
463
|
})
|
|
2014
464
|
.s("AmazonBedrockAgentCore", "SaveBrowserSessionProfile", {})
|
|
2015
465
|
.n("BedrockAgentCoreClient", "SaveBrowserSessionProfileCommand")
|
|
2016
|
-
.sc(SaveBrowserSessionProfile$)
|
|
466
|
+
.sc(schemas_0.SaveBrowserSessionProfile$)
|
|
2017
467
|
.build() {
|
|
2018
468
|
}
|
|
2019
469
|
|
|
@@ -2025,7 +475,7 @@ class StartBrowserSessionCommand extends smithyClient.Command
|
|
|
2025
475
|
})
|
|
2026
476
|
.s("AmazonBedrockAgentCore", "StartBrowserSession", {})
|
|
2027
477
|
.n("BedrockAgentCoreClient", "StartBrowserSessionCommand")
|
|
2028
|
-
.sc(StartBrowserSession$)
|
|
478
|
+
.sc(schemas_0.StartBrowserSession$)
|
|
2029
479
|
.build() {
|
|
2030
480
|
}
|
|
2031
481
|
|
|
@@ -2037,7 +487,7 @@ class StartCodeInterpreterSessionCommand extends smithyClient.Command
|
|
|
2037
487
|
})
|
|
2038
488
|
.s("AmazonBedrockAgentCore", "StartCodeInterpreterSession", {})
|
|
2039
489
|
.n("BedrockAgentCoreClient", "StartCodeInterpreterSessionCommand")
|
|
2040
|
-
.sc(StartCodeInterpreterSession$)
|
|
490
|
+
.sc(schemas_0.StartCodeInterpreterSession$)
|
|
2041
491
|
.build() {
|
|
2042
492
|
}
|
|
2043
493
|
|
|
@@ -2049,7 +499,7 @@ class StartMemoryExtractionJobCommand extends smithyClient.Command
|
|
|
2049
499
|
})
|
|
2050
500
|
.s("AmazonBedrockAgentCore", "StartMemoryExtractionJob", {})
|
|
2051
501
|
.n("BedrockAgentCoreClient", "StartMemoryExtractionJobCommand")
|
|
2052
|
-
.sc(StartMemoryExtractionJob$)
|
|
502
|
+
.sc(schemas_0.StartMemoryExtractionJob$)
|
|
2053
503
|
.build() {
|
|
2054
504
|
}
|
|
2055
505
|
|
|
@@ -2061,7 +511,7 @@ class StopBrowserSessionCommand extends smithyClient.Command
|
|
|
2061
511
|
})
|
|
2062
512
|
.s("AmazonBedrockAgentCore", "StopBrowserSession", {})
|
|
2063
513
|
.n("BedrockAgentCoreClient", "StopBrowserSessionCommand")
|
|
2064
|
-
.sc(StopBrowserSession$)
|
|
514
|
+
.sc(schemas_0.StopBrowserSession$)
|
|
2065
515
|
.build() {
|
|
2066
516
|
}
|
|
2067
517
|
|
|
@@ -2073,7 +523,7 @@ class StopCodeInterpreterSessionCommand extends smithyClient.Command
|
|
|
2073
523
|
})
|
|
2074
524
|
.s("AmazonBedrockAgentCore", "StopCodeInterpreterSession", {})
|
|
2075
525
|
.n("BedrockAgentCoreClient", "StopCodeInterpreterSessionCommand")
|
|
2076
|
-
.sc(StopCodeInterpreterSession$)
|
|
526
|
+
.sc(schemas_0.StopCodeInterpreterSession$)
|
|
2077
527
|
.build() {
|
|
2078
528
|
}
|
|
2079
529
|
|
|
@@ -2085,7 +535,7 @@ class StopRuntimeSessionCommand extends smithyClient.Command
|
|
|
2085
535
|
})
|
|
2086
536
|
.s("AmazonBedrockAgentCore", "StopRuntimeSession", {})
|
|
2087
537
|
.n("BedrockAgentCoreClient", "StopRuntimeSessionCommand")
|
|
2088
|
-
.sc(StopRuntimeSession$)
|
|
538
|
+
.sc(schemas_0.StopRuntimeSession$)
|
|
2089
539
|
.build() {
|
|
2090
540
|
}
|
|
2091
541
|
|
|
@@ -2097,7 +547,7 @@ class UpdateBrowserStreamCommand extends smithyClient.Command
|
|
|
2097
547
|
})
|
|
2098
548
|
.s("AmazonBedrockAgentCore", "UpdateBrowserStream", {})
|
|
2099
549
|
.n("BedrockAgentCoreClient", "UpdateBrowserStreamCommand")
|
|
2100
|
-
.sc(UpdateBrowserStream$)
|
|
550
|
+
.sc(schemas_0.UpdateBrowserStream$)
|
|
2101
551
|
.build() {
|
|
2102
552
|
}
|
|
2103
553
|
|
|
@@ -2250,260 +700,78 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2250
700
|
enumerable: true,
|
|
2251
701
|
get: function () { return smithyClient.Client; }
|
|
2252
702
|
});
|
|
2253
|
-
exports
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
703
|
+
Object.defineProperty(exports, "BedrockAgentCoreServiceException", {
|
|
704
|
+
enumerable: true,
|
|
705
|
+
get: function () { return BedrockAgentCoreServiceException.BedrockAgentCoreServiceException; }
|
|
706
|
+
});
|
|
2257
707
|
exports.AutomationStreamStatus = AutomationStreamStatus;
|
|
2258
|
-
exports.AutomationStreamUpdate$ = AutomationStreamUpdate$;
|
|
2259
|
-
exports.BasicAuth$ = BasicAuth$;
|
|
2260
|
-
exports.BatchCreateMemoryRecords$ = BatchCreateMemoryRecords$;
|
|
2261
708
|
exports.BatchCreateMemoryRecordsCommand = BatchCreateMemoryRecordsCommand;
|
|
2262
|
-
exports.BatchCreateMemoryRecordsInput$ = BatchCreateMemoryRecordsInput$;
|
|
2263
|
-
exports.BatchCreateMemoryRecordsOutput$ = BatchCreateMemoryRecordsOutput$;
|
|
2264
|
-
exports.BatchDeleteMemoryRecords$ = BatchDeleteMemoryRecords$;
|
|
2265
709
|
exports.BatchDeleteMemoryRecordsCommand = BatchDeleteMemoryRecordsCommand;
|
|
2266
|
-
exports.BatchDeleteMemoryRecordsInput$ = BatchDeleteMemoryRecordsInput$;
|
|
2267
|
-
exports.BatchDeleteMemoryRecordsOutput$ = BatchDeleteMemoryRecordsOutput$;
|
|
2268
|
-
exports.BatchUpdateMemoryRecords$ = BatchUpdateMemoryRecords$;
|
|
2269
710
|
exports.BatchUpdateMemoryRecordsCommand = BatchUpdateMemoryRecordsCommand;
|
|
2270
|
-
exports.BatchUpdateMemoryRecordsInput$ = BatchUpdateMemoryRecordsInput$;
|
|
2271
|
-
exports.BatchUpdateMemoryRecordsOutput$ = BatchUpdateMemoryRecordsOutput$;
|
|
2272
711
|
exports.BedrockAgentCore = BedrockAgentCore;
|
|
2273
712
|
exports.BedrockAgentCoreClient = BedrockAgentCoreClient;
|
|
2274
|
-
exports.BedrockAgentCoreServiceException = BedrockAgentCoreServiceException;
|
|
2275
|
-
exports.BedrockAgentCoreServiceException$ = BedrockAgentCoreServiceException$;
|
|
2276
|
-
exports.Branch$ = Branch$;
|
|
2277
|
-
exports.BranchFilter$ = BranchFilter$;
|
|
2278
|
-
exports.BrowserExtension$ = BrowserExtension$;
|
|
2279
|
-
exports.BrowserProfileConfiguration$ = BrowserProfileConfiguration$;
|
|
2280
713
|
exports.BrowserSessionStatus = BrowserSessionStatus;
|
|
2281
|
-
exports.BrowserSessionStream$ = BrowserSessionStream$;
|
|
2282
|
-
exports.BrowserSessionSummary$ = BrowserSessionSummary$;
|
|
2283
|
-
exports.CodeInterpreterResult$ = CodeInterpreterResult$;
|
|
2284
714
|
exports.CodeInterpreterSessionStatus = CodeInterpreterSessionStatus;
|
|
2285
|
-
exports.CodeInterpreterSessionSummary$ = CodeInterpreterSessionSummary$;
|
|
2286
|
-
exports.CodeInterpreterStreamOutput$ = CodeInterpreterStreamOutput$;
|
|
2287
|
-
exports.CompleteResourceTokenAuth$ = CompleteResourceTokenAuth$;
|
|
2288
715
|
exports.CompleteResourceTokenAuthCommand = CompleteResourceTokenAuthCommand;
|
|
2289
|
-
exports.CompleteResourceTokenAuthRequest$ = CompleteResourceTokenAuthRequest$;
|
|
2290
|
-
exports.CompleteResourceTokenAuthResponse$ = CompleteResourceTokenAuthResponse$;
|
|
2291
|
-
exports.ConflictException = ConflictException;
|
|
2292
|
-
exports.ConflictException$ = ConflictException$;
|
|
2293
|
-
exports.Content$ = Content$;
|
|
2294
|
-
exports.ContentBlock$ = ContentBlock$;
|
|
2295
716
|
exports.ContentBlockType = ContentBlockType;
|
|
2296
|
-
exports.Context$ = Context$;
|
|
2297
|
-
exports.Conversational$ = Conversational$;
|
|
2298
|
-
exports.CreateEvent$ = CreateEvent$;
|
|
2299
717
|
exports.CreateEventCommand = CreateEventCommand;
|
|
2300
|
-
exports.CreateEventInput$ = CreateEventInput$;
|
|
2301
|
-
exports.CreateEventOutput$ = CreateEventOutput$;
|
|
2302
|
-
exports.DeleteEvent$ = DeleteEvent$;
|
|
2303
718
|
exports.DeleteEventCommand = DeleteEventCommand;
|
|
2304
|
-
exports.DeleteEventInput$ = DeleteEventInput$;
|
|
2305
|
-
exports.DeleteEventOutput$ = DeleteEventOutput$;
|
|
2306
|
-
exports.DeleteMemoryRecord$ = DeleteMemoryRecord$;
|
|
2307
719
|
exports.DeleteMemoryRecordCommand = DeleteMemoryRecordCommand;
|
|
2308
|
-
exports.DeleteMemoryRecordInput$ = DeleteMemoryRecordInput$;
|
|
2309
|
-
exports.DeleteMemoryRecordOutput$ = DeleteMemoryRecordOutput$;
|
|
2310
|
-
exports.DuplicateIdException = DuplicateIdException;
|
|
2311
|
-
exports.DuplicateIdException$ = DuplicateIdException$;
|
|
2312
|
-
exports.Evaluate$ = Evaluate$;
|
|
2313
720
|
exports.EvaluateCommand = EvaluateCommand;
|
|
2314
|
-
exports.EvaluateRequest$ = EvaluateRequest$;
|
|
2315
|
-
exports.EvaluateResponse$ = EvaluateResponse$;
|
|
2316
|
-
exports.EvaluationInput$ = EvaluationInput$;
|
|
2317
|
-
exports.EvaluationResultContent$ = EvaluationResultContent$;
|
|
2318
|
-
exports.EvaluationTarget$ = EvaluationTarget$;
|
|
2319
|
-
exports.Event$ = Event$;
|
|
2320
|
-
exports.EventMetadataFilterExpression$ = EventMetadataFilterExpression$;
|
|
2321
|
-
exports.ExternalProxy$ = ExternalProxy$;
|
|
2322
|
-
exports.ExtractionJob$ = ExtractionJob$;
|
|
2323
|
-
exports.ExtractionJobFilterInput$ = ExtractionJobFilterInput$;
|
|
2324
|
-
exports.ExtractionJobMessages$ = ExtractionJobMessages$;
|
|
2325
|
-
exports.ExtractionJobMetadata$ = ExtractionJobMetadata$;
|
|
2326
721
|
exports.ExtractionJobStatus = ExtractionJobStatus;
|
|
2327
|
-
exports.FilterInput$ = FilterInput$;
|
|
2328
|
-
exports.GetAgentCard$ = GetAgentCard$;
|
|
2329
722
|
exports.GetAgentCardCommand = GetAgentCardCommand;
|
|
2330
|
-
exports.GetAgentCardRequest$ = GetAgentCardRequest$;
|
|
2331
|
-
exports.GetAgentCardResponse$ = GetAgentCardResponse$;
|
|
2332
|
-
exports.GetBrowserSession$ = GetBrowserSession$;
|
|
2333
723
|
exports.GetBrowserSessionCommand = GetBrowserSessionCommand;
|
|
2334
|
-
exports.GetBrowserSessionRequest$ = GetBrowserSessionRequest$;
|
|
2335
|
-
exports.GetBrowserSessionResponse$ = GetBrowserSessionResponse$;
|
|
2336
|
-
exports.GetCodeInterpreterSession$ = GetCodeInterpreterSession$;
|
|
2337
724
|
exports.GetCodeInterpreterSessionCommand = GetCodeInterpreterSessionCommand;
|
|
2338
|
-
exports.GetCodeInterpreterSessionRequest$ = GetCodeInterpreterSessionRequest$;
|
|
2339
|
-
exports.GetCodeInterpreterSessionResponse$ = GetCodeInterpreterSessionResponse$;
|
|
2340
|
-
exports.GetEvent$ = GetEvent$;
|
|
2341
725
|
exports.GetEventCommand = GetEventCommand;
|
|
2342
|
-
exports.GetEventInput$ = GetEventInput$;
|
|
2343
|
-
exports.GetEventOutput$ = GetEventOutput$;
|
|
2344
|
-
exports.GetMemoryRecord$ = GetMemoryRecord$;
|
|
2345
726
|
exports.GetMemoryRecordCommand = GetMemoryRecordCommand;
|
|
2346
|
-
exports.GetMemoryRecordInput$ = GetMemoryRecordInput$;
|
|
2347
|
-
exports.GetMemoryRecordOutput$ = GetMemoryRecordOutput$;
|
|
2348
|
-
exports.GetResourceApiKey$ = GetResourceApiKey$;
|
|
2349
727
|
exports.GetResourceApiKeyCommand = GetResourceApiKeyCommand;
|
|
2350
|
-
exports.GetResourceApiKeyRequest$ = GetResourceApiKeyRequest$;
|
|
2351
|
-
exports.GetResourceApiKeyResponse$ = GetResourceApiKeyResponse$;
|
|
2352
|
-
exports.GetResourceOauth2Token$ = GetResourceOauth2Token$;
|
|
2353
728
|
exports.GetResourceOauth2TokenCommand = GetResourceOauth2TokenCommand;
|
|
2354
|
-
exports.GetResourceOauth2TokenRequest$ = GetResourceOauth2TokenRequest$;
|
|
2355
|
-
exports.GetResourceOauth2TokenResponse$ = GetResourceOauth2TokenResponse$;
|
|
2356
|
-
exports.GetWorkloadAccessToken$ = GetWorkloadAccessToken$;
|
|
2357
729
|
exports.GetWorkloadAccessTokenCommand = GetWorkloadAccessTokenCommand;
|
|
2358
|
-
exports.GetWorkloadAccessTokenForJWT$ = GetWorkloadAccessTokenForJWT$;
|
|
2359
730
|
exports.GetWorkloadAccessTokenForJWTCommand = GetWorkloadAccessTokenForJWTCommand;
|
|
2360
|
-
exports.GetWorkloadAccessTokenForJWTRequest$ = GetWorkloadAccessTokenForJWTRequest$;
|
|
2361
|
-
exports.GetWorkloadAccessTokenForJWTResponse$ = GetWorkloadAccessTokenForJWTResponse$;
|
|
2362
|
-
exports.GetWorkloadAccessTokenForUserId$ = GetWorkloadAccessTokenForUserId$;
|
|
2363
731
|
exports.GetWorkloadAccessTokenForUserIdCommand = GetWorkloadAccessTokenForUserIdCommand;
|
|
2364
|
-
exports.GetWorkloadAccessTokenForUserIdRequest$ = GetWorkloadAccessTokenForUserIdRequest$;
|
|
2365
|
-
exports.GetWorkloadAccessTokenForUserIdResponse$ = GetWorkloadAccessTokenForUserIdResponse$;
|
|
2366
|
-
exports.GetWorkloadAccessTokenRequest$ = GetWorkloadAccessTokenRequest$;
|
|
2367
|
-
exports.GetWorkloadAccessTokenResponse$ = GetWorkloadAccessTokenResponse$;
|
|
2368
|
-
exports.InputContentBlock$ = InputContentBlock$;
|
|
2369
|
-
exports.InternalServerException = InternalServerException;
|
|
2370
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2371
|
-
exports.InvalidInputException = InvalidInputException;
|
|
2372
|
-
exports.InvalidInputException$ = InvalidInputException$;
|
|
2373
|
-
exports.InvokeAgentRuntime$ = InvokeAgentRuntime$;
|
|
2374
732
|
exports.InvokeAgentRuntimeCommand = InvokeAgentRuntimeCommand;
|
|
2375
|
-
exports.InvokeAgentRuntimeRequest$ = InvokeAgentRuntimeRequest$;
|
|
2376
|
-
exports.InvokeAgentRuntimeResponse$ = InvokeAgentRuntimeResponse$;
|
|
2377
|
-
exports.InvokeCodeInterpreter$ = InvokeCodeInterpreter$;
|
|
2378
733
|
exports.InvokeCodeInterpreterCommand = InvokeCodeInterpreterCommand;
|
|
2379
|
-
exports.InvokeCodeInterpreterRequest$ = InvokeCodeInterpreterRequest$;
|
|
2380
|
-
exports.InvokeCodeInterpreterResponse$ = InvokeCodeInterpreterResponse$;
|
|
2381
|
-
exports.LeftExpression$ = LeftExpression$;
|
|
2382
|
-
exports.ListActors$ = ListActors$;
|
|
2383
734
|
exports.ListActorsCommand = ListActorsCommand;
|
|
2384
|
-
exports.ListActorsInput$ = ListActorsInput$;
|
|
2385
|
-
exports.ListActorsOutput$ = ListActorsOutput$;
|
|
2386
|
-
exports.ListBrowserSessions$ = ListBrowserSessions$;
|
|
2387
735
|
exports.ListBrowserSessionsCommand = ListBrowserSessionsCommand;
|
|
2388
|
-
exports.ListBrowserSessionsRequest$ = ListBrowserSessionsRequest$;
|
|
2389
|
-
exports.ListBrowserSessionsResponse$ = ListBrowserSessionsResponse$;
|
|
2390
|
-
exports.ListCodeInterpreterSessions$ = ListCodeInterpreterSessions$;
|
|
2391
736
|
exports.ListCodeInterpreterSessionsCommand = ListCodeInterpreterSessionsCommand;
|
|
2392
|
-
exports.ListCodeInterpreterSessionsRequest$ = ListCodeInterpreterSessionsRequest$;
|
|
2393
|
-
exports.ListCodeInterpreterSessionsResponse$ = ListCodeInterpreterSessionsResponse$;
|
|
2394
|
-
exports.ListEvents$ = ListEvents$;
|
|
2395
737
|
exports.ListEventsCommand = ListEventsCommand;
|
|
2396
|
-
exports.ListEventsInput$ = ListEventsInput$;
|
|
2397
|
-
exports.ListEventsOutput$ = ListEventsOutput$;
|
|
2398
|
-
exports.ListMemoryExtractionJobs$ = ListMemoryExtractionJobs$;
|
|
2399
738
|
exports.ListMemoryExtractionJobsCommand = ListMemoryExtractionJobsCommand;
|
|
2400
|
-
exports.ListMemoryExtractionJobsInput$ = ListMemoryExtractionJobsInput$;
|
|
2401
|
-
exports.ListMemoryExtractionJobsOutput$ = ListMemoryExtractionJobsOutput$;
|
|
2402
|
-
exports.ListMemoryRecords$ = ListMemoryRecords$;
|
|
2403
739
|
exports.ListMemoryRecordsCommand = ListMemoryRecordsCommand;
|
|
2404
|
-
exports.ListMemoryRecordsInput$ = ListMemoryRecordsInput$;
|
|
2405
|
-
exports.ListMemoryRecordsOutput$ = ListMemoryRecordsOutput$;
|
|
2406
|
-
exports.ListSessions$ = ListSessions$;
|
|
2407
740
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
2408
|
-
exports.ListSessionsInput$ = ListSessionsInput$;
|
|
2409
|
-
exports.ListSessionsOutput$ = ListSessionsOutput$;
|
|
2410
|
-
exports.LiveViewStream$ = LiveViewStream$;
|
|
2411
|
-
exports.MemoryContent$ = MemoryContent$;
|
|
2412
|
-
exports.MemoryMetadataFilterExpression$ = MemoryMetadataFilterExpression$;
|
|
2413
|
-
exports.MemoryRecord$ = MemoryRecord$;
|
|
2414
|
-
exports.MemoryRecordCreateInput$ = MemoryRecordCreateInput$;
|
|
2415
|
-
exports.MemoryRecordDeleteInput$ = MemoryRecordDeleteInput$;
|
|
2416
|
-
exports.MemoryRecordOutput$ = MemoryRecordOutput$;
|
|
2417
741
|
exports.MemoryRecordStatus = MemoryRecordStatus;
|
|
2418
|
-
exports.MemoryRecordSummary$ = MemoryRecordSummary$;
|
|
2419
|
-
exports.MemoryRecordUpdateInput$ = MemoryRecordUpdateInput$;
|
|
2420
|
-
exports.MessageMetadata$ = MessageMetadata$;
|
|
2421
|
-
exports.MetadataValue$ = MetadataValue$;
|
|
2422
742
|
exports.Oauth2FlowType = Oauth2FlowType;
|
|
2423
743
|
exports.OperatorType = OperatorType;
|
|
2424
|
-
exports.PayloadType$ = PayloadType$;
|
|
2425
744
|
exports.ProgrammingLanguage = ProgrammingLanguage;
|
|
2426
|
-
exports.Proxy$ = Proxy$;
|
|
2427
|
-
exports.ProxyBypass$ = ProxyBypass$;
|
|
2428
|
-
exports.ProxyConfiguration$ = ProxyConfiguration$;
|
|
2429
|
-
exports.ProxyCredentials$ = ProxyCredentials$;
|
|
2430
|
-
exports.ResourceContent$ = ResourceContent$;
|
|
2431
745
|
exports.ResourceContentType = ResourceContentType;
|
|
2432
|
-
exports.ResourceLocation$ = ResourceLocation$;
|
|
2433
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2434
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2435
|
-
exports.RetrieveMemoryRecords$ = RetrieveMemoryRecords$;
|
|
2436
746
|
exports.RetrieveMemoryRecordsCommand = RetrieveMemoryRecordsCommand;
|
|
2437
|
-
exports.RetrieveMemoryRecordsInput$ = RetrieveMemoryRecordsInput$;
|
|
2438
|
-
exports.RetrieveMemoryRecordsOutput$ = RetrieveMemoryRecordsOutput$;
|
|
2439
|
-
exports.RetryableConflictException = RetryableConflictException;
|
|
2440
|
-
exports.RetryableConflictException$ = RetryableConflictException$;
|
|
2441
|
-
exports.RightExpression$ = RightExpression$;
|
|
2442
747
|
exports.Role = Role;
|
|
2443
|
-
exports.RuntimeClientError = RuntimeClientError;
|
|
2444
|
-
exports.RuntimeClientError$ = RuntimeClientError$;
|
|
2445
|
-
exports.S3Location$ = S3Location$;
|
|
2446
|
-
exports.SaveBrowserSessionProfile$ = SaveBrowserSessionProfile$;
|
|
2447
748
|
exports.SaveBrowserSessionProfileCommand = SaveBrowserSessionProfileCommand;
|
|
2448
|
-
exports.SaveBrowserSessionProfileRequest$ = SaveBrowserSessionProfileRequest$;
|
|
2449
|
-
exports.SaveBrowserSessionProfileResponse$ = SaveBrowserSessionProfileResponse$;
|
|
2450
|
-
exports.SearchCriteria$ = SearchCriteria$;
|
|
2451
|
-
exports.ServiceException = ServiceException;
|
|
2452
|
-
exports.ServiceException$ = ServiceException$;
|
|
2453
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2454
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2455
749
|
exports.SessionStatus = SessionStatus;
|
|
2456
|
-
exports.SessionSummary$ = SessionSummary$;
|
|
2457
|
-
exports.SpanContext$ = SpanContext$;
|
|
2458
|
-
exports.StartBrowserSession$ = StartBrowserSession$;
|
|
2459
750
|
exports.StartBrowserSessionCommand = StartBrowserSessionCommand;
|
|
2460
|
-
exports.StartBrowserSessionRequest$ = StartBrowserSessionRequest$;
|
|
2461
|
-
exports.StartBrowserSessionResponse$ = StartBrowserSessionResponse$;
|
|
2462
|
-
exports.StartCodeInterpreterSession$ = StartCodeInterpreterSession$;
|
|
2463
751
|
exports.StartCodeInterpreterSessionCommand = StartCodeInterpreterSessionCommand;
|
|
2464
|
-
exports.StartCodeInterpreterSessionRequest$ = StartCodeInterpreterSessionRequest$;
|
|
2465
|
-
exports.StartCodeInterpreterSessionResponse$ = StartCodeInterpreterSessionResponse$;
|
|
2466
|
-
exports.StartMemoryExtractionJob$ = StartMemoryExtractionJob$;
|
|
2467
752
|
exports.StartMemoryExtractionJobCommand = StartMemoryExtractionJobCommand;
|
|
2468
|
-
exports.StartMemoryExtractionJobInput$ = StartMemoryExtractionJobInput$;
|
|
2469
|
-
exports.StartMemoryExtractionJobOutput$ = StartMemoryExtractionJobOutput$;
|
|
2470
|
-
exports.StopBrowserSession$ = StopBrowserSession$;
|
|
2471
753
|
exports.StopBrowserSessionCommand = StopBrowserSessionCommand;
|
|
2472
|
-
exports.StopBrowserSessionRequest$ = StopBrowserSessionRequest$;
|
|
2473
|
-
exports.StopBrowserSessionResponse$ = StopBrowserSessionResponse$;
|
|
2474
|
-
exports.StopCodeInterpreterSession$ = StopCodeInterpreterSession$;
|
|
2475
754
|
exports.StopCodeInterpreterSessionCommand = StopCodeInterpreterSessionCommand;
|
|
2476
|
-
exports.StopCodeInterpreterSessionRequest$ = StopCodeInterpreterSessionRequest$;
|
|
2477
|
-
exports.StopCodeInterpreterSessionResponse$ = StopCodeInterpreterSessionResponse$;
|
|
2478
|
-
exports.StopRuntimeSession$ = StopRuntimeSession$;
|
|
2479
755
|
exports.StopRuntimeSessionCommand = StopRuntimeSessionCommand;
|
|
2480
|
-
exports.StopRuntimeSessionRequest$ = StopRuntimeSessionRequest$;
|
|
2481
|
-
exports.StopRuntimeSessionResponse$ = StopRuntimeSessionResponse$;
|
|
2482
|
-
exports.StreamUpdate$ = StreamUpdate$;
|
|
2483
756
|
exports.TaskStatus = TaskStatus;
|
|
2484
|
-
exports.ThrottledException = ThrottledException;
|
|
2485
|
-
exports.ThrottledException$ = ThrottledException$;
|
|
2486
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2487
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2488
|
-
exports.TokenUsage$ = TokenUsage$;
|
|
2489
|
-
exports.ToolArguments$ = ToolArguments$;
|
|
2490
757
|
exports.ToolName = ToolName;
|
|
2491
|
-
exports.ToolResultStructuredContent$ = ToolResultStructuredContent$;
|
|
2492
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
2493
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
2494
|
-
exports.UpdateBrowserStream$ = UpdateBrowserStream$;
|
|
2495
758
|
exports.UpdateBrowserStreamCommand = UpdateBrowserStreamCommand;
|
|
2496
|
-
exports.UpdateBrowserStreamRequest$ = UpdateBrowserStreamRequest$;
|
|
2497
|
-
exports.UpdateBrowserStreamResponse$ = UpdateBrowserStreamResponse$;
|
|
2498
|
-
exports.UserIdentifier$ = UserIdentifier$;
|
|
2499
|
-
exports.ValidationException = ValidationException;
|
|
2500
|
-
exports.ValidationException$ = ValidationException$;
|
|
2501
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2502
759
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2503
|
-
exports.ViewPort$ = ViewPort$;
|
|
2504
760
|
exports.paginateListActors = paginateListActors;
|
|
2505
761
|
exports.paginateListEvents = paginateListEvents;
|
|
2506
762
|
exports.paginateListMemoryExtractionJobs = paginateListMemoryExtractionJobs;
|
|
2507
763
|
exports.paginateListMemoryRecords = paginateListMemoryRecords;
|
|
2508
764
|
exports.paginateListSessions = paginateListSessions;
|
|
2509
765
|
exports.paginateRetrieveMemoryRecords = paginateRetrieveMemoryRecords;
|
|
766
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
767
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
768
|
+
enumerable: true,
|
|
769
|
+
get: function () { return schemas_0[k]; }
|
|
770
|
+
});
|
|
771
|
+
});
|
|
772
|
+
Object.keys(errors).forEach(function (k) {
|
|
773
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
774
|
+
enumerable: true,
|
|
775
|
+
get: function () { return errors[k]; }
|
|
776
|
+
});
|
|
777
|
+
});
|