@effect-aws/client-opensearch 1.9.3 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/OpenSearchService.d.ts +78 -77
- package/dist/cjs/OpenSearchService.d.ts.map +1 -1
- package/dist/cjs/OpenSearchService.js +1 -1
- package/dist/cjs/OpenSearchService.js.map +1 -1
- package/dist/dts/OpenSearchService.d.ts +78 -77
- package/dist/dts/OpenSearchService.d.ts.map +1 -1
- package/dist/esm/OpenSearchService.js +1 -1
- package/dist/esm/OpenSearchService.js.map +1 -1
- package/package.json +2 -2
- package/src/OpenSearchService.ts +238 -54
package/src/OpenSearchService.ts
CHANGED
|
@@ -235,6 +235,7 @@ import {
|
|
|
235
235
|
} from "@aws-sdk/client-opensearch";
|
|
236
236
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
237
237
|
import { Service } from "@effect-aws/commons";
|
|
238
|
+
import type { Cause } from "effect";
|
|
238
239
|
import { Effect, Layer } from "effect";
|
|
239
240
|
import type {
|
|
240
241
|
AccessDeniedError,
|
|
@@ -345,7 +346,7 @@ interface OpenSearchService$ {
|
|
|
345
346
|
options?: HttpHandlerOptions,
|
|
346
347
|
): Effect.Effect<
|
|
347
348
|
AcceptInboundConnectionCommandOutput,
|
|
348
|
-
SdkError | DisabledOperationError | LimitExceededError | ResourceNotFoundError
|
|
349
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | LimitExceededError | ResourceNotFoundError
|
|
349
350
|
>;
|
|
350
351
|
|
|
351
352
|
/**
|
|
@@ -356,6 +357,7 @@ interface OpenSearchService$ {
|
|
|
356
357
|
options?: HttpHandlerOptions,
|
|
357
358
|
): Effect.Effect<
|
|
358
359
|
AddDataSourceCommandOutput,
|
|
360
|
+
| Cause.TimeoutException
|
|
359
361
|
| SdkError
|
|
360
362
|
| BaseError
|
|
361
363
|
| DependencyFailureError
|
|
@@ -374,6 +376,7 @@ interface OpenSearchService$ {
|
|
|
374
376
|
options?: HttpHandlerOptions,
|
|
375
377
|
): Effect.Effect<
|
|
376
378
|
AddDirectQueryDataSourceCommandOutput,
|
|
379
|
+
| Cause.TimeoutException
|
|
377
380
|
| SdkError
|
|
378
381
|
| BaseError
|
|
379
382
|
| DisabledOperationError
|
|
@@ -391,7 +394,7 @@ interface OpenSearchService$ {
|
|
|
391
394
|
options?: HttpHandlerOptions,
|
|
392
395
|
): Effect.Effect<
|
|
393
396
|
AddTagsCommandOutput,
|
|
394
|
-
SdkError | BaseError | InternalError | LimitExceededError | ValidationError
|
|
397
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | LimitExceededError | ValidationError
|
|
395
398
|
>;
|
|
396
399
|
|
|
397
400
|
/**
|
|
@@ -402,7 +405,14 @@ interface OpenSearchService$ {
|
|
|
402
405
|
options?: HttpHandlerOptions,
|
|
403
406
|
): Effect.Effect<
|
|
404
407
|
AssociatePackageCommandOutput,
|
|
405
|
-
|
|
408
|
+
| Cause.TimeoutException
|
|
409
|
+
| SdkError
|
|
410
|
+
| AccessDeniedError
|
|
411
|
+
| BaseError
|
|
412
|
+
| ConflictError
|
|
413
|
+
| InternalError
|
|
414
|
+
| ResourceNotFoundError
|
|
415
|
+
| ValidationError
|
|
406
416
|
>;
|
|
407
417
|
|
|
408
418
|
/**
|
|
@@ -413,6 +423,7 @@ interface OpenSearchService$ {
|
|
|
413
423
|
options?: HttpHandlerOptions,
|
|
414
424
|
): Effect.Effect<
|
|
415
425
|
AssociatePackagesCommandOutput,
|
|
426
|
+
| Cause.TimeoutException
|
|
416
427
|
| SdkError
|
|
417
428
|
| BaseError
|
|
418
429
|
| ConflictError
|
|
@@ -430,6 +441,7 @@ interface OpenSearchService$ {
|
|
|
430
441
|
options?: HttpHandlerOptions,
|
|
431
442
|
): Effect.Effect<
|
|
432
443
|
AuthorizeVpcEndpointAccessCommandOutput,
|
|
444
|
+
| Cause.TimeoutException
|
|
433
445
|
| SdkError
|
|
434
446
|
| BaseError
|
|
435
447
|
| DisabledOperationError
|
|
@@ -447,7 +459,13 @@ interface OpenSearchService$ {
|
|
|
447
459
|
options?: HttpHandlerOptions,
|
|
448
460
|
): Effect.Effect<
|
|
449
461
|
CancelDomainConfigChangeCommandOutput,
|
|
450
|
-
|
|
462
|
+
| Cause.TimeoutException
|
|
463
|
+
| SdkError
|
|
464
|
+
| BaseError
|
|
465
|
+
| DisabledOperationError
|
|
466
|
+
| InternalError
|
|
467
|
+
| ResourceNotFoundError
|
|
468
|
+
| ValidationError
|
|
451
469
|
>;
|
|
452
470
|
|
|
453
471
|
/**
|
|
@@ -458,7 +476,7 @@ interface OpenSearchService$ {
|
|
|
458
476
|
options?: HttpHandlerOptions,
|
|
459
477
|
): Effect.Effect<
|
|
460
478
|
CancelServiceSoftwareUpdateCommandOutput,
|
|
461
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
479
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
462
480
|
>;
|
|
463
481
|
|
|
464
482
|
/**
|
|
@@ -469,7 +487,14 @@ interface OpenSearchService$ {
|
|
|
469
487
|
options?: HttpHandlerOptions,
|
|
470
488
|
): Effect.Effect<
|
|
471
489
|
CreateApplicationCommandOutput,
|
|
472
|
-
|
|
490
|
+
| Cause.TimeoutException
|
|
491
|
+
| SdkError
|
|
492
|
+
| AccessDeniedError
|
|
493
|
+
| BaseError
|
|
494
|
+
| ConflictError
|
|
495
|
+
| DisabledOperationError
|
|
496
|
+
| InternalError
|
|
497
|
+
| ValidationError
|
|
473
498
|
>;
|
|
474
499
|
|
|
475
500
|
/**
|
|
@@ -480,6 +505,7 @@ interface OpenSearchService$ {
|
|
|
480
505
|
options?: HttpHandlerOptions,
|
|
481
506
|
): Effect.Effect<
|
|
482
507
|
CreateDomainCommandOutput,
|
|
508
|
+
| Cause.TimeoutException
|
|
483
509
|
| SdkError
|
|
484
510
|
| BaseError
|
|
485
511
|
| DisabledOperationError
|
|
@@ -498,7 +524,12 @@ interface OpenSearchService$ {
|
|
|
498
524
|
options?: HttpHandlerOptions,
|
|
499
525
|
): Effect.Effect<
|
|
500
526
|
CreateOutboundConnectionCommandOutput,
|
|
501
|
-
|
|
527
|
+
| Cause.TimeoutException
|
|
528
|
+
| SdkError
|
|
529
|
+
| DisabledOperationError
|
|
530
|
+
| InternalError
|
|
531
|
+
| LimitExceededError
|
|
532
|
+
| ResourceAlreadyExistsError
|
|
502
533
|
>;
|
|
503
534
|
|
|
504
535
|
/**
|
|
@@ -509,6 +540,7 @@ interface OpenSearchService$ {
|
|
|
509
540
|
options?: HttpHandlerOptions,
|
|
510
541
|
): Effect.Effect<
|
|
511
542
|
CreatePackageCommandOutput,
|
|
543
|
+
| Cause.TimeoutException
|
|
512
544
|
| SdkError
|
|
513
545
|
| AccessDeniedError
|
|
514
546
|
| BaseError
|
|
@@ -527,7 +559,14 @@ interface OpenSearchService$ {
|
|
|
527
559
|
options?: HttpHandlerOptions,
|
|
528
560
|
): Effect.Effect<
|
|
529
561
|
CreateVpcEndpointCommandOutput,
|
|
530
|
-
|
|
562
|
+
| Cause.TimeoutException
|
|
563
|
+
| SdkError
|
|
564
|
+
| BaseError
|
|
565
|
+
| ConflictError
|
|
566
|
+
| DisabledOperationError
|
|
567
|
+
| InternalError
|
|
568
|
+
| LimitExceededError
|
|
569
|
+
| ValidationError
|
|
531
570
|
>;
|
|
532
571
|
|
|
533
572
|
/**
|
|
@@ -538,6 +577,7 @@ interface OpenSearchService$ {
|
|
|
538
577
|
options?: HttpHandlerOptions,
|
|
539
578
|
): Effect.Effect<
|
|
540
579
|
DeleteApplicationCommandOutput,
|
|
580
|
+
| Cause.TimeoutException
|
|
541
581
|
| SdkError
|
|
542
582
|
| AccessDeniedError
|
|
543
583
|
| BaseError
|
|
@@ -556,6 +596,7 @@ interface OpenSearchService$ {
|
|
|
556
596
|
options?: HttpHandlerOptions,
|
|
557
597
|
): Effect.Effect<
|
|
558
598
|
DeleteDataSourceCommandOutput,
|
|
599
|
+
| Cause.TimeoutException
|
|
559
600
|
| SdkError
|
|
560
601
|
| BaseError
|
|
561
602
|
| DependencyFailureError
|
|
@@ -573,7 +614,13 @@ interface OpenSearchService$ {
|
|
|
573
614
|
options?: HttpHandlerOptions,
|
|
574
615
|
): Effect.Effect<
|
|
575
616
|
DeleteDirectQueryDataSourceCommandOutput,
|
|
576
|
-
|
|
617
|
+
| Cause.TimeoutException
|
|
618
|
+
| SdkError
|
|
619
|
+
| BaseError
|
|
620
|
+
| DisabledOperationError
|
|
621
|
+
| InternalError
|
|
622
|
+
| ResourceNotFoundError
|
|
623
|
+
| ValidationError
|
|
577
624
|
>;
|
|
578
625
|
|
|
579
626
|
/**
|
|
@@ -584,7 +631,7 @@ interface OpenSearchService$ {
|
|
|
584
631
|
options?: HttpHandlerOptions,
|
|
585
632
|
): Effect.Effect<
|
|
586
633
|
DeleteDomainCommandOutput,
|
|
587
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
634
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
588
635
|
>;
|
|
589
636
|
|
|
590
637
|
/**
|
|
@@ -595,7 +642,7 @@ interface OpenSearchService$ {
|
|
|
595
642
|
options?: HttpHandlerOptions,
|
|
596
643
|
): Effect.Effect<
|
|
597
644
|
DeleteInboundConnectionCommandOutput,
|
|
598
|
-
SdkError | DisabledOperationError | ResourceNotFoundError
|
|
645
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | ResourceNotFoundError
|
|
599
646
|
>;
|
|
600
647
|
|
|
601
648
|
/**
|
|
@@ -606,7 +653,7 @@ interface OpenSearchService$ {
|
|
|
606
653
|
options?: HttpHandlerOptions,
|
|
607
654
|
): Effect.Effect<
|
|
608
655
|
DeleteOutboundConnectionCommandOutput,
|
|
609
|
-
SdkError | DisabledOperationError | ResourceNotFoundError
|
|
656
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | ResourceNotFoundError
|
|
610
657
|
>;
|
|
611
658
|
|
|
612
659
|
/**
|
|
@@ -617,7 +664,14 @@ interface OpenSearchService$ {
|
|
|
617
664
|
options?: HttpHandlerOptions,
|
|
618
665
|
): Effect.Effect<
|
|
619
666
|
DeletePackageCommandOutput,
|
|
620
|
-
|
|
667
|
+
| Cause.TimeoutException
|
|
668
|
+
| SdkError
|
|
669
|
+
| AccessDeniedError
|
|
670
|
+
| BaseError
|
|
671
|
+
| ConflictError
|
|
672
|
+
| InternalError
|
|
673
|
+
| ResourceNotFoundError
|
|
674
|
+
| ValidationError
|
|
621
675
|
>;
|
|
622
676
|
|
|
623
677
|
/**
|
|
@@ -628,7 +682,7 @@ interface OpenSearchService$ {
|
|
|
628
682
|
options?: HttpHandlerOptions,
|
|
629
683
|
): Effect.Effect<
|
|
630
684
|
DeleteVpcEndpointCommandOutput,
|
|
631
|
-
SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError
|
|
685
|
+
Cause.TimeoutException | SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError
|
|
632
686
|
>;
|
|
633
687
|
|
|
634
688
|
/**
|
|
@@ -639,7 +693,7 @@ interface OpenSearchService$ {
|
|
|
639
693
|
options?: HttpHandlerOptions,
|
|
640
694
|
): Effect.Effect<
|
|
641
695
|
DescribeDomainCommandOutput,
|
|
642
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
696
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
643
697
|
>;
|
|
644
698
|
|
|
645
699
|
/**
|
|
@@ -650,7 +704,7 @@ interface OpenSearchService$ {
|
|
|
650
704
|
options?: HttpHandlerOptions,
|
|
651
705
|
): Effect.Effect<
|
|
652
706
|
DescribeDomainAutoTunesCommandOutput,
|
|
653
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
707
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
654
708
|
>;
|
|
655
709
|
|
|
656
710
|
/**
|
|
@@ -661,7 +715,7 @@ interface OpenSearchService$ {
|
|
|
661
715
|
options?: HttpHandlerOptions,
|
|
662
716
|
): Effect.Effect<
|
|
663
717
|
DescribeDomainChangeProgressCommandOutput,
|
|
664
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
718
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
665
719
|
>;
|
|
666
720
|
|
|
667
721
|
/**
|
|
@@ -672,7 +726,7 @@ interface OpenSearchService$ {
|
|
|
672
726
|
options?: HttpHandlerOptions,
|
|
673
727
|
): Effect.Effect<
|
|
674
728
|
DescribeDomainConfigCommandOutput,
|
|
675
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
729
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
676
730
|
>;
|
|
677
731
|
|
|
678
732
|
/**
|
|
@@ -683,7 +737,13 @@ interface OpenSearchService$ {
|
|
|
683
737
|
options?: HttpHandlerOptions,
|
|
684
738
|
): Effect.Effect<
|
|
685
739
|
DescribeDomainHealthCommandOutput,
|
|
686
|
-
|
|
740
|
+
| Cause.TimeoutException
|
|
741
|
+
| SdkError
|
|
742
|
+
| BaseError
|
|
743
|
+
| DisabledOperationError
|
|
744
|
+
| InternalError
|
|
745
|
+
| ResourceNotFoundError
|
|
746
|
+
| ValidationError
|
|
687
747
|
>;
|
|
688
748
|
|
|
689
749
|
/**
|
|
@@ -694,6 +754,7 @@ interface OpenSearchService$ {
|
|
|
694
754
|
options?: HttpHandlerOptions,
|
|
695
755
|
): Effect.Effect<
|
|
696
756
|
DescribeDomainNodesCommandOutput,
|
|
757
|
+
| Cause.TimeoutException
|
|
697
758
|
| SdkError
|
|
698
759
|
| BaseError
|
|
699
760
|
| DependencyFailureError
|
|
@@ -711,7 +772,7 @@ interface OpenSearchService$ {
|
|
|
711
772
|
options?: HttpHandlerOptions,
|
|
712
773
|
): Effect.Effect<
|
|
713
774
|
DescribeDomainsCommandOutput,
|
|
714
|
-
SdkError | BaseError | InternalError | ValidationError
|
|
775
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ValidationError
|
|
715
776
|
>;
|
|
716
777
|
|
|
717
778
|
/**
|
|
@@ -722,7 +783,13 @@ interface OpenSearchService$ {
|
|
|
722
783
|
options?: HttpHandlerOptions,
|
|
723
784
|
): Effect.Effect<
|
|
724
785
|
DescribeDryRunProgressCommandOutput,
|
|
725
|
-
|
|
786
|
+
| Cause.TimeoutException
|
|
787
|
+
| SdkError
|
|
788
|
+
| BaseError
|
|
789
|
+
| DisabledOperationError
|
|
790
|
+
| InternalError
|
|
791
|
+
| ResourceNotFoundError
|
|
792
|
+
| ValidationError
|
|
726
793
|
>;
|
|
727
794
|
|
|
728
795
|
/**
|
|
@@ -733,7 +800,7 @@ interface OpenSearchService$ {
|
|
|
733
800
|
options?: HttpHandlerOptions,
|
|
734
801
|
): Effect.Effect<
|
|
735
802
|
DescribeInboundConnectionsCommandOutput,
|
|
736
|
-
SdkError | DisabledOperationError | InvalidPaginationTokenError
|
|
803
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | InvalidPaginationTokenError
|
|
737
804
|
>;
|
|
738
805
|
|
|
739
806
|
/**
|
|
@@ -744,6 +811,7 @@ interface OpenSearchService$ {
|
|
|
744
811
|
options?: HttpHandlerOptions,
|
|
745
812
|
): Effect.Effect<
|
|
746
813
|
DescribeInstanceTypeLimitsCommandOutput,
|
|
814
|
+
| Cause.TimeoutException
|
|
747
815
|
| SdkError
|
|
748
816
|
| BaseError
|
|
749
817
|
| InternalError
|
|
@@ -761,7 +829,7 @@ interface OpenSearchService$ {
|
|
|
761
829
|
options?: HttpHandlerOptions,
|
|
762
830
|
): Effect.Effect<
|
|
763
831
|
DescribeOutboundConnectionsCommandOutput,
|
|
764
|
-
SdkError | DisabledOperationError | InvalidPaginationTokenError
|
|
832
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | InvalidPaginationTokenError
|
|
765
833
|
>;
|
|
766
834
|
|
|
767
835
|
/**
|
|
@@ -772,7 +840,13 @@ interface OpenSearchService$ {
|
|
|
772
840
|
options?: HttpHandlerOptions,
|
|
773
841
|
): Effect.Effect<
|
|
774
842
|
DescribePackagesCommandOutput,
|
|
775
|
-
|
|
843
|
+
| Cause.TimeoutException
|
|
844
|
+
| SdkError
|
|
845
|
+
| AccessDeniedError
|
|
846
|
+
| BaseError
|
|
847
|
+
| InternalError
|
|
848
|
+
| ResourceNotFoundError
|
|
849
|
+
| ValidationError
|
|
776
850
|
>;
|
|
777
851
|
|
|
778
852
|
/**
|
|
@@ -783,7 +857,7 @@ interface OpenSearchService$ {
|
|
|
783
857
|
options?: HttpHandlerOptions,
|
|
784
858
|
): Effect.Effect<
|
|
785
859
|
DescribeReservedInstanceOfferingsCommandOutput,
|
|
786
|
-
SdkError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError
|
|
860
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError
|
|
787
861
|
>;
|
|
788
862
|
|
|
789
863
|
/**
|
|
@@ -794,7 +868,7 @@ interface OpenSearchService$ {
|
|
|
794
868
|
options?: HttpHandlerOptions,
|
|
795
869
|
): Effect.Effect<
|
|
796
870
|
DescribeReservedInstancesCommandOutput,
|
|
797
|
-
SdkError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError
|
|
871
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError
|
|
798
872
|
>;
|
|
799
873
|
|
|
800
874
|
/**
|
|
@@ -805,7 +879,7 @@ interface OpenSearchService$ {
|
|
|
805
879
|
options?: HttpHandlerOptions,
|
|
806
880
|
): Effect.Effect<
|
|
807
881
|
DescribeVpcEndpointsCommandOutput,
|
|
808
|
-
SdkError | BaseError | DisabledOperationError | InternalError | ValidationError
|
|
882
|
+
Cause.TimeoutException | SdkError | BaseError | DisabledOperationError | InternalError | ValidationError
|
|
809
883
|
>;
|
|
810
884
|
|
|
811
885
|
/**
|
|
@@ -816,7 +890,14 @@ interface OpenSearchService$ {
|
|
|
816
890
|
options?: HttpHandlerOptions,
|
|
817
891
|
): Effect.Effect<
|
|
818
892
|
DissociatePackageCommandOutput,
|
|
819
|
-
|
|
893
|
+
| Cause.TimeoutException
|
|
894
|
+
| SdkError
|
|
895
|
+
| AccessDeniedError
|
|
896
|
+
| BaseError
|
|
897
|
+
| ConflictError
|
|
898
|
+
| InternalError
|
|
899
|
+
| ResourceNotFoundError
|
|
900
|
+
| ValidationError
|
|
820
901
|
>;
|
|
821
902
|
|
|
822
903
|
/**
|
|
@@ -827,6 +908,7 @@ interface OpenSearchService$ {
|
|
|
827
908
|
options?: HttpHandlerOptions,
|
|
828
909
|
): Effect.Effect<
|
|
829
910
|
DissociatePackagesCommandOutput,
|
|
911
|
+
| Cause.TimeoutException
|
|
830
912
|
| SdkError
|
|
831
913
|
| BaseError
|
|
832
914
|
| ConflictError
|
|
@@ -844,6 +926,7 @@ interface OpenSearchService$ {
|
|
|
844
926
|
options?: HttpHandlerOptions,
|
|
845
927
|
): Effect.Effect<
|
|
846
928
|
GetApplicationCommandOutput,
|
|
929
|
+
| Cause.TimeoutException
|
|
847
930
|
| SdkError
|
|
848
931
|
| AccessDeniedError
|
|
849
932
|
| BaseError
|
|
@@ -861,7 +944,13 @@ interface OpenSearchService$ {
|
|
|
861
944
|
options?: HttpHandlerOptions,
|
|
862
945
|
): Effect.Effect<
|
|
863
946
|
GetCompatibleVersionsCommandOutput,
|
|
864
|
-
|
|
947
|
+
| Cause.TimeoutException
|
|
948
|
+
| SdkError
|
|
949
|
+
| BaseError
|
|
950
|
+
| DisabledOperationError
|
|
951
|
+
| InternalError
|
|
952
|
+
| ResourceNotFoundError
|
|
953
|
+
| ValidationError
|
|
865
954
|
>;
|
|
866
955
|
|
|
867
956
|
/**
|
|
@@ -872,6 +961,7 @@ interface OpenSearchService$ {
|
|
|
872
961
|
options?: HttpHandlerOptions,
|
|
873
962
|
): Effect.Effect<
|
|
874
963
|
GetDataSourceCommandOutput,
|
|
964
|
+
| Cause.TimeoutException
|
|
875
965
|
| SdkError
|
|
876
966
|
| BaseError
|
|
877
967
|
| DependencyFailureError
|
|
@@ -889,7 +979,13 @@ interface OpenSearchService$ {
|
|
|
889
979
|
options?: HttpHandlerOptions,
|
|
890
980
|
): Effect.Effect<
|
|
891
981
|
GetDirectQueryDataSourceCommandOutput,
|
|
892
|
-
|
|
982
|
+
| Cause.TimeoutException
|
|
983
|
+
| SdkError
|
|
984
|
+
| BaseError
|
|
985
|
+
| DisabledOperationError
|
|
986
|
+
| InternalError
|
|
987
|
+
| ResourceNotFoundError
|
|
988
|
+
| ValidationError
|
|
893
989
|
>;
|
|
894
990
|
|
|
895
991
|
/**
|
|
@@ -900,7 +996,13 @@ interface OpenSearchService$ {
|
|
|
900
996
|
options?: HttpHandlerOptions,
|
|
901
997
|
): Effect.Effect<
|
|
902
998
|
GetDomainMaintenanceStatusCommandOutput,
|
|
903
|
-
|
|
999
|
+
| Cause.TimeoutException
|
|
1000
|
+
| SdkError
|
|
1001
|
+
| BaseError
|
|
1002
|
+
| DisabledOperationError
|
|
1003
|
+
| InternalError
|
|
1004
|
+
| ResourceNotFoundError
|
|
1005
|
+
| ValidationError
|
|
904
1006
|
>;
|
|
905
1007
|
|
|
906
1008
|
/**
|
|
@@ -911,7 +1013,13 @@ interface OpenSearchService$ {
|
|
|
911
1013
|
options?: HttpHandlerOptions,
|
|
912
1014
|
): Effect.Effect<
|
|
913
1015
|
GetPackageVersionHistoryCommandOutput,
|
|
914
|
-
|
|
1016
|
+
| Cause.TimeoutException
|
|
1017
|
+
| SdkError
|
|
1018
|
+
| AccessDeniedError
|
|
1019
|
+
| BaseError
|
|
1020
|
+
| InternalError
|
|
1021
|
+
| ResourceNotFoundError
|
|
1022
|
+
| ValidationError
|
|
915
1023
|
>;
|
|
916
1024
|
|
|
917
1025
|
/**
|
|
@@ -922,7 +1030,13 @@ interface OpenSearchService$ {
|
|
|
922
1030
|
options?: HttpHandlerOptions,
|
|
923
1031
|
): Effect.Effect<
|
|
924
1032
|
GetUpgradeHistoryCommandOutput,
|
|
925
|
-
|
|
1033
|
+
| Cause.TimeoutException
|
|
1034
|
+
| SdkError
|
|
1035
|
+
| BaseError
|
|
1036
|
+
| DisabledOperationError
|
|
1037
|
+
| InternalError
|
|
1038
|
+
| ResourceNotFoundError
|
|
1039
|
+
| ValidationError
|
|
926
1040
|
>;
|
|
927
1041
|
|
|
928
1042
|
/**
|
|
@@ -933,7 +1047,13 @@ interface OpenSearchService$ {
|
|
|
933
1047
|
options?: HttpHandlerOptions,
|
|
934
1048
|
): Effect.Effect<
|
|
935
1049
|
GetUpgradeStatusCommandOutput,
|
|
936
|
-
|
|
1050
|
+
| Cause.TimeoutException
|
|
1051
|
+
| SdkError
|
|
1052
|
+
| BaseError
|
|
1053
|
+
| DisabledOperationError
|
|
1054
|
+
| InternalError
|
|
1055
|
+
| ResourceNotFoundError
|
|
1056
|
+
| ValidationError
|
|
937
1057
|
>;
|
|
938
1058
|
|
|
939
1059
|
/**
|
|
@@ -944,6 +1064,7 @@ interface OpenSearchService$ {
|
|
|
944
1064
|
options?: HttpHandlerOptions,
|
|
945
1065
|
): Effect.Effect<
|
|
946
1066
|
ListApplicationsCommandOutput,
|
|
1067
|
+
| Cause.TimeoutException
|
|
947
1068
|
| SdkError
|
|
948
1069
|
| AccessDeniedError
|
|
949
1070
|
| BaseError
|
|
@@ -961,6 +1082,7 @@ interface OpenSearchService$ {
|
|
|
961
1082
|
options?: HttpHandlerOptions,
|
|
962
1083
|
): Effect.Effect<
|
|
963
1084
|
ListDataSourcesCommandOutput,
|
|
1085
|
+
| Cause.TimeoutException
|
|
964
1086
|
| SdkError
|
|
965
1087
|
| BaseError
|
|
966
1088
|
| DependencyFailureError
|
|
@@ -978,7 +1100,13 @@ interface OpenSearchService$ {
|
|
|
978
1100
|
options?: HttpHandlerOptions,
|
|
979
1101
|
): Effect.Effect<
|
|
980
1102
|
ListDirectQueryDataSourcesCommandOutput,
|
|
981
|
-
|
|
1103
|
+
| Cause.TimeoutException
|
|
1104
|
+
| SdkError
|
|
1105
|
+
| BaseError
|
|
1106
|
+
| DisabledOperationError
|
|
1107
|
+
| InternalError
|
|
1108
|
+
| ResourceNotFoundError
|
|
1109
|
+
| ValidationError
|
|
982
1110
|
>;
|
|
983
1111
|
|
|
984
1112
|
/**
|
|
@@ -989,7 +1117,13 @@ interface OpenSearchService$ {
|
|
|
989
1117
|
options?: HttpHandlerOptions,
|
|
990
1118
|
): Effect.Effect<
|
|
991
1119
|
ListDomainMaintenancesCommandOutput,
|
|
992
|
-
|
|
1120
|
+
| Cause.TimeoutException
|
|
1121
|
+
| SdkError
|
|
1122
|
+
| BaseError
|
|
1123
|
+
| DisabledOperationError
|
|
1124
|
+
| InternalError
|
|
1125
|
+
| ResourceNotFoundError
|
|
1126
|
+
| ValidationError
|
|
993
1127
|
>;
|
|
994
1128
|
|
|
995
1129
|
/**
|
|
@@ -1000,7 +1134,7 @@ interface OpenSearchService$ {
|
|
|
1000
1134
|
options?: HttpHandlerOptions,
|
|
1001
1135
|
): Effect.Effect<
|
|
1002
1136
|
ListDomainNamesCommandOutput,
|
|
1003
|
-
SdkError | BaseError | ValidationError
|
|
1137
|
+
Cause.TimeoutException | SdkError | BaseError | ValidationError
|
|
1004
1138
|
>;
|
|
1005
1139
|
|
|
1006
1140
|
/**
|
|
@@ -1011,7 +1145,13 @@ interface OpenSearchService$ {
|
|
|
1011
1145
|
options?: HttpHandlerOptions,
|
|
1012
1146
|
): Effect.Effect<
|
|
1013
1147
|
ListDomainsForPackageCommandOutput,
|
|
1014
|
-
|
|
1148
|
+
| Cause.TimeoutException
|
|
1149
|
+
| SdkError
|
|
1150
|
+
| AccessDeniedError
|
|
1151
|
+
| BaseError
|
|
1152
|
+
| InternalError
|
|
1153
|
+
| ResourceNotFoundError
|
|
1154
|
+
| ValidationError
|
|
1015
1155
|
>;
|
|
1016
1156
|
|
|
1017
1157
|
/**
|
|
@@ -1022,7 +1162,7 @@ interface OpenSearchService$ {
|
|
|
1022
1162
|
options?: HttpHandlerOptions,
|
|
1023
1163
|
): Effect.Effect<
|
|
1024
1164
|
ListInstanceTypeDetailsCommandOutput,
|
|
1025
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1165
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1026
1166
|
>;
|
|
1027
1167
|
|
|
1028
1168
|
/**
|
|
@@ -1033,7 +1173,13 @@ interface OpenSearchService$ {
|
|
|
1033
1173
|
options?: HttpHandlerOptions,
|
|
1034
1174
|
): Effect.Effect<
|
|
1035
1175
|
ListPackagesForDomainCommandOutput,
|
|
1036
|
-
|
|
1176
|
+
| Cause.TimeoutException
|
|
1177
|
+
| SdkError
|
|
1178
|
+
| AccessDeniedError
|
|
1179
|
+
| BaseError
|
|
1180
|
+
| InternalError
|
|
1181
|
+
| ResourceNotFoundError
|
|
1182
|
+
| ValidationError
|
|
1037
1183
|
>;
|
|
1038
1184
|
|
|
1039
1185
|
/**
|
|
@@ -1044,7 +1190,13 @@ interface OpenSearchService$ {
|
|
|
1044
1190
|
options?: HttpHandlerOptions,
|
|
1045
1191
|
): Effect.Effect<
|
|
1046
1192
|
ListScheduledActionsCommandOutput,
|
|
1047
|
-
|
|
1193
|
+
| Cause.TimeoutException
|
|
1194
|
+
| SdkError
|
|
1195
|
+
| BaseError
|
|
1196
|
+
| InternalError
|
|
1197
|
+
| InvalidPaginationTokenError
|
|
1198
|
+
| ResourceNotFoundError
|
|
1199
|
+
| ValidationError
|
|
1048
1200
|
>;
|
|
1049
1201
|
|
|
1050
1202
|
/**
|
|
@@ -1055,7 +1207,7 @@ interface OpenSearchService$ {
|
|
|
1055
1207
|
options?: HttpHandlerOptions,
|
|
1056
1208
|
): Effect.Effect<
|
|
1057
1209
|
ListTagsCommandOutput,
|
|
1058
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1210
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1059
1211
|
>;
|
|
1060
1212
|
|
|
1061
1213
|
/**
|
|
@@ -1066,7 +1218,7 @@ interface OpenSearchService$ {
|
|
|
1066
1218
|
options?: HttpHandlerOptions,
|
|
1067
1219
|
): Effect.Effect<
|
|
1068
1220
|
ListVersionsCommandOutput,
|
|
1069
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1221
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1070
1222
|
>;
|
|
1071
1223
|
|
|
1072
1224
|
/**
|
|
@@ -1077,7 +1229,7 @@ interface OpenSearchService$ {
|
|
|
1077
1229
|
options?: HttpHandlerOptions,
|
|
1078
1230
|
): Effect.Effect<
|
|
1079
1231
|
ListVpcEndpointAccessCommandOutput,
|
|
1080
|
-
SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError
|
|
1232
|
+
Cause.TimeoutException | SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError
|
|
1081
1233
|
>;
|
|
1082
1234
|
|
|
1083
1235
|
/**
|
|
@@ -1088,7 +1240,7 @@ interface OpenSearchService$ {
|
|
|
1088
1240
|
options?: HttpHandlerOptions,
|
|
1089
1241
|
): Effect.Effect<
|
|
1090
1242
|
ListVpcEndpointsCommandOutput,
|
|
1091
|
-
SdkError | BaseError | DisabledOperationError | InternalError
|
|
1243
|
+
Cause.TimeoutException | SdkError | BaseError | DisabledOperationError | InternalError
|
|
1092
1244
|
>;
|
|
1093
1245
|
|
|
1094
1246
|
/**
|
|
@@ -1099,7 +1251,7 @@ interface OpenSearchService$ {
|
|
|
1099
1251
|
options?: HttpHandlerOptions,
|
|
1100
1252
|
): Effect.Effect<
|
|
1101
1253
|
ListVpcEndpointsForDomainCommandOutput,
|
|
1102
|
-
SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError
|
|
1254
|
+
Cause.TimeoutException | SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError
|
|
1103
1255
|
>;
|
|
1104
1256
|
|
|
1105
1257
|
/**
|
|
@@ -1110,6 +1262,7 @@ interface OpenSearchService$ {
|
|
|
1110
1262
|
options?: HttpHandlerOptions,
|
|
1111
1263
|
): Effect.Effect<
|
|
1112
1264
|
PurchaseReservedInstanceOfferingCommandOutput,
|
|
1265
|
+
| Cause.TimeoutException
|
|
1113
1266
|
| SdkError
|
|
1114
1267
|
| DisabledOperationError
|
|
1115
1268
|
| InternalError
|
|
@@ -1127,7 +1280,7 @@ interface OpenSearchService$ {
|
|
|
1127
1280
|
options?: HttpHandlerOptions,
|
|
1128
1281
|
): Effect.Effect<
|
|
1129
1282
|
RejectInboundConnectionCommandOutput,
|
|
1130
|
-
SdkError | DisabledOperationError | ResourceNotFoundError
|
|
1283
|
+
Cause.TimeoutException | SdkError | DisabledOperationError | ResourceNotFoundError
|
|
1131
1284
|
>;
|
|
1132
1285
|
|
|
1133
1286
|
/**
|
|
@@ -1138,7 +1291,7 @@ interface OpenSearchService$ {
|
|
|
1138
1291
|
options?: HttpHandlerOptions,
|
|
1139
1292
|
): Effect.Effect<
|
|
1140
1293
|
RemoveTagsCommandOutput,
|
|
1141
|
-
SdkError | BaseError | InternalError | ValidationError
|
|
1294
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ValidationError
|
|
1142
1295
|
>;
|
|
1143
1296
|
|
|
1144
1297
|
/**
|
|
@@ -1149,7 +1302,13 @@ interface OpenSearchService$ {
|
|
|
1149
1302
|
options?: HttpHandlerOptions,
|
|
1150
1303
|
): Effect.Effect<
|
|
1151
1304
|
RevokeVpcEndpointAccessCommandOutput,
|
|
1152
|
-
|
|
1305
|
+
| Cause.TimeoutException
|
|
1306
|
+
| SdkError
|
|
1307
|
+
| BaseError
|
|
1308
|
+
| DisabledOperationError
|
|
1309
|
+
| InternalError
|
|
1310
|
+
| ResourceNotFoundError
|
|
1311
|
+
| ValidationError
|
|
1153
1312
|
>;
|
|
1154
1313
|
|
|
1155
1314
|
/**
|
|
@@ -1160,7 +1319,13 @@ interface OpenSearchService$ {
|
|
|
1160
1319
|
options?: HttpHandlerOptions,
|
|
1161
1320
|
): Effect.Effect<
|
|
1162
1321
|
StartDomainMaintenanceCommandOutput,
|
|
1163
|
-
|
|
1322
|
+
| Cause.TimeoutException
|
|
1323
|
+
| SdkError
|
|
1324
|
+
| BaseError
|
|
1325
|
+
| DisabledOperationError
|
|
1326
|
+
| InternalError
|
|
1327
|
+
| ResourceNotFoundError
|
|
1328
|
+
| ValidationError
|
|
1164
1329
|
>;
|
|
1165
1330
|
|
|
1166
1331
|
/**
|
|
@@ -1171,7 +1336,7 @@ interface OpenSearchService$ {
|
|
|
1171
1336
|
options?: HttpHandlerOptions,
|
|
1172
1337
|
): Effect.Effect<
|
|
1173
1338
|
StartServiceSoftwareUpdateCommandOutput,
|
|
1174
|
-
SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1339
|
+
Cause.TimeoutException | SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError
|
|
1175
1340
|
>;
|
|
1176
1341
|
|
|
1177
1342
|
/**
|
|
@@ -1182,6 +1347,7 @@ interface OpenSearchService$ {
|
|
|
1182
1347
|
options?: HttpHandlerOptions,
|
|
1183
1348
|
): Effect.Effect<
|
|
1184
1349
|
UpdateApplicationCommandOutput,
|
|
1350
|
+
| Cause.TimeoutException
|
|
1185
1351
|
| SdkError
|
|
1186
1352
|
| AccessDeniedError
|
|
1187
1353
|
| BaseError
|
|
@@ -1200,6 +1366,7 @@ interface OpenSearchService$ {
|
|
|
1200
1366
|
options?: HttpHandlerOptions,
|
|
1201
1367
|
): Effect.Effect<
|
|
1202
1368
|
UpdateDataSourceCommandOutput,
|
|
1369
|
+
| Cause.TimeoutException
|
|
1203
1370
|
| SdkError
|
|
1204
1371
|
| BaseError
|
|
1205
1372
|
| DependencyFailureError
|
|
@@ -1217,7 +1384,13 @@ interface OpenSearchService$ {
|
|
|
1217
1384
|
options?: HttpHandlerOptions,
|
|
1218
1385
|
): Effect.Effect<
|
|
1219
1386
|
UpdateDirectQueryDataSourceCommandOutput,
|
|
1220
|
-
|
|
1387
|
+
| Cause.TimeoutException
|
|
1388
|
+
| SdkError
|
|
1389
|
+
| BaseError
|
|
1390
|
+
| DisabledOperationError
|
|
1391
|
+
| InternalError
|
|
1392
|
+
| ResourceNotFoundError
|
|
1393
|
+
| ValidationError
|
|
1221
1394
|
>;
|
|
1222
1395
|
|
|
1223
1396
|
/**
|
|
@@ -1228,6 +1401,7 @@ interface OpenSearchService$ {
|
|
|
1228
1401
|
options?: HttpHandlerOptions,
|
|
1229
1402
|
): Effect.Effect<
|
|
1230
1403
|
UpdateDomainConfigCommandOutput,
|
|
1404
|
+
| Cause.TimeoutException
|
|
1231
1405
|
| SdkError
|
|
1232
1406
|
| BaseError
|
|
1233
1407
|
| InternalError
|
|
@@ -1245,6 +1419,7 @@ interface OpenSearchService$ {
|
|
|
1245
1419
|
options?: HttpHandlerOptions,
|
|
1246
1420
|
): Effect.Effect<
|
|
1247
1421
|
UpdatePackageCommandOutput,
|
|
1422
|
+
| Cause.TimeoutException
|
|
1248
1423
|
| SdkError
|
|
1249
1424
|
| AccessDeniedError
|
|
1250
1425
|
| BaseError
|
|
@@ -1262,7 +1437,13 @@ interface OpenSearchService$ {
|
|
|
1262
1437
|
options?: HttpHandlerOptions,
|
|
1263
1438
|
): Effect.Effect<
|
|
1264
1439
|
UpdatePackageScopeCommandOutput,
|
|
1265
|
-
|
|
1440
|
+
| Cause.TimeoutException
|
|
1441
|
+
| SdkError
|
|
1442
|
+
| BaseError
|
|
1443
|
+
| DisabledOperationError
|
|
1444
|
+
| InternalError
|
|
1445
|
+
| ResourceNotFoundError
|
|
1446
|
+
| ValidationError
|
|
1266
1447
|
>;
|
|
1267
1448
|
|
|
1268
1449
|
/**
|
|
@@ -1273,6 +1454,7 @@ interface OpenSearchService$ {
|
|
|
1273
1454
|
options?: HttpHandlerOptions,
|
|
1274
1455
|
): Effect.Effect<
|
|
1275
1456
|
UpdateScheduledActionCommandOutput,
|
|
1457
|
+
| Cause.TimeoutException
|
|
1276
1458
|
| SdkError
|
|
1277
1459
|
| BaseError
|
|
1278
1460
|
| ConflictError
|
|
@@ -1291,6 +1473,7 @@ interface OpenSearchService$ {
|
|
|
1291
1473
|
options?: HttpHandlerOptions,
|
|
1292
1474
|
): Effect.Effect<
|
|
1293
1475
|
UpdateVpcEndpointCommandOutput,
|
|
1476
|
+
| Cause.TimeoutException
|
|
1294
1477
|
| SdkError
|
|
1295
1478
|
| BaseError
|
|
1296
1479
|
| ConflictError
|
|
@@ -1308,6 +1491,7 @@ interface OpenSearchService$ {
|
|
|
1308
1491
|
options?: HttpHandlerOptions,
|
|
1309
1492
|
): Effect.Effect<
|
|
1310
1493
|
UpgradeDomainCommandOutput,
|
|
1494
|
+
| Cause.TimeoutException
|
|
1311
1495
|
| SdkError
|
|
1312
1496
|
| BaseError
|
|
1313
1497
|
| DisabledOperationError
|
|
@@ -1325,7 +1509,7 @@ interface OpenSearchService$ {
|
|
|
1325
1509
|
export const makeOpenSearchService = Effect.gen(function*() {
|
|
1326
1510
|
const client = yield* Instance.OpenSearchClientInstance;
|
|
1327
1511
|
|
|
1328
|
-
return Service.fromClientAndCommands<OpenSearchService$>(
|
|
1512
|
+
return yield* Service.fromClientAndCommands<OpenSearchService$>(
|
|
1329
1513
|
client,
|
|
1330
1514
|
commands,
|
|
1331
1515
|
{
|