@aws-sdk/client-bedrock-agentcore 3.1038.0 → 3.1040.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.
Files changed (88) hide show
  1. package/README.md +105 -7
  2. package/dist-cjs/index.js +275 -0
  3. package/dist-cjs/schemas/schemas_0.js +851 -99
  4. package/dist-es/BedrockAgentCore.js +34 -0
  5. package/dist-es/commands/CreateABTestCommand.js +16 -0
  6. package/dist-es/commands/DeleteABTestCommand.js +16 -0
  7. package/dist-es/commands/DeleteBatchEvaluationCommand.js +16 -0
  8. package/dist-es/commands/DeleteRecommendationCommand.js +16 -0
  9. package/dist-es/commands/GetABTestCommand.js +16 -0
  10. package/dist-es/commands/GetBatchEvaluationCommand.js +16 -0
  11. package/dist-es/commands/GetRecommendationCommand.js +16 -0
  12. package/dist-es/commands/ListABTestsCommand.js +16 -0
  13. package/dist-es/commands/ListBatchEvaluationsCommand.js +16 -0
  14. package/dist-es/commands/ListRecommendationsCommand.js +16 -0
  15. package/dist-es/commands/StartBatchEvaluationCommand.js +16 -0
  16. package/dist-es/commands/StartRecommendationCommand.js +16 -0
  17. package/dist-es/commands/StopBatchEvaluationCommand.js +16 -0
  18. package/dist-es/commands/UpdateABTestCommand.js +16 -0
  19. package/dist-es/commands/index.js +14 -0
  20. package/dist-es/index.js +1 -0
  21. package/dist-es/models/enums.js +60 -0
  22. package/dist-es/models/models_1.js +1 -0
  23. package/dist-es/pagination/ListABTestsPaginator.js +4 -0
  24. package/dist-es/pagination/ListBatchEvaluationsPaginator.js +4 -0
  25. package/dist-es/pagination/ListRecommendationsPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +3 -0
  27. package/dist-es/schemas/schemas_0.js +843 -93
  28. package/dist-types/BedrockAgentCore.d.ts +122 -0
  29. package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
  30. package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +10 -0
  31. package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +10 -0
  32. package/dist-types/commands/CreateABTestCommand.d.ts +134 -0
  33. package/dist-types/commands/DeleteABTestCommand.d.ts +97 -0
  34. package/dist-types/commands/DeleteBatchEvaluationCommand.d.ts +97 -0
  35. package/dist-types/commands/DeleteRecommendationCommand.d.ts +93 -0
  36. package/dist-types/commands/GetABTestCommand.d.ts +165 -0
  37. package/dist-types/commands/GetBatchEvaluationCommand.d.ts +148 -0
  38. package/dist-types/commands/GetMemoryRecordCommand.d.ts +7 -2
  39. package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
  40. package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +7 -1
  41. package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
  42. package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
  43. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +25 -2
  44. package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
  45. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +16 -6
  46. package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +2 -1
  47. package/dist-types/commands/StartBatchEvaluationCommand.d.ts +172 -0
  48. package/dist-types/commands/StartRecommendationCommand.d.ts +300 -0
  49. package/dist-types/commands/StopBatchEvaluationCommand.d.ts +98 -0
  50. package/dist-types/commands/UpdateABTestCommand.d.ts +136 -0
  51. package/dist-types/commands/index.d.ts +14 -0
  52. package/dist-types/index.d.ts +1 -0
  53. package/dist-types/models/enums.d.ts +116 -0
  54. package/dist-types/models/models_0.d.ts +2595 -386
  55. package/dist-types/models/models_1.d.ts +147 -0
  56. package/dist-types/pagination/ListABTestsPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListBatchEvaluationsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
  59. package/dist-types/pagination/index.d.ts +3 -0
  60. package/dist-types/schemas/schemas_0.d.ts +99 -0
  61. package/dist-types/ts3.4/BedrockAgentCore.d.ts +262 -0
  62. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +84 -0
  63. package/dist-types/ts3.4/commands/CreateABTestCommand.d.ts +47 -0
  64. package/dist-types/ts3.4/commands/DeleteABTestCommand.d.ts +47 -0
  65. package/dist-types/ts3.4/commands/DeleteBatchEvaluationCommand.d.ts +51 -0
  66. package/dist-types/ts3.4/commands/DeleteRecommendationCommand.d.ts +51 -0
  67. package/dist-types/ts3.4/commands/GetABTestCommand.d.ts +47 -0
  68. package/dist-types/ts3.4/commands/GetBatchEvaluationCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/ListABTestsCommand.d.ts +47 -0
  71. package/dist-types/ts3.4/commands/ListBatchEvaluationsCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +2 -4
  74. package/dist-types/ts3.4/commands/StartBatchEvaluationCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/StartRecommendationCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/StopBatchEvaluationCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/UpdateABTestCommand.d.ts +47 -0
  78. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  79. package/dist-types/ts3.4/index.d.ts +1 -0
  80. package/dist-types/ts3.4/models/enums.d.ts +73 -0
  81. package/dist-types/ts3.4/models/models_0.d.ts +801 -43
  82. package/dist-types/ts3.4/models/models_1.d.ts +40 -0
  83. package/dist-types/ts3.4/pagination/ListABTestsPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/ListBatchEvaluationsPaginator.d.ts +11 -0
  85. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
  86. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  87. package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
  88. package/package.json +7 -7
package/dist-cjs/index.js CHANGED
@@ -163,6 +163,18 @@ class CompleteResourceTokenAuthCommand extends smithyClient.Command
163
163
  .build() {
164
164
  }
165
165
 
166
+ class CreateABTestCommand extends smithyClient.Command
167
+ .classBuilder()
168
+ .ep(commonParams)
169
+ .m(function (Command, cs, config, o) {
170
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
171
+ })
172
+ .s("AmazonBedrockAgentCore", "CreateABTest", {})
173
+ .n("BedrockAgentCoreClient", "CreateABTestCommand")
174
+ .sc(schemas_0.CreateABTest$)
175
+ .build() {
176
+ }
177
+
166
178
  class CreateEventCommand extends smithyClient.Command
167
179
  .classBuilder()
168
180
  .ep(commonParams)
@@ -175,6 +187,30 @@ class CreateEventCommand extends smithyClient.Command
175
187
  .build() {
176
188
  }
177
189
 
190
+ class DeleteABTestCommand extends smithyClient.Command
191
+ .classBuilder()
192
+ .ep(commonParams)
193
+ .m(function (Command, cs, config, o) {
194
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
195
+ })
196
+ .s("AmazonBedrockAgentCore", "DeleteABTest", {})
197
+ .n("BedrockAgentCoreClient", "DeleteABTestCommand")
198
+ .sc(schemas_0.DeleteABTest$)
199
+ .build() {
200
+ }
201
+
202
+ class DeleteBatchEvaluationCommand extends smithyClient.Command
203
+ .classBuilder()
204
+ .ep(commonParams)
205
+ .m(function (Command, cs, config, o) {
206
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
207
+ })
208
+ .s("AmazonBedrockAgentCore", "DeleteBatchEvaluation", {})
209
+ .n("BedrockAgentCoreClient", "DeleteBatchEvaluationCommand")
210
+ .sc(schemas_0.DeleteBatchEvaluation$)
211
+ .build() {
212
+ }
213
+
178
214
  class DeleteEventCommand extends smithyClient.Command
179
215
  .classBuilder()
180
216
  .ep(commonParams)
@@ -199,6 +235,18 @@ class DeleteMemoryRecordCommand extends smithyClient.Command
199
235
  .build() {
200
236
  }
201
237
 
238
+ class DeleteRecommendationCommand extends smithyClient.Command
239
+ .classBuilder()
240
+ .ep(commonParams)
241
+ .m(function (Command, cs, config, o) {
242
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
243
+ })
244
+ .s("AmazonBedrockAgentCore", "DeleteRecommendation", {})
245
+ .n("BedrockAgentCoreClient", "DeleteRecommendationCommand")
246
+ .sc(schemas_0.DeleteRecommendation$)
247
+ .build() {
248
+ }
249
+
202
250
  class EvaluateCommand extends smithyClient.Command
203
251
  .classBuilder()
204
252
  .ep(commonParams)
@@ -211,6 +259,18 @@ class EvaluateCommand extends smithyClient.Command
211
259
  .build() {
212
260
  }
213
261
 
262
+ class GetABTestCommand extends smithyClient.Command
263
+ .classBuilder()
264
+ .ep(commonParams)
265
+ .m(function (Command, cs, config, o) {
266
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
267
+ })
268
+ .s("AmazonBedrockAgentCore", "GetABTest", {})
269
+ .n("BedrockAgentCoreClient", "GetABTestCommand")
270
+ .sc(schemas_0.GetABTest$)
271
+ .build() {
272
+ }
273
+
214
274
  class GetAgentCardCommand extends smithyClient.Command
215
275
  .classBuilder()
216
276
  .ep(commonParams)
@@ -223,6 +283,18 @@ class GetAgentCardCommand extends smithyClient.Command
223
283
  .build() {
224
284
  }
225
285
 
286
+ class GetBatchEvaluationCommand extends smithyClient.Command
287
+ .classBuilder()
288
+ .ep(commonParams)
289
+ .m(function (Command, cs, config, o) {
290
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
291
+ })
292
+ .s("AmazonBedrockAgentCore", "GetBatchEvaluation", {})
293
+ .n("BedrockAgentCoreClient", "GetBatchEvaluationCommand")
294
+ .sc(schemas_0.GetBatchEvaluation$)
295
+ .build() {
296
+ }
297
+
226
298
  class GetBrowserSessionCommand extends smithyClient.Command
227
299
  .classBuilder()
228
300
  .ep(commonParams)
@@ -271,6 +343,18 @@ class GetMemoryRecordCommand extends smithyClient.Command
271
343
  .build() {
272
344
  }
273
345
 
346
+ class GetRecommendationCommand extends smithyClient.Command
347
+ .classBuilder()
348
+ .ep(commonParams)
349
+ .m(function (Command, cs, config, o) {
350
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
351
+ })
352
+ .s("AmazonBedrockAgentCore", "GetRecommendation", {})
353
+ .n("BedrockAgentCoreClient", "GetRecommendationCommand")
354
+ .sc(schemas_0.GetRecommendation$)
355
+ .build() {
356
+ }
357
+
274
358
  class GetResourceApiKeyCommand extends smithyClient.Command
275
359
  .classBuilder()
276
360
  .ep(commonParams)
@@ -403,6 +487,18 @@ class InvokeHarnessCommand extends smithyClient.Command
403
487
  .build() {
404
488
  }
405
489
 
490
+ class ListABTestsCommand extends smithyClient.Command
491
+ .classBuilder()
492
+ .ep(commonParams)
493
+ .m(function (Command, cs, config, o) {
494
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
495
+ })
496
+ .s("AmazonBedrockAgentCore", "ListABTests", {})
497
+ .n("BedrockAgentCoreClient", "ListABTestsCommand")
498
+ .sc(schemas_0.ListABTests$)
499
+ .build() {
500
+ }
501
+
406
502
  class ListActorsCommand extends smithyClient.Command
407
503
  .classBuilder()
408
504
  .ep(commonParams)
@@ -415,6 +511,18 @@ class ListActorsCommand extends smithyClient.Command
415
511
  .build() {
416
512
  }
417
513
 
514
+ class ListBatchEvaluationsCommand extends smithyClient.Command
515
+ .classBuilder()
516
+ .ep(commonParams)
517
+ .m(function (Command, cs, config, o) {
518
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
519
+ })
520
+ .s("AmazonBedrockAgentCore", "ListBatchEvaluations", {})
521
+ .n("BedrockAgentCoreClient", "ListBatchEvaluationsCommand")
522
+ .sc(schemas_0.ListBatchEvaluations$)
523
+ .build() {
524
+ }
525
+
418
526
  class ListBrowserSessionsCommand extends smithyClient.Command
419
527
  .classBuilder()
420
528
  .ep(commonParams)
@@ -475,6 +583,18 @@ class ListMemoryRecordsCommand extends smithyClient.Command
475
583
  .build() {
476
584
  }
477
585
 
586
+ class ListRecommendationsCommand extends smithyClient.Command
587
+ .classBuilder()
588
+ .ep(commonParams)
589
+ .m(function (Command, cs, config, o) {
590
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
591
+ })
592
+ .s("AmazonBedrockAgentCore", "ListRecommendations", {})
593
+ .n("BedrockAgentCoreClient", "ListRecommendationsCommand")
594
+ .sc(schemas_0.ListRecommendations$)
595
+ .build() {
596
+ }
597
+
478
598
  class ListSessionsCommand extends smithyClient.Command
479
599
  .classBuilder()
480
600
  .ep(commonParams)
@@ -523,6 +643,18 @@ class SearchRegistryRecordsCommand extends smithyClient.Command
523
643
  .build() {
524
644
  }
525
645
 
646
+ class StartBatchEvaluationCommand extends smithyClient.Command
647
+ .classBuilder()
648
+ .ep(commonParams)
649
+ .m(function (Command, cs, config, o) {
650
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
651
+ })
652
+ .s("AmazonBedrockAgentCore", "StartBatchEvaluation", {})
653
+ .n("BedrockAgentCoreClient", "StartBatchEvaluationCommand")
654
+ .sc(schemas_0.StartBatchEvaluation$)
655
+ .build() {
656
+ }
657
+
526
658
  class StartBrowserSessionCommand extends smithyClient.Command
527
659
  .classBuilder()
528
660
  .ep(commonParams)
@@ -559,6 +691,30 @@ class StartMemoryExtractionJobCommand extends smithyClient.Command
559
691
  .build() {
560
692
  }
561
693
 
694
+ class StartRecommendationCommand extends smithyClient.Command
695
+ .classBuilder()
696
+ .ep(commonParams)
697
+ .m(function (Command, cs, config, o) {
698
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
699
+ })
700
+ .s("AmazonBedrockAgentCore", "StartRecommendation", {})
701
+ .n("BedrockAgentCoreClient", "StartRecommendationCommand")
702
+ .sc(schemas_0.StartRecommendation$)
703
+ .build() {
704
+ }
705
+
706
+ class StopBatchEvaluationCommand extends smithyClient.Command
707
+ .classBuilder()
708
+ .ep(commonParams)
709
+ .m(function (Command, cs, config, o) {
710
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
711
+ })
712
+ .s("AmazonBedrockAgentCore", "StopBatchEvaluation", {})
713
+ .n("BedrockAgentCoreClient", "StopBatchEvaluationCommand")
714
+ .sc(schemas_0.StopBatchEvaluation$)
715
+ .build() {
716
+ }
717
+
562
718
  class StopBrowserSessionCommand extends smithyClient.Command
563
719
  .classBuilder()
564
720
  .ep(commonParams)
@@ -595,6 +751,18 @@ class StopRuntimeSessionCommand extends smithyClient.Command
595
751
  .build() {
596
752
  }
597
753
 
754
+ class UpdateABTestCommand extends smithyClient.Command
755
+ .classBuilder()
756
+ .ep(commonParams)
757
+ .m(function (Command, cs, config, o) {
758
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
759
+ })
760
+ .s("AmazonBedrockAgentCore", "UpdateABTest", {})
761
+ .n("BedrockAgentCoreClient", "UpdateABTestCommand")
762
+ .sc(schemas_0.UpdateABTest$)
763
+ .build() {
764
+ }
765
+
598
766
  class UpdateBrowserStreamCommand extends smithyClient.Command
599
767
  .classBuilder()
600
768
  .ep(commonParams)
@@ -607,14 +775,20 @@ class UpdateBrowserStreamCommand extends smithyClient.Command
607
775
  .build() {
608
776
  }
609
777
 
778
+ const paginateListABTests = core.createPaginator(BedrockAgentCoreClient, ListABTestsCommand, "nextToken", "nextToken", "maxResults");
779
+
610
780
  const paginateListActors = core.createPaginator(BedrockAgentCoreClient, ListActorsCommand, "nextToken", "nextToken", "maxResults");
611
781
 
782
+ const paginateListBatchEvaluations = core.createPaginator(BedrockAgentCoreClient, ListBatchEvaluationsCommand, "nextToken", "nextToken", "maxResults");
783
+
612
784
  const paginateListEvents = core.createPaginator(BedrockAgentCoreClient, ListEventsCommand, "nextToken", "nextToken", "maxResults");
613
785
 
614
786
  const paginateListMemoryExtractionJobs = core.createPaginator(BedrockAgentCoreClient, ListMemoryExtractionJobsCommand, "nextToken", "nextToken", "maxResults");
615
787
 
616
788
  const paginateListMemoryRecords = core.createPaginator(BedrockAgentCoreClient, ListMemoryRecordsCommand, "nextToken", "nextToken", "maxResults");
617
789
 
790
+ const paginateListRecommendations = core.createPaginator(BedrockAgentCoreClient, ListRecommendationsCommand, "nextToken", "nextToken", "maxResults");
791
+
618
792
  const paginateListSessions = core.createPaginator(BedrockAgentCoreClient, ListSessionsCommand, "nextToken", "nextToken", "maxResults");
619
793
 
620
794
  const paginateRetrieveMemoryRecords = core.createPaginator(BedrockAgentCoreClient, RetrieveMemoryRecordsCommand, "nextToken", "nextToken", "maxResults");
@@ -624,15 +798,22 @@ const commands = {
624
798
  BatchDeleteMemoryRecordsCommand,
625
799
  BatchUpdateMemoryRecordsCommand,
626
800
  CompleteResourceTokenAuthCommand,
801
+ CreateABTestCommand,
627
802
  CreateEventCommand,
803
+ DeleteABTestCommand,
804
+ DeleteBatchEvaluationCommand,
628
805
  DeleteEventCommand,
629
806
  DeleteMemoryRecordCommand,
807
+ DeleteRecommendationCommand,
630
808
  EvaluateCommand,
809
+ GetABTestCommand,
631
810
  GetAgentCardCommand,
811
+ GetBatchEvaluationCommand,
632
812
  GetBrowserSessionCommand,
633
813
  GetCodeInterpreterSessionCommand,
634
814
  GetEventCommand,
635
815
  GetMemoryRecordCommand,
816
+ GetRecommendationCommand,
636
817
  GetResourceApiKeyCommand,
637
818
  GetResourceOauth2TokenCommand,
638
819
  GetWorkloadAccessTokenCommand,
@@ -643,29 +824,39 @@ const commands = {
643
824
  InvokeBrowserCommand,
644
825
  InvokeCodeInterpreterCommand,
645
826
  InvokeHarnessCommand,
827
+ ListABTestsCommand,
646
828
  ListActorsCommand,
829
+ ListBatchEvaluationsCommand,
647
830
  ListBrowserSessionsCommand,
648
831
  ListCodeInterpreterSessionsCommand,
649
832
  ListEventsCommand,
650
833
  ListMemoryExtractionJobsCommand,
651
834
  ListMemoryRecordsCommand,
835
+ ListRecommendationsCommand,
652
836
  ListSessionsCommand,
653
837
  RetrieveMemoryRecordsCommand,
654
838
  SaveBrowserSessionProfileCommand,
655
839
  SearchRegistryRecordsCommand,
840
+ StartBatchEvaluationCommand,
656
841
  StartBrowserSessionCommand,
657
842
  StartCodeInterpreterSessionCommand,
658
843
  StartMemoryExtractionJobCommand,
844
+ StartRecommendationCommand,
845
+ StopBatchEvaluationCommand,
659
846
  StopBrowserSessionCommand,
660
847
  StopCodeInterpreterSessionCommand,
661
848
  StopRuntimeSessionCommand,
849
+ UpdateABTestCommand,
662
850
  UpdateBrowserStreamCommand,
663
851
  };
664
852
  const paginators = {
853
+ paginateListABTests,
665
854
  paginateListActors,
855
+ paginateListBatchEvaluations,
666
856
  paginateListEvents,
667
857
  paginateListMemoryExtractionJobs,
668
858
  paginateListMemoryRecords,
859
+ paginateListRecommendations,
669
860
  paginateListSessions,
670
861
  paginateRetrieveMemoryRecords,
671
862
  };
@@ -673,6 +864,22 @@ class BedrockAgentCore extends BedrockAgentCoreClient {
673
864
  }
674
865
  smithyClient.createAggregatedClient(commands, BedrockAgentCore, { paginators });
675
866
 
867
+ const ABTestExecutionStatus = {
868
+ NOT_STARTED: "NOT_STARTED",
869
+ PAUSED: "PAUSED",
870
+ RUNNING: "RUNNING",
871
+ STOPPED: "STOPPED",
872
+ };
873
+ const ABTestStatus = {
874
+ ACTIVE: "ACTIVE",
875
+ CREATE_FAILED: "CREATE_FAILED",
876
+ CREATING: "CREATING",
877
+ DELETE_FAILED: "DELETE_FAILED",
878
+ DELETING: "DELETING",
879
+ FAILED: "FAILED",
880
+ UPDATE_FAILED: "UPDATE_FAILED",
881
+ UPDATING: "UPDATING",
882
+ };
676
883
  const ValidationExceptionReason = {
677
884
  CANNOT_PARSE: "CannotParse",
678
885
  FIELD_VALIDATION_FAILED: "FieldValidationFailed",
@@ -684,6 +891,16 @@ const CommandExecutionStatus = {
684
891
  COMPLETED: "COMPLETED",
685
892
  TIMED_OUT: "TIMED_OUT",
686
893
  };
894
+ const CloudWatchLogsFilterOperator = {
895
+ CONTAINS: "Contains",
896
+ EQUALS: "Equals",
897
+ GREATER_THAN: "GreaterThan",
898
+ GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual",
899
+ LESS_THAN: "LessThan",
900
+ LESS_THAN_OR_EQUAL: "LessThanOrEqual",
901
+ NOT_CONTAINS: "NotContains",
902
+ NOT_EQUALS: "NotEquals",
903
+ };
687
904
  const BrowserEnterprisePolicyType = {
688
905
  MANAGED: "MANAGED",
689
906
  RECOMMENDED: "RECOMMENDED",
@@ -712,8 +929,30 @@ const CodeInterpreterSessionStatus = {
712
929
  READY: "READY",
713
930
  TERMINATED: "TERMINATED",
714
931
  };
932
+ const BatchEvaluationStatus = {
933
+ COMPLETED: "COMPLETED",
934
+ COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
935
+ DELETING: "DELETING",
936
+ FAILED: "FAILED",
937
+ IN_PROGRESS: "IN_PROGRESS",
938
+ PENDING: "PENDING",
939
+ STOPPED: "STOPPED",
940
+ STOPPING: "STOPPING",
941
+ };
942
+ const RecommendationStatus = {
943
+ COMPLETED: "COMPLETED",
944
+ DELETING: "DELETING",
945
+ FAILED: "FAILED",
946
+ IN_PROGRESS: "IN_PROGRESS",
947
+ PENDING: "PENDING",
948
+ };
949
+ const RecommendationType = {
950
+ SYSTEM_PROMPT_RECOMMENDATION: "SYSTEM_PROMPT_RECOMMENDATION",
951
+ TOOL_DESCRIPTION_RECOMMENDATION: "TOOL_DESCRIPTION_RECOMMENDATION",
952
+ };
715
953
  const Oauth2FlowType = {
716
954
  M2M: "M2M",
955
+ ON_BEHALF_OF_TOKEN_EXCHANGE: "ON_BEHALF_OF_TOKEN_EXCHANGE",
717
956
  USER_FEDERATION: "USER_FEDERATION",
718
957
  };
719
958
  const SessionStatus = {
@@ -816,6 +1055,18 @@ const OperatorType = {
816
1055
  const ExtractionJobStatus = {
817
1056
  FAILED: "FAILED",
818
1057
  };
1058
+ const MemoryRecordOperatorType = {
1059
+ AFTER: "AFTER",
1060
+ BEFORE: "BEFORE",
1061
+ CONTAINS: "CONTAINS",
1062
+ EQUALS_TO: "EQUALS_TO",
1063
+ EXISTS: "EXISTS",
1064
+ GREATER_THAN: "GREATER_THAN",
1065
+ GREATER_THAN_OR_EQUALS: "GREATER_THAN_OR_EQUALS",
1066
+ LESS_THAN: "LESS_THAN",
1067
+ LESS_THAN_OR_EQUALS: "LESS_THAN_OR_EQUALS",
1068
+ NOT_EXISTS: "NOT_EXISTS",
1069
+ };
819
1070
  const EventFilterCondition = {
820
1071
  HAS_EVENTS: "HAS_EVENTS",
821
1072
  };
@@ -836,31 +1087,42 @@ const RegistryRecordStatus = {
836
1087
  exports.$Command = smithyClient.Command;
837
1088
  exports.__Client = smithyClient.Client;
838
1089
  exports.BedrockAgentCoreServiceException = BedrockAgentCoreServiceException.BedrockAgentCoreServiceException;
1090
+ exports.ABTestExecutionStatus = ABTestExecutionStatus;
1091
+ exports.ABTestStatus = ABTestStatus;
839
1092
  exports.AutomationStreamStatus = AutomationStreamStatus;
840
1093
  exports.BatchCreateMemoryRecordsCommand = BatchCreateMemoryRecordsCommand;
841
1094
  exports.BatchDeleteMemoryRecordsCommand = BatchDeleteMemoryRecordsCommand;
1095
+ exports.BatchEvaluationStatus = BatchEvaluationStatus;
842
1096
  exports.BatchUpdateMemoryRecordsCommand = BatchUpdateMemoryRecordsCommand;
843
1097
  exports.BedrockAgentCore = BedrockAgentCore;
844
1098
  exports.BedrockAgentCoreClient = BedrockAgentCoreClient;
845
1099
  exports.BrowserActionStatus = BrowserActionStatus;
846
1100
  exports.BrowserEnterprisePolicyType = BrowserEnterprisePolicyType;
847
1101
  exports.BrowserSessionStatus = BrowserSessionStatus;
1102
+ exports.CloudWatchLogsFilterOperator = CloudWatchLogsFilterOperator;
848
1103
  exports.CodeInterpreterSessionStatus = CodeInterpreterSessionStatus;
849
1104
  exports.CommandExecutionStatus = CommandExecutionStatus;
850
1105
  exports.CompleteResourceTokenAuthCommand = CompleteResourceTokenAuthCommand;
851
1106
  exports.ContentBlockType = ContentBlockType;
1107
+ exports.CreateABTestCommand = CreateABTestCommand;
852
1108
  exports.CreateEventCommand = CreateEventCommand;
1109
+ exports.DeleteABTestCommand = DeleteABTestCommand;
1110
+ exports.DeleteBatchEvaluationCommand = DeleteBatchEvaluationCommand;
853
1111
  exports.DeleteEventCommand = DeleteEventCommand;
854
1112
  exports.DeleteMemoryRecordCommand = DeleteMemoryRecordCommand;
1113
+ exports.DeleteRecommendationCommand = DeleteRecommendationCommand;
855
1114
  exports.DescriptorType = DescriptorType;
856
1115
  exports.EvaluateCommand = EvaluateCommand;
857
1116
  exports.EventFilterCondition = EventFilterCondition;
858
1117
  exports.ExtractionJobStatus = ExtractionJobStatus;
1118
+ exports.GetABTestCommand = GetABTestCommand;
859
1119
  exports.GetAgentCardCommand = GetAgentCardCommand;
1120
+ exports.GetBatchEvaluationCommand = GetBatchEvaluationCommand;
860
1121
  exports.GetBrowserSessionCommand = GetBrowserSessionCommand;
861
1122
  exports.GetCodeInterpreterSessionCommand = GetCodeInterpreterSessionCommand;
862
1123
  exports.GetEventCommand = GetEventCommand;
863
1124
  exports.GetMemoryRecordCommand = GetMemoryRecordCommand;
1125
+ exports.GetRecommendationCommand = GetRecommendationCommand;
864
1126
  exports.GetResourceApiKeyCommand = GetResourceApiKeyCommand;
865
1127
  exports.GetResourceOauth2TokenCommand = GetResourceOauth2TokenCommand;
866
1128
  exports.GetWorkloadAccessTokenCommand = GetWorkloadAccessTokenCommand;
@@ -877,19 +1139,25 @@ exports.InvokeBrowserCommand = InvokeBrowserCommand;
877
1139
  exports.InvokeCodeInterpreterCommand = InvokeCodeInterpreterCommand;
878
1140
  exports.InvokeHarnessCommand = InvokeHarnessCommand;
879
1141
  exports.LanguageRuntime = LanguageRuntime;
1142
+ exports.ListABTestsCommand = ListABTestsCommand;
880
1143
  exports.ListActorsCommand = ListActorsCommand;
1144
+ exports.ListBatchEvaluationsCommand = ListBatchEvaluationsCommand;
881
1145
  exports.ListBrowserSessionsCommand = ListBrowserSessionsCommand;
882
1146
  exports.ListCodeInterpreterSessionsCommand = ListCodeInterpreterSessionsCommand;
883
1147
  exports.ListEventsCommand = ListEventsCommand;
884
1148
  exports.ListMemoryExtractionJobsCommand = ListMemoryExtractionJobsCommand;
885
1149
  exports.ListMemoryRecordsCommand = ListMemoryRecordsCommand;
1150
+ exports.ListRecommendationsCommand = ListRecommendationsCommand;
886
1151
  exports.ListSessionsCommand = ListSessionsCommand;
1152
+ exports.MemoryRecordOperatorType = MemoryRecordOperatorType;
887
1153
  exports.MemoryRecordStatus = MemoryRecordStatus;
888
1154
  exports.MouseButton = MouseButton;
889
1155
  exports.OAuthGrantType = OAuthGrantType;
890
1156
  exports.Oauth2FlowType = Oauth2FlowType;
891
1157
  exports.OperatorType = OperatorType;
892
1158
  exports.ProgrammingLanguage = ProgrammingLanguage;
1159
+ exports.RecommendationStatus = RecommendationStatus;
1160
+ exports.RecommendationType = RecommendationType;
893
1161
  exports.RegistryRecordStatus = RegistryRecordStatus;
894
1162
  exports.ResourceContentType = ResourceContentType;
895
1163
  exports.RetrieveMemoryRecordsCommand = RetrieveMemoryRecordsCommand;
@@ -898,20 +1166,27 @@ exports.SaveBrowserSessionProfileCommand = SaveBrowserSessionProfileCommand;
898
1166
  exports.ScreenshotFormat = ScreenshotFormat;
899
1167
  exports.SearchRegistryRecordsCommand = SearchRegistryRecordsCommand;
900
1168
  exports.SessionStatus = SessionStatus;
1169
+ exports.StartBatchEvaluationCommand = StartBatchEvaluationCommand;
901
1170
  exports.StartBrowserSessionCommand = StartBrowserSessionCommand;
902
1171
  exports.StartCodeInterpreterSessionCommand = StartCodeInterpreterSessionCommand;
903
1172
  exports.StartMemoryExtractionJobCommand = StartMemoryExtractionJobCommand;
1173
+ exports.StartRecommendationCommand = StartRecommendationCommand;
1174
+ exports.StopBatchEvaluationCommand = StopBatchEvaluationCommand;
904
1175
  exports.StopBrowserSessionCommand = StopBrowserSessionCommand;
905
1176
  exports.StopCodeInterpreterSessionCommand = StopCodeInterpreterSessionCommand;
906
1177
  exports.StopRuntimeSessionCommand = StopRuntimeSessionCommand;
907
1178
  exports.TaskStatus = TaskStatus;
908
1179
  exports.ToolName = ToolName;
1180
+ exports.UpdateABTestCommand = UpdateABTestCommand;
909
1181
  exports.UpdateBrowserStreamCommand = UpdateBrowserStreamCommand;
910
1182
  exports.ValidationExceptionReason = ValidationExceptionReason;
1183
+ exports.paginateListABTests = paginateListABTests;
911
1184
  exports.paginateListActors = paginateListActors;
1185
+ exports.paginateListBatchEvaluations = paginateListBatchEvaluations;
912
1186
  exports.paginateListEvents = paginateListEvents;
913
1187
  exports.paginateListMemoryExtractionJobs = paginateListMemoryExtractionJobs;
914
1188
  exports.paginateListMemoryRecords = paginateListMemoryRecords;
1189
+ exports.paginateListRecommendations = paginateListRecommendations;
915
1190
  exports.paginateListSessions = paginateListSessions;
916
1191
  exports.paginateRetrieveMemoryRecords = paginateRetrieveMemoryRecords;
917
1192
  Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&