@effect-aws/client-bedrock-agentcore-control 1.11.2 → 2.0.0-beta.5

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 (36) hide show
  1. package/README.md +3 -3
  2. package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts +1 -1
  3. package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts.map +1 -1
  4. package/dist/dts/BedrockAgentCoreControlService.d.ts +261 -163
  5. package/dist/dts/BedrockAgentCoreControlService.d.ts.map +1 -1
  6. package/dist/dts/BedrockAgentCoreControlServiceConfig.d.ts.map +1 -1
  7. package/dist/esm/BedrockAgentCoreControlClientInstance.js +2 -2
  8. package/dist/esm/BedrockAgentCoreControlClientInstance.js.map +1 -1
  9. package/dist/esm/BedrockAgentCoreControlService.js +34 -2
  10. package/dist/esm/BedrockAgentCoreControlService.js.map +1 -1
  11. package/dist/esm/BedrockAgentCoreControlServiceConfig.js +5 -6
  12. package/dist/esm/BedrockAgentCoreControlServiceConfig.js.map +1 -1
  13. package/package.json +8 -14
  14. package/src/BedrockAgentCoreControlClientInstance.ts +6 -4
  15. package/src/BedrockAgentCoreControlService.ts +780 -165
  16. package/src/BedrockAgentCoreControlServiceConfig.ts +6 -7
  17. package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts +0 -26
  18. package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts.map +0 -1
  19. package/dist/cjs/BedrockAgentCoreControlClientInstance.js +0 -52
  20. package/dist/cjs/BedrockAgentCoreControlClientInstance.js.map +0 -1
  21. package/dist/cjs/BedrockAgentCoreControlService.d.ts +0 -596
  22. package/dist/cjs/BedrockAgentCoreControlService.d.ts.map +0 -1
  23. package/dist/cjs/BedrockAgentCoreControlService.js +0 -219
  24. package/dist/cjs/BedrockAgentCoreControlService.js.map +0 -1
  25. package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts +0 -26
  26. package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts.map +0 -1
  27. package/dist/cjs/BedrockAgentCoreControlServiceConfig.js +0 -60
  28. package/dist/cjs/BedrockAgentCoreControlServiceConfig.js.map +0 -1
  29. package/dist/cjs/Errors.d.ts +0 -21
  30. package/dist/cjs/Errors.d.ts.map +0 -1
  31. package/dist/cjs/Errors.js +0 -20
  32. package/dist/cjs/Errors.js.map +0 -1
  33. package/dist/cjs/index.d.ts +0 -44
  34. package/dist/cjs/index.d.ts.map +0 -1
  35. package/dist/cjs/index.js +0 -56
  36. package/dist/cjs/index.js.map +0 -1
@@ -2,6 +2,9 @@
2
2
  * @since 1.0.0
3
3
  */
4
4
  import {
5
+ AddDatasetExamplesCommand,
6
+ type AddDatasetExamplesCommandInput,
7
+ type AddDatasetExamplesCommandOutput,
5
8
  type BedrockAgentCoreControlClient,
6
9
  type BedrockAgentCoreControlClientConfig,
7
10
  CreateAgentRuntimeCommand,
@@ -25,6 +28,12 @@ import {
25
28
  CreateConfigurationBundleCommand,
26
29
  type CreateConfigurationBundleCommandInput,
27
30
  type CreateConfigurationBundleCommandOutput,
31
+ CreateDatasetCommand,
32
+ type CreateDatasetCommandInput,
33
+ type CreateDatasetCommandOutput,
34
+ CreateDatasetVersionCommand,
35
+ type CreateDatasetVersionCommandInput,
36
+ type CreateDatasetVersionCommandOutput,
28
37
  CreateEvaluatorCommand,
29
38
  type CreateEvaluatorCommandInput,
30
39
  type CreateEvaluatorCommandOutput,
@@ -40,6 +49,9 @@ import {
40
49
  CreateHarnessCommand,
41
50
  type CreateHarnessCommandInput,
42
51
  type CreateHarnessCommandOutput,
52
+ CreateHarnessEndpointCommand,
53
+ type CreateHarnessEndpointCommandInput,
54
+ type CreateHarnessEndpointCommandOutput,
43
55
  CreateMemoryCommand,
44
56
  type CreateMemoryCommandInput,
45
57
  type CreateMemoryCommandOutput,
@@ -94,6 +106,12 @@ import {
94
106
  DeleteConfigurationBundleCommand,
95
107
  type DeleteConfigurationBundleCommandInput,
96
108
  type DeleteConfigurationBundleCommandOutput,
109
+ DeleteDatasetCommand,
110
+ type DeleteDatasetCommandInput,
111
+ type DeleteDatasetCommandOutput,
112
+ DeleteDatasetExamplesCommand,
113
+ type DeleteDatasetExamplesCommandInput,
114
+ type DeleteDatasetExamplesCommandOutput,
97
115
  DeleteEvaluatorCommand,
98
116
  type DeleteEvaluatorCommandInput,
99
117
  type DeleteEvaluatorCommandOutput,
@@ -109,6 +127,9 @@ import {
109
127
  DeleteHarnessCommand,
110
128
  type DeleteHarnessCommandInput,
111
129
  type DeleteHarnessCommandOutput,
130
+ DeleteHarnessEndpointCommand,
131
+ type DeleteHarnessEndpointCommandInput,
132
+ type DeleteHarnessEndpointCommandOutput,
112
133
  DeleteMemoryCommand,
113
134
  type DeleteMemoryCommandInput,
114
135
  type DeleteMemoryCommandOutput,
@@ -169,6 +190,9 @@ import {
169
190
  GetConfigurationBundleVersionCommand,
170
191
  type GetConfigurationBundleVersionCommandInput,
171
192
  type GetConfigurationBundleVersionCommandOutput,
193
+ GetDatasetCommand,
194
+ type GetDatasetCommandInput,
195
+ type GetDatasetCommandOutput,
172
196
  GetEvaluatorCommand,
173
197
  type GetEvaluatorCommandInput,
174
198
  type GetEvaluatorCommandOutput,
@@ -184,6 +208,9 @@ import {
184
208
  GetHarnessCommand,
185
209
  type GetHarnessCommandInput,
186
210
  type GetHarnessCommandOutput,
211
+ GetHarnessEndpointCommand,
212
+ type GetHarnessEndpointCommandInput,
213
+ type GetHarnessEndpointCommandOutput,
187
214
  GetMemoryCommand,
188
215
  type GetMemoryCommandInput,
189
216
  type GetMemoryCommandOutput,
@@ -208,9 +235,18 @@ import {
208
235
  GetPolicyEngineCommand,
209
236
  type GetPolicyEngineCommandInput,
210
237
  type GetPolicyEngineCommandOutput,
238
+ GetPolicyEngineSummaryCommand,
239
+ type GetPolicyEngineSummaryCommandInput,
240
+ type GetPolicyEngineSummaryCommandOutput,
211
241
  GetPolicyGenerationCommand,
212
242
  type GetPolicyGenerationCommandInput,
213
243
  type GetPolicyGenerationCommandOutput,
244
+ GetPolicyGenerationSummaryCommand,
245
+ type GetPolicyGenerationSummaryCommandInput,
246
+ type GetPolicyGenerationSummaryCommandOutput,
247
+ GetPolicySummaryCommand,
248
+ type GetPolicySummaryCommandInput,
249
+ type GetPolicySummaryCommandOutput,
214
250
  GetRegistryCommand,
215
251
  type GetRegistryCommandInput,
216
252
  type GetRegistryCommandOutput,
@@ -253,6 +289,15 @@ import {
253
289
  ListConfigurationBundleVersionsCommand,
254
290
  type ListConfigurationBundleVersionsCommandInput,
255
291
  type ListConfigurationBundleVersionsCommandOutput,
292
+ ListDatasetExamplesCommand,
293
+ type ListDatasetExamplesCommandInput,
294
+ type ListDatasetExamplesCommandOutput,
295
+ ListDatasetsCommand,
296
+ type ListDatasetsCommandInput,
297
+ type ListDatasetsCommandOutput,
298
+ ListDatasetVersionsCommand,
299
+ type ListDatasetVersionsCommandInput,
300
+ type ListDatasetVersionsCommandOutput,
256
301
  ListEvaluatorsCommand,
257
302
  type ListEvaluatorsCommandInput,
258
303
  type ListEvaluatorsCommandOutput,
@@ -265,9 +310,15 @@ import {
265
310
  ListGatewayTargetsCommand,
266
311
  type ListGatewayTargetsCommandInput,
267
312
  type ListGatewayTargetsCommandOutput,
313
+ ListHarnessEndpointsCommand,
314
+ type ListHarnessEndpointsCommandInput,
315
+ type ListHarnessEndpointsCommandOutput,
268
316
  ListHarnessesCommand,
269
317
  type ListHarnessesCommandInput,
270
318
  type ListHarnessesCommandOutput,
319
+ ListHarnessVersionsCommand,
320
+ type ListHarnessVersionsCommandInput,
321
+ type ListHarnessVersionsCommandOutput,
271
322
  ListMemoriesCommand,
272
323
  type ListMemoriesCommandInput,
273
324
  type ListMemoriesCommandOutput,
@@ -292,12 +343,21 @@ import {
292
343
  ListPolicyEnginesCommand,
293
344
  type ListPolicyEnginesCommandInput,
294
345
  type ListPolicyEnginesCommandOutput,
346
+ ListPolicyEngineSummariesCommand,
347
+ type ListPolicyEngineSummariesCommandInput,
348
+ type ListPolicyEngineSummariesCommandOutput,
295
349
  ListPolicyGenerationAssetsCommand,
296
350
  type ListPolicyGenerationAssetsCommandInput,
297
351
  type ListPolicyGenerationAssetsCommandOutput,
298
352
  ListPolicyGenerationsCommand,
299
353
  type ListPolicyGenerationsCommandInput,
300
354
  type ListPolicyGenerationsCommandOutput,
355
+ ListPolicyGenerationSummariesCommand,
356
+ type ListPolicyGenerationSummariesCommandInput,
357
+ type ListPolicyGenerationSummariesCommandOutput,
358
+ ListPolicySummariesCommand,
359
+ type ListPolicySummariesCommandInput,
360
+ type ListPolicySummariesCommandOutput,
301
361
  ListRegistriesCommand,
302
362
  type ListRegistriesCommandInput,
303
363
  type ListRegistriesCommandOutput,
@@ -319,11 +379,16 @@ import {
319
379
  paginateListCodeInterpreters,
320
380
  paginateListConfigurationBundles,
321
381
  paginateListConfigurationBundleVersions,
382
+ paginateListDatasetExamples,
383
+ paginateListDatasets,
384
+ paginateListDatasetVersions,
322
385
  paginateListEvaluators,
323
386
  paginateListGatewayRules,
324
387
  paginateListGateways,
325
388
  paginateListGatewayTargets,
389
+ paginateListHarnessEndpoints,
326
390
  paginateListHarnesses,
391
+ paginateListHarnessVersions,
327
392
  paginateListMemories,
328
393
  paginateListOauth2CredentialProviders,
329
394
  paginateListOnlineEvaluationConfigs,
@@ -332,8 +397,11 @@ import {
332
397
  paginateListPaymentManagers,
333
398
  paginateListPolicies,
334
399
  paginateListPolicyEngines,
400
+ paginateListPolicyEngineSummaries,
335
401
  paginateListPolicyGenerationAssets,
336
402
  paginateListPolicyGenerations,
403
+ paginateListPolicyGenerationSummaries,
404
+ paginateListPolicySummaries,
337
405
  paginateListRegistries,
338
406
  paginateListRegistryRecords,
339
407
  paginateListWorkloadIdentities,
@@ -370,6 +438,12 @@ import {
370
438
  UpdateConfigurationBundleCommand,
371
439
  type UpdateConfigurationBundleCommandInput,
372
440
  type UpdateConfigurationBundleCommandOutput,
441
+ UpdateDatasetCommand,
442
+ type UpdateDatasetCommandInput,
443
+ type UpdateDatasetCommandOutput,
444
+ UpdateDatasetExamplesCommand,
445
+ type UpdateDatasetExamplesCommandInput,
446
+ type UpdateDatasetExamplesCommandOutput,
373
447
  UpdateEvaluatorCommand,
374
448
  type UpdateEvaluatorCommandInput,
375
449
  type UpdateEvaluatorCommandOutput,
@@ -385,6 +459,9 @@ import {
385
459
  UpdateHarnessCommand,
386
460
  type UpdateHarnessCommandInput,
387
461
  type UpdateHarnessCommandOutput,
462
+ UpdateHarnessEndpointCommand,
463
+ type UpdateHarnessEndpointCommandInput,
464
+ type UpdateHarnessEndpointCommandOutput,
388
465
  UpdateMemoryCommand,
389
466
  type UpdateMemoryCommandInput,
390
467
  type UpdateMemoryCommandOutput,
@@ -426,6 +503,7 @@ import * as Service from "@effect-aws/commons/Service";
426
503
  import type * as ServiceLogger from "@effect-aws/commons/ServiceLogger";
427
504
  import type { HttpHandlerOptions } from "@effect-aws/commons/Types";
428
505
  import type * as Cause from "effect/Cause";
506
+ import * as Context from "effect/Context";
429
507
  import * as Effect from "effect/Effect";
430
508
  import * as Layer from "effect/Layer";
431
509
  import type * as Stream from "effect/Stream";
@@ -451,6 +529,7 @@ import type {
451
529
  import { AllServiceErrors } from "./Errors.js";
452
530
 
453
531
  const commands = {
532
+ AddDatasetExamplesCommand,
454
533
  CreateAgentRuntimeCommand,
455
534
  CreateAgentRuntimeEndpointCommand,
456
535
  CreateApiKeyCredentialProviderCommand,
@@ -458,11 +537,14 @@ const commands = {
458
537
  CreateBrowserProfileCommand,
459
538
  CreateCodeInterpreterCommand,
460
539
  CreateConfigurationBundleCommand,
540
+ CreateDatasetCommand,
541
+ CreateDatasetVersionCommand,
461
542
  CreateEvaluatorCommand,
462
543
  CreateGatewayCommand,
463
544
  CreateGatewayRuleCommand,
464
545
  CreateGatewayTargetCommand,
465
546
  CreateHarnessCommand,
547
+ CreateHarnessEndpointCommand,
466
548
  CreateMemoryCommand,
467
549
  CreateOauth2CredentialProviderCommand,
468
550
  CreateOnlineEvaluationConfigCommand,
@@ -481,11 +563,14 @@ const commands = {
481
563
  DeleteBrowserProfileCommand,
482
564
  DeleteCodeInterpreterCommand,
483
565
  DeleteConfigurationBundleCommand,
566
+ DeleteDatasetCommand,
567
+ DeleteDatasetExamplesCommand,
484
568
  DeleteEvaluatorCommand,
485
569
  DeleteGatewayCommand,
486
570
  DeleteGatewayRuleCommand,
487
571
  DeleteGatewayTargetCommand,
488
572
  DeleteHarnessCommand,
573
+ DeleteHarnessEndpointCommand,
489
574
  DeleteMemoryCommand,
490
575
  DeleteOauth2CredentialProviderCommand,
491
576
  DeleteOnlineEvaluationConfigCommand,
@@ -506,11 +591,13 @@ const commands = {
506
591
  GetCodeInterpreterCommand,
507
592
  GetConfigurationBundleCommand,
508
593
  GetConfigurationBundleVersionCommand,
594
+ GetDatasetCommand,
509
595
  GetEvaluatorCommand,
510
596
  GetGatewayCommand,
511
597
  GetGatewayRuleCommand,
512
598
  GetGatewayTargetCommand,
513
599
  GetHarnessCommand,
600
+ GetHarnessEndpointCommand,
514
601
  GetMemoryCommand,
515
602
  GetOauth2CredentialProviderCommand,
516
603
  GetOnlineEvaluationConfigCommand,
@@ -519,7 +606,10 @@ const commands = {
519
606
  GetPaymentManagerCommand,
520
607
  GetPolicyCommand,
521
608
  GetPolicyEngineCommand,
609
+ GetPolicyEngineSummaryCommand,
522
610
  GetPolicyGenerationCommand,
611
+ GetPolicyGenerationSummaryCommand,
612
+ GetPolicySummaryCommand,
523
613
  GetRegistryCommand,
524
614
  GetRegistryRecordCommand,
525
615
  GetResourcePolicyCommand,
@@ -534,10 +624,15 @@ const commands = {
534
624
  ListCodeInterpretersCommand,
535
625
  ListConfigurationBundleVersionsCommand,
536
626
  ListConfigurationBundlesCommand,
627
+ ListDatasetExamplesCommand,
628
+ ListDatasetVersionsCommand,
629
+ ListDatasetsCommand,
537
630
  ListEvaluatorsCommand,
538
631
  ListGatewayRulesCommand,
539
632
  ListGatewayTargetsCommand,
540
633
  ListGatewaysCommand,
634
+ ListHarnessEndpointsCommand,
635
+ ListHarnessVersionsCommand,
541
636
  ListHarnessesCommand,
542
637
  ListMemoriesCommand,
543
638
  ListOauth2CredentialProvidersCommand,
@@ -546,9 +641,12 @@ const commands = {
546
641
  ListPaymentCredentialProvidersCommand,
547
642
  ListPaymentManagersCommand,
548
643
  ListPoliciesCommand,
644
+ ListPolicyEngineSummariesCommand,
549
645
  ListPolicyEnginesCommand,
550
646
  ListPolicyGenerationAssetsCommand,
647
+ ListPolicyGenerationSummariesCommand,
551
648
  ListPolicyGenerationsCommand,
649
+ ListPolicySummariesCommand,
552
650
  ListRegistriesCommand,
553
651
  ListRegistryRecordsCommand,
554
652
  ListTagsForResourceCommand,
@@ -564,11 +662,14 @@ const commands = {
564
662
  UpdateAgentRuntimeEndpointCommand,
565
663
  UpdateApiKeyCredentialProviderCommand,
566
664
  UpdateConfigurationBundleCommand,
665
+ UpdateDatasetCommand,
666
+ UpdateDatasetExamplesCommand,
567
667
  UpdateEvaluatorCommand,
568
668
  UpdateGatewayCommand,
569
669
  UpdateGatewayRuleCommand,
570
670
  UpdateGatewayTargetCommand,
571
671
  UpdateHarnessCommand,
672
+ UpdateHarnessEndpointCommand,
572
673
  UpdateMemoryCommand,
573
674
  UpdateOauth2CredentialProviderCommand,
574
675
  UpdateOnlineEvaluationConfigCommand,
@@ -593,10 +694,15 @@ const paginators = {
593
694
  paginateListCodeInterpreters,
594
695
  paginateListConfigurationBundleVersions,
595
696
  paginateListConfigurationBundles,
697
+ paginateListDatasetExamples,
698
+ paginateListDatasetVersions,
699
+ paginateListDatasets,
596
700
  paginateListEvaluators,
597
701
  paginateListGatewayRules,
598
702
  paginateListGatewayTargets,
599
703
  paginateListGateways,
704
+ paginateListHarnessEndpoints,
705
+ paginateListHarnessVersions,
600
706
  paginateListHarnesses,
601
707
  paginateListMemories,
602
708
  paginateListOauth2CredentialProviders,
@@ -605,16 +711,36 @@ const paginators = {
605
711
  paginateListPaymentCredentialProviders,
606
712
  paginateListPaymentManagers,
607
713
  paginateListPolicies,
714
+ paginateListPolicyEngineSummaries,
608
715
  paginateListPolicyEngines,
609
716
  paginateListPolicyGenerationAssets,
717
+ paginateListPolicyGenerationSummaries,
610
718
  paginateListPolicyGenerations,
719
+ paginateListPolicySummaries,
611
720
  paginateListRegistries,
612
721
  paginateListRegistryRecords,
613
722
  paginateListWorkloadIdentities,
614
723
  };
615
724
 
616
- interface BedrockAgentCoreControlService$ {
617
- readonly _: unique symbol;
725
+ export interface BedrockAgentCoreControlService$ {
726
+ /**
727
+ * @see {@link AddDatasetExamplesCommand}
728
+ */
729
+ addDatasetExamples(
730
+ args: AddDatasetExamplesCommandInput,
731
+ options?: HttpHandlerOptions,
732
+ ): Effect.Effect<
733
+ AddDatasetExamplesCommandOutput,
734
+ | Cause.TimeoutError
735
+ | SdkError
736
+ | AccessDeniedError
737
+ | ConflictError
738
+ | InternalServerError
739
+ | ResourceNotFoundError
740
+ | ServiceQuotaExceededError
741
+ | ThrottlingError
742
+ | ValidationError
743
+ >;
618
744
 
619
745
  /**
620
746
  * @see {@link CreateAgentRuntimeCommand}
@@ -624,7 +750,7 @@ interface BedrockAgentCoreControlService$ {
624
750
  options?: HttpHandlerOptions,
625
751
  ): Effect.Effect<
626
752
  CreateAgentRuntimeCommandOutput,
627
- | Cause.TimeoutException
753
+ | Cause.TimeoutError
628
754
  | SdkError
629
755
  | AccessDeniedError
630
756
  | ConflictError
@@ -642,7 +768,7 @@ interface BedrockAgentCoreControlService$ {
642
768
  options?: HttpHandlerOptions,
643
769
  ): Effect.Effect<
644
770
  CreateAgentRuntimeEndpointCommandOutput,
645
- | Cause.TimeoutException
771
+ | Cause.TimeoutError
646
772
  | SdkError
647
773
  | AccessDeniedError
648
774
  | ConflictError
@@ -661,7 +787,7 @@ interface BedrockAgentCoreControlService$ {
661
787
  options?: HttpHandlerOptions,
662
788
  ): Effect.Effect<
663
789
  CreateApiKeyCredentialProviderCommandOutput,
664
- | Cause.TimeoutException
790
+ | Cause.TimeoutError
665
791
  | SdkError
666
792
  | AccessDeniedError
667
793
  | ConflictError
@@ -684,7 +810,7 @@ interface BedrockAgentCoreControlService$ {
684
810
  options?: HttpHandlerOptions,
685
811
  ): Effect.Effect<
686
812
  CreateBrowserCommandOutput,
687
- | Cause.TimeoutException
813
+ | Cause.TimeoutError
688
814
  | SdkError
689
815
  | AccessDeniedError
690
816
  | ConflictError
@@ -702,7 +828,7 @@ interface BedrockAgentCoreControlService$ {
702
828
  options?: HttpHandlerOptions,
703
829
  ): Effect.Effect<
704
830
  CreateBrowserProfileCommandOutput,
705
- | Cause.TimeoutException
831
+ | Cause.TimeoutError
706
832
  | SdkError
707
833
  | AccessDeniedError
708
834
  | ConflictError
@@ -720,7 +846,7 @@ interface BedrockAgentCoreControlService$ {
720
846
  options?: HttpHandlerOptions,
721
847
  ): Effect.Effect<
722
848
  CreateCodeInterpreterCommandOutput,
723
- | Cause.TimeoutException
849
+ | Cause.TimeoutError
724
850
  | SdkError
725
851
  | AccessDeniedError
726
852
  | ConflictError
@@ -738,7 +864,25 @@ interface BedrockAgentCoreControlService$ {
738
864
  options?: HttpHandlerOptions,
739
865
  ): Effect.Effect<
740
866
  CreateConfigurationBundleCommandOutput,
741
- | Cause.TimeoutException
867
+ | Cause.TimeoutError
868
+ | SdkError
869
+ | AccessDeniedError
870
+ | ConflictError
871
+ | InternalServerError
872
+ | ServiceQuotaExceededError
873
+ | ThrottlingError
874
+ | ValidationError
875
+ >;
876
+
877
+ /**
878
+ * @see {@link CreateDatasetCommand}
879
+ */
880
+ createDataset(
881
+ args: CreateDatasetCommandInput,
882
+ options?: HttpHandlerOptions,
883
+ ): Effect.Effect<
884
+ CreateDatasetCommandOutput,
885
+ | Cause.TimeoutError
742
886
  | SdkError
743
887
  | AccessDeniedError
744
888
  | ConflictError
@@ -748,6 +892,25 @@ interface BedrockAgentCoreControlService$ {
748
892
  | ValidationError
749
893
  >;
750
894
 
895
+ /**
896
+ * @see {@link CreateDatasetVersionCommand}
897
+ */
898
+ createDatasetVersion(
899
+ args: CreateDatasetVersionCommandInput,
900
+ options?: HttpHandlerOptions,
901
+ ): Effect.Effect<
902
+ CreateDatasetVersionCommandOutput,
903
+ | Cause.TimeoutError
904
+ | SdkError
905
+ | AccessDeniedError
906
+ | ConflictError
907
+ | InternalServerError
908
+ | ResourceNotFoundError
909
+ | ServiceQuotaExceededError
910
+ | ThrottlingError
911
+ | ValidationError
912
+ >;
913
+
751
914
  /**
752
915
  * @see {@link CreateEvaluatorCommand}
753
916
  */
@@ -756,7 +919,7 @@ interface BedrockAgentCoreControlService$ {
756
919
  options?: HttpHandlerOptions,
757
920
  ): Effect.Effect<
758
921
  CreateEvaluatorCommandOutput,
759
- | Cause.TimeoutException
922
+ | Cause.TimeoutError
760
923
  | SdkError
761
924
  | AccessDeniedError
762
925
  | ConflictError
@@ -774,7 +937,7 @@ interface BedrockAgentCoreControlService$ {
774
937
  options?: HttpHandlerOptions,
775
938
  ): Effect.Effect<
776
939
  CreateGatewayCommandOutput,
777
- | Cause.TimeoutException
940
+ | Cause.TimeoutError
778
941
  | SdkError
779
942
  | AccessDeniedError
780
943
  | ConflictError
@@ -792,7 +955,7 @@ interface BedrockAgentCoreControlService$ {
792
955
  options?: HttpHandlerOptions,
793
956
  ): Effect.Effect<
794
957
  CreateGatewayRuleCommandOutput,
795
- | Cause.TimeoutException
958
+ | Cause.TimeoutError
796
959
  | SdkError
797
960
  | AccessDeniedError
798
961
  | ConflictError
@@ -811,7 +974,7 @@ interface BedrockAgentCoreControlService$ {
811
974
  options?: HttpHandlerOptions,
812
975
  ): Effect.Effect<
813
976
  CreateGatewayTargetCommandOutput,
814
- | Cause.TimeoutException
977
+ | Cause.TimeoutError
815
978
  | SdkError
816
979
  | AccessDeniedError
817
980
  | ConflictError
@@ -830,7 +993,7 @@ interface BedrockAgentCoreControlService$ {
830
993
  options?: HttpHandlerOptions,
831
994
  ): Effect.Effect<
832
995
  CreateHarnessCommandOutput,
833
- | Cause.TimeoutException
996
+ | Cause.TimeoutError
834
997
  | SdkError
835
998
  | AccessDeniedError
836
999
  | ConflictError
@@ -840,6 +1003,25 @@ interface BedrockAgentCoreControlService$ {
840
1003
  | ValidationError
841
1004
  >;
842
1005
 
1006
+ /**
1007
+ * @see {@link CreateHarnessEndpointCommand}
1008
+ */
1009
+ createHarnessEndpoint(
1010
+ args: CreateHarnessEndpointCommandInput,
1011
+ options?: HttpHandlerOptions,
1012
+ ): Effect.Effect<
1013
+ CreateHarnessEndpointCommandOutput,
1014
+ | Cause.TimeoutError
1015
+ | SdkError
1016
+ | AccessDeniedError
1017
+ | ConflictError
1018
+ | InternalServerError
1019
+ | ResourceNotFoundError
1020
+ | ServiceQuotaExceededError
1021
+ | ThrottlingError
1022
+ | ValidationError
1023
+ >;
1024
+
843
1025
  /**
844
1026
  * @see {@link CreateMemoryCommand}
845
1027
  */
@@ -848,7 +1030,7 @@ interface BedrockAgentCoreControlService$ {
848
1030
  options?: HttpHandlerOptions,
849
1031
  ): Effect.Effect<
850
1032
  CreateMemoryCommandOutput,
851
- | Cause.TimeoutException
1033
+ | Cause.TimeoutError
852
1034
  | SdkError
853
1035
  | AccessDeniedError
854
1036
  | ConflictError
@@ -867,7 +1049,7 @@ interface BedrockAgentCoreControlService$ {
867
1049
  options?: HttpHandlerOptions,
868
1050
  ): Effect.Effect<
869
1051
  CreateOauth2CredentialProviderCommandOutput,
870
- | Cause.TimeoutException
1052
+ | Cause.TimeoutError
871
1053
  | SdkError
872
1054
  | AccessDeniedError
873
1055
  | ConflictError
@@ -890,7 +1072,7 @@ interface BedrockAgentCoreControlService$ {
890
1072
  options?: HttpHandlerOptions,
891
1073
  ): Effect.Effect<
892
1074
  CreateOnlineEvaluationConfigCommandOutput,
893
- | Cause.TimeoutException
1075
+ | Cause.TimeoutError
894
1076
  | SdkError
895
1077
  | AccessDeniedError
896
1078
  | ConflictError
@@ -908,7 +1090,7 @@ interface BedrockAgentCoreControlService$ {
908
1090
  options?: HttpHandlerOptions,
909
1091
  ): Effect.Effect<
910
1092
  CreatePaymentConnectorCommandOutput,
911
- | Cause.TimeoutException
1093
+ | Cause.TimeoutError
912
1094
  | SdkError
913
1095
  | AccessDeniedError
914
1096
  | ConflictError
@@ -927,7 +1109,7 @@ interface BedrockAgentCoreControlService$ {
927
1109
  options?: HttpHandlerOptions,
928
1110
  ): Effect.Effect<
929
1111
  CreatePaymentCredentialProviderCommandOutput,
930
- | Cause.TimeoutException
1112
+ | Cause.TimeoutError
931
1113
  | SdkError
932
1114
  | AccessDeniedError
933
1115
  | ConflictError
@@ -950,7 +1132,7 @@ interface BedrockAgentCoreControlService$ {
950
1132
  options?: HttpHandlerOptions,
951
1133
  ): Effect.Effect<
952
1134
  CreatePaymentManagerCommandOutput,
953
- | Cause.TimeoutException
1135
+ | Cause.TimeoutError
954
1136
  | SdkError
955
1137
  | AccessDeniedError
956
1138
  | ConflictError
@@ -968,7 +1150,7 @@ interface BedrockAgentCoreControlService$ {
968
1150
  options?: HttpHandlerOptions,
969
1151
  ): Effect.Effect<
970
1152
  CreatePolicyCommandOutput,
971
- | Cause.TimeoutException
1153
+ | Cause.TimeoutError
972
1154
  | SdkError
973
1155
  | AccessDeniedError
974
1156
  | ConflictError
@@ -987,7 +1169,7 @@ interface BedrockAgentCoreControlService$ {
987
1169
  options?: HttpHandlerOptions,
988
1170
  ): Effect.Effect<
989
1171
  CreatePolicyEngineCommandOutput,
990
- | Cause.TimeoutException
1172
+ | Cause.TimeoutError
991
1173
  | SdkError
992
1174
  | AccessDeniedError
993
1175
  | ConflictError
@@ -1005,7 +1187,7 @@ interface BedrockAgentCoreControlService$ {
1005
1187
  options?: HttpHandlerOptions,
1006
1188
  ): Effect.Effect<
1007
1189
  CreateRegistryCommandOutput,
1008
- | Cause.TimeoutException
1190
+ | Cause.TimeoutError
1009
1191
  | SdkError
1010
1192
  | AccessDeniedError
1011
1193
  | ConflictError
@@ -1023,7 +1205,7 @@ interface BedrockAgentCoreControlService$ {
1023
1205
  options?: HttpHandlerOptions,
1024
1206
  ): Effect.Effect<
1025
1207
  CreateRegistryRecordCommandOutput,
1026
- | Cause.TimeoutException
1208
+ | Cause.TimeoutError
1027
1209
  | SdkError
1028
1210
  | AccessDeniedError
1029
1211
  | ConflictError
@@ -1042,7 +1224,7 @@ interface BedrockAgentCoreControlService$ {
1042
1224
  options?: HttpHandlerOptions,
1043
1225
  ): Effect.Effect<
1044
1226
  CreateWorkloadIdentityCommandOutput,
1045
- | Cause.TimeoutException
1227
+ | Cause.TimeoutError
1046
1228
  | SdkError
1047
1229
  | AccessDeniedError
1048
1230
  | InternalServerError
@@ -1060,7 +1242,7 @@ interface BedrockAgentCoreControlService$ {
1060
1242
  options?: HttpHandlerOptions,
1061
1243
  ): Effect.Effect<
1062
1244
  DeleteAgentRuntimeCommandOutput,
1063
- | Cause.TimeoutException
1245
+ | Cause.TimeoutError
1064
1246
  | SdkError
1065
1247
  | AccessDeniedError
1066
1248
  | ConflictError
@@ -1077,7 +1259,7 @@ interface BedrockAgentCoreControlService$ {
1077
1259
  options?: HttpHandlerOptions,
1078
1260
  ): Effect.Effect<
1079
1261
  DeleteAgentRuntimeEndpointCommandOutput,
1080
- | Cause.TimeoutException
1262
+ | Cause.TimeoutError
1081
1263
  | SdkError
1082
1264
  | AccessDeniedError
1083
1265
  | ConflictError
@@ -1094,7 +1276,7 @@ interface BedrockAgentCoreControlService$ {
1094
1276
  options?: HttpHandlerOptions,
1095
1277
  ): Effect.Effect<
1096
1278
  DeleteApiKeyCredentialProviderCommandOutput,
1097
- | Cause.TimeoutException
1279
+ | Cause.TimeoutError
1098
1280
  | SdkError
1099
1281
  | AccessDeniedError
1100
1282
  | InternalServerError
@@ -1112,7 +1294,7 @@ interface BedrockAgentCoreControlService$ {
1112
1294
  options?: HttpHandlerOptions,
1113
1295
  ): Effect.Effect<
1114
1296
  DeleteBrowserCommandOutput,
1115
- | Cause.TimeoutException
1297
+ | Cause.TimeoutError
1116
1298
  | SdkError
1117
1299
  | AccessDeniedError
1118
1300
  | ConflictError
@@ -1131,7 +1313,7 @@ interface BedrockAgentCoreControlService$ {
1131
1313
  options?: HttpHandlerOptions,
1132
1314
  ): Effect.Effect<
1133
1315
  DeleteBrowserProfileCommandOutput,
1134
- | Cause.TimeoutException
1316
+ | Cause.TimeoutError
1135
1317
  | SdkError
1136
1318
  | AccessDeniedError
1137
1319
  | ConflictError
@@ -1149,7 +1331,7 @@ interface BedrockAgentCoreControlService$ {
1149
1331
  options?: HttpHandlerOptions,
1150
1332
  ): Effect.Effect<
1151
1333
  DeleteCodeInterpreterCommandOutput,
1152
- | Cause.TimeoutException
1334
+ | Cause.TimeoutError
1153
1335
  | SdkError
1154
1336
  | AccessDeniedError
1155
1337
  | ConflictError
@@ -1168,7 +1350,43 @@ interface BedrockAgentCoreControlService$ {
1168
1350
  options?: HttpHandlerOptions,
1169
1351
  ): Effect.Effect<
1170
1352
  DeleteConfigurationBundleCommandOutput,
1171
- | Cause.TimeoutException
1353
+ | Cause.TimeoutError
1354
+ | SdkError
1355
+ | AccessDeniedError
1356
+ | ConflictError
1357
+ | InternalServerError
1358
+ | ResourceNotFoundError
1359
+ | ThrottlingError
1360
+ | ValidationError
1361
+ >;
1362
+
1363
+ /**
1364
+ * @see {@link DeleteDatasetCommand}
1365
+ */
1366
+ deleteDataset(
1367
+ args: DeleteDatasetCommandInput,
1368
+ options?: HttpHandlerOptions,
1369
+ ): Effect.Effect<
1370
+ DeleteDatasetCommandOutput,
1371
+ | Cause.TimeoutError
1372
+ | SdkError
1373
+ | AccessDeniedError
1374
+ | ConflictError
1375
+ | InternalServerError
1376
+ | ResourceNotFoundError
1377
+ | ThrottlingError
1378
+ | ValidationError
1379
+ >;
1380
+
1381
+ /**
1382
+ * @see {@link DeleteDatasetExamplesCommand}
1383
+ */
1384
+ deleteDatasetExamples(
1385
+ args: DeleteDatasetExamplesCommandInput,
1386
+ options?: HttpHandlerOptions,
1387
+ ): Effect.Effect<
1388
+ DeleteDatasetExamplesCommandOutput,
1389
+ | Cause.TimeoutError
1172
1390
  | SdkError
1173
1391
  | AccessDeniedError
1174
1392
  | ConflictError
@@ -1186,7 +1404,7 @@ interface BedrockAgentCoreControlService$ {
1186
1404
  options?: HttpHandlerOptions,
1187
1405
  ): Effect.Effect<
1188
1406
  DeleteEvaluatorCommandOutput,
1189
- | Cause.TimeoutException
1407
+ | Cause.TimeoutError
1190
1408
  | SdkError
1191
1409
  | AccessDeniedError
1192
1410
  | ConflictError
@@ -1204,7 +1422,7 @@ interface BedrockAgentCoreControlService$ {
1204
1422
  options?: HttpHandlerOptions,
1205
1423
  ): Effect.Effect<
1206
1424
  DeleteGatewayCommandOutput,
1207
- | Cause.TimeoutException
1425
+ | Cause.TimeoutError
1208
1426
  | SdkError
1209
1427
  | AccessDeniedError
1210
1428
  | ConflictError
@@ -1222,7 +1440,7 @@ interface BedrockAgentCoreControlService$ {
1222
1440
  options?: HttpHandlerOptions,
1223
1441
  ): Effect.Effect<
1224
1442
  DeleteGatewayRuleCommandOutput,
1225
- | Cause.TimeoutException
1443
+ | Cause.TimeoutError
1226
1444
  | SdkError
1227
1445
  | AccessDeniedError
1228
1446
  | ConflictError
@@ -1240,7 +1458,7 @@ interface BedrockAgentCoreControlService$ {
1240
1458
  options?: HttpHandlerOptions,
1241
1459
  ): Effect.Effect<
1242
1460
  DeleteGatewayTargetCommandOutput,
1243
- | Cause.TimeoutException
1461
+ | Cause.TimeoutError
1244
1462
  | SdkError
1245
1463
  | AccessDeniedError
1246
1464
  | ConflictError
@@ -1258,7 +1476,25 @@ interface BedrockAgentCoreControlService$ {
1258
1476
  options?: HttpHandlerOptions,
1259
1477
  ): Effect.Effect<
1260
1478
  DeleteHarnessCommandOutput,
1261
- | Cause.TimeoutException
1479
+ | Cause.TimeoutError
1480
+ | SdkError
1481
+ | AccessDeniedError
1482
+ | ConflictError
1483
+ | InternalServerError
1484
+ | ResourceNotFoundError
1485
+ | ThrottlingError
1486
+ | ValidationError
1487
+ >;
1488
+
1489
+ /**
1490
+ * @see {@link DeleteHarnessEndpointCommand}
1491
+ */
1492
+ deleteHarnessEndpoint(
1493
+ args: DeleteHarnessEndpointCommandInput,
1494
+ options?: HttpHandlerOptions,
1495
+ ): Effect.Effect<
1496
+ DeleteHarnessEndpointCommandOutput,
1497
+ | Cause.TimeoutError
1262
1498
  | SdkError
1263
1499
  | AccessDeniedError
1264
1500
  | ConflictError
@@ -1276,7 +1512,7 @@ interface BedrockAgentCoreControlService$ {
1276
1512
  options?: HttpHandlerOptions,
1277
1513
  ): Effect.Effect<
1278
1514
  DeleteMemoryCommandOutput,
1279
- | Cause.TimeoutException
1515
+ | Cause.TimeoutError
1280
1516
  | SdkError
1281
1517
  | AccessDeniedError
1282
1518
  | ConflictError
@@ -1294,7 +1530,7 @@ interface BedrockAgentCoreControlService$ {
1294
1530
  options?: HttpHandlerOptions,
1295
1531
  ): Effect.Effect<
1296
1532
  DeleteOauth2CredentialProviderCommandOutput,
1297
- | Cause.TimeoutException
1533
+ | Cause.TimeoutError
1298
1534
  | SdkError
1299
1535
  | AccessDeniedError
1300
1536
  | ConflictError
@@ -1313,7 +1549,7 @@ interface BedrockAgentCoreControlService$ {
1313
1549
  options?: HttpHandlerOptions,
1314
1550
  ): Effect.Effect<
1315
1551
  DeleteOnlineEvaluationConfigCommandOutput,
1316
- | Cause.TimeoutException
1552
+ | Cause.TimeoutError
1317
1553
  | SdkError
1318
1554
  | AccessDeniedError
1319
1555
  | ConflictError
@@ -1331,7 +1567,7 @@ interface BedrockAgentCoreControlService$ {
1331
1567
  options?: HttpHandlerOptions,
1332
1568
  ): Effect.Effect<
1333
1569
  DeletePaymentConnectorCommandOutput,
1334
- | Cause.TimeoutException
1570
+ | Cause.TimeoutError
1335
1571
  | SdkError
1336
1572
  | AccessDeniedError
1337
1573
  | ConflictError
@@ -1348,7 +1584,7 @@ interface BedrockAgentCoreControlService$ {
1348
1584
  options?: HttpHandlerOptions,
1349
1585
  ): Effect.Effect<
1350
1586
  DeletePaymentCredentialProviderCommandOutput,
1351
- | Cause.TimeoutException
1587
+ | Cause.TimeoutError
1352
1588
  | SdkError
1353
1589
  | AccessDeniedError
1354
1590
  | InternalServerError
@@ -1366,7 +1602,7 @@ interface BedrockAgentCoreControlService$ {
1366
1602
  options?: HttpHandlerOptions,
1367
1603
  ): Effect.Effect<
1368
1604
  DeletePaymentManagerCommandOutput,
1369
- | Cause.TimeoutException
1605
+ | Cause.TimeoutError
1370
1606
  | SdkError
1371
1607
  | AccessDeniedError
1372
1608
  | ConflictError
@@ -1383,7 +1619,7 @@ interface BedrockAgentCoreControlService$ {
1383
1619
  options?: HttpHandlerOptions,
1384
1620
  ): Effect.Effect<
1385
1621
  DeletePolicyCommandOutput,
1386
- | Cause.TimeoutException
1622
+ | Cause.TimeoutError
1387
1623
  | SdkError
1388
1624
  | AccessDeniedError
1389
1625
  | ConflictError
@@ -1401,7 +1637,7 @@ interface BedrockAgentCoreControlService$ {
1401
1637
  options?: HttpHandlerOptions,
1402
1638
  ): Effect.Effect<
1403
1639
  DeletePolicyEngineCommandOutput,
1404
- | Cause.TimeoutException
1640
+ | Cause.TimeoutError
1405
1641
  | SdkError
1406
1642
  | AccessDeniedError
1407
1643
  | ConflictError
@@ -1419,7 +1655,7 @@ interface BedrockAgentCoreControlService$ {
1419
1655
  options?: HttpHandlerOptions,
1420
1656
  ): Effect.Effect<
1421
1657
  DeleteRegistryCommandOutput,
1422
- | Cause.TimeoutException
1658
+ | Cause.TimeoutError
1423
1659
  | SdkError
1424
1660
  | AccessDeniedError
1425
1661
  | ConflictError
@@ -1437,7 +1673,7 @@ interface BedrockAgentCoreControlService$ {
1437
1673
  options?: HttpHandlerOptions,
1438
1674
  ): Effect.Effect<
1439
1675
  DeleteRegistryRecordCommandOutput,
1440
- | Cause.TimeoutException
1676
+ | Cause.TimeoutError
1441
1677
  | SdkError
1442
1678
  | AccessDeniedError
1443
1679
  | ConflictError
@@ -1455,7 +1691,7 @@ interface BedrockAgentCoreControlService$ {
1455
1691
  options?: HttpHandlerOptions,
1456
1692
  ): Effect.Effect<
1457
1693
  DeleteResourcePolicyCommandOutput,
1458
- | Cause.TimeoutException
1694
+ | Cause.TimeoutError
1459
1695
  | SdkError
1460
1696
  | AccessDeniedError
1461
1697
  | InternalServerError
@@ -1472,7 +1708,7 @@ interface BedrockAgentCoreControlService$ {
1472
1708
  options?: HttpHandlerOptions,
1473
1709
  ): Effect.Effect<
1474
1710
  DeleteWorkloadIdentityCommandOutput,
1475
- | Cause.TimeoutException
1711
+ | Cause.TimeoutError
1476
1712
  | SdkError
1477
1713
  | AccessDeniedError
1478
1714
  | InternalServerError
@@ -1490,7 +1726,7 @@ interface BedrockAgentCoreControlService$ {
1490
1726
  options?: HttpHandlerOptions,
1491
1727
  ): Effect.Effect<
1492
1728
  GetAgentRuntimeCommandOutput,
1493
- | Cause.TimeoutException
1729
+ | Cause.TimeoutError
1494
1730
  | SdkError
1495
1731
  | AccessDeniedError
1496
1732
  | InternalServerError
@@ -1507,7 +1743,7 @@ interface BedrockAgentCoreControlService$ {
1507
1743
  options?: HttpHandlerOptions,
1508
1744
  ): Effect.Effect<
1509
1745
  GetAgentRuntimeEndpointCommandOutput,
1510
- | Cause.TimeoutException
1746
+ | Cause.TimeoutError
1511
1747
  | SdkError
1512
1748
  | AccessDeniedError
1513
1749
  | InternalServerError
@@ -1524,7 +1760,7 @@ interface BedrockAgentCoreControlService$ {
1524
1760
  options?: HttpHandlerOptions,
1525
1761
  ): Effect.Effect<
1526
1762
  GetApiKeyCredentialProviderCommandOutput,
1527
- | Cause.TimeoutException
1763
+ | Cause.TimeoutError
1528
1764
  | SdkError
1529
1765
  | AccessDeniedError
1530
1766
  | DecryptionError
@@ -1543,7 +1779,7 @@ interface BedrockAgentCoreControlService$ {
1543
1779
  options?: HttpHandlerOptions,
1544
1780
  ): Effect.Effect<
1545
1781
  GetBrowserCommandOutput,
1546
- | Cause.TimeoutException
1782
+ | Cause.TimeoutError
1547
1783
  | SdkError
1548
1784
  | AccessDeniedError
1549
1785
  | InternalServerError
@@ -1560,7 +1796,7 @@ interface BedrockAgentCoreControlService$ {
1560
1796
  options?: HttpHandlerOptions,
1561
1797
  ): Effect.Effect<
1562
1798
  GetBrowserProfileCommandOutput,
1563
- | Cause.TimeoutException
1799
+ | Cause.TimeoutError
1564
1800
  | SdkError
1565
1801
  | AccessDeniedError
1566
1802
  | InternalServerError
@@ -1577,7 +1813,7 @@ interface BedrockAgentCoreControlService$ {
1577
1813
  options?: HttpHandlerOptions,
1578
1814
  ): Effect.Effect<
1579
1815
  GetCodeInterpreterCommandOutput,
1580
- | Cause.TimeoutException
1816
+ | Cause.TimeoutError
1581
1817
  | SdkError
1582
1818
  | AccessDeniedError
1583
1819
  | InternalServerError
@@ -1594,7 +1830,7 @@ interface BedrockAgentCoreControlService$ {
1594
1830
  options?: HttpHandlerOptions,
1595
1831
  ): Effect.Effect<
1596
1832
  GetConfigurationBundleCommandOutput,
1597
- | Cause.TimeoutException
1833
+ | Cause.TimeoutError
1598
1834
  | SdkError
1599
1835
  | AccessDeniedError
1600
1836
  | InternalServerError
@@ -1611,7 +1847,7 @@ interface BedrockAgentCoreControlService$ {
1611
1847
  options?: HttpHandlerOptions,
1612
1848
  ): Effect.Effect<
1613
1849
  GetConfigurationBundleVersionCommandOutput,
1614
- | Cause.TimeoutException
1850
+ | Cause.TimeoutError
1615
1851
  | SdkError
1616
1852
  | AccessDeniedError
1617
1853
  | InternalServerError
@@ -1620,6 +1856,24 @@ interface BedrockAgentCoreControlService$ {
1620
1856
  | ValidationError
1621
1857
  >;
1622
1858
 
1859
+ /**
1860
+ * @see {@link GetDatasetCommand}
1861
+ */
1862
+ getDataset(
1863
+ args: GetDatasetCommandInput,
1864
+ options?: HttpHandlerOptions,
1865
+ ): Effect.Effect<
1866
+ GetDatasetCommandOutput,
1867
+ | Cause.TimeoutError
1868
+ | SdkError
1869
+ | AccessDeniedError
1870
+ | ConflictError
1871
+ | InternalServerError
1872
+ | ResourceNotFoundError
1873
+ | ThrottlingError
1874
+ | ValidationError
1875
+ >;
1876
+
1623
1877
  /**
1624
1878
  * @see {@link GetEvaluatorCommand}
1625
1879
  */
@@ -1628,7 +1882,7 @@ interface BedrockAgentCoreControlService$ {
1628
1882
  options?: HttpHandlerOptions,
1629
1883
  ): Effect.Effect<
1630
1884
  GetEvaluatorCommandOutput,
1631
- | Cause.TimeoutException
1885
+ | Cause.TimeoutError
1632
1886
  | SdkError
1633
1887
  | AccessDeniedError
1634
1888
  | InternalServerError
@@ -1645,7 +1899,7 @@ interface BedrockAgentCoreControlService$ {
1645
1899
  options?: HttpHandlerOptions,
1646
1900
  ): Effect.Effect<
1647
1901
  GetGatewayCommandOutput,
1648
- | Cause.TimeoutException
1902
+ | Cause.TimeoutError
1649
1903
  | SdkError
1650
1904
  | AccessDeniedError
1651
1905
  | InternalServerError
@@ -1662,7 +1916,7 @@ interface BedrockAgentCoreControlService$ {
1662
1916
  options?: HttpHandlerOptions,
1663
1917
  ): Effect.Effect<
1664
1918
  GetGatewayRuleCommandOutput,
1665
- | Cause.TimeoutException
1919
+ | Cause.TimeoutError
1666
1920
  | SdkError
1667
1921
  | AccessDeniedError
1668
1922
  | InternalServerError
@@ -1679,7 +1933,7 @@ interface BedrockAgentCoreControlService$ {
1679
1933
  options?: HttpHandlerOptions,
1680
1934
  ): Effect.Effect<
1681
1935
  GetGatewayTargetCommandOutput,
1682
- | Cause.TimeoutException
1936
+ | Cause.TimeoutError
1683
1937
  | SdkError
1684
1938
  | AccessDeniedError
1685
1939
  | InternalServerError
@@ -1696,7 +1950,24 @@ interface BedrockAgentCoreControlService$ {
1696
1950
  options?: HttpHandlerOptions,
1697
1951
  ): Effect.Effect<
1698
1952
  GetHarnessCommandOutput,
1699
- | Cause.TimeoutException
1953
+ | Cause.TimeoutError
1954
+ | SdkError
1955
+ | AccessDeniedError
1956
+ | InternalServerError
1957
+ | ResourceNotFoundError
1958
+ | ThrottlingError
1959
+ | ValidationError
1960
+ >;
1961
+
1962
+ /**
1963
+ * @see {@link GetHarnessEndpointCommand}
1964
+ */
1965
+ getHarnessEndpoint(
1966
+ args: GetHarnessEndpointCommandInput,
1967
+ options?: HttpHandlerOptions,
1968
+ ): Effect.Effect<
1969
+ GetHarnessEndpointCommandOutput,
1970
+ | Cause.TimeoutError
1700
1971
  | SdkError
1701
1972
  | AccessDeniedError
1702
1973
  | InternalServerError
@@ -1713,7 +1984,7 @@ interface BedrockAgentCoreControlService$ {
1713
1984
  options?: HttpHandlerOptions,
1714
1985
  ): Effect.Effect<
1715
1986
  GetMemoryCommandOutput,
1716
- | Cause.TimeoutException
1987
+ | Cause.TimeoutError
1717
1988
  | SdkError
1718
1989
  | AccessDeniedError
1719
1990
  | ResourceNotFoundError
@@ -1730,7 +2001,7 @@ interface BedrockAgentCoreControlService$ {
1730
2001
  options?: HttpHandlerOptions,
1731
2002
  ): Effect.Effect<
1732
2003
  GetOauth2CredentialProviderCommandOutput,
1733
- | Cause.TimeoutException
2004
+ | Cause.TimeoutError
1734
2005
  | SdkError
1735
2006
  | AccessDeniedError
1736
2007
  | DecryptionError
@@ -1749,7 +2020,7 @@ interface BedrockAgentCoreControlService$ {
1749
2020
  options?: HttpHandlerOptions,
1750
2021
  ): Effect.Effect<
1751
2022
  GetOnlineEvaluationConfigCommandOutput,
1752
- | Cause.TimeoutException
2023
+ | Cause.TimeoutError
1753
2024
  | SdkError
1754
2025
  | AccessDeniedError
1755
2026
  | InternalServerError
@@ -1766,7 +2037,7 @@ interface BedrockAgentCoreControlService$ {
1766
2037
  options?: HttpHandlerOptions,
1767
2038
  ): Effect.Effect<
1768
2039
  GetPaymentConnectorCommandOutput,
1769
- | Cause.TimeoutException
2040
+ | Cause.TimeoutError
1770
2041
  | SdkError
1771
2042
  | AccessDeniedError
1772
2043
  | InternalServerError
@@ -1783,7 +2054,7 @@ interface BedrockAgentCoreControlService$ {
1783
2054
  options?: HttpHandlerOptions,
1784
2055
  ): Effect.Effect<
1785
2056
  GetPaymentCredentialProviderCommandOutput,
1786
- | Cause.TimeoutException
2057
+ | Cause.TimeoutError
1787
2058
  | SdkError
1788
2059
  | AccessDeniedError
1789
2060
  | DecryptionError
@@ -1802,7 +2073,7 @@ interface BedrockAgentCoreControlService$ {
1802
2073
  options?: HttpHandlerOptions,
1803
2074
  ): Effect.Effect<
1804
2075
  GetPaymentManagerCommandOutput,
1805
- | Cause.TimeoutException
2076
+ | Cause.TimeoutError
1806
2077
  | SdkError
1807
2078
  | AccessDeniedError
1808
2079
  | InternalServerError
@@ -1819,7 +2090,7 @@ interface BedrockAgentCoreControlService$ {
1819
2090
  options?: HttpHandlerOptions,
1820
2091
  ): Effect.Effect<
1821
2092
  GetPolicyCommandOutput,
1822
- | Cause.TimeoutException
2093
+ | Cause.TimeoutError
1823
2094
  | SdkError
1824
2095
  | AccessDeniedError
1825
2096
  | InternalServerError
@@ -1836,7 +2107,24 @@ interface BedrockAgentCoreControlService$ {
1836
2107
  options?: HttpHandlerOptions,
1837
2108
  ): Effect.Effect<
1838
2109
  GetPolicyEngineCommandOutput,
1839
- | Cause.TimeoutException
2110
+ | Cause.TimeoutError
2111
+ | SdkError
2112
+ | AccessDeniedError
2113
+ | InternalServerError
2114
+ | ResourceNotFoundError
2115
+ | ThrottlingError
2116
+ | ValidationError
2117
+ >;
2118
+
2119
+ /**
2120
+ * @see {@link GetPolicyEngineSummaryCommand}
2121
+ */
2122
+ getPolicyEngineSummary(
2123
+ args: GetPolicyEngineSummaryCommandInput,
2124
+ options?: HttpHandlerOptions,
2125
+ ): Effect.Effect<
2126
+ GetPolicyEngineSummaryCommandOutput,
2127
+ | Cause.TimeoutError
1840
2128
  | SdkError
1841
2129
  | AccessDeniedError
1842
2130
  | InternalServerError
@@ -1853,7 +2141,41 @@ interface BedrockAgentCoreControlService$ {
1853
2141
  options?: HttpHandlerOptions,
1854
2142
  ): Effect.Effect<
1855
2143
  GetPolicyGenerationCommandOutput,
1856
- | Cause.TimeoutException
2144
+ | Cause.TimeoutError
2145
+ | SdkError
2146
+ | AccessDeniedError
2147
+ | InternalServerError
2148
+ | ResourceNotFoundError
2149
+ | ThrottlingError
2150
+ | ValidationError
2151
+ >;
2152
+
2153
+ /**
2154
+ * @see {@link GetPolicyGenerationSummaryCommand}
2155
+ */
2156
+ getPolicyGenerationSummary(
2157
+ args: GetPolicyGenerationSummaryCommandInput,
2158
+ options?: HttpHandlerOptions,
2159
+ ): Effect.Effect<
2160
+ GetPolicyGenerationSummaryCommandOutput,
2161
+ | Cause.TimeoutError
2162
+ | SdkError
2163
+ | AccessDeniedError
2164
+ | InternalServerError
2165
+ | ResourceNotFoundError
2166
+ | ThrottlingError
2167
+ | ValidationError
2168
+ >;
2169
+
2170
+ /**
2171
+ * @see {@link GetPolicySummaryCommand}
2172
+ */
2173
+ getPolicySummary(
2174
+ args: GetPolicySummaryCommandInput,
2175
+ options?: HttpHandlerOptions,
2176
+ ): Effect.Effect<
2177
+ GetPolicySummaryCommandOutput,
2178
+ | Cause.TimeoutError
1857
2179
  | SdkError
1858
2180
  | AccessDeniedError
1859
2181
  | InternalServerError
@@ -1870,7 +2192,7 @@ interface BedrockAgentCoreControlService$ {
1870
2192
  options?: HttpHandlerOptions,
1871
2193
  ): Effect.Effect<
1872
2194
  GetRegistryCommandOutput,
1873
- | Cause.TimeoutException
2195
+ | Cause.TimeoutError
1874
2196
  | SdkError
1875
2197
  | AccessDeniedError
1876
2198
  | InternalServerError
@@ -1887,7 +2209,7 @@ interface BedrockAgentCoreControlService$ {
1887
2209
  options?: HttpHandlerOptions,
1888
2210
  ): Effect.Effect<
1889
2211
  GetRegistryRecordCommandOutput,
1890
- | Cause.TimeoutException
2212
+ | Cause.TimeoutError
1891
2213
  | SdkError
1892
2214
  | AccessDeniedError
1893
2215
  | ConflictError
@@ -1905,7 +2227,7 @@ interface BedrockAgentCoreControlService$ {
1905
2227
  options?: HttpHandlerOptions,
1906
2228
  ): Effect.Effect<
1907
2229
  GetResourcePolicyCommandOutput,
1908
- | Cause.TimeoutException
2230
+ | Cause.TimeoutError
1909
2231
  | SdkError
1910
2232
  | AccessDeniedError
1911
2233
  | InternalServerError
@@ -1922,7 +2244,7 @@ interface BedrockAgentCoreControlService$ {
1922
2244
  options?: HttpHandlerOptions,
1923
2245
  ): Effect.Effect<
1924
2246
  GetTokenVaultCommandOutput,
1925
- | Cause.TimeoutException
2247
+ | Cause.TimeoutError
1926
2248
  | SdkError
1927
2249
  | AccessDeniedError
1928
2250
  | InternalServerError
@@ -1940,7 +2262,7 @@ interface BedrockAgentCoreControlService$ {
1940
2262
  options?: HttpHandlerOptions,
1941
2263
  ): Effect.Effect<
1942
2264
  GetWorkloadIdentityCommandOutput,
1943
- | Cause.TimeoutException
2265
+ | Cause.TimeoutError
1944
2266
  | SdkError
1945
2267
  | AccessDeniedError
1946
2268
  | InternalServerError
@@ -1958,7 +2280,7 @@ interface BedrockAgentCoreControlService$ {
1958
2280
  options?: HttpHandlerOptions,
1959
2281
  ): Effect.Effect<
1960
2282
  ListAgentRuntimeEndpointsCommandOutput,
1961
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2283
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1962
2284
  >;
1963
2285
 
1964
2286
  listAgentRuntimeEndpointsStream(
@@ -1966,7 +2288,7 @@ interface BedrockAgentCoreControlService$ {
1966
2288
  options?: HttpHandlerOptions,
1967
2289
  ): Stream.Stream<
1968
2290
  ListAgentRuntimeEndpointsCommandOutput,
1969
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2291
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1970
2292
  >;
1971
2293
 
1972
2294
  /**
@@ -1977,7 +2299,7 @@ interface BedrockAgentCoreControlService$ {
1977
2299
  options?: HttpHandlerOptions,
1978
2300
  ): Effect.Effect<
1979
2301
  ListAgentRuntimeVersionsCommandOutput,
1980
- | Cause.TimeoutException
2302
+ | Cause.TimeoutError
1981
2303
  | SdkError
1982
2304
  | AccessDeniedError
1983
2305
  | InternalServerError
@@ -1991,7 +2313,7 @@ interface BedrockAgentCoreControlService$ {
1991
2313
  options?: HttpHandlerOptions,
1992
2314
  ): Stream.Stream<
1993
2315
  ListAgentRuntimeVersionsCommandOutput,
1994
- | Cause.TimeoutException
2316
+ | Cause.TimeoutError
1995
2317
  | SdkError
1996
2318
  | AccessDeniedError
1997
2319
  | InternalServerError
@@ -2008,7 +2330,7 @@ interface BedrockAgentCoreControlService$ {
2008
2330
  options?: HttpHandlerOptions,
2009
2331
  ): Effect.Effect<
2010
2332
  ListAgentRuntimesCommandOutput,
2011
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2333
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2012
2334
  >;
2013
2335
 
2014
2336
  listAgentRuntimesStream(
@@ -2016,7 +2338,7 @@ interface BedrockAgentCoreControlService$ {
2016
2338
  options?: HttpHandlerOptions,
2017
2339
  ): Stream.Stream<
2018
2340
  ListAgentRuntimesCommandOutput,
2019
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2341
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2020
2342
  >;
2021
2343
 
2022
2344
  /**
@@ -2027,7 +2349,7 @@ interface BedrockAgentCoreControlService$ {
2027
2349
  options?: HttpHandlerOptions,
2028
2350
  ): Effect.Effect<
2029
2351
  ListApiKeyCredentialProvidersCommandOutput,
2030
- | Cause.TimeoutException
2352
+ | Cause.TimeoutError
2031
2353
  | SdkError
2032
2354
  | AccessDeniedError
2033
2355
  | InternalServerError
@@ -2042,7 +2364,7 @@ interface BedrockAgentCoreControlService$ {
2042
2364
  options?: HttpHandlerOptions,
2043
2365
  ): Stream.Stream<
2044
2366
  ListApiKeyCredentialProvidersCommandOutput,
2045
- | Cause.TimeoutException
2367
+ | Cause.TimeoutError
2046
2368
  | SdkError
2047
2369
  | AccessDeniedError
2048
2370
  | InternalServerError
@@ -2060,7 +2382,7 @@ interface BedrockAgentCoreControlService$ {
2060
2382
  options?: HttpHandlerOptions,
2061
2383
  ): Effect.Effect<
2062
2384
  ListBrowserProfilesCommandOutput,
2063
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2385
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2064
2386
  >;
2065
2387
 
2066
2388
  listBrowserProfilesStream(
@@ -2068,7 +2390,7 @@ interface BedrockAgentCoreControlService$ {
2068
2390
  options?: HttpHandlerOptions,
2069
2391
  ): Stream.Stream<
2070
2392
  ListBrowserProfilesCommandOutput,
2071
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2393
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2072
2394
  >;
2073
2395
 
2074
2396
  /**
@@ -2079,7 +2401,7 @@ interface BedrockAgentCoreControlService$ {
2079
2401
  options?: HttpHandlerOptions,
2080
2402
  ): Effect.Effect<
2081
2403
  ListBrowsersCommandOutput,
2082
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2404
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2083
2405
  >;
2084
2406
 
2085
2407
  listBrowsersStream(
@@ -2087,7 +2409,7 @@ interface BedrockAgentCoreControlService$ {
2087
2409
  options?: HttpHandlerOptions,
2088
2410
  ): Stream.Stream<
2089
2411
  ListBrowsersCommandOutput,
2090
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2412
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2091
2413
  >;
2092
2414
 
2093
2415
  /**
@@ -2098,7 +2420,7 @@ interface BedrockAgentCoreControlService$ {
2098
2420
  options?: HttpHandlerOptions,
2099
2421
  ): Effect.Effect<
2100
2422
  ListCodeInterpretersCommandOutput,
2101
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2423
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2102
2424
  >;
2103
2425
 
2104
2426
  listCodeInterpretersStream(
@@ -2106,7 +2428,7 @@ interface BedrockAgentCoreControlService$ {
2106
2428
  options?: HttpHandlerOptions,
2107
2429
  ): Stream.Stream<
2108
2430
  ListCodeInterpretersCommandOutput,
2109
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2431
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2110
2432
  >;
2111
2433
 
2112
2434
  /**
@@ -2117,7 +2439,7 @@ interface BedrockAgentCoreControlService$ {
2117
2439
  options?: HttpHandlerOptions,
2118
2440
  ): Effect.Effect<
2119
2441
  ListConfigurationBundleVersionsCommandOutput,
2120
- | Cause.TimeoutException
2442
+ | Cause.TimeoutError
2121
2443
  | SdkError
2122
2444
  | AccessDeniedError
2123
2445
  | InternalServerError
@@ -2131,7 +2453,7 @@ interface BedrockAgentCoreControlService$ {
2131
2453
  options?: HttpHandlerOptions,
2132
2454
  ): Stream.Stream<
2133
2455
  ListConfigurationBundleVersionsCommandOutput,
2134
- | Cause.TimeoutException
2456
+ | Cause.TimeoutError
2135
2457
  | SdkError
2136
2458
  | AccessDeniedError
2137
2459
  | InternalServerError
@@ -2148,7 +2470,7 @@ interface BedrockAgentCoreControlService$ {
2148
2470
  options?: HttpHandlerOptions,
2149
2471
  ): Effect.Effect<
2150
2472
  ListConfigurationBundlesCommandOutput,
2151
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2473
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2152
2474
  >;
2153
2475
 
2154
2476
  listConfigurationBundlesStream(
@@ -2156,7 +2478,90 @@ interface BedrockAgentCoreControlService$ {
2156
2478
  options?: HttpHandlerOptions,
2157
2479
  ): Stream.Stream<
2158
2480
  ListConfigurationBundlesCommandOutput,
2159
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2481
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2482
+ >;
2483
+
2484
+ /**
2485
+ * @see {@link ListDatasetExamplesCommand}
2486
+ */
2487
+ listDatasetExamples(
2488
+ args: ListDatasetExamplesCommandInput,
2489
+ options?: HttpHandlerOptions,
2490
+ ): Effect.Effect<
2491
+ ListDatasetExamplesCommandOutput,
2492
+ | Cause.TimeoutError
2493
+ | SdkError
2494
+ | AccessDeniedError
2495
+ | ConflictError
2496
+ | InternalServerError
2497
+ | ResourceNotFoundError
2498
+ | ThrottlingError
2499
+ | ValidationError
2500
+ >;
2501
+
2502
+ listDatasetExamplesStream(
2503
+ args: ListDatasetExamplesCommandInput,
2504
+ options?: HttpHandlerOptions,
2505
+ ): Stream.Stream<
2506
+ ListDatasetExamplesCommandOutput,
2507
+ | Cause.TimeoutError
2508
+ | SdkError
2509
+ | AccessDeniedError
2510
+ | ConflictError
2511
+ | InternalServerError
2512
+ | ResourceNotFoundError
2513
+ | ThrottlingError
2514
+ | ValidationError
2515
+ >;
2516
+
2517
+ /**
2518
+ * @see {@link ListDatasetVersionsCommand}
2519
+ */
2520
+ listDatasetVersions(
2521
+ args: ListDatasetVersionsCommandInput,
2522
+ options?: HttpHandlerOptions,
2523
+ ): Effect.Effect<
2524
+ ListDatasetVersionsCommandOutput,
2525
+ | Cause.TimeoutError
2526
+ | SdkError
2527
+ | AccessDeniedError
2528
+ | InternalServerError
2529
+ | ResourceNotFoundError
2530
+ | ThrottlingError
2531
+ | ValidationError
2532
+ >;
2533
+
2534
+ listDatasetVersionsStream(
2535
+ args: ListDatasetVersionsCommandInput,
2536
+ options?: HttpHandlerOptions,
2537
+ ): Stream.Stream<
2538
+ ListDatasetVersionsCommandOutput,
2539
+ | Cause.TimeoutError
2540
+ | SdkError
2541
+ | AccessDeniedError
2542
+ | InternalServerError
2543
+ | ResourceNotFoundError
2544
+ | ThrottlingError
2545
+ | ValidationError
2546
+ >;
2547
+
2548
+ /**
2549
+ * @see {@link ListDatasetsCommand}
2550
+ */
2551
+ listDatasets(
2552
+ args: ListDatasetsCommandInput,
2553
+ options?: HttpHandlerOptions,
2554
+ ): Effect.Effect<
2555
+ ListDatasetsCommandOutput,
2556
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2557
+ >;
2558
+
2559
+ listDatasetsStream(
2560
+ args: ListDatasetsCommandInput,
2561
+ options?: HttpHandlerOptions,
2562
+ ): Stream.Stream<
2563
+ ListDatasetsCommandOutput,
2564
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2160
2565
  >;
2161
2566
 
2162
2567
  /**
@@ -2167,7 +2572,7 @@ interface BedrockAgentCoreControlService$ {
2167
2572
  options?: HttpHandlerOptions,
2168
2573
  ): Effect.Effect<
2169
2574
  ListEvaluatorsCommandOutput,
2170
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2575
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2171
2576
  >;
2172
2577
 
2173
2578
  listEvaluatorsStream(
@@ -2175,7 +2580,7 @@ interface BedrockAgentCoreControlService$ {
2175
2580
  options?: HttpHandlerOptions,
2176
2581
  ): Stream.Stream<
2177
2582
  ListEvaluatorsCommandOutput,
2178
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2583
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2179
2584
  >;
2180
2585
 
2181
2586
  /**
@@ -2186,7 +2591,7 @@ interface BedrockAgentCoreControlService$ {
2186
2591
  options?: HttpHandlerOptions,
2187
2592
  ): Effect.Effect<
2188
2593
  ListGatewayRulesCommandOutput,
2189
- | Cause.TimeoutException
2594
+ | Cause.TimeoutError
2190
2595
  | SdkError
2191
2596
  | AccessDeniedError
2192
2597
  | InternalServerError
@@ -2200,7 +2605,7 @@ interface BedrockAgentCoreControlService$ {
2200
2605
  options?: HttpHandlerOptions,
2201
2606
  ): Stream.Stream<
2202
2607
  ListGatewayRulesCommandOutput,
2203
- | Cause.TimeoutException
2608
+ | Cause.TimeoutError
2204
2609
  | SdkError
2205
2610
  | AccessDeniedError
2206
2611
  | InternalServerError
@@ -2217,7 +2622,13 @@ interface BedrockAgentCoreControlService$ {
2217
2622
  options?: HttpHandlerOptions,
2218
2623
  ): Effect.Effect<
2219
2624
  ListGatewayTargetsCommandOutput,
2220
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2625
+ | Cause.TimeoutError
2626
+ | SdkError
2627
+ | AccessDeniedError
2628
+ | InternalServerError
2629
+ | ResourceNotFoundError
2630
+ | ThrottlingError
2631
+ | ValidationError
2221
2632
  >;
2222
2633
 
2223
2634
  listGatewayTargetsStream(
@@ -2225,7 +2636,13 @@ interface BedrockAgentCoreControlService$ {
2225
2636
  options?: HttpHandlerOptions,
2226
2637
  ): Stream.Stream<
2227
2638
  ListGatewayTargetsCommandOutput,
2228
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2639
+ | Cause.TimeoutError
2640
+ | SdkError
2641
+ | AccessDeniedError
2642
+ | InternalServerError
2643
+ | ResourceNotFoundError
2644
+ | ThrottlingError
2645
+ | ValidationError
2229
2646
  >;
2230
2647
 
2231
2648
  /**
@@ -2236,7 +2653,7 @@ interface BedrockAgentCoreControlService$ {
2236
2653
  options?: HttpHandlerOptions,
2237
2654
  ): Effect.Effect<
2238
2655
  ListGatewaysCommandOutput,
2239
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2656
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2240
2657
  >;
2241
2658
 
2242
2659
  listGatewaysStream(
@@ -2244,7 +2661,69 @@ interface BedrockAgentCoreControlService$ {
2244
2661
  options?: HttpHandlerOptions,
2245
2662
  ): Stream.Stream<
2246
2663
  ListGatewaysCommandOutput,
2247
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2664
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2665
+ >;
2666
+
2667
+ /**
2668
+ * @see {@link ListHarnessEndpointsCommand}
2669
+ */
2670
+ listHarnessEndpoints(
2671
+ args: ListHarnessEndpointsCommandInput,
2672
+ options?: HttpHandlerOptions,
2673
+ ): Effect.Effect<
2674
+ ListHarnessEndpointsCommandOutput,
2675
+ | Cause.TimeoutError
2676
+ | SdkError
2677
+ | AccessDeniedError
2678
+ | InternalServerError
2679
+ | ResourceNotFoundError
2680
+ | ThrottlingError
2681
+ | ValidationError
2682
+ >;
2683
+
2684
+ listHarnessEndpointsStream(
2685
+ args: ListHarnessEndpointsCommandInput,
2686
+ options?: HttpHandlerOptions,
2687
+ ): Stream.Stream<
2688
+ ListHarnessEndpointsCommandOutput,
2689
+ | Cause.TimeoutError
2690
+ | SdkError
2691
+ | AccessDeniedError
2692
+ | InternalServerError
2693
+ | ResourceNotFoundError
2694
+ | ThrottlingError
2695
+ | ValidationError
2696
+ >;
2697
+
2698
+ /**
2699
+ * @see {@link ListHarnessVersionsCommand}
2700
+ */
2701
+ listHarnessVersions(
2702
+ args: ListHarnessVersionsCommandInput,
2703
+ options?: HttpHandlerOptions,
2704
+ ): Effect.Effect<
2705
+ ListHarnessVersionsCommandOutput,
2706
+ | Cause.TimeoutError
2707
+ | SdkError
2708
+ | AccessDeniedError
2709
+ | InternalServerError
2710
+ | ResourceNotFoundError
2711
+ | ThrottlingError
2712
+ | ValidationError
2713
+ >;
2714
+
2715
+ listHarnessVersionsStream(
2716
+ args: ListHarnessVersionsCommandInput,
2717
+ options?: HttpHandlerOptions,
2718
+ ): Stream.Stream<
2719
+ ListHarnessVersionsCommandOutput,
2720
+ | Cause.TimeoutError
2721
+ | SdkError
2722
+ | AccessDeniedError
2723
+ | InternalServerError
2724
+ | ResourceNotFoundError
2725
+ | ThrottlingError
2726
+ | ValidationError
2248
2727
  >;
2249
2728
 
2250
2729
  /**
@@ -2255,7 +2734,7 @@ interface BedrockAgentCoreControlService$ {
2255
2734
  options?: HttpHandlerOptions,
2256
2735
  ): Effect.Effect<
2257
2736
  ListHarnessesCommandOutput,
2258
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2737
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2259
2738
  >;
2260
2739
 
2261
2740
  listHarnessesStream(
@@ -2263,7 +2742,7 @@ interface BedrockAgentCoreControlService$ {
2263
2742
  options?: HttpHandlerOptions,
2264
2743
  ): Stream.Stream<
2265
2744
  ListHarnessesCommandOutput,
2266
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2745
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2267
2746
  >;
2268
2747
 
2269
2748
  /**
@@ -2274,7 +2753,7 @@ interface BedrockAgentCoreControlService$ {
2274
2753
  options?: HttpHandlerOptions,
2275
2754
  ): Effect.Effect<
2276
2755
  ListMemoriesCommandOutput,
2277
- | Cause.TimeoutException
2756
+ | Cause.TimeoutError
2278
2757
  | SdkError
2279
2758
  | AccessDeniedError
2280
2759
  | ResourceNotFoundError
@@ -2288,7 +2767,7 @@ interface BedrockAgentCoreControlService$ {
2288
2767
  options?: HttpHandlerOptions,
2289
2768
  ): Stream.Stream<
2290
2769
  ListMemoriesCommandOutput,
2291
- | Cause.TimeoutException
2770
+ | Cause.TimeoutError
2292
2771
  | SdkError
2293
2772
  | AccessDeniedError
2294
2773
  | ResourceNotFoundError
@@ -2305,7 +2784,7 @@ interface BedrockAgentCoreControlService$ {
2305
2784
  options?: HttpHandlerOptions,
2306
2785
  ): Effect.Effect<
2307
2786
  ListOauth2CredentialProvidersCommandOutput,
2308
- | Cause.TimeoutException
2787
+ | Cause.TimeoutError
2309
2788
  | SdkError
2310
2789
  | AccessDeniedError
2311
2790
  | InternalServerError
@@ -2320,7 +2799,7 @@ interface BedrockAgentCoreControlService$ {
2320
2799
  options?: HttpHandlerOptions,
2321
2800
  ): Stream.Stream<
2322
2801
  ListOauth2CredentialProvidersCommandOutput,
2323
- | Cause.TimeoutException
2802
+ | Cause.TimeoutError
2324
2803
  | SdkError
2325
2804
  | AccessDeniedError
2326
2805
  | InternalServerError
@@ -2338,7 +2817,7 @@ interface BedrockAgentCoreControlService$ {
2338
2817
  options?: HttpHandlerOptions,
2339
2818
  ): Effect.Effect<
2340
2819
  ListOnlineEvaluationConfigsCommandOutput,
2341
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2820
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2342
2821
  >;
2343
2822
 
2344
2823
  listOnlineEvaluationConfigsStream(
@@ -2346,7 +2825,7 @@ interface BedrockAgentCoreControlService$ {
2346
2825
  options?: HttpHandlerOptions,
2347
2826
  ): Stream.Stream<
2348
2827
  ListOnlineEvaluationConfigsCommandOutput,
2349
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2828
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2350
2829
  >;
2351
2830
 
2352
2831
  /**
@@ -2357,7 +2836,7 @@ interface BedrockAgentCoreControlService$ {
2357
2836
  options?: HttpHandlerOptions,
2358
2837
  ): Effect.Effect<
2359
2838
  ListPaymentConnectorsCommandOutput,
2360
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2839
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2361
2840
  >;
2362
2841
 
2363
2842
  listPaymentConnectorsStream(
@@ -2365,7 +2844,7 @@ interface BedrockAgentCoreControlService$ {
2365
2844
  options?: HttpHandlerOptions,
2366
2845
  ): Stream.Stream<
2367
2846
  ListPaymentConnectorsCommandOutput,
2368
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2847
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2369
2848
  >;
2370
2849
 
2371
2850
  /**
@@ -2376,7 +2855,7 @@ interface BedrockAgentCoreControlService$ {
2376
2855
  options?: HttpHandlerOptions,
2377
2856
  ): Effect.Effect<
2378
2857
  ListPaymentCredentialProvidersCommandOutput,
2379
- | Cause.TimeoutException
2858
+ | Cause.TimeoutError
2380
2859
  | SdkError
2381
2860
  | AccessDeniedError
2382
2861
  | InternalServerError
@@ -2391,7 +2870,7 @@ interface BedrockAgentCoreControlService$ {
2391
2870
  options?: HttpHandlerOptions,
2392
2871
  ): Stream.Stream<
2393
2872
  ListPaymentCredentialProvidersCommandOutput,
2394
- | Cause.TimeoutException
2873
+ | Cause.TimeoutError
2395
2874
  | SdkError
2396
2875
  | AccessDeniedError
2397
2876
  | InternalServerError
@@ -2409,7 +2888,7 @@ interface BedrockAgentCoreControlService$ {
2409
2888
  options?: HttpHandlerOptions,
2410
2889
  ): Effect.Effect<
2411
2890
  ListPaymentManagersCommandOutput,
2412
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2891
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2413
2892
  >;
2414
2893
 
2415
2894
  listPaymentManagersStream(
@@ -2417,7 +2896,7 @@ interface BedrockAgentCoreControlService$ {
2417
2896
  options?: HttpHandlerOptions,
2418
2897
  ): Stream.Stream<
2419
2898
  ListPaymentManagersCommandOutput,
2420
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2899
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2421
2900
  >;
2422
2901
 
2423
2902
  /**
@@ -2428,7 +2907,7 @@ interface BedrockAgentCoreControlService$ {
2428
2907
  options?: HttpHandlerOptions,
2429
2908
  ): Effect.Effect<
2430
2909
  ListPoliciesCommandOutput,
2431
- | Cause.TimeoutException
2910
+ | Cause.TimeoutError
2432
2911
  | SdkError
2433
2912
  | AccessDeniedError
2434
2913
  | InternalServerError
@@ -2442,7 +2921,7 @@ interface BedrockAgentCoreControlService$ {
2442
2921
  options?: HttpHandlerOptions,
2443
2922
  ): Stream.Stream<
2444
2923
  ListPoliciesCommandOutput,
2445
- | Cause.TimeoutException
2924
+ | Cause.TimeoutError
2446
2925
  | SdkError
2447
2926
  | AccessDeniedError
2448
2927
  | InternalServerError
@@ -2451,6 +2930,25 @@ interface BedrockAgentCoreControlService$ {
2451
2930
  | ValidationError
2452
2931
  >;
2453
2932
 
2933
+ /**
2934
+ * @see {@link ListPolicyEngineSummariesCommand}
2935
+ */
2936
+ listPolicyEngineSummaries(
2937
+ args: ListPolicyEngineSummariesCommandInput,
2938
+ options?: HttpHandlerOptions,
2939
+ ): Effect.Effect<
2940
+ ListPolicyEngineSummariesCommandOutput,
2941
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2942
+ >;
2943
+
2944
+ listPolicyEngineSummariesStream(
2945
+ args: ListPolicyEngineSummariesCommandInput,
2946
+ options?: HttpHandlerOptions,
2947
+ ): Stream.Stream<
2948
+ ListPolicyEngineSummariesCommandOutput,
2949
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2950
+ >;
2951
+
2454
2952
  /**
2455
2953
  * @see {@link ListPolicyEnginesCommand}
2456
2954
  */
@@ -2459,7 +2957,7 @@ interface BedrockAgentCoreControlService$ {
2459
2957
  options?: HttpHandlerOptions,
2460
2958
  ): Effect.Effect<
2461
2959
  ListPolicyEnginesCommandOutput,
2462
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2960
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2463
2961
  >;
2464
2962
 
2465
2963
  listPolicyEnginesStream(
@@ -2467,7 +2965,7 @@ interface BedrockAgentCoreControlService$ {
2467
2965
  options?: HttpHandlerOptions,
2468
2966
  ): Stream.Stream<
2469
2967
  ListPolicyEnginesCommandOutput,
2470
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2968
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2471
2969
  >;
2472
2970
 
2473
2971
  /**
@@ -2478,7 +2976,7 @@ interface BedrockAgentCoreControlService$ {
2478
2976
  options?: HttpHandlerOptions,
2479
2977
  ): Effect.Effect<
2480
2978
  ListPolicyGenerationAssetsCommandOutput,
2481
- | Cause.TimeoutException
2979
+ | Cause.TimeoutError
2482
2980
  | SdkError
2483
2981
  | AccessDeniedError
2484
2982
  | InternalServerError
@@ -2492,7 +2990,38 @@ interface BedrockAgentCoreControlService$ {
2492
2990
  options?: HttpHandlerOptions,
2493
2991
  ): Stream.Stream<
2494
2992
  ListPolicyGenerationAssetsCommandOutput,
2495
- | Cause.TimeoutException
2993
+ | Cause.TimeoutError
2994
+ | SdkError
2995
+ | AccessDeniedError
2996
+ | InternalServerError
2997
+ | ResourceNotFoundError
2998
+ | ThrottlingError
2999
+ | ValidationError
3000
+ >;
3001
+
3002
+ /**
3003
+ * @see {@link ListPolicyGenerationSummariesCommand}
3004
+ */
3005
+ listPolicyGenerationSummaries(
3006
+ args: ListPolicyGenerationSummariesCommandInput,
3007
+ options?: HttpHandlerOptions,
3008
+ ): Effect.Effect<
3009
+ ListPolicyGenerationSummariesCommandOutput,
3010
+ | Cause.TimeoutError
3011
+ | SdkError
3012
+ | AccessDeniedError
3013
+ | InternalServerError
3014
+ | ResourceNotFoundError
3015
+ | ThrottlingError
3016
+ | ValidationError
3017
+ >;
3018
+
3019
+ listPolicyGenerationSummariesStream(
3020
+ args: ListPolicyGenerationSummariesCommandInput,
3021
+ options?: HttpHandlerOptions,
3022
+ ): Stream.Stream<
3023
+ ListPolicyGenerationSummariesCommandOutput,
3024
+ | Cause.TimeoutError
2496
3025
  | SdkError
2497
3026
  | AccessDeniedError
2498
3027
  | InternalServerError
@@ -2509,7 +3038,7 @@ interface BedrockAgentCoreControlService$ {
2509
3038
  options?: HttpHandlerOptions,
2510
3039
  ): Effect.Effect<
2511
3040
  ListPolicyGenerationsCommandOutput,
2512
- | Cause.TimeoutException
3041
+ | Cause.TimeoutError
2513
3042
  | SdkError
2514
3043
  | AccessDeniedError
2515
3044
  | InternalServerError
@@ -2523,7 +3052,38 @@ interface BedrockAgentCoreControlService$ {
2523
3052
  options?: HttpHandlerOptions,
2524
3053
  ): Stream.Stream<
2525
3054
  ListPolicyGenerationsCommandOutput,
2526
- | Cause.TimeoutException
3055
+ | Cause.TimeoutError
3056
+ | SdkError
3057
+ | AccessDeniedError
3058
+ | InternalServerError
3059
+ | ResourceNotFoundError
3060
+ | ThrottlingError
3061
+ | ValidationError
3062
+ >;
3063
+
3064
+ /**
3065
+ * @see {@link ListPolicySummariesCommand}
3066
+ */
3067
+ listPolicySummaries(
3068
+ args: ListPolicySummariesCommandInput,
3069
+ options?: HttpHandlerOptions,
3070
+ ): Effect.Effect<
3071
+ ListPolicySummariesCommandOutput,
3072
+ | Cause.TimeoutError
3073
+ | SdkError
3074
+ | AccessDeniedError
3075
+ | InternalServerError
3076
+ | ResourceNotFoundError
3077
+ | ThrottlingError
3078
+ | ValidationError
3079
+ >;
3080
+
3081
+ listPolicySummariesStream(
3082
+ args: ListPolicySummariesCommandInput,
3083
+ options?: HttpHandlerOptions,
3084
+ ): Stream.Stream<
3085
+ ListPolicySummariesCommandOutput,
3086
+ | Cause.TimeoutError
2527
3087
  | SdkError
2528
3088
  | AccessDeniedError
2529
3089
  | InternalServerError
@@ -2540,7 +3100,7 @@ interface BedrockAgentCoreControlService$ {
2540
3100
  options?: HttpHandlerOptions,
2541
3101
  ): Effect.Effect<
2542
3102
  ListRegistriesCommandOutput,
2543
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
3103
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2544
3104
  >;
2545
3105
 
2546
3106
  listRegistriesStream(
@@ -2548,7 +3108,7 @@ interface BedrockAgentCoreControlService$ {
2548
3108
  options?: HttpHandlerOptions,
2549
3109
  ): Stream.Stream<
2550
3110
  ListRegistriesCommandOutput,
2551
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
3111
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2552
3112
  >;
2553
3113
 
2554
3114
  /**
@@ -2559,7 +3119,7 @@ interface BedrockAgentCoreControlService$ {
2559
3119
  options?: HttpHandlerOptions,
2560
3120
  ): Effect.Effect<
2561
3121
  ListRegistryRecordsCommandOutput,
2562
- | Cause.TimeoutException
3122
+ | Cause.TimeoutError
2563
3123
  | SdkError
2564
3124
  | AccessDeniedError
2565
3125
  | ConflictError
@@ -2574,7 +3134,7 @@ interface BedrockAgentCoreControlService$ {
2574
3134
  options?: HttpHandlerOptions,
2575
3135
  ): Stream.Stream<
2576
3136
  ListRegistryRecordsCommandOutput,
2577
- | Cause.TimeoutException
3137
+ | Cause.TimeoutError
2578
3138
  | SdkError
2579
3139
  | AccessDeniedError
2580
3140
  | ConflictError
@@ -2592,7 +3152,7 @@ interface BedrockAgentCoreControlService$ {
2592
3152
  options?: HttpHandlerOptions,
2593
3153
  ): Effect.Effect<
2594
3154
  ListTagsForResourceCommandOutput,
2595
- | Cause.TimeoutException
3155
+ | Cause.TimeoutError
2596
3156
  | SdkError
2597
3157
  | AccessDeniedError
2598
3158
  | InternalServerError
@@ -2609,7 +3169,7 @@ interface BedrockAgentCoreControlService$ {
2609
3169
  options?: HttpHandlerOptions,
2610
3170
  ): Effect.Effect<
2611
3171
  ListWorkloadIdentitiesCommandOutput,
2612
- | Cause.TimeoutException
3172
+ | Cause.TimeoutError
2613
3173
  | SdkError
2614
3174
  | AccessDeniedError
2615
3175
  | InternalServerError
@@ -2624,7 +3184,7 @@ interface BedrockAgentCoreControlService$ {
2624
3184
  options?: HttpHandlerOptions,
2625
3185
  ): Stream.Stream<
2626
3186
  ListWorkloadIdentitiesCommandOutput,
2627
- | Cause.TimeoutException
3187
+ | Cause.TimeoutError
2628
3188
  | SdkError
2629
3189
  | AccessDeniedError
2630
3190
  | InternalServerError
@@ -2642,7 +3202,7 @@ interface BedrockAgentCoreControlService$ {
2642
3202
  options?: HttpHandlerOptions,
2643
3203
  ): Effect.Effect<
2644
3204
  PutResourcePolicyCommandOutput,
2645
- | Cause.TimeoutException
3205
+ | Cause.TimeoutError
2646
3206
  | SdkError
2647
3207
  | AccessDeniedError
2648
3208
  | InternalServerError
@@ -2659,7 +3219,7 @@ interface BedrockAgentCoreControlService$ {
2659
3219
  options?: HttpHandlerOptions,
2660
3220
  ): Effect.Effect<
2661
3221
  SetTokenVaultCMKCommandOutput,
2662
- | Cause.TimeoutException
3222
+ | Cause.TimeoutError
2663
3223
  | SdkError
2664
3224
  | AccessDeniedError
2665
3225
  | ConcurrentModificationError
@@ -2678,7 +3238,7 @@ interface BedrockAgentCoreControlService$ {
2678
3238
  options?: HttpHandlerOptions,
2679
3239
  ): Effect.Effect<
2680
3240
  StartPolicyGenerationCommandOutput,
2681
- | Cause.TimeoutException
3241
+ | Cause.TimeoutError
2682
3242
  | SdkError
2683
3243
  | AccessDeniedError
2684
3244
  | ConflictError
@@ -2697,7 +3257,7 @@ interface BedrockAgentCoreControlService$ {
2697
3257
  options?: HttpHandlerOptions,
2698
3258
  ): Effect.Effect<
2699
3259
  SubmitRegistryRecordForApprovalCommandOutput,
2700
- | Cause.TimeoutException
3260
+ | Cause.TimeoutError
2701
3261
  | SdkError
2702
3262
  | AccessDeniedError
2703
3263
  | ConflictError
@@ -2715,7 +3275,7 @@ interface BedrockAgentCoreControlService$ {
2715
3275
  options?: HttpHandlerOptions,
2716
3276
  ): Effect.Effect<
2717
3277
  SynchronizeGatewayTargetsCommandOutput,
2718
- | Cause.TimeoutException
3278
+ | Cause.TimeoutError
2719
3279
  | SdkError
2720
3280
  | AccessDeniedError
2721
3281
  | ConflictError
@@ -2734,7 +3294,7 @@ interface BedrockAgentCoreControlService$ {
2734
3294
  options?: HttpHandlerOptions,
2735
3295
  ): Effect.Effect<
2736
3296
  TagResourceCommandOutput,
2737
- | Cause.TimeoutException
3297
+ | Cause.TimeoutError
2738
3298
  | SdkError
2739
3299
  | AccessDeniedError
2740
3300
  | InternalServerError
@@ -2752,7 +3312,7 @@ interface BedrockAgentCoreControlService$ {
2752
3312
  options?: HttpHandlerOptions,
2753
3313
  ): Effect.Effect<
2754
3314
  UntagResourceCommandOutput,
2755
- | Cause.TimeoutException
3315
+ | Cause.TimeoutError
2756
3316
  | SdkError
2757
3317
  | AccessDeniedError
2758
3318
  | InternalServerError
@@ -2769,7 +3329,7 @@ interface BedrockAgentCoreControlService$ {
2769
3329
  options?: HttpHandlerOptions,
2770
3330
  ): Effect.Effect<
2771
3331
  UpdateAgentRuntimeCommandOutput,
2772
- | Cause.TimeoutException
3332
+ | Cause.TimeoutError
2773
3333
  | SdkError
2774
3334
  | AccessDeniedError
2775
3335
  | ConflictError
@@ -2788,7 +3348,7 @@ interface BedrockAgentCoreControlService$ {
2788
3348
  options?: HttpHandlerOptions,
2789
3349
  ): Effect.Effect<
2790
3350
  UpdateAgentRuntimeEndpointCommandOutput,
2791
- | Cause.TimeoutException
3351
+ | Cause.TimeoutError
2792
3352
  | SdkError
2793
3353
  | AccessDeniedError
2794
3354
  | ConflictError
@@ -2807,7 +3367,7 @@ interface BedrockAgentCoreControlService$ {
2807
3367
  options?: HttpHandlerOptions,
2808
3368
  ): Effect.Effect<
2809
3369
  UpdateApiKeyCredentialProviderCommandOutput,
2810
- | Cause.TimeoutException
3370
+ | Cause.TimeoutError
2811
3371
  | SdkError
2812
3372
  | AccessDeniedError
2813
3373
  | ConflictError
@@ -2829,7 +3389,7 @@ interface BedrockAgentCoreControlService$ {
2829
3389
  options?: HttpHandlerOptions,
2830
3390
  ): Effect.Effect<
2831
3391
  UpdateConfigurationBundleCommandOutput,
2832
- | Cause.TimeoutException
3392
+ | Cause.TimeoutError
2833
3393
  | SdkError
2834
3394
  | AccessDeniedError
2835
3395
  | ConflictError
@@ -2839,6 +3399,43 @@ interface BedrockAgentCoreControlService$ {
2839
3399
  | ValidationError
2840
3400
  >;
2841
3401
 
3402
+ /**
3403
+ * @see {@link UpdateDatasetCommand}
3404
+ */
3405
+ updateDataset(
3406
+ args: UpdateDatasetCommandInput,
3407
+ options?: HttpHandlerOptions,
3408
+ ): Effect.Effect<
3409
+ UpdateDatasetCommandOutput,
3410
+ | Cause.TimeoutError
3411
+ | SdkError
3412
+ | AccessDeniedError
3413
+ | ConflictError
3414
+ | InternalServerError
3415
+ | ResourceNotFoundError
3416
+ | ThrottlingError
3417
+ | ValidationError
3418
+ >;
3419
+
3420
+ /**
3421
+ * @see {@link UpdateDatasetExamplesCommand}
3422
+ */
3423
+ updateDatasetExamples(
3424
+ args: UpdateDatasetExamplesCommandInput,
3425
+ options?: HttpHandlerOptions,
3426
+ ): Effect.Effect<
3427
+ UpdateDatasetExamplesCommandOutput,
3428
+ | Cause.TimeoutError
3429
+ | SdkError
3430
+ | AccessDeniedError
3431
+ | ConflictError
3432
+ | InternalServerError
3433
+ | ResourceNotFoundError
3434
+ | ServiceQuotaExceededError
3435
+ | ThrottlingError
3436
+ | ValidationError
3437
+ >;
3438
+
2842
3439
  /**
2843
3440
  * @see {@link UpdateEvaluatorCommand}
2844
3441
  */
@@ -2847,7 +3444,7 @@ interface BedrockAgentCoreControlService$ {
2847
3444
  options?: HttpHandlerOptions,
2848
3445
  ): Effect.Effect<
2849
3446
  UpdateEvaluatorCommandOutput,
2850
- | Cause.TimeoutException
3447
+ | Cause.TimeoutError
2851
3448
  | SdkError
2852
3449
  | AccessDeniedError
2853
3450
  | ConflictError
@@ -2866,7 +3463,7 @@ interface BedrockAgentCoreControlService$ {
2866
3463
  options?: HttpHandlerOptions,
2867
3464
  ): Effect.Effect<
2868
3465
  UpdateGatewayCommandOutput,
2869
- | Cause.TimeoutException
3466
+ | Cause.TimeoutError
2870
3467
  | SdkError
2871
3468
  | AccessDeniedError
2872
3469
  | ConflictError
@@ -2885,7 +3482,7 @@ interface BedrockAgentCoreControlService$ {
2885
3482
  options?: HttpHandlerOptions,
2886
3483
  ): Effect.Effect<
2887
3484
  UpdateGatewayRuleCommandOutput,
2888
- | Cause.TimeoutException
3485
+ | Cause.TimeoutError
2889
3486
  | SdkError
2890
3487
  | AccessDeniedError
2891
3488
  | ConflictError
@@ -2903,7 +3500,7 @@ interface BedrockAgentCoreControlService$ {
2903
3500
  options?: HttpHandlerOptions,
2904
3501
  ): Effect.Effect<
2905
3502
  UpdateGatewayTargetCommandOutput,
2906
- | Cause.TimeoutException
3503
+ | Cause.TimeoutError
2907
3504
  | SdkError
2908
3505
  | AccessDeniedError
2909
3506
  | ConflictError
@@ -2922,12 +3519,31 @@ interface BedrockAgentCoreControlService$ {
2922
3519
  options?: HttpHandlerOptions,
2923
3520
  ): Effect.Effect<
2924
3521
  UpdateHarnessCommandOutput,
2925
- | Cause.TimeoutException
3522
+ | Cause.TimeoutError
3523
+ | SdkError
3524
+ | AccessDeniedError
3525
+ | ConflictError
3526
+ | InternalServerError
3527
+ | ResourceNotFoundError
3528
+ | ThrottlingError
3529
+ | ValidationError
3530
+ >;
3531
+
3532
+ /**
3533
+ * @see {@link UpdateHarnessEndpointCommand}
3534
+ */
3535
+ updateHarnessEndpoint(
3536
+ args: UpdateHarnessEndpointCommandInput,
3537
+ options?: HttpHandlerOptions,
3538
+ ): Effect.Effect<
3539
+ UpdateHarnessEndpointCommandOutput,
3540
+ | Cause.TimeoutError
2926
3541
  | SdkError
2927
3542
  | AccessDeniedError
2928
3543
  | ConflictError
2929
3544
  | InternalServerError
2930
3545
  | ResourceNotFoundError
3546
+ | ServiceQuotaExceededError
2931
3547
  | ThrottlingError
2932
3548
  | ValidationError
2933
3549
  >;
@@ -2940,7 +3556,7 @@ interface BedrockAgentCoreControlService$ {
2940
3556
  options?: HttpHandlerOptions,
2941
3557
  ): Effect.Effect<
2942
3558
  UpdateMemoryCommandOutput,
2943
- | Cause.TimeoutException
3559
+ | Cause.TimeoutError
2944
3560
  | SdkError
2945
3561
  | AccessDeniedError
2946
3562
  | ConflictError
@@ -2959,7 +3575,7 @@ interface BedrockAgentCoreControlService$ {
2959
3575
  options?: HttpHandlerOptions,
2960
3576
  ): Effect.Effect<
2961
3577
  UpdateOauth2CredentialProviderCommandOutput,
2962
- | Cause.TimeoutException
3578
+ | Cause.TimeoutError
2963
3579
  | SdkError
2964
3580
  | AccessDeniedError
2965
3581
  | ConflictError
@@ -2981,7 +3597,7 @@ interface BedrockAgentCoreControlService$ {
2981
3597
  options?: HttpHandlerOptions,
2982
3598
  ): Effect.Effect<
2983
3599
  UpdateOnlineEvaluationConfigCommandOutput,
2984
- | Cause.TimeoutException
3600
+ | Cause.TimeoutError
2985
3601
  | SdkError
2986
3602
  | AccessDeniedError
2987
3603
  | ConflictError
@@ -3000,7 +3616,7 @@ interface BedrockAgentCoreControlService$ {
3000
3616
  options?: HttpHandlerOptions,
3001
3617
  ): Effect.Effect<
3002
3618
  UpdatePaymentConnectorCommandOutput,
3003
- | Cause.TimeoutException
3619
+ | Cause.TimeoutError
3004
3620
  | SdkError
3005
3621
  | AccessDeniedError
3006
3622
  | ConflictError
@@ -3019,7 +3635,7 @@ interface BedrockAgentCoreControlService$ {
3019
3635
  options?: HttpHandlerOptions,
3020
3636
  ): Effect.Effect<
3021
3637
  UpdatePaymentCredentialProviderCommandOutput,
3022
- | Cause.TimeoutException
3638
+ | Cause.TimeoutError
3023
3639
  | SdkError
3024
3640
  | AccessDeniedError
3025
3641
  | ConflictError
@@ -3041,7 +3657,7 @@ interface BedrockAgentCoreControlService$ {
3041
3657
  options?: HttpHandlerOptions,
3042
3658
  ): Effect.Effect<
3043
3659
  UpdatePaymentManagerCommandOutput,
3044
- | Cause.TimeoutException
3660
+ | Cause.TimeoutError
3045
3661
  | SdkError
3046
3662
  | AccessDeniedError
3047
3663
  | ConflictError
@@ -3060,12 +3676,13 @@ interface BedrockAgentCoreControlService$ {
3060
3676
  options?: HttpHandlerOptions,
3061
3677
  ): Effect.Effect<
3062
3678
  UpdatePolicyCommandOutput,
3063
- | Cause.TimeoutException
3679
+ | Cause.TimeoutError
3064
3680
  | SdkError
3065
3681
  | AccessDeniedError
3066
3682
  | ConflictError
3067
3683
  | InternalServerError
3068
3684
  | ResourceNotFoundError
3685
+ | ServiceQuotaExceededError
3069
3686
  | ThrottlingError
3070
3687
  | ValidationError
3071
3688
  >;
@@ -3078,7 +3695,7 @@ interface BedrockAgentCoreControlService$ {
3078
3695
  options?: HttpHandlerOptions,
3079
3696
  ): Effect.Effect<
3080
3697
  UpdatePolicyEngineCommandOutput,
3081
- | Cause.TimeoutException
3698
+ | Cause.TimeoutError
3082
3699
  | SdkError
3083
3700
  | AccessDeniedError
3084
3701
  | ConflictError
@@ -3096,7 +3713,7 @@ interface BedrockAgentCoreControlService$ {
3096
3713
  options?: HttpHandlerOptions,
3097
3714
  ): Effect.Effect<
3098
3715
  UpdateRegistryCommandOutput,
3099
- | Cause.TimeoutException
3716
+ | Cause.TimeoutError
3100
3717
  | SdkError
3101
3718
  | AccessDeniedError
3102
3719
  | ConflictError
@@ -3115,7 +3732,7 @@ interface BedrockAgentCoreControlService$ {
3115
3732
  options?: HttpHandlerOptions,
3116
3733
  ): Effect.Effect<
3117
3734
  UpdateRegistryRecordCommandOutput,
3118
- | Cause.TimeoutException
3735
+ | Cause.TimeoutError
3119
3736
  | SdkError
3120
3737
  | AccessDeniedError
3121
3738
  | ConflictError
@@ -3133,7 +3750,7 @@ interface BedrockAgentCoreControlService$ {
3133
3750
  options?: HttpHandlerOptions,
3134
3751
  ): Effect.Effect<
3135
3752
  UpdateRegistryRecordStatusCommandOutput,
3136
- | Cause.TimeoutException
3753
+ | Cause.TimeoutError
3137
3754
  | SdkError
3138
3755
  | AccessDeniedError
3139
3756
  | ConflictError
@@ -3151,7 +3768,7 @@ interface BedrockAgentCoreControlService$ {
3151
3768
  options?: HttpHandlerOptions,
3152
3769
  ): Effect.Effect<
3153
3770
  UpdateWorkloadIdentityCommandOutput,
3154
- | Cause.TimeoutException
3771
+ | Cause.TimeoutError
3155
3772
  | SdkError
3156
3773
  | AccessDeniedError
3157
3774
  | InternalServerError
@@ -3184,12 +3801,10 @@ export const makeBedrockAgentCoreControlService = Effect.gen(function*() {
3184
3801
  * @since 1.0.0
3185
3802
  * @category models
3186
3803
  */
3187
- export class BedrockAgentCoreControlService
3188
- extends Effect.Tag("@effect-aws/client-bedrock-agentcore-control/BedrockAgentCoreControlService")<
3189
- BedrockAgentCoreControlService,
3190
- BedrockAgentCoreControlService$
3191
- >()
3192
- {
3804
+ export class BedrockAgentCoreControlService extends Context.Service<
3805
+ BedrockAgentCoreControlService,
3806
+ BedrockAgentCoreControlService$
3807
+ >()("@effect-aws/client-bedrock-agentcore-control/BedrockAgentCoreControlService") {
3193
3808
  static readonly defaultLayer = Layer.effect(this, makeBedrockAgentCoreControlService).pipe(
3194
3809
  Layer.provide(Instance.layer),
3195
3810
  );