@aws-sdk/client-bedrock-agentcore 3.940.0 → 3.946.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/README.md +8 -0
- package/dist-cjs/index.js +207 -537
- package/dist-cjs/runtimeConfig.browser.js +2 -2
- package/dist-cjs/runtimeConfig.js +3 -4
- package/dist-es/BedrockAgentCore.js +2 -0
- package/dist-es/BedrockAgentCoreClient.js +2 -2
- package/dist-es/commands/EvaluateCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -3
- package/dist-es/schemas/schemas_0.js +183 -538
- package/dist-types/BedrockAgentCore.d.ts +8 -1
- package/dist-types/BedrockAgentCoreClient.d.ts +14 -13
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
- package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +3 -3
- package/dist-types/commands/BatchDeleteMemoryRecordsCommand.d.ts +3 -3
- package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +3 -3
- package/dist-types/commands/CompleteResourceTokenAuthCommand.d.ts +3 -3
- package/dist-types/commands/CreateEventCommand.d.ts +3 -3
- package/dist-types/commands/DeleteEventCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMemoryRecordCommand.d.ts +3 -3
- package/dist-types/commands/EvaluateCommand.d.ts +137 -0
- package/dist-types/commands/GetAgentCardCommand.d.ts +3 -3
- package/dist-types/commands/GetBrowserSessionCommand.d.ts +4 -4
- package/dist-types/commands/GetCodeInterpreterSessionCommand.d.ts +4 -4
- package/dist-types/commands/GetEventCommand.d.ts +3 -3
- package/dist-types/commands/GetMemoryRecordCommand.d.ts +8 -3
- package/dist-types/commands/GetResourceApiKeyCommand.d.ts +3 -3
- package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadAccessTokenCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +3 -3
- package/dist-types/commands/InvokeAgentRuntimeCommand.d.ts +2 -2
- package/dist-types/commands/InvokeCodeInterpreterCommand.d.ts +4 -4
- package/dist-types/commands/ListActorsCommand.d.ts +3 -3
- package/dist-types/commands/ListBrowserSessionsCommand.d.ts +4 -4
- package/dist-types/commands/ListCodeInterpreterSessionsCommand.d.ts +4 -4
- package/dist-types/commands/ListEventsCommand.d.ts +3 -3
- package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +3 -3
- package/dist-types/commands/ListMemoryRecordsCommand.d.ts +8 -3
- package/dist-types/commands/ListSessionsCommand.d.ts +3 -3
- package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +21 -3
- package/dist-types/commands/StartBrowserSessionCommand.d.ts +4 -4
- package/dist-types/commands/StartCodeInterpreterSessionCommand.d.ts +4 -4
- package/dist-types/commands/StartMemoryExtractionJobCommand.d.ts +3 -3
- package/dist-types/commands/StopBrowserSessionCommand.d.ts +4 -4
- package/dist-types/commands/StopCodeInterpreterSessionCommand.d.ts +4 -4
- package/dist-types/commands/StopRuntimeSessionCommand.d.ts +3 -3
- package/dist-types/commands/UpdateBrowserStreamCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/dist-types/extensionConfiguration.d.ts +4 -4
- package/dist-types/models/BedrockAgentCoreServiceException.d.ts +1 -1
- package/dist-types/models/errors.d.ts +13 -1
- package/dist-types/models/models_0.d.ts +275 -0
- package/dist-types/pagination/Interfaces.d.ts +1 -1
- package/dist-types/pagination/ListActorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoryExtractionJobsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoryRecordsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/RetrieveMemoryRecordsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +18 -1
- package/dist-types/ts3.4/BedrockAgentCore.d.ts +17 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +9 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/EvaluateCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/BedrockAgentCoreServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +96 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +13 -12
package/dist-cjs/index.js
CHANGED
|
@@ -231,6 +231,18 @@ let UnauthorizedException$1 = class UnauthorizedException extends BedrockAgentCo
|
|
|
231
231
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
232
232
|
}
|
|
233
233
|
};
|
|
234
|
+
let DuplicateIdException$1 = class DuplicateIdException extends BedrockAgentCoreServiceException$1 {
|
|
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
|
+
};
|
|
234
246
|
let ServiceException$1 = class ServiceException extends BedrockAgentCoreServiceException$1 {
|
|
235
247
|
name = "ServiceException";
|
|
236
248
|
$fault = "server";
|
|
@@ -310,14 +322,18 @@ const _CRTARo = "CompleteResourceTokenAuthResponse";
|
|
|
310
322
|
const _CRVT = "CustomRequestValueType";
|
|
311
323
|
const _CT = "Content-Type";
|
|
312
324
|
const _Co = "Content";
|
|
325
|
+
const _Con = "Context";
|
|
313
326
|
const _D = "Document";
|
|
314
327
|
const _DE = "DeleteEvent";
|
|
315
328
|
const _DEI = "DeleteEventInput";
|
|
316
329
|
const _DEO = "DeleteEventOutput";
|
|
330
|
+
const _DIE = "DuplicateIdException";
|
|
317
331
|
const _DMR = "DeleteMemoryRecord";
|
|
318
332
|
const _DMRI = "DeleteMemoryRecordInput";
|
|
319
333
|
const _DMRO = "DeleteMemoryRecordOutput";
|
|
320
334
|
const _E = "Event";
|
|
335
|
+
const _EE = "EvaluationExplanation";
|
|
336
|
+
const _EI = "EvaluationInput";
|
|
321
337
|
const _EJ = "ExtractionJob";
|
|
322
338
|
const _EJFI = "ExtractionJobFilterInput";
|
|
323
339
|
const _EJM = "ExtractionJobMetadata";
|
|
@@ -326,6 +342,12 @@ const _EJMx = "ExtractionJobMessages";
|
|
|
326
342
|
const _EL = "EventList";
|
|
327
343
|
const _EMFE = "EventMetadataFilterExpression";
|
|
328
344
|
const _EMFL = "EventMetadataFilterList";
|
|
345
|
+
const _ER = "EvaluateRequest";
|
|
346
|
+
const _ERC = "EvaluationResultContent";
|
|
347
|
+
const _ERv = "EvaluateResponse";
|
|
348
|
+
const _ERva = "EvaluationResults";
|
|
349
|
+
const _ET = "EvaluationTarget";
|
|
350
|
+
const _Ev = "Evaluate";
|
|
329
351
|
const _FI = "FilterInput";
|
|
330
352
|
const _GAC = "GetAgentCard";
|
|
331
353
|
const _GACR = "GetAgentCardRequest";
|
|
@@ -393,6 +415,8 @@ const _LVS = "LiveViewStream";
|
|
|
393
415
|
const _MC = "MemoryContent";
|
|
394
416
|
const _ML = "MessagesList";
|
|
395
417
|
const _MM = "MessageMetadata";
|
|
418
|
+
const _MMFE = "MemoryMetadataFilterExpression";
|
|
419
|
+
const _MMFL = "MemoryMetadataFilterList";
|
|
396
420
|
const _MMe = "MetadataMap";
|
|
397
421
|
const _MPV = "Mcp-Protocol-Version";
|
|
398
422
|
const _MR = "MemoryRecord";
|
|
@@ -432,6 +456,7 @@ const _SCISRt = "StartCodeInterpreterSessionResponse";
|
|
|
432
456
|
const _SCISRto = "StopCodeInterpreterSessionRequest";
|
|
433
457
|
const _SCISRtop = "StopCodeInterpreterSessionResponse";
|
|
434
458
|
const _SCISt = "StopCodeInterpreterSession";
|
|
459
|
+
const _SCp = "SpanContext";
|
|
435
460
|
const _SE = "ServiceException";
|
|
436
461
|
const _SMEJ = "StartMemoryExtractionJob";
|
|
437
462
|
const _SMEJI = "StartMemoryExtractionJobInput";
|
|
@@ -444,10 +469,12 @@ const _SS = "SensitiveString";
|
|
|
444
469
|
const _SSL = "SessionSummaryList";
|
|
445
470
|
const _SSe = "SessionSummary";
|
|
446
471
|
const _SU = "StreamUpdate";
|
|
472
|
+
const _Sp = "Spans";
|
|
447
473
|
const _TA = "ToolArguments";
|
|
448
474
|
const _TE = "ThrottledException";
|
|
449
475
|
const _TEh = "ThrottlingException";
|
|
450
476
|
const _TRSC = "ToolResultStructuredContent";
|
|
477
|
+
const _TU = "TokenUsage";
|
|
451
478
|
const _UBS = "UpdateBrowserStream";
|
|
452
479
|
const _UBSR = "UpdateBrowserStreamRequest";
|
|
453
480
|
const _UBSRp = "UpdateBrowserStreamResponse";
|
|
@@ -491,21 +518,29 @@ const _cTo = "contentType";
|
|
|
491
518
|
const _co = "content";
|
|
492
519
|
const _cod = "code";
|
|
493
520
|
const _com = "command";
|
|
494
|
-
const _con = "
|
|
521
|
+
const _con = "context";
|
|
522
|
+
const _conv = "conversational";
|
|
495
523
|
const _d = "data";
|
|
496
524
|
const _dP = "directoryPath";
|
|
497
525
|
const _de = "description";
|
|
498
526
|
const _e = "error";
|
|
527
|
+
const _eA = "evaluatorArn";
|
|
499
528
|
const _eC = "errorCode";
|
|
500
529
|
const _eCx = "exitCode";
|
|
501
530
|
const _eI = "eventId";
|
|
531
|
+
const _eIv = "evaluatorId";
|
|
532
|
+
const _eIva = "evaluationInput";
|
|
502
533
|
const _eJ = "extractionJob";
|
|
503
|
-
const _eM = "
|
|
504
|
-
const
|
|
534
|
+
const _eM = "errorMessage";
|
|
535
|
+
const _eMv = "eventMetadata";
|
|
536
|
+
const _eN = "evaluatorName";
|
|
537
|
+
const _eR = "evaluationResults";
|
|
505
538
|
const _eT = "eventTimestamp";
|
|
539
|
+
const _eTv = "evaluationTarget";
|
|
506
540
|
const _eTx = "executionTime";
|
|
507
541
|
const _ev = "event";
|
|
508
542
|
const _eve = "events";
|
|
543
|
+
const _ex = "explanation";
|
|
509
544
|
const _f = "filter";
|
|
510
545
|
const _fA = "forceAuthentication";
|
|
511
546
|
const _fL = "fieldList";
|
|
@@ -522,14 +557,17 @@ const _iP = "includePayloads";
|
|
|
522
557
|
const _iPB = "includeParentBranches";
|
|
523
558
|
const _iSE = "internalServerException";
|
|
524
559
|
const _iT = "idempotencyToken";
|
|
560
|
+
const _iTn = "inputTokens";
|
|
525
561
|
const _j = "jobs";
|
|
526
562
|
const _jI = "jobId";
|
|
527
563
|
const _jID = "jobID";
|
|
528
|
-
const _l = "
|
|
564
|
+
const _l = "label";
|
|
529
565
|
const _lUA = "lastUpdatedAt";
|
|
530
566
|
const _lVS = "liveViewStream";
|
|
531
567
|
const _la = "language";
|
|
568
|
+
const _le = "left";
|
|
532
569
|
const _m = "message";
|
|
570
|
+
const _mF = "metadataFilters";
|
|
533
571
|
const _mI = "memoryId";
|
|
534
572
|
const _mIe = "messageIndex";
|
|
535
573
|
const _mK = "metadataKey";
|
|
@@ -551,6 +589,7 @@ const _na = "namespace";
|
|
|
551
589
|
const _nam = "namespaces";
|
|
552
590
|
const _o = "operator";
|
|
553
591
|
const _oF = "oauth2Flow";
|
|
592
|
+
const _oT = "outputTokens";
|
|
554
593
|
const _p = "payload";
|
|
555
594
|
const _pa = "path";
|
|
556
595
|
const _pat = "paths";
|
|
@@ -572,9 +611,12 @@ const _ro = "role";
|
|
|
572
611
|
const _s = "streaming";
|
|
573
612
|
const _sC = "structuredContent";
|
|
574
613
|
const _sCe = "searchCriteria";
|
|
614
|
+
const _sCp = "spanContext";
|
|
575
615
|
const _sCt = "statusCode";
|
|
576
616
|
const _sE = "streamEndpoint";
|
|
577
617
|
const _sI = "sessionId";
|
|
618
|
+
const _sIp = "spanId";
|
|
619
|
+
const _sIpa = "spanIds";
|
|
578
620
|
const _sIt = "strategyId";
|
|
579
621
|
const _sQ = "searchQuery";
|
|
580
622
|
const _sQEE = "serviceQuotaExceededException";
|
|
@@ -583,6 +625,7 @@ const _sRA = "sessionReplayArtifact";
|
|
|
583
625
|
const _sS = "streamStatus";
|
|
584
626
|
const _sSe = "sessionStatus";
|
|
585
627
|
const _sSes = "sessionSummaries";
|
|
628
|
+
const _sSess = "sessionSpans";
|
|
586
629
|
const _sTS = "sessionTimeoutSeconds";
|
|
587
630
|
const _sU = "sessionUri";
|
|
588
631
|
const _sUt = "streamUpdate";
|
|
@@ -602,10 +645,13 @@ const _t = "type";
|
|
|
602
645
|
const _tE = "throttlingException";
|
|
603
646
|
const _tI = "traceId";
|
|
604
647
|
const _tIa = "taskId";
|
|
648
|
+
const _tIr = "traceIds";
|
|
605
649
|
const _tK = "topK";
|
|
606
650
|
const _tP = "traceParent";
|
|
607
651
|
const _tS = "traceState";
|
|
608
652
|
const _tSa = "taskStatus";
|
|
653
|
+
const _tT = "totalTokens";
|
|
654
|
+
const _tU = "tokenUsage";
|
|
609
655
|
const _te = "text";
|
|
610
656
|
const _ti = "timestamp";
|
|
611
657
|
const _tr = "traceparent";
|
|
@@ -615,6 +661,7 @@ const _uA = "updatedAt";
|
|
|
615
661
|
const _uI = "userIdentifier";
|
|
616
662
|
const _uIs = "userId";
|
|
617
663
|
const _uT = "userToken";
|
|
664
|
+
const _v = "value";
|
|
618
665
|
const _vE = "validationException";
|
|
619
666
|
const _vP = "viewPort";
|
|
620
667
|
const _w = "width";
|
|
@@ -629,31 +676,13 @@ var AuthorizationUrlType = [0, n0, _AUT, 8, 0];
|
|
|
629
676
|
var Body = [0, n0, _B, 8, 21];
|
|
630
677
|
var CustomRequestValueType = [0, n0, _CRVT, 8, 0];
|
|
631
678
|
var Document = [0, n0, _D, 8, 15];
|
|
632
|
-
var
|
|
633
|
-
|
|
634
|
-
n0,
|
|
635
|
-
_RS,
|
|
636
|
-
{
|
|
637
|
-
[_s]: 1,
|
|
638
|
-
[_se]: 1,
|
|
639
|
-
},
|
|
640
|
-
42,
|
|
641
|
-
];
|
|
679
|
+
var EvaluationExplanation = [0, n0, _EE, 8, 0];
|
|
680
|
+
var ResponseStream = [0, n0, _RS, { [_s]: 1, [_se]: 1 }, 42];
|
|
642
681
|
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
643
682
|
var State = [0, n0, _S, 8, 0];
|
|
644
683
|
var UserTokenType = [0, n0, _UTT, 8, 0];
|
|
645
684
|
var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
|
|
646
|
-
var AccessDeniedException = [
|
|
647
|
-
-3,
|
|
648
|
-
n0,
|
|
649
|
-
_ADE,
|
|
650
|
-
{
|
|
651
|
-
[_e]: _c,
|
|
652
|
-
[_hE]: 403,
|
|
653
|
-
},
|
|
654
|
-
[_m],
|
|
655
|
-
[0],
|
|
656
|
-
];
|
|
685
|
+
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
657
686
|
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
658
687
|
var ActorSummary = [3, n0, _AS, 0, [_aI], [0]];
|
|
659
688
|
var AutomationStream = [3, n0, _ASu, 0, [_sE, _sS], [0, 0]];
|
|
@@ -756,17 +785,7 @@ var CompleteResourceTokenAuthRequest = [
|
|
|
756
785
|
[[() => UserIdentifier, 0], 0],
|
|
757
786
|
];
|
|
758
787
|
var CompleteResourceTokenAuthResponse = [3, n0, _CRTARo, 0, [], []];
|
|
759
|
-
var ConflictException = [
|
|
760
|
-
-3,
|
|
761
|
-
n0,
|
|
762
|
-
_CE,
|
|
763
|
-
{
|
|
764
|
-
[_e]: _c,
|
|
765
|
-
[_hE]: 409,
|
|
766
|
-
},
|
|
767
|
-
[_m],
|
|
768
|
-
[0],
|
|
769
|
-
];
|
|
788
|
+
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
770
789
|
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
771
790
|
var ContentBlock = [
|
|
772
791
|
3,
|
|
@@ -812,6 +831,25 @@ var DeleteMemoryRecordInput = [
|
|
|
812
831
|
],
|
|
813
832
|
];
|
|
814
833
|
var DeleteMemoryRecordOutput = [3, n0, _DMRO, 0, [_mRI], [0]];
|
|
834
|
+
var DuplicateIdException = [-3, n0, _DIE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
835
|
+
schema.TypeRegistry.for(n0).registerError(DuplicateIdException, DuplicateIdException$1);
|
|
836
|
+
var EvaluateRequest = [
|
|
837
|
+
3,
|
|
838
|
+
n0,
|
|
839
|
+
_ER,
|
|
840
|
+
0,
|
|
841
|
+
[_eIv, _eIva, _eTv],
|
|
842
|
+
[[0, 1], [() => EvaluationInput, 0], () => EvaluationTarget],
|
|
843
|
+
];
|
|
844
|
+
var EvaluateResponse = [3, n0, _ERv, 0, [_eR], [[() => EvaluationResults, 0]]];
|
|
845
|
+
var EvaluationResultContent = [
|
|
846
|
+
3,
|
|
847
|
+
n0,
|
|
848
|
+
_ERC,
|
|
849
|
+
0,
|
|
850
|
+
[_eA, _eIv, _eN, _ex, _con, _v, _l, _tU, _eM, _eC],
|
|
851
|
+
[0, 0, 0, [() => EvaluationExplanation, 0], () => Context, 1, 0, () => TokenUsage, 0, 0],
|
|
852
|
+
];
|
|
815
853
|
var Event = [
|
|
816
854
|
3,
|
|
817
855
|
n0,
|
|
@@ -825,7 +863,7 @@ var EventMetadataFilterExpression = [
|
|
|
825
863
|
n0,
|
|
826
864
|
_EMFE,
|
|
827
865
|
0,
|
|
828
|
-
[
|
|
866
|
+
[_le, _o, _ri],
|
|
829
867
|
[() => LeftExpression, 0, () => RightExpression],
|
|
830
868
|
];
|
|
831
869
|
var ExtractionJob = [3, n0, _EJ, 0, [_jI], [0]];
|
|
@@ -843,7 +881,7 @@ var FilterInput = [
|
|
|
843
881
|
n0,
|
|
844
882
|
_FI,
|
|
845
883
|
0,
|
|
846
|
-
[_b,
|
|
884
|
+
[_b, _eMv],
|
|
847
885
|
[() => BranchFilter, () => EventMetadataFilterList],
|
|
848
886
|
];
|
|
849
887
|
var GetAgentCardRequest = [
|
|
@@ -853,20 +891,9 @@ var GetAgentCardRequest = [
|
|
|
853
891
|
0,
|
|
854
892
|
[_rSI, _aRA, _q],
|
|
855
893
|
[
|
|
856
|
-
[
|
|
857
|
-
0,
|
|
858
|
-
{
|
|
859
|
-
[_hH]: _XABARSI,
|
|
860
|
-
[_iT]: 1,
|
|
861
|
-
},
|
|
862
|
-
],
|
|
894
|
+
[0, { [_hH]: _XABARSI, [_iT]: 1 }],
|
|
863
895
|
[0, 1],
|
|
864
|
-
[
|
|
865
|
-
0,
|
|
866
|
-
{
|
|
867
|
-
[_hQ]: _q,
|
|
868
|
-
},
|
|
869
|
-
],
|
|
896
|
+
[0, { [_hQ]: _q }],
|
|
870
897
|
],
|
|
871
898
|
];
|
|
872
899
|
var GetAgentCardResponse = [
|
|
@@ -876,12 +903,7 @@ var GetAgentCardResponse = [
|
|
|
876
903
|
0,
|
|
877
904
|
[_rSI, _aC, _sCt],
|
|
878
905
|
[
|
|
879
|
-
[
|
|
880
|
-
0,
|
|
881
|
-
{
|
|
882
|
-
[_hH]: _XABARSI,
|
|
883
|
-
},
|
|
884
|
-
],
|
|
906
|
+
[0, { [_hH]: _XABARSI }],
|
|
885
907
|
[15, 16],
|
|
886
908
|
[1, 32],
|
|
887
909
|
],
|
|
@@ -894,12 +916,7 @@ var GetBrowserSessionRequest = [
|
|
|
894
916
|
[_bI, _sI],
|
|
895
917
|
[
|
|
896
918
|
[0, 1],
|
|
897
|
-
[
|
|
898
|
-
0,
|
|
899
|
-
{
|
|
900
|
-
[_hQ]: _sI,
|
|
901
|
-
},
|
|
902
|
-
],
|
|
919
|
+
[0, { [_hQ]: _sI }],
|
|
903
920
|
],
|
|
904
921
|
];
|
|
905
922
|
var GetBrowserSessionResponse = [
|
|
@@ -918,12 +935,7 @@ var GetCodeInterpreterSessionRequest = [
|
|
|
918
935
|
[_cII, _sI],
|
|
919
936
|
[
|
|
920
937
|
[0, 1],
|
|
921
|
-
[
|
|
922
|
-
0,
|
|
923
|
-
{
|
|
924
|
-
[_hQ]: _sI,
|
|
925
|
-
},
|
|
926
|
-
],
|
|
938
|
+
[0, { [_hQ]: _sI }],
|
|
927
939
|
],
|
|
928
940
|
];
|
|
929
941
|
var GetCodeInterpreterSessionResponse = [
|
|
@@ -1030,29 +1042,9 @@ var GetWorkloadAccessTokenResponse = [
|
|
|
1030
1042
|
[[() => WorkloadIdentityTokenType, 0]],
|
|
1031
1043
|
];
|
|
1032
1044
|
var InputContentBlock = [3, n0, _ICB, 0, [_pa, _te, _bl], [0, 0, [() => Body, 0]]];
|
|
1033
|
-
var InternalServerException = [
|
|
1034
|
-
-3,
|
|
1035
|
-
n0,
|
|
1036
|
-
_ISE,
|
|
1037
|
-
{
|
|
1038
|
-
[_e]: _ser,
|
|
1039
|
-
[_hE]: 500,
|
|
1040
|
-
},
|
|
1041
|
-
[_m],
|
|
1042
|
-
[0],
|
|
1043
|
-
];
|
|
1045
|
+
var InternalServerException = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
|
|
1044
1046
|
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1045
|
-
var InvalidInputException = [
|
|
1046
|
-
-3,
|
|
1047
|
-
n0,
|
|
1048
|
-
_IIE,
|
|
1049
|
-
{
|
|
1050
|
-
[_e]: _c,
|
|
1051
|
-
[_hE]: 400,
|
|
1052
|
-
},
|
|
1053
|
-
[_m],
|
|
1054
|
-
[0],
|
|
1055
|
-
];
|
|
1047
|
+
var InvalidInputException = [-3, n0, _IIE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
1056
1048
|
schema.TypeRegistry.for(n0).registerError(InvalidInputException, InvalidInputException$1);
|
|
1057
1049
|
var InvokeAgentRuntimeRequest = [
|
|
1058
1050
|
3,
|
|
@@ -1061,80 +1053,19 @@ var InvokeAgentRuntimeRequest = [
|
|
|
1061
1053
|
0,
|
|
1062
1054
|
[_cTo, _a, _mSI, _rSI, _mPV, _rUI, _tI, _tP, _tS, _ba, _aRA, _q, _aIc, _p],
|
|
1063
1055
|
[
|
|
1064
|
-
[
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
],
|
|
1070
|
-
[
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
},
|
|
1075
|
-
],
|
|
1076
|
-
[
|
|
1077
|
-
0,
|
|
1078
|
-
{
|
|
1079
|
-
[_hH]: _MSI,
|
|
1080
|
-
},
|
|
1081
|
-
],
|
|
1082
|
-
[
|
|
1083
|
-
0,
|
|
1084
|
-
{
|
|
1085
|
-
[_hH]: _XABARSI,
|
|
1086
|
-
[_iT]: 1,
|
|
1087
|
-
},
|
|
1088
|
-
],
|
|
1089
|
-
[
|
|
1090
|
-
0,
|
|
1091
|
-
{
|
|
1092
|
-
[_hH]: _MPV,
|
|
1093
|
-
},
|
|
1094
|
-
],
|
|
1095
|
-
[
|
|
1096
|
-
0,
|
|
1097
|
-
{
|
|
1098
|
-
[_hH]: _XABARUI,
|
|
1099
|
-
},
|
|
1100
|
-
],
|
|
1101
|
-
[
|
|
1102
|
-
0,
|
|
1103
|
-
{
|
|
1104
|
-
[_hH]: _XATI,
|
|
1105
|
-
},
|
|
1106
|
-
],
|
|
1107
|
-
[
|
|
1108
|
-
0,
|
|
1109
|
-
{
|
|
1110
|
-
[_hH]: _tr,
|
|
1111
|
-
},
|
|
1112
|
-
],
|
|
1113
|
-
[
|
|
1114
|
-
0,
|
|
1115
|
-
{
|
|
1116
|
-
[_hH]: _tra,
|
|
1117
|
-
},
|
|
1118
|
-
],
|
|
1119
|
-
[
|
|
1120
|
-
0,
|
|
1121
|
-
{
|
|
1122
|
-
[_hH]: _ba,
|
|
1123
|
-
},
|
|
1124
|
-
],
|
|
1056
|
+
[0, { [_hH]: _CT }],
|
|
1057
|
+
[0, { [_hH]: _A }],
|
|
1058
|
+
[0, { [_hH]: _MSI }],
|
|
1059
|
+
[0, { [_hH]: _XABARSI, [_iT]: 1 }],
|
|
1060
|
+
[0, { [_hH]: _MPV }],
|
|
1061
|
+
[0, { [_hH]: _XABARUI }],
|
|
1062
|
+
[0, { [_hH]: _XATI }],
|
|
1063
|
+
[0, { [_hH]: _tr }],
|
|
1064
|
+
[0, { [_hH]: _tra }],
|
|
1065
|
+
[0, { [_hH]: _ba }],
|
|
1125
1066
|
[0, 1],
|
|
1126
|
-
[
|
|
1127
|
-
|
|
1128
|
-
{
|
|
1129
|
-
[_hQ]: _q,
|
|
1130
|
-
},
|
|
1131
|
-
],
|
|
1132
|
-
[
|
|
1133
|
-
0,
|
|
1134
|
-
{
|
|
1135
|
-
[_hQ]: _aIc,
|
|
1136
|
-
},
|
|
1137
|
-
],
|
|
1067
|
+
[0, { [_hQ]: _q }],
|
|
1068
|
+
[0, { [_hQ]: _aIc }],
|
|
1138
1069
|
[() => Body, 16],
|
|
1139
1070
|
],
|
|
1140
1071
|
];
|
|
@@ -1145,54 +1076,14 @@ var InvokeAgentRuntimeResponse = [
|
|
|
1145
1076
|
0,
|
|
1146
1077
|
[_rSI, _mSI, _mPV, _tI, _tP, _tS, _ba, _cTo, _res, _sCt],
|
|
1147
1078
|
[
|
|
1148
|
-
[
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
],
|
|
1154
|
-
[
|
|
1155
|
-
|
|
1156
|
-
{
|
|
1157
|
-
[_hH]: _MSI,
|
|
1158
|
-
},
|
|
1159
|
-
],
|
|
1160
|
-
[
|
|
1161
|
-
0,
|
|
1162
|
-
{
|
|
1163
|
-
[_hH]: _MPV,
|
|
1164
|
-
},
|
|
1165
|
-
],
|
|
1166
|
-
[
|
|
1167
|
-
0,
|
|
1168
|
-
{
|
|
1169
|
-
[_hH]: _XATI,
|
|
1170
|
-
},
|
|
1171
|
-
],
|
|
1172
|
-
[
|
|
1173
|
-
0,
|
|
1174
|
-
{
|
|
1175
|
-
[_hH]: _tr,
|
|
1176
|
-
},
|
|
1177
|
-
],
|
|
1178
|
-
[
|
|
1179
|
-
0,
|
|
1180
|
-
{
|
|
1181
|
-
[_hH]: _tra,
|
|
1182
|
-
},
|
|
1183
|
-
],
|
|
1184
|
-
[
|
|
1185
|
-
0,
|
|
1186
|
-
{
|
|
1187
|
-
[_hH]: _ba,
|
|
1188
|
-
},
|
|
1189
|
-
],
|
|
1190
|
-
[
|
|
1191
|
-
0,
|
|
1192
|
-
{
|
|
1193
|
-
[_hH]: _CT,
|
|
1194
|
-
},
|
|
1195
|
-
],
|
|
1079
|
+
[0, { [_hH]: _XABARSI }],
|
|
1080
|
+
[0, { [_hH]: _MSI }],
|
|
1081
|
+
[0, { [_hH]: _MPV }],
|
|
1082
|
+
[0, { [_hH]: _XATI }],
|
|
1083
|
+
[0, { [_hH]: _tr }],
|
|
1084
|
+
[0, { [_hH]: _tra }],
|
|
1085
|
+
[0, { [_hH]: _ba }],
|
|
1086
|
+
[0, { [_hH]: _CT }],
|
|
1196
1087
|
[() => ResponseStream, 16],
|
|
1197
1088
|
[1, 32],
|
|
1198
1089
|
],
|
|
@@ -1203,29 +1094,7 @@ var InvokeCodeInterpreterRequest = [
|
|
|
1203
1094
|
_ICIR,
|
|
1204
1095
|
0,
|
|
1205
1096
|
[_cII, _sI, _tI, _tP, _n, _ar],
|
|
1206
|
-
[
|
|
1207
|
-
[0, 1],
|
|
1208
|
-
[
|
|
1209
|
-
0,
|
|
1210
|
-
{
|
|
1211
|
-
[_hH]: _xacisi,
|
|
1212
|
-
},
|
|
1213
|
-
],
|
|
1214
|
-
[
|
|
1215
|
-
0,
|
|
1216
|
-
{
|
|
1217
|
-
[_hH]: _XATI,
|
|
1218
|
-
},
|
|
1219
|
-
],
|
|
1220
|
-
[
|
|
1221
|
-
0,
|
|
1222
|
-
{
|
|
1223
|
-
[_hH]: _tr,
|
|
1224
|
-
},
|
|
1225
|
-
],
|
|
1226
|
-
0,
|
|
1227
|
-
[() => ToolArguments, 0],
|
|
1228
|
-
],
|
|
1097
|
+
[[0, 1], [0, { [_hH]: _xacisi }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], 0, [() => ToolArguments, 0]],
|
|
1229
1098
|
];
|
|
1230
1099
|
var InvokeCodeInterpreterResponse = [
|
|
1231
1100
|
3,
|
|
@@ -1234,12 +1103,7 @@ var InvokeCodeInterpreterResponse = [
|
|
|
1234
1103
|
0,
|
|
1235
1104
|
[_sI, _stre],
|
|
1236
1105
|
[
|
|
1237
|
-
[
|
|
1238
|
-
0,
|
|
1239
|
-
{
|
|
1240
|
-
[_hH]: _xacisi,
|
|
1241
|
-
},
|
|
1242
|
-
],
|
|
1106
|
+
[0, { [_hH]: _xacisi }],
|
|
1243
1107
|
[() => CodeInterpreterStreamOutput, 16],
|
|
1244
1108
|
],
|
|
1245
1109
|
];
|
|
@@ -1321,13 +1185,21 @@ var ListMemoryRecordsOutput = [
|
|
|
1321
1185
|
var ListSessionsInput = [3, n0, _LSI, 0, [_mI, _aI, _mRa, _nT], [[0, 1], [0, 1], 1, 0]];
|
|
1322
1186
|
var ListSessionsOutput = [3, n0, _LSO, 0, [_sSes, _nT], [() => SessionSummaryList, 0]];
|
|
1323
1187
|
var LiveViewStream = [3, n0, _LVS, 0, [_sE], [0]];
|
|
1188
|
+
var MemoryMetadataFilterExpression = [
|
|
1189
|
+
3,
|
|
1190
|
+
n0,
|
|
1191
|
+
_MMFE,
|
|
1192
|
+
0,
|
|
1193
|
+
[_le, _o, _ri],
|
|
1194
|
+
[() => LeftExpression, 0, () => RightExpression],
|
|
1195
|
+
];
|
|
1324
1196
|
var MemoryRecord = [
|
|
1325
1197
|
3,
|
|
1326
1198
|
n0,
|
|
1327
1199
|
_MR,
|
|
1328
1200
|
0,
|
|
1329
|
-
[_mRI, _co, _mSIe, _nam, _cA],
|
|
1330
|
-
[0, [() => MemoryContent, 0], 0, 64 | 0, 4],
|
|
1201
|
+
[_mRI, _co, _mSIe, _nam, _cA, _me],
|
|
1202
|
+
[0, [() => MemoryContent, 0], 0, 64 | 0, 4, () => MetadataMap],
|
|
1331
1203
|
];
|
|
1332
1204
|
var MemoryRecordCreateInput = [
|
|
1333
1205
|
3,
|
|
@@ -1338,14 +1210,14 @@ var MemoryRecordCreateInput = [
|
|
|
1338
1210
|
[0, 64 | 0, [() => MemoryContent, 0], 4, 0],
|
|
1339
1211
|
];
|
|
1340
1212
|
var MemoryRecordDeleteInput = [3, n0, _MRDI, 0, [_mRI], [0]];
|
|
1341
|
-
var MemoryRecordOutput = [3, n0, _MRO, 0, [_mRI, _st, _rI, _eC,
|
|
1213
|
+
var MemoryRecordOutput = [3, n0, _MRO, 0, [_mRI, _st, _rI, _eC, _eM], [0, 0, 0, 1, 0]];
|
|
1342
1214
|
var MemoryRecordSummary = [
|
|
1343
1215
|
3,
|
|
1344
1216
|
n0,
|
|
1345
1217
|
_MRS,
|
|
1346
1218
|
0,
|
|
1347
|
-
[_mRI, _co, _mSIe, _nam, _cA, _sco],
|
|
1348
|
-
[0, [() => MemoryContent, 0], 0, 64 | 0, 4, 1],
|
|
1219
|
+
[_mRI, _co, _mSIe, _nam, _cA, _sco, _me],
|
|
1220
|
+
[0, [() => MemoryContent, 0], 0, 64 | 0, 4, 1, () => MetadataMap],
|
|
1349
1221
|
];
|
|
1350
1222
|
var MemoryRecordUpdateInput = [
|
|
1351
1223
|
3,
|
|
@@ -1357,17 +1229,7 @@ var MemoryRecordUpdateInput = [
|
|
|
1357
1229
|
];
|
|
1358
1230
|
var MessageMetadata = [3, n0, _MM, 0, [_eI, _mIe], [0, 1]];
|
|
1359
1231
|
var ResourceContent = [3, n0, _RC, 0, [_t, _u, _mT, _te, _bl], [0, 0, 0, 0, 21]];
|
|
1360
|
-
var ResourceNotFoundException = [
|
|
1361
|
-
-3,
|
|
1362
|
-
n0,
|
|
1363
|
-
_RNFE,
|
|
1364
|
-
{
|
|
1365
|
-
[_e]: _c,
|
|
1366
|
-
[_hE]: 404,
|
|
1367
|
-
},
|
|
1368
|
-
[_m],
|
|
1369
|
-
[0],
|
|
1370
|
-
];
|
|
1232
|
+
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
1371
1233
|
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1372
1234
|
var RetrieveMemoryRecordsInput = [
|
|
1373
1235
|
3,
|
|
@@ -1385,76 +1247,29 @@ var RetrieveMemoryRecordsOutput = [
|
|
|
1385
1247
|
[_mRS, _nT],
|
|
1386
1248
|
[[() => MemoryRecordSummaryList, 0], 0],
|
|
1387
1249
|
];
|
|
1388
|
-
var RuntimeClientError = [
|
|
1389
|
-
-3,
|
|
1390
|
-
n0,
|
|
1391
|
-
_RCE,
|
|
1392
|
-
{
|
|
1393
|
-
[_e]: _c,
|
|
1394
|
-
[_hE]: 424,
|
|
1395
|
-
},
|
|
1396
|
-
[_m],
|
|
1397
|
-
[0],
|
|
1398
|
-
];
|
|
1250
|
+
var RuntimeClientError = [-3, n0, _RCE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
|
|
1399
1251
|
schema.TypeRegistry.for(n0).registerError(RuntimeClientError, RuntimeClientError$1);
|
|
1400
1252
|
var SearchCriteria = [
|
|
1401
1253
|
3,
|
|
1402
1254
|
n0,
|
|
1403
1255
|
_SC,
|
|
1404
1256
|
0,
|
|
1405
|
-
[_sQ, _mSIe, _tK],
|
|
1406
|
-
[[() => SensitiveString, 0], 0, 1],
|
|
1407
|
-
];
|
|
1408
|
-
var ServiceException = [
|
|
1409
|
-
-3,
|
|
1410
|
-
n0,
|
|
1411
|
-
_SE,
|
|
1412
|
-
{
|
|
1413
|
-
[_e]: _ser,
|
|
1414
|
-
[_hE]: 500,
|
|
1415
|
-
},
|
|
1416
|
-
[_m],
|
|
1417
|
-
[0],
|
|
1257
|
+
[_sQ, _mSIe, _tK, _mF],
|
|
1258
|
+
[[() => SensitiveString, 0], 0, 1, () => MemoryMetadataFilterList],
|
|
1418
1259
|
];
|
|
1260
|
+
var ServiceException = [-3, n0, _SE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
|
|
1419
1261
|
schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
|
|
1420
|
-
var ServiceQuotaExceededException = [
|
|
1421
|
-
-3,
|
|
1422
|
-
n0,
|
|
1423
|
-
_SQEE,
|
|
1424
|
-
{
|
|
1425
|
-
[_e]: _c,
|
|
1426
|
-
[_hE]: 402,
|
|
1427
|
-
},
|
|
1428
|
-
[_m],
|
|
1429
|
-
[0],
|
|
1430
|
-
];
|
|
1262
|
+
var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
|
|
1431
1263
|
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1432
1264
|
var SessionSummary = [3, n0, _SSe, 0, [_sI, _aI, _cA], [0, 0, 4]];
|
|
1265
|
+
var SpanContext = [3, n0, _SCp, 0, [_sI, _tI, _sIp], [0, 0, 0]];
|
|
1433
1266
|
var StartBrowserSessionRequest = [
|
|
1434
1267
|
3,
|
|
1435
1268
|
n0,
|
|
1436
1269
|
_SBSR,
|
|
1437
1270
|
0,
|
|
1438
1271
|
[_tI, _tP, _bI, _n, _sTS, _vP, _cT],
|
|
1439
|
-
[
|
|
1440
|
-
[
|
|
1441
|
-
0,
|
|
1442
|
-
{
|
|
1443
|
-
[_hH]: _XATI,
|
|
1444
|
-
},
|
|
1445
|
-
],
|
|
1446
|
-
[
|
|
1447
|
-
0,
|
|
1448
|
-
{
|
|
1449
|
-
[_hH]: _tr,
|
|
1450
|
-
},
|
|
1451
|
-
],
|
|
1452
|
-
[0, 1],
|
|
1453
|
-
0,
|
|
1454
|
-
1,
|
|
1455
|
-
() => ViewPort,
|
|
1456
|
-
[0, 4],
|
|
1457
|
-
],
|
|
1272
|
+
[[0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 1], 0, 1, () => ViewPort, [0, 4]],
|
|
1458
1273
|
];
|
|
1459
1274
|
var StartBrowserSessionResponse = [
|
|
1460
1275
|
3,
|
|
@@ -1470,24 +1285,7 @@ var StartCodeInterpreterSessionRequest = [
|
|
|
1470
1285
|
_SCISR,
|
|
1471
1286
|
0,
|
|
1472
1287
|
[_tI, _tP, _cII, _n, _sTS, _cT],
|
|
1473
|
-
[
|
|
1474
|
-
[
|
|
1475
|
-
0,
|
|
1476
|
-
{
|
|
1477
|
-
[_hH]: _XATI,
|
|
1478
|
-
},
|
|
1479
|
-
],
|
|
1480
|
-
[
|
|
1481
|
-
0,
|
|
1482
|
-
{
|
|
1483
|
-
[_hH]: _tr,
|
|
1484
|
-
},
|
|
1485
|
-
],
|
|
1486
|
-
[0, 1],
|
|
1487
|
-
0,
|
|
1488
|
-
1,
|
|
1489
|
-
[0, 4],
|
|
1490
|
-
],
|
|
1288
|
+
[[0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 1], 0, 1, [0, 4]],
|
|
1491
1289
|
];
|
|
1492
1290
|
var StartCodeInterpreterSessionResponse = [
|
|
1493
1291
|
3,
|
|
@@ -1513,25 +1311,10 @@ var StopBrowserSessionRequest = [
|
|
|
1513
1311
|
0,
|
|
1514
1312
|
[_tI, _tP, _bI, _sI, _cT],
|
|
1515
1313
|
[
|
|
1516
|
-
[
|
|
1517
|
-
|
|
1518
|
-
{
|
|
1519
|
-
[_hH]: _XATI,
|
|
1520
|
-
},
|
|
1521
|
-
],
|
|
1522
|
-
[
|
|
1523
|
-
0,
|
|
1524
|
-
{
|
|
1525
|
-
[_hH]: _tr,
|
|
1526
|
-
},
|
|
1527
|
-
],
|
|
1314
|
+
[0, { [_hH]: _XATI }],
|
|
1315
|
+
[0, { [_hH]: _tr }],
|
|
1528
1316
|
[0, 1],
|
|
1529
|
-
[
|
|
1530
|
-
0,
|
|
1531
|
-
{
|
|
1532
|
-
[_hQ]: _sI,
|
|
1533
|
-
},
|
|
1534
|
-
],
|
|
1317
|
+
[0, { [_hQ]: _sI }],
|
|
1535
1318
|
[0, 4],
|
|
1536
1319
|
],
|
|
1537
1320
|
];
|
|
@@ -1543,25 +1326,10 @@ var StopCodeInterpreterSessionRequest = [
|
|
|
1543
1326
|
0,
|
|
1544
1327
|
[_tI, _tP, _cII, _sI, _cT],
|
|
1545
1328
|
[
|
|
1546
|
-
[
|
|
1547
|
-
|
|
1548
|
-
{
|
|
1549
|
-
[_hH]: _XATI,
|
|
1550
|
-
},
|
|
1551
|
-
],
|
|
1552
|
-
[
|
|
1553
|
-
0,
|
|
1554
|
-
{
|
|
1555
|
-
[_hH]: _tr,
|
|
1556
|
-
},
|
|
1557
|
-
],
|
|
1329
|
+
[0, { [_hH]: _XATI }],
|
|
1330
|
+
[0, { [_hH]: _tr }],
|
|
1558
1331
|
[0, 1],
|
|
1559
|
-
[
|
|
1560
|
-
0,
|
|
1561
|
-
{
|
|
1562
|
-
[_hQ]: _sI,
|
|
1563
|
-
},
|
|
1564
|
-
],
|
|
1332
|
+
[0, { [_hQ]: _sI }],
|
|
1565
1333
|
[0, 4],
|
|
1566
1334
|
],
|
|
1567
1335
|
];
|
|
@@ -1580,19 +1348,9 @@ var StopRuntimeSessionRequest = [
|
|
|
1580
1348
|
0,
|
|
1581
1349
|
[_rSI, _aRA, _q, _cT],
|
|
1582
1350
|
[
|
|
1583
|
-
[
|
|
1584
|
-
0,
|
|
1585
|
-
{
|
|
1586
|
-
[_hH]: _XABARSI,
|
|
1587
|
-
},
|
|
1588
|
-
],
|
|
1351
|
+
[0, { [_hH]: _XABARSI }],
|
|
1589
1352
|
[0, 1],
|
|
1590
|
-
[
|
|
1591
|
-
0,
|
|
1592
|
-
{
|
|
1593
|
-
[_hQ]: _q,
|
|
1594
|
-
},
|
|
1595
|
-
],
|
|
1353
|
+
[0, { [_hQ]: _q }],
|
|
1596
1354
|
[0, 4],
|
|
1597
1355
|
],
|
|
1598
1356
|
];
|
|
@@ -1603,39 +1361,15 @@ var StopRuntimeSessionResponse = [
|
|
|
1603
1361
|
0,
|
|
1604
1362
|
[_rSI, _sCt],
|
|
1605
1363
|
[
|
|
1606
|
-
[
|
|
1607
|
-
0,
|
|
1608
|
-
{
|
|
1609
|
-
[_hH]: _XABARSI,
|
|
1610
|
-
},
|
|
1611
|
-
],
|
|
1364
|
+
[0, { [_hH]: _XABARSI }],
|
|
1612
1365
|
[1, 32],
|
|
1613
1366
|
],
|
|
1614
1367
|
];
|
|
1615
|
-
var ThrottledException = [
|
|
1616
|
-
-3,
|
|
1617
|
-
n0,
|
|
1618
|
-
_TE,
|
|
1619
|
-
{
|
|
1620
|
-
[_e]: _c,
|
|
1621
|
-
[_hE]: 429,
|
|
1622
|
-
},
|
|
1623
|
-
[_m],
|
|
1624
|
-
[0],
|
|
1625
|
-
];
|
|
1368
|
+
var ThrottledException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1626
1369
|
schema.TypeRegistry.for(n0).registerError(ThrottledException, ThrottledException$1);
|
|
1627
|
-
var ThrottlingException = [
|
|
1628
|
-
-3,
|
|
1629
|
-
n0,
|
|
1630
|
-
_TEh,
|
|
1631
|
-
{
|
|
1632
|
-
[_e]: _c,
|
|
1633
|
-
[_hE]: 429,
|
|
1634
|
-
},
|
|
1635
|
-
[_m],
|
|
1636
|
-
[0],
|
|
1637
|
-
];
|
|
1370
|
+
var ThrottlingException = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1638
1371
|
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1372
|
+
var TokenUsage = [3, n0, _TU, 0, [_iTn, _oT, _tT], [1, 1, 1]];
|
|
1639
1373
|
var ToolArguments = [
|
|
1640
1374
|
3,
|
|
1641
1375
|
n0,
|
|
@@ -1652,17 +1386,7 @@ var ToolResultStructuredContent = [
|
|
|
1652
1386
|
[_tIa, _tSa, _std, _stde, _eCx, _eTx],
|
|
1653
1387
|
[0, 0, 0, 0, 1, 1],
|
|
1654
1388
|
];
|
|
1655
|
-
var UnauthorizedException = [
|
|
1656
|
-
-3,
|
|
1657
|
-
n0,
|
|
1658
|
-
_UE,
|
|
1659
|
-
{
|
|
1660
|
-
[_e]: _c,
|
|
1661
|
-
[_hE]: 401,
|
|
1662
|
-
},
|
|
1663
|
-
[_m],
|
|
1664
|
-
[0],
|
|
1665
|
-
];
|
|
1389
|
+
var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
|
|
1666
1390
|
schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
|
|
1667
1391
|
var UpdateBrowserStreamRequest = [
|
|
1668
1392
|
3,
|
|
@@ -1670,17 +1394,7 @@ var UpdateBrowserStreamRequest = [
|
|
|
1670
1394
|
_UBSR,
|
|
1671
1395
|
0,
|
|
1672
1396
|
[_bI, _sI, _sUt, _cT],
|
|
1673
|
-
[
|
|
1674
|
-
[0, 1],
|
|
1675
|
-
[
|
|
1676
|
-
0,
|
|
1677
|
-
{
|
|
1678
|
-
[_hQ]: _sI,
|
|
1679
|
-
},
|
|
1680
|
-
],
|
|
1681
|
-
() => StreamUpdate,
|
|
1682
|
-
[0, 4],
|
|
1683
|
-
],
|
|
1397
|
+
[[0, 1], [0, { [_hQ]: _sI }], () => StreamUpdate, [0, 4]],
|
|
1684
1398
|
];
|
|
1685
1399
|
var UpdateBrowserStreamResponse = [
|
|
1686
1400
|
3,
|
|
@@ -1694,10 +1408,7 @@ var ValidationException = [
|
|
|
1694
1408
|
-3,
|
|
1695
1409
|
n0,
|
|
1696
1410
|
_VE,
|
|
1697
|
-
{
|
|
1698
|
-
[_e]: _c,
|
|
1699
|
-
[_hE]: 400,
|
|
1700
|
-
},
|
|
1411
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1701
1412
|
[_m, _rea, _fL],
|
|
1702
1413
|
[0, 0, () => ValidationExceptionFieldList],
|
|
1703
1414
|
];
|
|
@@ -1717,10 +1428,12 @@ var ActorSummaryList = [1, n0, _ASL, 0, () => ActorSummary];
|
|
|
1717
1428
|
var BrowserSessionSummaries = [1, n0, _BSSro, 0, () => BrowserSessionSummary];
|
|
1718
1429
|
var CodeInterpreterSessionSummaries = [1, n0, _CISSo, 0, () => CodeInterpreterSessionSummary];
|
|
1719
1430
|
var ContentBlockList = [1, n0, _CBL, 0, () => ContentBlock];
|
|
1431
|
+
var EvaluationResults = [1, n0, _ERva, 0, [() => EvaluationResultContent, 0]];
|
|
1720
1432
|
var EventList = [1, n0, _EL, 0, [() => Event, 0]];
|
|
1721
1433
|
var EventMetadataFilterList = [1, n0, _EMFL, 0, () => EventMetadataFilterExpression];
|
|
1722
1434
|
var ExtractionJobMetadataList = [1, n0, _EJML, 0, () => ExtractionJobMetadata];
|
|
1723
1435
|
var InputContentBlockList = [1, n0, _ICBL, 0, [() => InputContentBlock, 0]];
|
|
1436
|
+
var MemoryMetadataFilterList = [1, n0, _MMFL, 0, () => MemoryMetadataFilterExpression];
|
|
1724
1437
|
var MemoryRecordsCreateInputList = [1, n0, _MRCIL, 0, [() => MemoryRecordCreateInput, 0]];
|
|
1725
1438
|
var MemoryRecordsDeleteInputList = [1, n0, _MRDIL, 0, () => MemoryRecordDeleteInput];
|
|
1726
1439
|
var MemoryRecordsOutputList = [1, n0, _MROL, 0, () => MemoryRecordOutput];
|
|
@@ -1729,6 +1442,7 @@ var MemoryRecordsUpdateInputList = [1, n0, _MRUIL, 0, [() => MemoryRecordUpdateI
|
|
|
1729
1442
|
var MessagesList = [1, n0, _ML, 0, () => MessageMetadata];
|
|
1730
1443
|
var PayloadTypeList = [1, n0, _PTL, 0, [() => PayloadType, 0]];
|
|
1731
1444
|
var SessionSummaryList = [1, n0, _SSL, 0, () => SessionSummary];
|
|
1445
|
+
var Spans = [1, n0, _Sp, 8, 15];
|
|
1732
1446
|
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1733
1447
|
var CustomRequestParametersType = [2, n0, _CRPT, 0, [0, 0], [() => CustomRequestValueType, 0]];
|
|
1734
1448
|
var MetadataMap = [2, n0, _MMe, 0, 0, () => MetadataValue];
|
|
@@ -1736,9 +1450,7 @@ var CodeInterpreterStreamOutput = [
|
|
|
1736
1450
|
3,
|
|
1737
1451
|
n0,
|
|
1738
1452
|
_CISO,
|
|
1739
|
-
{
|
|
1740
|
-
[_s]: 1,
|
|
1741
|
-
},
|
|
1453
|
+
{ [_s]: 1 },
|
|
1742
1454
|
[_resu, _aDE, _cE, _iSE, _rNFE, _sQEE, _tE, _vE],
|
|
1743
1455
|
[
|
|
1744
1456
|
() => CodeInterpreterResult,
|
|
@@ -1752,6 +1464,9 @@ var CodeInterpreterStreamOutput = [
|
|
|
1752
1464
|
],
|
|
1753
1465
|
];
|
|
1754
1466
|
var Content = [3, n0, _Co, 0, [_te], [[() => SensitiveString, 0]]];
|
|
1467
|
+
var Context = [3, n0, _Con, 0, [_sCp], [() => SpanContext]];
|
|
1468
|
+
var EvaluationInput = [3, n0, _EI, 0, [_sSess], [[() => Spans, 0]]];
|
|
1469
|
+
var EvaluationTarget = [3, n0, _ET, 0, [_sIpa, _tIr], [64 | 0, 64 | 0]];
|
|
1755
1470
|
var ExtractionJobMessages = [3, n0, _EJMx, 0, [_mL], [() => MessagesList]];
|
|
1756
1471
|
var LeftExpression = [3, n0, _LE, 0, [_mK], [0]];
|
|
1757
1472
|
var MemoryContent = [3, n0, _MC, 0, [_te], [[() => SensitiveString, 0]]];
|
|
@@ -1761,7 +1476,7 @@ var PayloadType = [
|
|
|
1761
1476
|
n0,
|
|
1762
1477
|
_PT,
|
|
1763
1478
|
0,
|
|
1764
|
-
[
|
|
1479
|
+
[_conv, _bl],
|
|
1765
1480
|
[
|
|
1766
1481
|
[() => Conversational, 0],
|
|
1767
1482
|
[() => Document, 0],
|
|
@@ -1774,9 +1489,7 @@ var BatchCreateMemoryRecords = [
|
|
|
1774
1489
|
9,
|
|
1775
1490
|
n0,
|
|
1776
1491
|
_BCMR,
|
|
1777
|
-
{
|
|
1778
|
-
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchCreate", 201],
|
|
1779
|
-
},
|
|
1492
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchCreate", 201] },
|
|
1780
1493
|
() => BatchCreateMemoryRecordsInput,
|
|
1781
1494
|
() => BatchCreateMemoryRecordsOutput,
|
|
1782
1495
|
];
|
|
@@ -1784,9 +1497,7 @@ var BatchDeleteMemoryRecords = [
|
|
|
1784
1497
|
9,
|
|
1785
1498
|
n0,
|
|
1786
1499
|
_BDMR,
|
|
1787
|
-
{
|
|
1788
|
-
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchDelete", 200],
|
|
1789
|
-
},
|
|
1500
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchDelete", 200] },
|
|
1790
1501
|
() => BatchDeleteMemoryRecordsInput,
|
|
1791
1502
|
() => BatchDeleteMemoryRecordsOutput,
|
|
1792
1503
|
];
|
|
@@ -1794,9 +1505,7 @@ var BatchUpdateMemoryRecords = [
|
|
|
1794
1505
|
9,
|
|
1795
1506
|
n0,
|
|
1796
1507
|
_BUMR,
|
|
1797
|
-
{
|
|
1798
|
-
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchUpdate", 200],
|
|
1799
|
-
},
|
|
1508
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchUpdate", 200] },
|
|
1800
1509
|
() => BatchUpdateMemoryRecordsInput,
|
|
1801
1510
|
() => BatchUpdateMemoryRecordsOutput,
|
|
1802
1511
|
];
|
|
@@ -1804,9 +1513,7 @@ var CompleteResourceTokenAuth = [
|
|
|
1804
1513
|
9,
|
|
1805
1514
|
n0,
|
|
1806
1515
|
_CRTA,
|
|
1807
|
-
{
|
|
1808
|
-
[_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200],
|
|
1809
|
-
},
|
|
1516
|
+
{ [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200] },
|
|
1810
1517
|
() => CompleteResourceTokenAuthRequest,
|
|
1811
1518
|
() => CompleteResourceTokenAuthResponse,
|
|
1812
1519
|
];
|
|
@@ -1814,9 +1521,7 @@ var CreateEvent = [
|
|
|
1814
1521
|
9,
|
|
1815
1522
|
n0,
|
|
1816
1523
|
_CEr,
|
|
1817
|
-
{
|
|
1818
|
-
[_ht]: ["POST", "/memories/{memoryId}/events", 201],
|
|
1819
|
-
},
|
|
1524
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/events", 201] },
|
|
1820
1525
|
() => CreateEventInput,
|
|
1821
1526
|
() => CreateEventOutput,
|
|
1822
1527
|
];
|
|
@@ -1824,9 +1529,7 @@ var DeleteEvent = [
|
|
|
1824
1529
|
9,
|
|
1825
1530
|
n0,
|
|
1826
1531
|
_DE,
|
|
1827
|
-
{
|
|
1828
|
-
[_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200],
|
|
1829
|
-
},
|
|
1532
|
+
{ [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] },
|
|
1830
1533
|
() => DeleteEventInput,
|
|
1831
1534
|
() => DeleteEventOutput,
|
|
1832
1535
|
];
|
|
@@ -1834,19 +1537,23 @@ var DeleteMemoryRecord = [
|
|
|
1834
1537
|
9,
|
|
1835
1538
|
n0,
|
|
1836
1539
|
_DMR,
|
|
1837
|
-
{
|
|
1838
|
-
[_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200],
|
|
1839
|
-
},
|
|
1540
|
+
{ [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200] },
|
|
1840
1541
|
() => DeleteMemoryRecordInput,
|
|
1841
1542
|
() => DeleteMemoryRecordOutput,
|
|
1842
1543
|
];
|
|
1544
|
+
var Evaluate = [
|
|
1545
|
+
9,
|
|
1546
|
+
n0,
|
|
1547
|
+
_Ev,
|
|
1548
|
+
{ [_ht]: ["POST", "/evaluations/evaluate/{evaluatorId}", 200] },
|
|
1549
|
+
() => EvaluateRequest,
|
|
1550
|
+
() => EvaluateResponse,
|
|
1551
|
+
];
|
|
1843
1552
|
var GetAgentCard = [
|
|
1844
1553
|
9,
|
|
1845
1554
|
n0,
|
|
1846
1555
|
_GAC,
|
|
1847
|
-
{
|
|
1848
|
-
[_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200],
|
|
1849
|
-
},
|
|
1556
|
+
{ [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200] },
|
|
1850
1557
|
() => GetAgentCardRequest,
|
|
1851
1558
|
() => GetAgentCardResponse,
|
|
1852
1559
|
];
|
|
@@ -1854,9 +1561,7 @@ var GetBrowserSession = [
|
|
|
1854
1561
|
9,
|
|
1855
1562
|
n0,
|
|
1856
1563
|
_GBS,
|
|
1857
|
-
{
|
|
1858
|
-
[_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200],
|
|
1859
|
-
},
|
|
1564
|
+
{ [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200] },
|
|
1860
1565
|
() => GetBrowserSessionRequest,
|
|
1861
1566
|
() => GetBrowserSessionResponse,
|
|
1862
1567
|
];
|
|
@@ -1864,9 +1569,7 @@ var GetCodeInterpreterSession = [
|
|
|
1864
1569
|
9,
|
|
1865
1570
|
n0,
|
|
1866
1571
|
_GCIS,
|
|
1867
|
-
{
|
|
1868
|
-
[_ht]: ["GET", "/code-interpreters/{codeInterpreterIdentifier}/sessions/get", 200],
|
|
1869
|
-
},
|
|
1572
|
+
{ [_ht]: ["GET", "/code-interpreters/{codeInterpreterIdentifier}/sessions/get", 200] },
|
|
1870
1573
|
() => GetCodeInterpreterSessionRequest,
|
|
1871
1574
|
() => GetCodeInterpreterSessionResponse,
|
|
1872
1575
|
];
|
|
@@ -1874,9 +1577,7 @@ var GetEvent = [
|
|
|
1874
1577
|
9,
|
|
1875
1578
|
n0,
|
|
1876
1579
|
_GE,
|
|
1877
|
-
{
|
|
1878
|
-
[_ht]: ["GET", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200],
|
|
1879
|
-
},
|
|
1580
|
+
{ [_ht]: ["GET", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] },
|
|
1880
1581
|
() => GetEventInput,
|
|
1881
1582
|
() => GetEventOutput,
|
|
1882
1583
|
];
|
|
@@ -1884,9 +1585,7 @@ var GetMemoryRecord = [
|
|
|
1884
1585
|
9,
|
|
1885
1586
|
n0,
|
|
1886
1587
|
_GMR,
|
|
1887
|
-
{
|
|
1888
|
-
[_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200],
|
|
1889
|
-
},
|
|
1588
|
+
{ [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200] },
|
|
1890
1589
|
() => GetMemoryRecordInput,
|
|
1891
1590
|
() => GetMemoryRecordOutput,
|
|
1892
1591
|
];
|
|
@@ -1894,9 +1593,7 @@ var GetResourceApiKey = [
|
|
|
1894
1593
|
9,
|
|
1895
1594
|
n0,
|
|
1896
1595
|
_GRAK,
|
|
1897
|
-
{
|
|
1898
|
-
[_ht]: ["POST", "/identities/api-key", 200],
|
|
1899
|
-
},
|
|
1596
|
+
{ [_ht]: ["POST", "/identities/api-key", 200] },
|
|
1900
1597
|
() => GetResourceApiKeyRequest,
|
|
1901
1598
|
() => GetResourceApiKeyResponse,
|
|
1902
1599
|
];
|
|
@@ -1904,9 +1601,7 @@ var GetResourceOauth2Token = [
|
|
|
1904
1601
|
9,
|
|
1905
1602
|
n0,
|
|
1906
1603
|
_GROT,
|
|
1907
|
-
{
|
|
1908
|
-
[_ht]: ["POST", "/identities/oauth2/token", 200],
|
|
1909
|
-
},
|
|
1604
|
+
{ [_ht]: ["POST", "/identities/oauth2/token", 200] },
|
|
1910
1605
|
() => GetResourceOauth2TokenRequest,
|
|
1911
1606
|
() => GetResourceOauth2TokenResponse,
|
|
1912
1607
|
];
|
|
@@ -1914,9 +1609,7 @@ var GetWorkloadAccessToken = [
|
|
|
1914
1609
|
9,
|
|
1915
1610
|
n0,
|
|
1916
1611
|
_GWAT,
|
|
1917
|
-
{
|
|
1918
|
-
[_ht]: ["POST", "/identities/GetWorkloadAccessToken", 200],
|
|
1919
|
-
},
|
|
1612
|
+
{ [_ht]: ["POST", "/identities/GetWorkloadAccessToken", 200] },
|
|
1920
1613
|
() => GetWorkloadAccessTokenRequest,
|
|
1921
1614
|
() => GetWorkloadAccessTokenResponse,
|
|
1922
1615
|
];
|
|
@@ -1924,9 +1617,7 @@ var GetWorkloadAccessTokenForJWT = [
|
|
|
1924
1617
|
9,
|
|
1925
1618
|
n0,
|
|
1926
1619
|
_GWATFJWT,
|
|
1927
|
-
{
|
|
1928
|
-
[_ht]: ["POST", "/identities/GetWorkloadAccessTokenForJWT", 200],
|
|
1929
|
-
},
|
|
1620
|
+
{ [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForJWT", 200] },
|
|
1930
1621
|
() => GetWorkloadAccessTokenForJWTRequest,
|
|
1931
1622
|
() => GetWorkloadAccessTokenForJWTResponse,
|
|
1932
1623
|
];
|
|
@@ -1934,9 +1625,7 @@ var GetWorkloadAccessTokenForUserId = [
|
|
|
1934
1625
|
9,
|
|
1935
1626
|
n0,
|
|
1936
1627
|
_GWATFUI,
|
|
1937
|
-
{
|
|
1938
|
-
[_ht]: ["POST", "/identities/GetWorkloadAccessTokenForUserId", 200],
|
|
1939
|
-
},
|
|
1628
|
+
{ [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForUserId", 200] },
|
|
1940
1629
|
() => GetWorkloadAccessTokenForUserIdRequest,
|
|
1941
1630
|
() => GetWorkloadAccessTokenForUserIdResponse,
|
|
1942
1631
|
];
|
|
@@ -1944,9 +1633,7 @@ var InvokeAgentRuntime = [
|
|
|
1944
1633
|
9,
|
|
1945
1634
|
n0,
|
|
1946
1635
|
_IAR,
|
|
1947
|
-
{
|
|
1948
|
-
[_ht]: ["POST", "/runtimes/{agentRuntimeArn}/invocations", 200],
|
|
1949
|
-
},
|
|
1636
|
+
{ [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/invocations", 200] },
|
|
1950
1637
|
() => InvokeAgentRuntimeRequest,
|
|
1951
1638
|
() => InvokeAgentRuntimeResponse,
|
|
1952
1639
|
];
|
|
@@ -1954,9 +1641,7 @@ var InvokeCodeInterpreter = [
|
|
|
1954
1641
|
9,
|
|
1955
1642
|
n0,
|
|
1956
1643
|
_ICI,
|
|
1957
|
-
{
|
|
1958
|
-
[_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/tools/invoke", 200],
|
|
1959
|
-
},
|
|
1644
|
+
{ [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/tools/invoke", 200] },
|
|
1960
1645
|
() => InvokeCodeInterpreterRequest,
|
|
1961
1646
|
() => InvokeCodeInterpreterResponse,
|
|
1962
1647
|
];
|
|
@@ -1964,9 +1649,7 @@ var ListActors = [
|
|
|
1964
1649
|
9,
|
|
1965
1650
|
n0,
|
|
1966
1651
|
_LA,
|
|
1967
|
-
{
|
|
1968
|
-
[_ht]: ["POST", "/memories/{memoryId}/actors", 200],
|
|
1969
|
-
},
|
|
1652
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/actors", 200] },
|
|
1970
1653
|
() => ListActorsInput,
|
|
1971
1654
|
() => ListActorsOutput,
|
|
1972
1655
|
];
|
|
@@ -1974,9 +1657,7 @@ var ListBrowserSessions = [
|
|
|
1974
1657
|
9,
|
|
1975
1658
|
n0,
|
|
1976
1659
|
_LBS,
|
|
1977
|
-
{
|
|
1978
|
-
[_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200],
|
|
1979
|
-
},
|
|
1660
|
+
{ [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200] },
|
|
1980
1661
|
() => ListBrowserSessionsRequest,
|
|
1981
1662
|
() => ListBrowserSessionsResponse,
|
|
1982
1663
|
];
|
|
@@ -1984,9 +1665,7 @@ var ListCodeInterpreterSessions = [
|
|
|
1984
1665
|
9,
|
|
1985
1666
|
n0,
|
|
1986
1667
|
_LCIS,
|
|
1987
|
-
{
|
|
1988
|
-
[_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/sessions/list", 200],
|
|
1989
|
-
},
|
|
1668
|
+
{ [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/sessions/list", 200] },
|
|
1990
1669
|
() => ListCodeInterpreterSessionsRequest,
|
|
1991
1670
|
() => ListCodeInterpreterSessionsResponse,
|
|
1992
1671
|
];
|
|
@@ -1994,9 +1673,7 @@ var ListEvents = [
|
|
|
1994
1673
|
9,
|
|
1995
1674
|
n0,
|
|
1996
1675
|
_LEi,
|
|
1997
|
-
{
|
|
1998
|
-
[_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}", 200],
|
|
1999
|
-
},
|
|
1676
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}", 200] },
|
|
2000
1677
|
() => ListEventsInput,
|
|
2001
1678
|
() => ListEventsOutput,
|
|
2002
1679
|
];
|
|
@@ -2004,9 +1681,7 @@ var ListMemoryExtractionJobs = [
|
|
|
2004
1681
|
9,
|
|
2005
1682
|
n0,
|
|
2006
1683
|
_LMEJ,
|
|
2007
|
-
{
|
|
2008
|
-
[_ht]: ["POST", "/memories/{memoryId}/extractionJobs", 200],
|
|
2009
|
-
},
|
|
1684
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/extractionJobs", 200] },
|
|
2010
1685
|
() => ListMemoryExtractionJobsInput,
|
|
2011
1686
|
() => ListMemoryExtractionJobsOutput,
|
|
2012
1687
|
];
|
|
@@ -2014,9 +1689,7 @@ var ListMemoryRecords = [
|
|
|
2014
1689
|
9,
|
|
2015
1690
|
n0,
|
|
2016
1691
|
_LMR,
|
|
2017
|
-
{
|
|
2018
|
-
[_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200],
|
|
2019
|
-
},
|
|
1692
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200] },
|
|
2020
1693
|
() => ListMemoryRecordsInput,
|
|
2021
1694
|
() => ListMemoryRecordsOutput,
|
|
2022
1695
|
];
|
|
@@ -2024,9 +1697,7 @@ var ListSessions = [
|
|
|
2024
1697
|
9,
|
|
2025
1698
|
n0,
|
|
2026
1699
|
_LS,
|
|
2027
|
-
{
|
|
2028
|
-
[_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200],
|
|
2029
|
-
},
|
|
1700
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200] },
|
|
2030
1701
|
() => ListSessionsInput,
|
|
2031
1702
|
() => ListSessionsOutput,
|
|
2032
1703
|
];
|
|
@@ -2034,9 +1705,7 @@ var RetrieveMemoryRecords = [
|
|
|
2034
1705
|
9,
|
|
2035
1706
|
n0,
|
|
2036
1707
|
_RMR,
|
|
2037
|
-
{
|
|
2038
|
-
[_ht]: ["POST", "/memories/{memoryId}/retrieve", 200],
|
|
2039
|
-
},
|
|
1708
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/retrieve", 200] },
|
|
2040
1709
|
() => RetrieveMemoryRecordsInput,
|
|
2041
1710
|
() => RetrieveMemoryRecordsOutput,
|
|
2042
1711
|
];
|
|
@@ -2044,9 +1713,7 @@ var StartBrowserSession = [
|
|
|
2044
1713
|
9,
|
|
2045
1714
|
n0,
|
|
2046
1715
|
_SBS,
|
|
2047
|
-
{
|
|
2048
|
-
[_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200],
|
|
2049
|
-
},
|
|
1716
|
+
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200] },
|
|
2050
1717
|
() => StartBrowserSessionRequest,
|
|
2051
1718
|
() => StartBrowserSessionResponse,
|
|
2052
1719
|
];
|
|
@@ -2054,9 +1721,7 @@ var StartCodeInterpreterSession = [
|
|
|
2054
1721
|
9,
|
|
2055
1722
|
n0,
|
|
2056
1723
|
_SCIS,
|
|
2057
|
-
{
|
|
2058
|
-
[_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/start", 200],
|
|
2059
|
-
},
|
|
1724
|
+
{ [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/start", 200] },
|
|
2060
1725
|
() => StartCodeInterpreterSessionRequest,
|
|
2061
1726
|
() => StartCodeInterpreterSessionResponse,
|
|
2062
1727
|
];
|
|
@@ -2064,9 +1729,7 @@ var StartMemoryExtractionJob = [
|
|
|
2064
1729
|
9,
|
|
2065
1730
|
n0,
|
|
2066
1731
|
_SMEJ,
|
|
2067
|
-
{
|
|
2068
|
-
[_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200],
|
|
2069
|
-
},
|
|
1732
|
+
{ [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200] },
|
|
2070
1733
|
() => StartMemoryExtractionJobInput,
|
|
2071
1734
|
() => StartMemoryExtractionJobOutput,
|
|
2072
1735
|
];
|
|
@@ -2074,9 +1737,7 @@ var StopBrowserSession = [
|
|
|
2074
1737
|
9,
|
|
2075
1738
|
n0,
|
|
2076
1739
|
_SBSt,
|
|
2077
|
-
{
|
|
2078
|
-
[_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200],
|
|
2079
|
-
},
|
|
1740
|
+
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200] },
|
|
2080
1741
|
() => StopBrowserSessionRequest,
|
|
2081
1742
|
() => StopBrowserSessionResponse,
|
|
2082
1743
|
];
|
|
@@ -2084,9 +1745,7 @@ var StopCodeInterpreterSession = [
|
|
|
2084
1745
|
9,
|
|
2085
1746
|
n0,
|
|
2086
1747
|
_SCISt,
|
|
2087
|
-
{
|
|
2088
|
-
[_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/stop", 200],
|
|
2089
|
-
},
|
|
1748
|
+
{ [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/stop", 200] },
|
|
2090
1749
|
() => StopCodeInterpreterSessionRequest,
|
|
2091
1750
|
() => StopCodeInterpreterSessionResponse,
|
|
2092
1751
|
];
|
|
@@ -2094,9 +1753,7 @@ var StopRuntimeSession = [
|
|
|
2094
1753
|
9,
|
|
2095
1754
|
n0,
|
|
2096
1755
|
_SRS,
|
|
2097
|
-
{
|
|
2098
|
-
[_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200],
|
|
2099
|
-
},
|
|
1756
|
+
{ [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200] },
|
|
2100
1757
|
() => StopRuntimeSessionRequest,
|
|
2101
1758
|
() => StopRuntimeSessionResponse,
|
|
2102
1759
|
];
|
|
@@ -2104,9 +1761,7 @@ var UpdateBrowserStream = [
|
|
|
2104
1761
|
9,
|
|
2105
1762
|
n0,
|
|
2106
1763
|
_UBS,
|
|
2107
|
-
{
|
|
2108
|
-
[_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200],
|
|
2109
|
-
},
|
|
1764
|
+
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200] },
|
|
2110
1765
|
() => UpdateBrowserStreamRequest,
|
|
2111
1766
|
() => UpdateBrowserStreamResponse,
|
|
2112
1767
|
];
|
|
@@ -2195,6 +1850,18 @@ class DeleteMemoryRecordCommand extends smithyClient.Command
|
|
|
2195
1850
|
.build() {
|
|
2196
1851
|
}
|
|
2197
1852
|
|
|
1853
|
+
class EvaluateCommand extends smithyClient.Command
|
|
1854
|
+
.classBuilder()
|
|
1855
|
+
.ep(commonParams)
|
|
1856
|
+
.m(function (Command, cs, config, o) {
|
|
1857
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1858
|
+
})
|
|
1859
|
+
.s("AmazonBedrockAgentCore", "Evaluate", {})
|
|
1860
|
+
.n("BedrockAgentCoreClient", "EvaluateCommand")
|
|
1861
|
+
.sc(Evaluate)
|
|
1862
|
+
.build() {
|
|
1863
|
+
}
|
|
1864
|
+
|
|
2198
1865
|
class GetAgentCardCommand extends smithyClient.Command
|
|
2199
1866
|
.classBuilder()
|
|
2200
1867
|
.ep(commonParams)
|
|
@@ -2531,6 +2198,7 @@ const commands = {
|
|
|
2531
2198
|
CreateEventCommand,
|
|
2532
2199
|
DeleteEventCommand,
|
|
2533
2200
|
DeleteMemoryRecordCommand,
|
|
2201
|
+
EvaluateCommand,
|
|
2534
2202
|
GetAgentCardCommand,
|
|
2535
2203
|
GetBrowserSessionCommand,
|
|
2536
2204
|
GetCodeInterpreterSessionCommand,
|
|
@@ -2678,6 +2346,8 @@ exports.ContentBlockType = ContentBlockType;
|
|
|
2678
2346
|
exports.CreateEventCommand = CreateEventCommand;
|
|
2679
2347
|
exports.DeleteEventCommand = DeleteEventCommand;
|
|
2680
2348
|
exports.DeleteMemoryRecordCommand = DeleteMemoryRecordCommand;
|
|
2349
|
+
exports.DuplicateIdException = DuplicateIdException$1;
|
|
2350
|
+
exports.EvaluateCommand = EvaluateCommand;
|
|
2681
2351
|
exports.ExtractionJobStatus = ExtractionJobStatus;
|
|
2682
2352
|
exports.GetAgentCardCommand = GetAgentCardCommand;
|
|
2683
2353
|
exports.GetBrowserSessionCommand = GetBrowserSessionCommand;
|