@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
@@ -20,10 +20,22 @@ import {
20
20
  CompleteResourceTokenAuthCommandInput,
21
21
  CompleteResourceTokenAuthCommandOutput,
22
22
  } from "./commands/CompleteResourceTokenAuthCommand";
23
+ import {
24
+ CreateABTestCommandInput,
25
+ CreateABTestCommandOutput,
26
+ } from "./commands/CreateABTestCommand";
23
27
  import {
24
28
  CreateEventCommandInput,
25
29
  CreateEventCommandOutput,
26
30
  } from "./commands/CreateEventCommand";
31
+ import {
32
+ DeleteABTestCommandInput,
33
+ DeleteABTestCommandOutput,
34
+ } from "./commands/DeleteABTestCommand";
35
+ import {
36
+ DeleteBatchEvaluationCommandInput,
37
+ DeleteBatchEvaluationCommandOutput,
38
+ } from "./commands/DeleteBatchEvaluationCommand";
27
39
  import {
28
40
  DeleteEventCommandInput,
29
41
  DeleteEventCommandOutput,
@@ -32,14 +44,26 @@ import {
32
44
  DeleteMemoryRecordCommandInput,
33
45
  DeleteMemoryRecordCommandOutput,
34
46
  } from "./commands/DeleteMemoryRecordCommand";
47
+ import {
48
+ DeleteRecommendationCommandInput,
49
+ DeleteRecommendationCommandOutput,
50
+ } from "./commands/DeleteRecommendationCommand";
35
51
  import {
36
52
  EvaluateCommandInput,
37
53
  EvaluateCommandOutput,
38
54
  } from "./commands/EvaluateCommand";
55
+ import {
56
+ GetABTestCommandInput,
57
+ GetABTestCommandOutput,
58
+ } from "./commands/GetABTestCommand";
39
59
  import {
40
60
  GetAgentCardCommandInput,
41
61
  GetAgentCardCommandOutput,
42
62
  } from "./commands/GetAgentCardCommand";
63
+ import {
64
+ GetBatchEvaluationCommandInput,
65
+ GetBatchEvaluationCommandOutput,
66
+ } from "./commands/GetBatchEvaluationCommand";
43
67
  import {
44
68
  GetBrowserSessionCommandInput,
45
69
  GetBrowserSessionCommandOutput,
@@ -56,6 +80,10 @@ import {
56
80
  GetMemoryRecordCommandInput,
57
81
  GetMemoryRecordCommandOutput,
58
82
  } from "./commands/GetMemoryRecordCommand";
83
+ import {
84
+ GetRecommendationCommandInput,
85
+ GetRecommendationCommandOutput,
86
+ } from "./commands/GetRecommendationCommand";
59
87
  import {
60
88
  GetResourceApiKeyCommandInput,
61
89
  GetResourceApiKeyCommandOutput,
@@ -96,10 +124,18 @@ import {
96
124
  InvokeHarnessCommandInput,
97
125
  InvokeHarnessCommandOutput,
98
126
  } from "./commands/InvokeHarnessCommand";
127
+ import {
128
+ ListABTestsCommandInput,
129
+ ListABTestsCommandOutput,
130
+ } from "./commands/ListABTestsCommand";
99
131
  import {
100
132
  ListActorsCommandInput,
101
133
  ListActorsCommandOutput,
102
134
  } from "./commands/ListActorsCommand";
135
+ import {
136
+ ListBatchEvaluationsCommandInput,
137
+ ListBatchEvaluationsCommandOutput,
138
+ } from "./commands/ListBatchEvaluationsCommand";
103
139
  import {
104
140
  ListBrowserSessionsCommandInput,
105
141
  ListBrowserSessionsCommandOutput,
@@ -120,6 +156,10 @@ import {
120
156
  ListMemoryRecordsCommandInput,
121
157
  ListMemoryRecordsCommandOutput,
122
158
  } from "./commands/ListMemoryRecordsCommand";
159
+ import {
160
+ ListRecommendationsCommandInput,
161
+ ListRecommendationsCommandOutput,
162
+ } from "./commands/ListRecommendationsCommand";
123
163
  import {
124
164
  ListSessionsCommandInput,
125
165
  ListSessionsCommandOutput,
@@ -136,6 +176,10 @@ import {
136
176
  SearchRegistryRecordsCommandInput,
137
177
  SearchRegistryRecordsCommandOutput,
138
178
  } from "./commands/SearchRegistryRecordsCommand";
179
+ import {
180
+ StartBatchEvaluationCommandInput,
181
+ StartBatchEvaluationCommandOutput,
182
+ } from "./commands/StartBatchEvaluationCommand";
139
183
  import {
140
184
  StartBrowserSessionCommandInput,
141
185
  StartBrowserSessionCommandOutput,
@@ -148,6 +192,14 @@ import {
148
192
  StartMemoryExtractionJobCommandInput,
149
193
  StartMemoryExtractionJobCommandOutput,
150
194
  } from "./commands/StartMemoryExtractionJobCommand";
195
+ import {
196
+ StartRecommendationCommandInput,
197
+ StartRecommendationCommandOutput,
198
+ } from "./commands/StartRecommendationCommand";
199
+ import {
200
+ StopBatchEvaluationCommandInput,
201
+ StopBatchEvaluationCommandOutput,
202
+ } from "./commands/StopBatchEvaluationCommand";
151
203
  import {
152
204
  StopBrowserSessionCommandInput,
153
205
  StopBrowserSessionCommandOutput,
@@ -160,6 +212,10 @@ import {
160
212
  StopRuntimeSessionCommandInput,
161
213
  StopRuntimeSessionCommandOutput,
162
214
  } from "./commands/StopRuntimeSessionCommand";
215
+ import {
216
+ UpdateABTestCommandInput,
217
+ UpdateABTestCommandOutput,
218
+ } from "./commands/UpdateABTestCommand";
163
219
  import {
164
220
  UpdateBrowserStreamCommandInput,
165
221
  UpdateBrowserStreamCommandOutput,
@@ -217,6 +273,19 @@ export interface BedrockAgentCore {
217
273
  options: __HttpHandlerOptions,
218
274
  cb: (err: any, data?: CompleteResourceTokenAuthCommandOutput) => void
219
275
  ): void;
276
+ createABTest(
277
+ args: CreateABTestCommandInput,
278
+ options?: __HttpHandlerOptions
279
+ ): Promise<CreateABTestCommandOutput>;
280
+ createABTest(
281
+ args: CreateABTestCommandInput,
282
+ cb: (err: any, data?: CreateABTestCommandOutput) => void
283
+ ): void;
284
+ createABTest(
285
+ args: CreateABTestCommandInput,
286
+ options: __HttpHandlerOptions,
287
+ cb: (err: any, data?: CreateABTestCommandOutput) => void
288
+ ): void;
220
289
  createEvent(
221
290
  args: CreateEventCommandInput,
222
291
  options?: __HttpHandlerOptions
@@ -230,6 +299,32 @@ export interface BedrockAgentCore {
230
299
  options: __HttpHandlerOptions,
231
300
  cb: (err: any, data?: CreateEventCommandOutput) => void
232
301
  ): void;
302
+ deleteABTest(
303
+ args: DeleteABTestCommandInput,
304
+ options?: __HttpHandlerOptions
305
+ ): Promise<DeleteABTestCommandOutput>;
306
+ deleteABTest(
307
+ args: DeleteABTestCommandInput,
308
+ cb: (err: any, data?: DeleteABTestCommandOutput) => void
309
+ ): void;
310
+ deleteABTest(
311
+ args: DeleteABTestCommandInput,
312
+ options: __HttpHandlerOptions,
313
+ cb: (err: any, data?: DeleteABTestCommandOutput) => void
314
+ ): void;
315
+ deleteBatchEvaluation(
316
+ args: DeleteBatchEvaluationCommandInput,
317
+ options?: __HttpHandlerOptions
318
+ ): Promise<DeleteBatchEvaluationCommandOutput>;
319
+ deleteBatchEvaluation(
320
+ args: DeleteBatchEvaluationCommandInput,
321
+ cb: (err: any, data?: DeleteBatchEvaluationCommandOutput) => void
322
+ ): void;
323
+ deleteBatchEvaluation(
324
+ args: DeleteBatchEvaluationCommandInput,
325
+ options: __HttpHandlerOptions,
326
+ cb: (err: any, data?: DeleteBatchEvaluationCommandOutput) => void
327
+ ): void;
233
328
  deleteEvent(
234
329
  args: DeleteEventCommandInput,
235
330
  options?: __HttpHandlerOptions
@@ -256,6 +351,19 @@ export interface BedrockAgentCore {
256
351
  options: __HttpHandlerOptions,
257
352
  cb: (err: any, data?: DeleteMemoryRecordCommandOutput) => void
258
353
  ): void;
354
+ deleteRecommendation(
355
+ args: DeleteRecommendationCommandInput,
356
+ options?: __HttpHandlerOptions
357
+ ): Promise<DeleteRecommendationCommandOutput>;
358
+ deleteRecommendation(
359
+ args: DeleteRecommendationCommandInput,
360
+ cb: (err: any, data?: DeleteRecommendationCommandOutput) => void
361
+ ): void;
362
+ deleteRecommendation(
363
+ args: DeleteRecommendationCommandInput,
364
+ options: __HttpHandlerOptions,
365
+ cb: (err: any, data?: DeleteRecommendationCommandOutput) => void
366
+ ): void;
259
367
  evaluate(
260
368
  args: EvaluateCommandInput,
261
369
  options?: __HttpHandlerOptions
@@ -269,6 +377,19 @@ export interface BedrockAgentCore {
269
377
  options: __HttpHandlerOptions,
270
378
  cb: (err: any, data?: EvaluateCommandOutput) => void
271
379
  ): void;
380
+ getABTest(
381
+ args: GetABTestCommandInput,
382
+ options?: __HttpHandlerOptions
383
+ ): Promise<GetABTestCommandOutput>;
384
+ getABTest(
385
+ args: GetABTestCommandInput,
386
+ cb: (err: any, data?: GetABTestCommandOutput) => void
387
+ ): void;
388
+ getABTest(
389
+ args: GetABTestCommandInput,
390
+ options: __HttpHandlerOptions,
391
+ cb: (err: any, data?: GetABTestCommandOutput) => void
392
+ ): void;
272
393
  getAgentCard(
273
394
  args: GetAgentCardCommandInput,
274
395
  options?: __HttpHandlerOptions
@@ -282,6 +403,19 @@ export interface BedrockAgentCore {
282
403
  options: __HttpHandlerOptions,
283
404
  cb: (err: any, data?: GetAgentCardCommandOutput) => void
284
405
  ): void;
406
+ getBatchEvaluation(
407
+ args: GetBatchEvaluationCommandInput,
408
+ options?: __HttpHandlerOptions
409
+ ): Promise<GetBatchEvaluationCommandOutput>;
410
+ getBatchEvaluation(
411
+ args: GetBatchEvaluationCommandInput,
412
+ cb: (err: any, data?: GetBatchEvaluationCommandOutput) => void
413
+ ): void;
414
+ getBatchEvaluation(
415
+ args: GetBatchEvaluationCommandInput,
416
+ options: __HttpHandlerOptions,
417
+ cb: (err: any, data?: GetBatchEvaluationCommandOutput) => void
418
+ ): void;
285
419
  getBrowserSession(
286
420
  args: GetBrowserSessionCommandInput,
287
421
  options?: __HttpHandlerOptions
@@ -334,6 +468,19 @@ export interface BedrockAgentCore {
334
468
  options: __HttpHandlerOptions,
335
469
  cb: (err: any, data?: GetMemoryRecordCommandOutput) => void
336
470
  ): void;
471
+ getRecommendation(
472
+ args: GetRecommendationCommandInput,
473
+ options?: __HttpHandlerOptions
474
+ ): Promise<GetRecommendationCommandOutput>;
475
+ getRecommendation(
476
+ args: GetRecommendationCommandInput,
477
+ cb: (err: any, data?: GetRecommendationCommandOutput) => void
478
+ ): void;
479
+ getRecommendation(
480
+ args: GetRecommendationCommandInput,
481
+ options: __HttpHandlerOptions,
482
+ cb: (err: any, data?: GetRecommendationCommandOutput) => void
483
+ ): void;
337
484
  getResourceApiKey(
338
485
  args: GetResourceApiKeyCommandInput,
339
486
  options?: __HttpHandlerOptions
@@ -464,6 +611,20 @@ export interface BedrockAgentCore {
464
611
  options: __HttpHandlerOptions,
465
612
  cb: (err: any, data?: InvokeHarnessCommandOutput) => void
466
613
  ): void;
614
+ listABTests(): Promise<ListABTestsCommandOutput>;
615
+ listABTests(
616
+ args: ListABTestsCommandInput,
617
+ options?: __HttpHandlerOptions
618
+ ): Promise<ListABTestsCommandOutput>;
619
+ listABTests(
620
+ args: ListABTestsCommandInput,
621
+ cb: (err: any, data?: ListABTestsCommandOutput) => void
622
+ ): void;
623
+ listABTests(
624
+ args: ListABTestsCommandInput,
625
+ options: __HttpHandlerOptions,
626
+ cb: (err: any, data?: ListABTestsCommandOutput) => void
627
+ ): void;
467
628
  listActors(
468
629
  args: ListActorsCommandInput,
469
630
  options?: __HttpHandlerOptions
@@ -477,6 +638,20 @@ export interface BedrockAgentCore {
477
638
  options: __HttpHandlerOptions,
478
639
  cb: (err: any, data?: ListActorsCommandOutput) => void
479
640
  ): void;
641
+ listBatchEvaluations(): Promise<ListBatchEvaluationsCommandOutput>;
642
+ listBatchEvaluations(
643
+ args: ListBatchEvaluationsCommandInput,
644
+ options?: __HttpHandlerOptions
645
+ ): Promise<ListBatchEvaluationsCommandOutput>;
646
+ listBatchEvaluations(
647
+ args: ListBatchEvaluationsCommandInput,
648
+ cb: (err: any, data?: ListBatchEvaluationsCommandOutput) => void
649
+ ): void;
650
+ listBatchEvaluations(
651
+ args: ListBatchEvaluationsCommandInput,
652
+ options: __HttpHandlerOptions,
653
+ cb: (err: any, data?: ListBatchEvaluationsCommandOutput) => void
654
+ ): void;
480
655
  listBrowserSessions(
481
656
  args: ListBrowserSessionsCommandInput,
482
657
  options?: __HttpHandlerOptions
@@ -542,6 +717,20 @@ export interface BedrockAgentCore {
542
717
  options: __HttpHandlerOptions,
543
718
  cb: (err: any, data?: ListMemoryRecordsCommandOutput) => void
544
719
  ): void;
720
+ listRecommendations(): Promise<ListRecommendationsCommandOutput>;
721
+ listRecommendations(
722
+ args: ListRecommendationsCommandInput,
723
+ options?: __HttpHandlerOptions
724
+ ): Promise<ListRecommendationsCommandOutput>;
725
+ listRecommendations(
726
+ args: ListRecommendationsCommandInput,
727
+ cb: (err: any, data?: ListRecommendationsCommandOutput) => void
728
+ ): void;
729
+ listRecommendations(
730
+ args: ListRecommendationsCommandInput,
731
+ options: __HttpHandlerOptions,
732
+ cb: (err: any, data?: ListRecommendationsCommandOutput) => void
733
+ ): void;
545
734
  listSessions(
546
735
  args: ListSessionsCommandInput,
547
736
  options?: __HttpHandlerOptions
@@ -594,6 +783,19 @@ export interface BedrockAgentCore {
594
783
  options: __HttpHandlerOptions,
595
784
  cb: (err: any, data?: SearchRegistryRecordsCommandOutput) => void
596
785
  ): void;
786
+ startBatchEvaluation(
787
+ args: StartBatchEvaluationCommandInput,
788
+ options?: __HttpHandlerOptions
789
+ ): Promise<StartBatchEvaluationCommandOutput>;
790
+ startBatchEvaluation(
791
+ args: StartBatchEvaluationCommandInput,
792
+ cb: (err: any, data?: StartBatchEvaluationCommandOutput) => void
793
+ ): void;
794
+ startBatchEvaluation(
795
+ args: StartBatchEvaluationCommandInput,
796
+ options: __HttpHandlerOptions,
797
+ cb: (err: any, data?: StartBatchEvaluationCommandOutput) => void
798
+ ): void;
597
799
  startBrowserSession(
598
800
  args: StartBrowserSessionCommandInput,
599
801
  options?: __HttpHandlerOptions
@@ -633,6 +835,32 @@ export interface BedrockAgentCore {
633
835
  options: __HttpHandlerOptions,
634
836
  cb: (err: any, data?: StartMemoryExtractionJobCommandOutput) => void
635
837
  ): void;
838
+ startRecommendation(
839
+ args: StartRecommendationCommandInput,
840
+ options?: __HttpHandlerOptions
841
+ ): Promise<StartRecommendationCommandOutput>;
842
+ startRecommendation(
843
+ args: StartRecommendationCommandInput,
844
+ cb: (err: any, data?: StartRecommendationCommandOutput) => void
845
+ ): void;
846
+ startRecommendation(
847
+ args: StartRecommendationCommandInput,
848
+ options: __HttpHandlerOptions,
849
+ cb: (err: any, data?: StartRecommendationCommandOutput) => void
850
+ ): void;
851
+ stopBatchEvaluation(
852
+ args: StopBatchEvaluationCommandInput,
853
+ options?: __HttpHandlerOptions
854
+ ): Promise<StopBatchEvaluationCommandOutput>;
855
+ stopBatchEvaluation(
856
+ args: StopBatchEvaluationCommandInput,
857
+ cb: (err: any, data?: StopBatchEvaluationCommandOutput) => void
858
+ ): void;
859
+ stopBatchEvaluation(
860
+ args: StopBatchEvaluationCommandInput,
861
+ options: __HttpHandlerOptions,
862
+ cb: (err: any, data?: StopBatchEvaluationCommandOutput) => void
863
+ ): void;
636
864
  stopBrowserSession(
637
865
  args: StopBrowserSessionCommandInput,
638
866
  options?: __HttpHandlerOptions
@@ -672,6 +900,19 @@ export interface BedrockAgentCore {
672
900
  options: __HttpHandlerOptions,
673
901
  cb: (err: any, data?: StopRuntimeSessionCommandOutput) => void
674
902
  ): void;
903
+ updateABTest(
904
+ args: UpdateABTestCommandInput,
905
+ options?: __HttpHandlerOptions
906
+ ): Promise<UpdateABTestCommandOutput>;
907
+ updateABTest(
908
+ args: UpdateABTestCommandInput,
909
+ cb: (err: any, data?: UpdateABTestCommandOutput) => void
910
+ ): void;
911
+ updateABTest(
912
+ args: UpdateABTestCommandInput,
913
+ options: __HttpHandlerOptions,
914
+ cb: (err: any, data?: UpdateABTestCommandOutput) => void
915
+ ): void;
675
916
  updateBrowserStream(
676
917
  args: UpdateBrowserStreamCommandInput,
677
918
  options?: __HttpHandlerOptions
@@ -685,6 +926,13 @@ export interface BedrockAgentCore {
685
926
  options: __HttpHandlerOptions,
686
927
  cb: (err: any, data?: UpdateBrowserStreamCommandOutput) => void
687
928
  ): void;
929
+ paginateListABTests(
930
+ args?: ListABTestsCommandInput,
931
+ paginationConfig?: Pick<
932
+ PaginationConfiguration,
933
+ Exclude<keyof PaginationConfiguration, "client">
934
+ >
935
+ ): Paginator<ListABTestsCommandOutput>;
688
936
  paginateListActors(
689
937
  args: ListActorsCommandInput,
690
938
  paginationConfig?: Pick<
@@ -692,6 +940,13 @@ export interface BedrockAgentCore {
692
940
  Exclude<keyof PaginationConfiguration, "client">
693
941
  >
694
942
  ): Paginator<ListActorsCommandOutput>;
943
+ paginateListBatchEvaluations(
944
+ args?: ListBatchEvaluationsCommandInput,
945
+ paginationConfig?: Pick<
946
+ PaginationConfiguration,
947
+ Exclude<keyof PaginationConfiguration, "client">
948
+ >
949
+ ): Paginator<ListBatchEvaluationsCommandOutput>;
695
950
  paginateListEvents(
696
951
  args: ListEventsCommandInput,
697
952
  paginationConfig?: Pick<
@@ -713,6 +968,13 @@ export interface BedrockAgentCore {
713
968
  Exclude<keyof PaginationConfiguration, "client">
714
969
  >
715
970
  ): Paginator<ListMemoryRecordsCommandOutput>;
971
+ paginateListRecommendations(
972
+ args?: ListRecommendationsCommandInput,
973
+ paginationConfig?: Pick<
974
+ PaginationConfiguration,
975
+ Exclude<keyof PaginationConfiguration, "client">
976
+ >
977
+ ): Paginator<ListRecommendationsCommandOutput>;
716
978
  paginateListSessions(
717
979
  args: ListSessionsCommandInput,
718
980
  paginationConfig?: Pick<
@@ -66,10 +66,22 @@ import {
66
66
  CompleteResourceTokenAuthCommandInput,
67
67
  CompleteResourceTokenAuthCommandOutput,
68
68
  } from "./commands/CompleteResourceTokenAuthCommand";
69
+ import {
70
+ CreateABTestCommandInput,
71
+ CreateABTestCommandOutput,
72
+ } from "./commands/CreateABTestCommand";
69
73
  import {
70
74
  CreateEventCommandInput,
71
75
  CreateEventCommandOutput,
72
76
  } from "./commands/CreateEventCommand";
77
+ import {
78
+ DeleteABTestCommandInput,
79
+ DeleteABTestCommandOutput,
80
+ } from "./commands/DeleteABTestCommand";
81
+ import {
82
+ DeleteBatchEvaluationCommandInput,
83
+ DeleteBatchEvaluationCommandOutput,
84
+ } from "./commands/DeleteBatchEvaluationCommand";
73
85
  import {
74
86
  DeleteEventCommandInput,
75
87
  DeleteEventCommandOutput,
@@ -78,14 +90,26 @@ import {
78
90
  DeleteMemoryRecordCommandInput,
79
91
  DeleteMemoryRecordCommandOutput,
80
92
  } from "./commands/DeleteMemoryRecordCommand";
93
+ import {
94
+ DeleteRecommendationCommandInput,
95
+ DeleteRecommendationCommandOutput,
96
+ } from "./commands/DeleteRecommendationCommand";
81
97
  import {
82
98
  EvaluateCommandInput,
83
99
  EvaluateCommandOutput,
84
100
  } from "./commands/EvaluateCommand";
101
+ import {
102
+ GetABTestCommandInput,
103
+ GetABTestCommandOutput,
104
+ } from "./commands/GetABTestCommand";
85
105
  import {
86
106
  GetAgentCardCommandInput,
87
107
  GetAgentCardCommandOutput,
88
108
  } from "./commands/GetAgentCardCommand";
109
+ import {
110
+ GetBatchEvaluationCommandInput,
111
+ GetBatchEvaluationCommandOutput,
112
+ } from "./commands/GetBatchEvaluationCommand";
89
113
  import {
90
114
  GetBrowserSessionCommandInput,
91
115
  GetBrowserSessionCommandOutput,
@@ -102,6 +126,10 @@ import {
102
126
  GetMemoryRecordCommandInput,
103
127
  GetMemoryRecordCommandOutput,
104
128
  } from "./commands/GetMemoryRecordCommand";
129
+ import {
130
+ GetRecommendationCommandInput,
131
+ GetRecommendationCommandOutput,
132
+ } from "./commands/GetRecommendationCommand";
105
133
  import {
106
134
  GetResourceApiKeyCommandInput,
107
135
  GetResourceApiKeyCommandOutput,
@@ -142,10 +170,18 @@ import {
142
170
  InvokeHarnessCommandInput,
143
171
  InvokeHarnessCommandOutput,
144
172
  } from "./commands/InvokeHarnessCommand";
173
+ import {
174
+ ListABTestsCommandInput,
175
+ ListABTestsCommandOutput,
176
+ } from "./commands/ListABTestsCommand";
145
177
  import {
146
178
  ListActorsCommandInput,
147
179
  ListActorsCommandOutput,
148
180
  } from "./commands/ListActorsCommand";
181
+ import {
182
+ ListBatchEvaluationsCommandInput,
183
+ ListBatchEvaluationsCommandOutput,
184
+ } from "./commands/ListBatchEvaluationsCommand";
149
185
  import {
150
186
  ListBrowserSessionsCommandInput,
151
187
  ListBrowserSessionsCommandOutput,
@@ -166,6 +202,10 @@ import {
166
202
  ListMemoryRecordsCommandInput,
167
203
  ListMemoryRecordsCommandOutput,
168
204
  } from "./commands/ListMemoryRecordsCommand";
205
+ import {
206
+ ListRecommendationsCommandInput,
207
+ ListRecommendationsCommandOutput,
208
+ } from "./commands/ListRecommendationsCommand";
169
209
  import {
170
210
  ListSessionsCommandInput,
171
211
  ListSessionsCommandOutput,
@@ -182,6 +222,10 @@ import {
182
222
  SearchRegistryRecordsCommandInput,
183
223
  SearchRegistryRecordsCommandOutput,
184
224
  } from "./commands/SearchRegistryRecordsCommand";
225
+ import {
226
+ StartBatchEvaluationCommandInput,
227
+ StartBatchEvaluationCommandOutput,
228
+ } from "./commands/StartBatchEvaluationCommand";
185
229
  import {
186
230
  StartBrowserSessionCommandInput,
187
231
  StartBrowserSessionCommandOutput,
@@ -194,6 +238,14 @@ import {
194
238
  StartMemoryExtractionJobCommandInput,
195
239
  StartMemoryExtractionJobCommandOutput,
196
240
  } from "./commands/StartMemoryExtractionJobCommand";
241
+ import {
242
+ StartRecommendationCommandInput,
243
+ StartRecommendationCommandOutput,
244
+ } from "./commands/StartRecommendationCommand";
245
+ import {
246
+ StopBatchEvaluationCommandInput,
247
+ StopBatchEvaluationCommandOutput,
248
+ } from "./commands/StopBatchEvaluationCommand";
197
249
  import {
198
250
  StopBrowserSessionCommandInput,
199
251
  StopBrowserSessionCommandOutput,
@@ -206,6 +258,10 @@ import {
206
258
  StopRuntimeSessionCommandInput,
207
259
  StopRuntimeSessionCommandOutput,
208
260
  } from "./commands/StopRuntimeSessionCommand";
261
+ import {
262
+ UpdateABTestCommandInput,
263
+ UpdateABTestCommandOutput,
264
+ } from "./commands/UpdateABTestCommand";
209
265
  import {
210
266
  UpdateBrowserStreamCommandInput,
211
267
  UpdateBrowserStreamCommandOutput,
@@ -222,15 +278,22 @@ export type ServiceInputTypes =
222
278
  | BatchDeleteMemoryRecordsCommandInput
223
279
  | BatchUpdateMemoryRecordsCommandInput
224
280
  | CompleteResourceTokenAuthCommandInput
281
+ | CreateABTestCommandInput
225
282
  | CreateEventCommandInput
283
+ | DeleteABTestCommandInput
284
+ | DeleteBatchEvaluationCommandInput
226
285
  | DeleteEventCommandInput
227
286
  | DeleteMemoryRecordCommandInput
287
+ | DeleteRecommendationCommandInput
228
288
  | EvaluateCommandInput
289
+ | GetABTestCommandInput
229
290
  | GetAgentCardCommandInput
291
+ | GetBatchEvaluationCommandInput
230
292
  | GetBrowserSessionCommandInput
231
293
  | GetCodeInterpreterSessionCommandInput
232
294
  | GetEventCommandInput
233
295
  | GetMemoryRecordCommandInput
296
+ | GetRecommendationCommandInput
234
297
  | GetResourceApiKeyCommandInput
235
298
  | GetResourceOauth2TokenCommandInput
236
299
  | GetWorkloadAccessTokenCommandInput
@@ -241,37 +304,51 @@ export type ServiceInputTypes =
241
304
  | InvokeBrowserCommandInput
242
305
  | InvokeCodeInterpreterCommandInput
243
306
  | InvokeHarnessCommandInput
307
+ | ListABTestsCommandInput
244
308
  | ListActorsCommandInput
309
+ | ListBatchEvaluationsCommandInput
245
310
  | ListBrowserSessionsCommandInput
246
311
  | ListCodeInterpreterSessionsCommandInput
247
312
  | ListEventsCommandInput
248
313
  | ListMemoryExtractionJobsCommandInput
249
314
  | ListMemoryRecordsCommandInput
315
+ | ListRecommendationsCommandInput
250
316
  | ListSessionsCommandInput
251
317
  | RetrieveMemoryRecordsCommandInput
252
318
  | SaveBrowserSessionProfileCommandInput
253
319
  | SearchRegistryRecordsCommandInput
320
+ | StartBatchEvaluationCommandInput
254
321
  | StartBrowserSessionCommandInput
255
322
  | StartCodeInterpreterSessionCommandInput
256
323
  | StartMemoryExtractionJobCommandInput
324
+ | StartRecommendationCommandInput
325
+ | StopBatchEvaluationCommandInput
257
326
  | StopBrowserSessionCommandInput
258
327
  | StopCodeInterpreterSessionCommandInput
259
328
  | StopRuntimeSessionCommandInput
329
+ | UpdateABTestCommandInput
260
330
  | UpdateBrowserStreamCommandInput;
261
331
  export type ServiceOutputTypes =
262
332
  | BatchCreateMemoryRecordsCommandOutput
263
333
  | BatchDeleteMemoryRecordsCommandOutput
264
334
  | BatchUpdateMemoryRecordsCommandOutput
265
335
  | CompleteResourceTokenAuthCommandOutput
336
+ | CreateABTestCommandOutput
266
337
  | CreateEventCommandOutput
338
+ | DeleteABTestCommandOutput
339
+ | DeleteBatchEvaluationCommandOutput
267
340
  | DeleteEventCommandOutput
268
341
  | DeleteMemoryRecordCommandOutput
342
+ | DeleteRecommendationCommandOutput
269
343
  | EvaluateCommandOutput
344
+ | GetABTestCommandOutput
270
345
  | GetAgentCardCommandOutput
346
+ | GetBatchEvaluationCommandOutput
271
347
  | GetBrowserSessionCommandOutput
272
348
  | GetCodeInterpreterSessionCommandOutput
273
349
  | GetEventCommandOutput
274
350
  | GetMemoryRecordCommandOutput
351
+ | GetRecommendationCommandOutput
275
352
  | GetResourceApiKeyCommandOutput
276
353
  | GetResourceOauth2TokenCommandOutput
277
354
  | GetWorkloadAccessTokenCommandOutput
@@ -282,22 +359,29 @@ export type ServiceOutputTypes =
282
359
  | InvokeBrowserCommandOutput
283
360
  | InvokeCodeInterpreterCommandOutput
284
361
  | InvokeHarnessCommandOutput
362
+ | ListABTestsCommandOutput
285
363
  | ListActorsCommandOutput
364
+ | ListBatchEvaluationsCommandOutput
286
365
  | ListBrowserSessionsCommandOutput
287
366
  | ListCodeInterpreterSessionsCommandOutput
288
367
  | ListEventsCommandOutput
289
368
  | ListMemoryExtractionJobsCommandOutput
290
369
  | ListMemoryRecordsCommandOutput
370
+ | ListRecommendationsCommandOutput
291
371
  | ListSessionsCommandOutput
292
372
  | RetrieveMemoryRecordsCommandOutput
293
373
  | SaveBrowserSessionProfileCommandOutput
294
374
  | SearchRegistryRecordsCommandOutput
375
+ | StartBatchEvaluationCommandOutput
295
376
  | StartBrowserSessionCommandOutput
296
377
  | StartCodeInterpreterSessionCommandOutput
297
378
  | StartMemoryExtractionJobCommandOutput
379
+ | StartRecommendationCommandOutput
380
+ | StopBatchEvaluationCommandOutput
298
381
  | StopBrowserSessionCommandOutput
299
382
  | StopCodeInterpreterSessionCommandOutput
300
383
  | StopRuntimeSessionCommandOutput
384
+ | UpdateABTestCommandOutput
301
385
  | UpdateBrowserStreamCommandOutput;
302
386
  export interface ClientDefaults
303
387
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import { CreateABTestRequest, CreateABTestResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateABTestCommandInput extends CreateABTestRequest {}
12
+ export interface CreateABTestCommandOutput
13
+ extends CreateABTestResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateABTestCommand_base: {
16
+ new (
17
+ input: CreateABTestCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateABTestCommandInput,
20
+ CreateABTestCommandOutput,
21
+ BedrockAgentCoreClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: CreateABTestCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateABTestCommandInput,
29
+ CreateABTestCommandOutput,
30
+ BedrockAgentCoreClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateABTestCommand extends CreateABTestCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateABTestRequest;
40
+ output: CreateABTestResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateABTestCommandInput;
44
+ output: CreateABTestCommandOutput;
45
+ };
46
+ };
47
+ }