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