@effect-aws/client-iot-wireless 1.9.5 → 1.10.2
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/Errors.d.ts +3 -3
- package/dist/cjs/Errors.d.ts.map +1 -1
- package/dist/cjs/Errors.js +1 -3
- package/dist/cjs/Errors.js.map +1 -1
- package/dist/cjs/IoTWirelessService.d.ts +116 -115
- package/dist/cjs/IoTWirelessService.d.ts.map +1 -1
- package/dist/cjs/IoTWirelessService.js +1 -1
- package/dist/cjs/IoTWirelessService.js.map +1 -1
- package/dist/dts/Errors.d.ts +3 -3
- package/dist/dts/Errors.d.ts.map +1 -1
- package/dist/dts/IoTWirelessService.d.ts +116 -115
- package/dist/dts/IoTWirelessService.d.ts.map +1 -1
- package/dist/esm/Errors.js +0 -2
- package/dist/esm/Errors.js.map +1 -1
- package/dist/esm/IoTWirelessService.js +1 -1
- package/dist/esm/IoTWirelessService.js.map +1 -1
- package/package.json +2 -2
- package/src/Errors.ts +1 -4
- package/src/IoTWirelessService.ts +416 -73
|
@@ -341,14 +341,16 @@ import {
|
|
|
341
341
|
type UpdateWirelessGatewayCommandInput,
|
|
342
342
|
type UpdateWirelessGatewayCommandOutput,
|
|
343
343
|
} from "@aws-sdk/client-iot-wireless";
|
|
344
|
-
import type { HttpHandlerOptions,
|
|
344
|
+
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
345
345
|
import { Service } from "@effect-aws/commons";
|
|
346
|
+
import type { Cause } from "effect";
|
|
346
347
|
import { Effect, Layer } from "effect";
|
|
347
348
|
import type {
|
|
348
349
|
AccessDeniedError,
|
|
349
350
|
ConflictError,
|
|
350
351
|
InternalServerError,
|
|
351
352
|
ResourceNotFoundError,
|
|
353
|
+
SdkError,
|
|
352
354
|
ThrottlingError,
|
|
353
355
|
TooManyTagsError,
|
|
354
356
|
ValidationError,
|
|
@@ -483,6 +485,7 @@ interface IoTWirelessService$ {
|
|
|
483
485
|
options?: HttpHandlerOptions,
|
|
484
486
|
): Effect.Effect<
|
|
485
487
|
AssociateAwsAccountWithPartnerAccountCommandOutput,
|
|
488
|
+
| Cause.TimeoutException
|
|
486
489
|
| SdkError
|
|
487
490
|
| AccessDeniedError
|
|
488
491
|
| ConflictError
|
|
@@ -500,6 +503,7 @@ interface IoTWirelessService$ {
|
|
|
500
503
|
options?: HttpHandlerOptions,
|
|
501
504
|
): Effect.Effect<
|
|
502
505
|
AssociateMulticastGroupWithFuotaTaskCommandOutput,
|
|
506
|
+
| Cause.TimeoutException
|
|
503
507
|
| SdkError
|
|
504
508
|
| AccessDeniedError
|
|
505
509
|
| ConflictError
|
|
@@ -517,6 +521,7 @@ interface IoTWirelessService$ {
|
|
|
517
521
|
options?: HttpHandlerOptions,
|
|
518
522
|
): Effect.Effect<
|
|
519
523
|
AssociateWirelessDeviceWithFuotaTaskCommandOutput,
|
|
524
|
+
| Cause.TimeoutException
|
|
520
525
|
| SdkError
|
|
521
526
|
| AccessDeniedError
|
|
522
527
|
| ConflictError
|
|
@@ -534,6 +539,7 @@ interface IoTWirelessService$ {
|
|
|
534
539
|
options?: HttpHandlerOptions,
|
|
535
540
|
): Effect.Effect<
|
|
536
541
|
AssociateWirelessDeviceWithMulticastGroupCommandOutput,
|
|
542
|
+
| Cause.TimeoutException
|
|
537
543
|
| SdkError
|
|
538
544
|
| AccessDeniedError
|
|
539
545
|
| ConflictError
|
|
@@ -551,6 +557,7 @@ interface IoTWirelessService$ {
|
|
|
551
557
|
options?: HttpHandlerOptions,
|
|
552
558
|
): Effect.Effect<
|
|
553
559
|
AssociateWirelessDeviceWithThingCommandOutput,
|
|
560
|
+
| Cause.TimeoutException
|
|
554
561
|
| SdkError
|
|
555
562
|
| AccessDeniedError
|
|
556
563
|
| ConflictError
|
|
@@ -568,6 +575,7 @@ interface IoTWirelessService$ {
|
|
|
568
575
|
options?: HttpHandlerOptions,
|
|
569
576
|
): Effect.Effect<
|
|
570
577
|
AssociateWirelessGatewayWithCertificateCommandOutput,
|
|
578
|
+
| Cause.TimeoutException
|
|
571
579
|
| SdkError
|
|
572
580
|
| AccessDeniedError
|
|
573
581
|
| ConflictError
|
|
@@ -585,6 +593,7 @@ interface IoTWirelessService$ {
|
|
|
585
593
|
options?: HttpHandlerOptions,
|
|
586
594
|
): Effect.Effect<
|
|
587
595
|
AssociateWirelessGatewayWithThingCommandOutput,
|
|
596
|
+
| Cause.TimeoutException
|
|
588
597
|
| SdkError
|
|
589
598
|
| AccessDeniedError
|
|
590
599
|
| ConflictError
|
|
@@ -602,6 +611,7 @@ interface IoTWirelessService$ {
|
|
|
602
611
|
options?: HttpHandlerOptions,
|
|
603
612
|
): Effect.Effect<
|
|
604
613
|
CancelMulticastGroupSessionCommandOutput,
|
|
614
|
+
| Cause.TimeoutException
|
|
605
615
|
| SdkError
|
|
606
616
|
| AccessDeniedError
|
|
607
617
|
| ConflictError
|
|
@@ -619,6 +629,7 @@ interface IoTWirelessService$ {
|
|
|
619
629
|
options?: HttpHandlerOptions,
|
|
620
630
|
): Effect.Effect<
|
|
621
631
|
CreateDestinationCommandOutput,
|
|
632
|
+
| Cause.TimeoutException
|
|
622
633
|
| SdkError
|
|
623
634
|
| AccessDeniedError
|
|
624
635
|
| ConflictError
|
|
@@ -636,7 +647,13 @@ interface IoTWirelessService$ {
|
|
|
636
647
|
options?: HttpHandlerOptions,
|
|
637
648
|
): Effect.Effect<
|
|
638
649
|
CreateDeviceProfileCommandOutput,
|
|
639
|
-
|
|
650
|
+
| Cause.TimeoutException
|
|
651
|
+
| SdkError
|
|
652
|
+
| AccessDeniedError
|
|
653
|
+
| ConflictError
|
|
654
|
+
| InternalServerError
|
|
655
|
+
| ThrottlingError
|
|
656
|
+
| ValidationError
|
|
640
657
|
>;
|
|
641
658
|
|
|
642
659
|
/**
|
|
@@ -647,6 +664,7 @@ interface IoTWirelessService$ {
|
|
|
647
664
|
options?: HttpHandlerOptions,
|
|
648
665
|
): Effect.Effect<
|
|
649
666
|
CreateFuotaTaskCommandOutput,
|
|
667
|
+
| Cause.TimeoutException
|
|
650
668
|
| SdkError
|
|
651
669
|
| AccessDeniedError
|
|
652
670
|
| ConflictError
|
|
@@ -664,6 +682,7 @@ interface IoTWirelessService$ {
|
|
|
664
682
|
options?: HttpHandlerOptions,
|
|
665
683
|
): Effect.Effect<
|
|
666
684
|
CreateMulticastGroupCommandOutput,
|
|
685
|
+
| Cause.TimeoutException
|
|
667
686
|
| SdkError
|
|
668
687
|
| AccessDeniedError
|
|
669
688
|
| ConflictError
|
|
@@ -681,6 +700,7 @@ interface IoTWirelessService$ {
|
|
|
681
700
|
options?: HttpHandlerOptions,
|
|
682
701
|
): Effect.Effect<
|
|
683
702
|
CreateNetworkAnalyzerConfigurationCommandOutput,
|
|
703
|
+
| Cause.TimeoutException
|
|
684
704
|
| SdkError
|
|
685
705
|
| AccessDeniedError
|
|
686
706
|
| ConflictError
|
|
@@ -698,7 +718,13 @@ interface IoTWirelessService$ {
|
|
|
698
718
|
options?: HttpHandlerOptions,
|
|
699
719
|
): Effect.Effect<
|
|
700
720
|
CreateServiceProfileCommandOutput,
|
|
701
|
-
|
|
721
|
+
| Cause.TimeoutException
|
|
722
|
+
| SdkError
|
|
723
|
+
| AccessDeniedError
|
|
724
|
+
| ConflictError
|
|
725
|
+
| InternalServerError
|
|
726
|
+
| ThrottlingError
|
|
727
|
+
| ValidationError
|
|
702
728
|
>;
|
|
703
729
|
|
|
704
730
|
/**
|
|
@@ -709,6 +735,7 @@ interface IoTWirelessService$ {
|
|
|
709
735
|
options?: HttpHandlerOptions,
|
|
710
736
|
): Effect.Effect<
|
|
711
737
|
CreateWirelessDeviceCommandOutput,
|
|
738
|
+
| Cause.TimeoutException
|
|
712
739
|
| SdkError
|
|
713
740
|
| AccessDeniedError
|
|
714
741
|
| ConflictError
|
|
@@ -726,7 +753,13 @@ interface IoTWirelessService$ {
|
|
|
726
753
|
options?: HttpHandlerOptions,
|
|
727
754
|
): Effect.Effect<
|
|
728
755
|
CreateWirelessGatewayCommandOutput,
|
|
729
|
-
|
|
756
|
+
| Cause.TimeoutException
|
|
757
|
+
| SdkError
|
|
758
|
+
| AccessDeniedError
|
|
759
|
+
| ConflictError
|
|
760
|
+
| InternalServerError
|
|
761
|
+
| ThrottlingError
|
|
762
|
+
| ValidationError
|
|
730
763
|
>;
|
|
731
764
|
|
|
732
765
|
/**
|
|
@@ -737,6 +770,7 @@ interface IoTWirelessService$ {
|
|
|
737
770
|
options?: HttpHandlerOptions,
|
|
738
771
|
): Effect.Effect<
|
|
739
772
|
CreateWirelessGatewayTaskCommandOutput,
|
|
773
|
+
| Cause.TimeoutException
|
|
740
774
|
| SdkError
|
|
741
775
|
| AccessDeniedError
|
|
742
776
|
| ConflictError
|
|
@@ -754,6 +788,7 @@ interface IoTWirelessService$ {
|
|
|
754
788
|
options?: HttpHandlerOptions,
|
|
755
789
|
): Effect.Effect<
|
|
756
790
|
CreateWirelessGatewayTaskDefinitionCommandOutput,
|
|
791
|
+
| Cause.TimeoutException
|
|
757
792
|
| SdkError
|
|
758
793
|
| AccessDeniedError
|
|
759
794
|
| ConflictError
|
|
@@ -771,6 +806,7 @@ interface IoTWirelessService$ {
|
|
|
771
806
|
options?: HttpHandlerOptions,
|
|
772
807
|
): Effect.Effect<
|
|
773
808
|
DeleteDestinationCommandOutput,
|
|
809
|
+
| Cause.TimeoutException
|
|
774
810
|
| SdkError
|
|
775
811
|
| AccessDeniedError
|
|
776
812
|
| ConflictError
|
|
@@ -788,6 +824,7 @@ interface IoTWirelessService$ {
|
|
|
788
824
|
options?: HttpHandlerOptions,
|
|
789
825
|
): Effect.Effect<
|
|
790
826
|
DeleteDeviceProfileCommandOutput,
|
|
827
|
+
| Cause.TimeoutException
|
|
791
828
|
| SdkError
|
|
792
829
|
| AccessDeniedError
|
|
793
830
|
| ConflictError
|
|
@@ -805,7 +842,13 @@ interface IoTWirelessService$ {
|
|
|
805
842
|
options?: HttpHandlerOptions,
|
|
806
843
|
): Effect.Effect<
|
|
807
844
|
DeleteFuotaTaskCommandOutput,
|
|
808
|
-
|
|
845
|
+
| Cause.TimeoutException
|
|
846
|
+
| SdkError
|
|
847
|
+
| AccessDeniedError
|
|
848
|
+
| InternalServerError
|
|
849
|
+
| ResourceNotFoundError
|
|
850
|
+
| ThrottlingError
|
|
851
|
+
| ValidationError
|
|
809
852
|
>;
|
|
810
853
|
|
|
811
854
|
/**
|
|
@@ -816,6 +859,7 @@ interface IoTWirelessService$ {
|
|
|
816
859
|
options?: HttpHandlerOptions,
|
|
817
860
|
): Effect.Effect<
|
|
818
861
|
DeleteMulticastGroupCommandOutput,
|
|
862
|
+
| Cause.TimeoutException
|
|
819
863
|
| SdkError
|
|
820
864
|
| AccessDeniedError
|
|
821
865
|
| ConflictError
|
|
@@ -833,6 +877,7 @@ interface IoTWirelessService$ {
|
|
|
833
877
|
options?: HttpHandlerOptions,
|
|
834
878
|
): Effect.Effect<
|
|
835
879
|
DeleteNetworkAnalyzerConfigurationCommandOutput,
|
|
880
|
+
| Cause.TimeoutException
|
|
836
881
|
| SdkError
|
|
837
882
|
| AccessDeniedError
|
|
838
883
|
| ConflictError
|
|
@@ -850,7 +895,13 @@ interface IoTWirelessService$ {
|
|
|
850
895
|
options?: HttpHandlerOptions,
|
|
851
896
|
): Effect.Effect<
|
|
852
897
|
DeleteQueuedMessagesCommandOutput,
|
|
853
|
-
|
|
898
|
+
| Cause.TimeoutException
|
|
899
|
+
| SdkError
|
|
900
|
+
| AccessDeniedError
|
|
901
|
+
| InternalServerError
|
|
902
|
+
| ResourceNotFoundError
|
|
903
|
+
| ThrottlingError
|
|
904
|
+
| ValidationError
|
|
854
905
|
>;
|
|
855
906
|
|
|
856
907
|
/**
|
|
@@ -861,6 +912,7 @@ interface IoTWirelessService$ {
|
|
|
861
912
|
options?: HttpHandlerOptions,
|
|
862
913
|
): Effect.Effect<
|
|
863
914
|
DeleteServiceProfileCommandOutput,
|
|
915
|
+
| Cause.TimeoutException
|
|
864
916
|
| SdkError
|
|
865
917
|
| AccessDeniedError
|
|
866
918
|
| ConflictError
|
|
@@ -878,7 +930,13 @@ interface IoTWirelessService$ {
|
|
|
878
930
|
options?: HttpHandlerOptions,
|
|
879
931
|
): Effect.Effect<
|
|
880
932
|
DeleteWirelessDeviceCommandOutput,
|
|
881
|
-
|
|
933
|
+
| Cause.TimeoutException
|
|
934
|
+
| SdkError
|
|
935
|
+
| AccessDeniedError
|
|
936
|
+
| InternalServerError
|
|
937
|
+
| ResourceNotFoundError
|
|
938
|
+
| ThrottlingError
|
|
939
|
+
| ValidationError
|
|
882
940
|
>;
|
|
883
941
|
|
|
884
942
|
/**
|
|
@@ -889,6 +947,7 @@ interface IoTWirelessService$ {
|
|
|
889
947
|
options?: HttpHandlerOptions,
|
|
890
948
|
): Effect.Effect<
|
|
891
949
|
DeleteWirelessDeviceImportTaskCommandOutput,
|
|
950
|
+
| Cause.TimeoutException
|
|
892
951
|
| SdkError
|
|
893
952
|
| AccessDeniedError
|
|
894
953
|
| ConflictError
|
|
@@ -906,7 +965,13 @@ interface IoTWirelessService$ {
|
|
|
906
965
|
options?: HttpHandlerOptions,
|
|
907
966
|
): Effect.Effect<
|
|
908
967
|
DeleteWirelessGatewayCommandOutput,
|
|
909
|
-
|
|
968
|
+
| Cause.TimeoutException
|
|
969
|
+
| SdkError
|
|
970
|
+
| AccessDeniedError
|
|
971
|
+
| InternalServerError
|
|
972
|
+
| ResourceNotFoundError
|
|
973
|
+
| ThrottlingError
|
|
974
|
+
| ValidationError
|
|
910
975
|
>;
|
|
911
976
|
|
|
912
977
|
/**
|
|
@@ -917,7 +982,13 @@ interface IoTWirelessService$ {
|
|
|
917
982
|
options?: HttpHandlerOptions,
|
|
918
983
|
): Effect.Effect<
|
|
919
984
|
DeleteWirelessGatewayTaskCommandOutput,
|
|
920
|
-
|
|
985
|
+
| Cause.TimeoutException
|
|
986
|
+
| SdkError
|
|
987
|
+
| AccessDeniedError
|
|
988
|
+
| InternalServerError
|
|
989
|
+
| ResourceNotFoundError
|
|
990
|
+
| ThrottlingError
|
|
991
|
+
| ValidationError
|
|
921
992
|
>;
|
|
922
993
|
|
|
923
994
|
/**
|
|
@@ -928,7 +999,13 @@ interface IoTWirelessService$ {
|
|
|
928
999
|
options?: HttpHandlerOptions,
|
|
929
1000
|
): Effect.Effect<
|
|
930
1001
|
DeleteWirelessGatewayTaskDefinitionCommandOutput,
|
|
931
|
-
|
|
1002
|
+
| Cause.TimeoutException
|
|
1003
|
+
| SdkError
|
|
1004
|
+
| AccessDeniedError
|
|
1005
|
+
| InternalServerError
|
|
1006
|
+
| ResourceNotFoundError
|
|
1007
|
+
| ThrottlingError
|
|
1008
|
+
| ValidationError
|
|
932
1009
|
>;
|
|
933
1010
|
|
|
934
1011
|
/**
|
|
@@ -939,7 +1016,7 @@ interface IoTWirelessService$ {
|
|
|
939
1016
|
options?: HttpHandlerOptions,
|
|
940
1017
|
): Effect.Effect<
|
|
941
1018
|
DeregisterWirelessDeviceCommandOutput,
|
|
942
|
-
SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1019
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
943
1020
|
>;
|
|
944
1021
|
|
|
945
1022
|
/**
|
|
@@ -950,7 +1027,7 @@ interface IoTWirelessService$ {
|
|
|
950
1027
|
options?: HttpHandlerOptions,
|
|
951
1028
|
): Effect.Effect<
|
|
952
1029
|
DisassociateAwsAccountFromPartnerAccountCommandOutput,
|
|
953
|
-
SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1030
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
954
1031
|
>;
|
|
955
1032
|
|
|
956
1033
|
/**
|
|
@@ -961,7 +1038,13 @@ interface IoTWirelessService$ {
|
|
|
961
1038
|
options?: HttpHandlerOptions,
|
|
962
1039
|
): Effect.Effect<
|
|
963
1040
|
DisassociateMulticastGroupFromFuotaTaskCommandOutput,
|
|
964
|
-
|
|
1041
|
+
| Cause.TimeoutException
|
|
1042
|
+
| SdkError
|
|
1043
|
+
| AccessDeniedError
|
|
1044
|
+
| ConflictError
|
|
1045
|
+
| InternalServerError
|
|
1046
|
+
| ResourceNotFoundError
|
|
1047
|
+
| ValidationError
|
|
965
1048
|
>;
|
|
966
1049
|
|
|
967
1050
|
/**
|
|
@@ -972,6 +1055,7 @@ interface IoTWirelessService$ {
|
|
|
972
1055
|
options?: HttpHandlerOptions,
|
|
973
1056
|
): Effect.Effect<
|
|
974
1057
|
DisassociateWirelessDeviceFromFuotaTaskCommandOutput,
|
|
1058
|
+
| Cause.TimeoutException
|
|
975
1059
|
| SdkError
|
|
976
1060
|
| AccessDeniedError
|
|
977
1061
|
| ConflictError
|
|
@@ -989,7 +1073,13 @@ interface IoTWirelessService$ {
|
|
|
989
1073
|
options?: HttpHandlerOptions,
|
|
990
1074
|
): Effect.Effect<
|
|
991
1075
|
DisassociateWirelessDeviceFromMulticastGroupCommandOutput,
|
|
992
|
-
|
|
1076
|
+
| Cause.TimeoutException
|
|
1077
|
+
| SdkError
|
|
1078
|
+
| AccessDeniedError
|
|
1079
|
+
| InternalServerError
|
|
1080
|
+
| ResourceNotFoundError
|
|
1081
|
+
| ThrottlingError
|
|
1082
|
+
| ValidationError
|
|
993
1083
|
>;
|
|
994
1084
|
|
|
995
1085
|
/**
|
|
@@ -1000,6 +1090,7 @@ interface IoTWirelessService$ {
|
|
|
1000
1090
|
options?: HttpHandlerOptions,
|
|
1001
1091
|
): Effect.Effect<
|
|
1002
1092
|
DisassociateWirelessDeviceFromThingCommandOutput,
|
|
1093
|
+
| Cause.TimeoutException
|
|
1003
1094
|
| SdkError
|
|
1004
1095
|
| AccessDeniedError
|
|
1005
1096
|
| ConflictError
|
|
@@ -1017,7 +1108,13 @@ interface IoTWirelessService$ {
|
|
|
1017
1108
|
options?: HttpHandlerOptions,
|
|
1018
1109
|
): Effect.Effect<
|
|
1019
1110
|
DisassociateWirelessGatewayFromCertificateCommandOutput,
|
|
1020
|
-
|
|
1111
|
+
| Cause.TimeoutException
|
|
1112
|
+
| SdkError
|
|
1113
|
+
| AccessDeniedError
|
|
1114
|
+
| InternalServerError
|
|
1115
|
+
| ResourceNotFoundError
|
|
1116
|
+
| ThrottlingError
|
|
1117
|
+
| ValidationError
|
|
1021
1118
|
>;
|
|
1022
1119
|
|
|
1023
1120
|
/**
|
|
@@ -1028,6 +1125,7 @@ interface IoTWirelessService$ {
|
|
|
1028
1125
|
options?: HttpHandlerOptions,
|
|
1029
1126
|
): Effect.Effect<
|
|
1030
1127
|
DisassociateWirelessGatewayFromThingCommandOutput,
|
|
1128
|
+
| Cause.TimeoutException
|
|
1031
1129
|
| SdkError
|
|
1032
1130
|
| AccessDeniedError
|
|
1033
1131
|
| ConflictError
|
|
@@ -1045,7 +1143,13 @@ interface IoTWirelessService$ {
|
|
|
1045
1143
|
options?: HttpHandlerOptions,
|
|
1046
1144
|
): Effect.Effect<
|
|
1047
1145
|
GetDestinationCommandOutput,
|
|
1048
|
-
|
|
1146
|
+
| Cause.TimeoutException
|
|
1147
|
+
| SdkError
|
|
1148
|
+
| AccessDeniedError
|
|
1149
|
+
| InternalServerError
|
|
1150
|
+
| ResourceNotFoundError
|
|
1151
|
+
| ThrottlingError
|
|
1152
|
+
| ValidationError
|
|
1049
1153
|
>;
|
|
1050
1154
|
|
|
1051
1155
|
/**
|
|
@@ -1056,7 +1160,13 @@ interface IoTWirelessService$ {
|
|
|
1056
1160
|
options?: HttpHandlerOptions,
|
|
1057
1161
|
): Effect.Effect<
|
|
1058
1162
|
GetDeviceProfileCommandOutput,
|
|
1059
|
-
|
|
1163
|
+
| Cause.TimeoutException
|
|
1164
|
+
| SdkError
|
|
1165
|
+
| AccessDeniedError
|
|
1166
|
+
| InternalServerError
|
|
1167
|
+
| ResourceNotFoundError
|
|
1168
|
+
| ThrottlingError
|
|
1169
|
+
| ValidationError
|
|
1060
1170
|
>;
|
|
1061
1171
|
|
|
1062
1172
|
/**
|
|
@@ -1067,7 +1177,7 @@ interface IoTWirelessService$ {
|
|
|
1067
1177
|
options?: HttpHandlerOptions,
|
|
1068
1178
|
): Effect.Effect<
|
|
1069
1179
|
GetEventConfigurationByResourceTypesCommandOutput,
|
|
1070
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError
|
|
1180
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError
|
|
1071
1181
|
>;
|
|
1072
1182
|
|
|
1073
1183
|
/**
|
|
@@ -1078,7 +1188,13 @@ interface IoTWirelessService$ {
|
|
|
1078
1188
|
options?: HttpHandlerOptions,
|
|
1079
1189
|
): Effect.Effect<
|
|
1080
1190
|
GetFuotaTaskCommandOutput,
|
|
1081
|
-
|
|
1191
|
+
| Cause.TimeoutException
|
|
1192
|
+
| SdkError
|
|
1193
|
+
| AccessDeniedError
|
|
1194
|
+
| InternalServerError
|
|
1195
|
+
| ResourceNotFoundError
|
|
1196
|
+
| ThrottlingError
|
|
1197
|
+
| ValidationError
|
|
1082
1198
|
>;
|
|
1083
1199
|
|
|
1084
1200
|
/**
|
|
@@ -1089,7 +1205,13 @@ interface IoTWirelessService$ {
|
|
|
1089
1205
|
options?: HttpHandlerOptions,
|
|
1090
1206
|
): Effect.Effect<
|
|
1091
1207
|
GetLogLevelsByResourceTypesCommandOutput,
|
|
1092
|
-
|
|
1208
|
+
| Cause.TimeoutException
|
|
1209
|
+
| SdkError
|
|
1210
|
+
| AccessDeniedError
|
|
1211
|
+
| InternalServerError
|
|
1212
|
+
| ResourceNotFoundError
|
|
1213
|
+
| ThrottlingError
|
|
1214
|
+
| ValidationError
|
|
1093
1215
|
>;
|
|
1094
1216
|
|
|
1095
1217
|
/**
|
|
@@ -1100,6 +1222,7 @@ interface IoTWirelessService$ {
|
|
|
1100
1222
|
options?: HttpHandlerOptions,
|
|
1101
1223
|
): Effect.Effect<
|
|
1102
1224
|
GetMetricConfigurationCommandOutput,
|
|
1225
|
+
| Cause.TimeoutException
|
|
1103
1226
|
| SdkError
|
|
1104
1227
|
| AccessDeniedError
|
|
1105
1228
|
| ConflictError
|
|
@@ -1117,6 +1240,7 @@ interface IoTWirelessService$ {
|
|
|
1117
1240
|
options?: HttpHandlerOptions,
|
|
1118
1241
|
): Effect.Effect<
|
|
1119
1242
|
GetMetricsCommandOutput,
|
|
1243
|
+
| Cause.TimeoutException
|
|
1120
1244
|
| SdkError
|
|
1121
1245
|
| AccessDeniedError
|
|
1122
1246
|
| ConflictError
|
|
@@ -1134,7 +1258,13 @@ interface IoTWirelessService$ {
|
|
|
1134
1258
|
options?: HttpHandlerOptions,
|
|
1135
1259
|
): Effect.Effect<
|
|
1136
1260
|
GetMulticastGroupCommandOutput,
|
|
1137
|
-
|
|
1261
|
+
| Cause.TimeoutException
|
|
1262
|
+
| SdkError
|
|
1263
|
+
| AccessDeniedError
|
|
1264
|
+
| InternalServerError
|
|
1265
|
+
| ResourceNotFoundError
|
|
1266
|
+
| ThrottlingError
|
|
1267
|
+
| ValidationError
|
|
1138
1268
|
>;
|
|
1139
1269
|
|
|
1140
1270
|
/**
|
|
@@ -1145,7 +1275,13 @@ interface IoTWirelessService$ {
|
|
|
1145
1275
|
options?: HttpHandlerOptions,
|
|
1146
1276
|
): Effect.Effect<
|
|
1147
1277
|
GetMulticastGroupSessionCommandOutput,
|
|
1148
|
-
|
|
1278
|
+
| Cause.TimeoutException
|
|
1279
|
+
| SdkError
|
|
1280
|
+
| AccessDeniedError
|
|
1281
|
+
| InternalServerError
|
|
1282
|
+
| ResourceNotFoundError
|
|
1283
|
+
| ThrottlingError
|
|
1284
|
+
| ValidationError
|
|
1149
1285
|
>;
|
|
1150
1286
|
|
|
1151
1287
|
/**
|
|
@@ -1156,7 +1292,13 @@ interface IoTWirelessService$ {
|
|
|
1156
1292
|
options?: HttpHandlerOptions,
|
|
1157
1293
|
): Effect.Effect<
|
|
1158
1294
|
GetNetworkAnalyzerConfigurationCommandOutput,
|
|
1159
|
-
|
|
1295
|
+
| Cause.TimeoutException
|
|
1296
|
+
| SdkError
|
|
1297
|
+
| AccessDeniedError
|
|
1298
|
+
| InternalServerError
|
|
1299
|
+
| ResourceNotFoundError
|
|
1300
|
+
| ThrottlingError
|
|
1301
|
+
| ValidationError
|
|
1160
1302
|
>;
|
|
1161
1303
|
|
|
1162
1304
|
/**
|
|
@@ -1167,7 +1309,7 @@ interface IoTWirelessService$ {
|
|
|
1167
1309
|
options?: HttpHandlerOptions,
|
|
1168
1310
|
): Effect.Effect<
|
|
1169
1311
|
GetPartnerAccountCommandOutput,
|
|
1170
|
-
SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1312
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1171
1313
|
>;
|
|
1172
1314
|
|
|
1173
1315
|
/**
|
|
@@ -1178,7 +1320,13 @@ interface IoTWirelessService$ {
|
|
|
1178
1320
|
options?: HttpHandlerOptions,
|
|
1179
1321
|
): Effect.Effect<
|
|
1180
1322
|
GetPositionCommandOutput,
|
|
1181
|
-
|
|
1323
|
+
| Cause.TimeoutException
|
|
1324
|
+
| SdkError
|
|
1325
|
+
| AccessDeniedError
|
|
1326
|
+
| InternalServerError
|
|
1327
|
+
| ResourceNotFoundError
|
|
1328
|
+
| ThrottlingError
|
|
1329
|
+
| ValidationError
|
|
1182
1330
|
>;
|
|
1183
1331
|
|
|
1184
1332
|
/**
|
|
@@ -1189,7 +1337,13 @@ interface IoTWirelessService$ {
|
|
|
1189
1337
|
options?: HttpHandlerOptions,
|
|
1190
1338
|
): Effect.Effect<
|
|
1191
1339
|
GetPositionConfigurationCommandOutput,
|
|
1192
|
-
|
|
1340
|
+
| Cause.TimeoutException
|
|
1341
|
+
| SdkError
|
|
1342
|
+
| AccessDeniedError
|
|
1343
|
+
| InternalServerError
|
|
1344
|
+
| ResourceNotFoundError
|
|
1345
|
+
| ThrottlingError
|
|
1346
|
+
| ValidationError
|
|
1193
1347
|
>;
|
|
1194
1348
|
|
|
1195
1349
|
/**
|
|
@@ -1200,7 +1354,13 @@ interface IoTWirelessService$ {
|
|
|
1200
1354
|
options?: HttpHandlerOptions,
|
|
1201
1355
|
): Effect.Effect<
|
|
1202
1356
|
GetPositionEstimateCommandOutput,
|
|
1203
|
-
|
|
1357
|
+
| Cause.TimeoutException
|
|
1358
|
+
| SdkError
|
|
1359
|
+
| AccessDeniedError
|
|
1360
|
+
| InternalServerError
|
|
1361
|
+
| ResourceNotFoundError
|
|
1362
|
+
| ThrottlingError
|
|
1363
|
+
| ValidationError
|
|
1204
1364
|
>;
|
|
1205
1365
|
|
|
1206
1366
|
/**
|
|
@@ -1211,7 +1371,13 @@ interface IoTWirelessService$ {
|
|
|
1211
1371
|
options?: HttpHandlerOptions,
|
|
1212
1372
|
): Effect.Effect<
|
|
1213
1373
|
GetResourceEventConfigurationCommandOutput,
|
|
1214
|
-
|
|
1374
|
+
| Cause.TimeoutException
|
|
1375
|
+
| SdkError
|
|
1376
|
+
| AccessDeniedError
|
|
1377
|
+
| InternalServerError
|
|
1378
|
+
| ResourceNotFoundError
|
|
1379
|
+
| ThrottlingError
|
|
1380
|
+
| ValidationError
|
|
1215
1381
|
>;
|
|
1216
1382
|
|
|
1217
1383
|
/**
|
|
@@ -1222,7 +1388,13 @@ interface IoTWirelessService$ {
|
|
|
1222
1388
|
options?: HttpHandlerOptions,
|
|
1223
1389
|
): Effect.Effect<
|
|
1224
1390
|
GetResourceLogLevelCommandOutput,
|
|
1225
|
-
|
|
1391
|
+
| Cause.TimeoutException
|
|
1392
|
+
| SdkError
|
|
1393
|
+
| AccessDeniedError
|
|
1394
|
+
| InternalServerError
|
|
1395
|
+
| ResourceNotFoundError
|
|
1396
|
+
| ThrottlingError
|
|
1397
|
+
| ValidationError
|
|
1226
1398
|
>;
|
|
1227
1399
|
|
|
1228
1400
|
/**
|
|
@@ -1233,7 +1405,13 @@ interface IoTWirelessService$ {
|
|
|
1233
1405
|
options?: HttpHandlerOptions,
|
|
1234
1406
|
): Effect.Effect<
|
|
1235
1407
|
GetResourcePositionCommandOutput,
|
|
1236
|
-
|
|
1408
|
+
| Cause.TimeoutException
|
|
1409
|
+
| SdkError
|
|
1410
|
+
| AccessDeniedError
|
|
1411
|
+
| InternalServerError
|
|
1412
|
+
| ResourceNotFoundError
|
|
1413
|
+
| ThrottlingError
|
|
1414
|
+
| ValidationError
|
|
1237
1415
|
>;
|
|
1238
1416
|
|
|
1239
1417
|
/**
|
|
@@ -1244,7 +1422,7 @@ interface IoTWirelessService$ {
|
|
|
1244
1422
|
options?: HttpHandlerOptions,
|
|
1245
1423
|
): Effect.Effect<
|
|
1246
1424
|
GetServiceEndpointCommandOutput,
|
|
1247
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1425
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1248
1426
|
>;
|
|
1249
1427
|
|
|
1250
1428
|
/**
|
|
@@ -1255,7 +1433,13 @@ interface IoTWirelessService$ {
|
|
|
1255
1433
|
options?: HttpHandlerOptions,
|
|
1256
1434
|
): Effect.Effect<
|
|
1257
1435
|
GetServiceProfileCommandOutput,
|
|
1258
|
-
|
|
1436
|
+
| Cause.TimeoutException
|
|
1437
|
+
| SdkError
|
|
1438
|
+
| AccessDeniedError
|
|
1439
|
+
| InternalServerError
|
|
1440
|
+
| ResourceNotFoundError
|
|
1441
|
+
| ThrottlingError
|
|
1442
|
+
| ValidationError
|
|
1259
1443
|
>;
|
|
1260
1444
|
|
|
1261
1445
|
/**
|
|
@@ -1266,7 +1450,13 @@ interface IoTWirelessService$ {
|
|
|
1266
1450
|
options?: HttpHandlerOptions,
|
|
1267
1451
|
): Effect.Effect<
|
|
1268
1452
|
GetWirelessDeviceCommandOutput,
|
|
1269
|
-
|
|
1453
|
+
| Cause.TimeoutException
|
|
1454
|
+
| SdkError
|
|
1455
|
+
| AccessDeniedError
|
|
1456
|
+
| InternalServerError
|
|
1457
|
+
| ResourceNotFoundError
|
|
1458
|
+
| ThrottlingError
|
|
1459
|
+
| ValidationError
|
|
1270
1460
|
>;
|
|
1271
1461
|
|
|
1272
1462
|
/**
|
|
@@ -1277,6 +1467,7 @@ interface IoTWirelessService$ {
|
|
|
1277
1467
|
options?: HttpHandlerOptions,
|
|
1278
1468
|
): Effect.Effect<
|
|
1279
1469
|
GetWirelessDeviceImportTaskCommandOutput,
|
|
1470
|
+
| Cause.TimeoutException
|
|
1280
1471
|
| SdkError
|
|
1281
1472
|
| AccessDeniedError
|
|
1282
1473
|
| ConflictError
|
|
@@ -1294,7 +1485,13 @@ interface IoTWirelessService$ {
|
|
|
1294
1485
|
options?: HttpHandlerOptions,
|
|
1295
1486
|
): Effect.Effect<
|
|
1296
1487
|
GetWirelessDeviceStatisticsCommandOutput,
|
|
1297
|
-
|
|
1488
|
+
| Cause.TimeoutException
|
|
1489
|
+
| SdkError
|
|
1490
|
+
| AccessDeniedError
|
|
1491
|
+
| InternalServerError
|
|
1492
|
+
| ResourceNotFoundError
|
|
1493
|
+
| ThrottlingError
|
|
1494
|
+
| ValidationError
|
|
1298
1495
|
>;
|
|
1299
1496
|
|
|
1300
1497
|
/**
|
|
@@ -1305,7 +1502,13 @@ interface IoTWirelessService$ {
|
|
|
1305
1502
|
options?: HttpHandlerOptions,
|
|
1306
1503
|
): Effect.Effect<
|
|
1307
1504
|
GetWirelessGatewayCommandOutput,
|
|
1308
|
-
|
|
1505
|
+
| Cause.TimeoutException
|
|
1506
|
+
| SdkError
|
|
1507
|
+
| AccessDeniedError
|
|
1508
|
+
| InternalServerError
|
|
1509
|
+
| ResourceNotFoundError
|
|
1510
|
+
| ThrottlingError
|
|
1511
|
+
| ValidationError
|
|
1309
1512
|
>;
|
|
1310
1513
|
|
|
1311
1514
|
/**
|
|
@@ -1316,7 +1519,13 @@ interface IoTWirelessService$ {
|
|
|
1316
1519
|
options?: HttpHandlerOptions,
|
|
1317
1520
|
): Effect.Effect<
|
|
1318
1521
|
GetWirelessGatewayCertificateCommandOutput,
|
|
1319
|
-
|
|
1522
|
+
| Cause.TimeoutException
|
|
1523
|
+
| SdkError
|
|
1524
|
+
| AccessDeniedError
|
|
1525
|
+
| InternalServerError
|
|
1526
|
+
| ResourceNotFoundError
|
|
1527
|
+
| ThrottlingError
|
|
1528
|
+
| ValidationError
|
|
1320
1529
|
>;
|
|
1321
1530
|
|
|
1322
1531
|
/**
|
|
@@ -1327,7 +1536,13 @@ interface IoTWirelessService$ {
|
|
|
1327
1536
|
options?: HttpHandlerOptions,
|
|
1328
1537
|
): Effect.Effect<
|
|
1329
1538
|
GetWirelessGatewayFirmwareInformationCommandOutput,
|
|
1330
|
-
|
|
1539
|
+
| Cause.TimeoutException
|
|
1540
|
+
| SdkError
|
|
1541
|
+
| AccessDeniedError
|
|
1542
|
+
| InternalServerError
|
|
1543
|
+
| ResourceNotFoundError
|
|
1544
|
+
| ThrottlingError
|
|
1545
|
+
| ValidationError
|
|
1331
1546
|
>;
|
|
1332
1547
|
|
|
1333
1548
|
/**
|
|
@@ -1338,7 +1553,13 @@ interface IoTWirelessService$ {
|
|
|
1338
1553
|
options?: HttpHandlerOptions,
|
|
1339
1554
|
): Effect.Effect<
|
|
1340
1555
|
GetWirelessGatewayStatisticsCommandOutput,
|
|
1341
|
-
|
|
1556
|
+
| Cause.TimeoutException
|
|
1557
|
+
| SdkError
|
|
1558
|
+
| AccessDeniedError
|
|
1559
|
+
| InternalServerError
|
|
1560
|
+
| ResourceNotFoundError
|
|
1561
|
+
| ThrottlingError
|
|
1562
|
+
| ValidationError
|
|
1342
1563
|
>;
|
|
1343
1564
|
|
|
1344
1565
|
/**
|
|
@@ -1349,7 +1570,13 @@ interface IoTWirelessService$ {
|
|
|
1349
1570
|
options?: HttpHandlerOptions,
|
|
1350
1571
|
): Effect.Effect<
|
|
1351
1572
|
GetWirelessGatewayTaskCommandOutput,
|
|
1352
|
-
|
|
1573
|
+
| Cause.TimeoutException
|
|
1574
|
+
| SdkError
|
|
1575
|
+
| AccessDeniedError
|
|
1576
|
+
| InternalServerError
|
|
1577
|
+
| ResourceNotFoundError
|
|
1578
|
+
| ThrottlingError
|
|
1579
|
+
| ValidationError
|
|
1353
1580
|
>;
|
|
1354
1581
|
|
|
1355
1582
|
/**
|
|
@@ -1360,7 +1587,13 @@ interface IoTWirelessService$ {
|
|
|
1360
1587
|
options?: HttpHandlerOptions,
|
|
1361
1588
|
): Effect.Effect<
|
|
1362
1589
|
GetWirelessGatewayTaskDefinitionCommandOutput,
|
|
1363
|
-
|
|
1590
|
+
| Cause.TimeoutException
|
|
1591
|
+
| SdkError
|
|
1592
|
+
| AccessDeniedError
|
|
1593
|
+
| InternalServerError
|
|
1594
|
+
| ResourceNotFoundError
|
|
1595
|
+
| ThrottlingError
|
|
1596
|
+
| ValidationError
|
|
1364
1597
|
>;
|
|
1365
1598
|
|
|
1366
1599
|
/**
|
|
@@ -1371,7 +1604,7 @@ interface IoTWirelessService$ {
|
|
|
1371
1604
|
options?: HttpHandlerOptions,
|
|
1372
1605
|
): Effect.Effect<
|
|
1373
1606
|
ListDestinationsCommandOutput,
|
|
1374
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1607
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1375
1608
|
>;
|
|
1376
1609
|
|
|
1377
1610
|
/**
|
|
@@ -1382,7 +1615,7 @@ interface IoTWirelessService$ {
|
|
|
1382
1615
|
options?: HttpHandlerOptions,
|
|
1383
1616
|
): Effect.Effect<
|
|
1384
1617
|
ListDeviceProfilesCommandOutput,
|
|
1385
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1618
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1386
1619
|
>;
|
|
1387
1620
|
|
|
1388
1621
|
/**
|
|
@@ -1393,6 +1626,7 @@ interface IoTWirelessService$ {
|
|
|
1393
1626
|
options?: HttpHandlerOptions,
|
|
1394
1627
|
): Effect.Effect<
|
|
1395
1628
|
ListDevicesForWirelessDeviceImportTaskCommandOutput,
|
|
1629
|
+
| Cause.TimeoutException
|
|
1396
1630
|
| SdkError
|
|
1397
1631
|
| AccessDeniedError
|
|
1398
1632
|
| ConflictError
|
|
@@ -1410,7 +1644,7 @@ interface IoTWirelessService$ {
|
|
|
1410
1644
|
options?: HttpHandlerOptions,
|
|
1411
1645
|
): Effect.Effect<
|
|
1412
1646
|
ListEventConfigurationsCommandOutput,
|
|
1413
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1647
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1414
1648
|
>;
|
|
1415
1649
|
|
|
1416
1650
|
/**
|
|
@@ -1421,7 +1655,7 @@ interface IoTWirelessService$ {
|
|
|
1421
1655
|
options?: HttpHandlerOptions,
|
|
1422
1656
|
): Effect.Effect<
|
|
1423
1657
|
ListFuotaTasksCommandOutput,
|
|
1424
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1658
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1425
1659
|
>;
|
|
1426
1660
|
|
|
1427
1661
|
/**
|
|
@@ -1432,7 +1666,7 @@ interface IoTWirelessService$ {
|
|
|
1432
1666
|
options?: HttpHandlerOptions,
|
|
1433
1667
|
): Effect.Effect<
|
|
1434
1668
|
ListMulticastGroupsCommandOutput,
|
|
1435
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1669
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1436
1670
|
>;
|
|
1437
1671
|
|
|
1438
1672
|
/**
|
|
@@ -1443,7 +1677,13 @@ interface IoTWirelessService$ {
|
|
|
1443
1677
|
options?: HttpHandlerOptions,
|
|
1444
1678
|
): Effect.Effect<
|
|
1445
1679
|
ListMulticastGroupsByFuotaTaskCommandOutput,
|
|
1446
|
-
|
|
1680
|
+
| Cause.TimeoutException
|
|
1681
|
+
| SdkError
|
|
1682
|
+
| AccessDeniedError
|
|
1683
|
+
| InternalServerError
|
|
1684
|
+
| ResourceNotFoundError
|
|
1685
|
+
| ThrottlingError
|
|
1686
|
+
| ValidationError
|
|
1447
1687
|
>;
|
|
1448
1688
|
|
|
1449
1689
|
/**
|
|
@@ -1454,7 +1694,7 @@ interface IoTWirelessService$ {
|
|
|
1454
1694
|
options?: HttpHandlerOptions,
|
|
1455
1695
|
): Effect.Effect<
|
|
1456
1696
|
ListNetworkAnalyzerConfigurationsCommandOutput,
|
|
1457
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1697
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1458
1698
|
>;
|
|
1459
1699
|
|
|
1460
1700
|
/**
|
|
@@ -1465,7 +1705,7 @@ interface IoTWirelessService$ {
|
|
|
1465
1705
|
options?: HttpHandlerOptions,
|
|
1466
1706
|
): Effect.Effect<
|
|
1467
1707
|
ListPartnerAccountsCommandOutput,
|
|
1468
|
-
SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1708
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1469
1709
|
>;
|
|
1470
1710
|
|
|
1471
1711
|
/**
|
|
@@ -1476,7 +1716,7 @@ interface IoTWirelessService$ {
|
|
|
1476
1716
|
options?: HttpHandlerOptions,
|
|
1477
1717
|
): Effect.Effect<
|
|
1478
1718
|
ListPositionConfigurationsCommandOutput,
|
|
1479
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1719
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1480
1720
|
>;
|
|
1481
1721
|
|
|
1482
1722
|
/**
|
|
@@ -1487,7 +1727,13 @@ interface IoTWirelessService$ {
|
|
|
1487
1727
|
options?: HttpHandlerOptions,
|
|
1488
1728
|
): Effect.Effect<
|
|
1489
1729
|
ListQueuedMessagesCommandOutput,
|
|
1490
|
-
|
|
1730
|
+
| Cause.TimeoutException
|
|
1731
|
+
| SdkError
|
|
1732
|
+
| AccessDeniedError
|
|
1733
|
+
| InternalServerError
|
|
1734
|
+
| ResourceNotFoundError
|
|
1735
|
+
| ThrottlingError
|
|
1736
|
+
| ValidationError
|
|
1491
1737
|
>;
|
|
1492
1738
|
|
|
1493
1739
|
/**
|
|
@@ -1498,7 +1744,7 @@ interface IoTWirelessService$ {
|
|
|
1498
1744
|
options?: HttpHandlerOptions,
|
|
1499
1745
|
): Effect.Effect<
|
|
1500
1746
|
ListServiceProfilesCommandOutput,
|
|
1501
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1747
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1502
1748
|
>;
|
|
1503
1749
|
|
|
1504
1750
|
/**
|
|
@@ -1509,7 +1755,13 @@ interface IoTWirelessService$ {
|
|
|
1509
1755
|
options?: HttpHandlerOptions,
|
|
1510
1756
|
): Effect.Effect<
|
|
1511
1757
|
ListTagsForResourceCommandOutput,
|
|
1512
|
-
|
|
1758
|
+
| Cause.TimeoutException
|
|
1759
|
+
| SdkError
|
|
1760
|
+
| ConflictError
|
|
1761
|
+
| InternalServerError
|
|
1762
|
+
| ResourceNotFoundError
|
|
1763
|
+
| ThrottlingError
|
|
1764
|
+
| ValidationError
|
|
1513
1765
|
>;
|
|
1514
1766
|
|
|
1515
1767
|
/**
|
|
@@ -1520,6 +1772,7 @@ interface IoTWirelessService$ {
|
|
|
1520
1772
|
options?: HttpHandlerOptions,
|
|
1521
1773
|
): Effect.Effect<
|
|
1522
1774
|
ListWirelessDeviceImportTasksCommandOutput,
|
|
1775
|
+
| Cause.TimeoutException
|
|
1523
1776
|
| SdkError
|
|
1524
1777
|
| AccessDeniedError
|
|
1525
1778
|
| ConflictError
|
|
@@ -1537,7 +1790,7 @@ interface IoTWirelessService$ {
|
|
|
1537
1790
|
options?: HttpHandlerOptions,
|
|
1538
1791
|
): Effect.Effect<
|
|
1539
1792
|
ListWirelessDevicesCommandOutput,
|
|
1540
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1793
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1541
1794
|
>;
|
|
1542
1795
|
|
|
1543
1796
|
/**
|
|
@@ -1548,7 +1801,7 @@ interface IoTWirelessService$ {
|
|
|
1548
1801
|
options?: HttpHandlerOptions,
|
|
1549
1802
|
): Effect.Effect<
|
|
1550
1803
|
ListWirelessGatewayTaskDefinitionsCommandOutput,
|
|
1551
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1804
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1552
1805
|
>;
|
|
1553
1806
|
|
|
1554
1807
|
/**
|
|
@@ -1559,7 +1812,7 @@ interface IoTWirelessService$ {
|
|
|
1559
1812
|
options?: HttpHandlerOptions,
|
|
1560
1813
|
): Effect.Effect<
|
|
1561
1814
|
ListWirelessGatewaysCommandOutput,
|
|
1562
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1815
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1563
1816
|
>;
|
|
1564
1817
|
|
|
1565
1818
|
/**
|
|
@@ -1570,7 +1823,13 @@ interface IoTWirelessService$ {
|
|
|
1570
1823
|
options?: HttpHandlerOptions,
|
|
1571
1824
|
): Effect.Effect<
|
|
1572
1825
|
PutPositionConfigurationCommandOutput,
|
|
1573
|
-
|
|
1826
|
+
| Cause.TimeoutException
|
|
1827
|
+
| SdkError
|
|
1828
|
+
| AccessDeniedError
|
|
1829
|
+
| InternalServerError
|
|
1830
|
+
| ResourceNotFoundError
|
|
1831
|
+
| ThrottlingError
|
|
1832
|
+
| ValidationError
|
|
1574
1833
|
>;
|
|
1575
1834
|
|
|
1576
1835
|
/**
|
|
@@ -1581,7 +1840,13 @@ interface IoTWirelessService$ {
|
|
|
1581
1840
|
options?: HttpHandlerOptions,
|
|
1582
1841
|
): Effect.Effect<
|
|
1583
1842
|
PutResourceLogLevelCommandOutput,
|
|
1584
|
-
|
|
1843
|
+
| Cause.TimeoutException
|
|
1844
|
+
| SdkError
|
|
1845
|
+
| AccessDeniedError
|
|
1846
|
+
| InternalServerError
|
|
1847
|
+
| ResourceNotFoundError
|
|
1848
|
+
| ThrottlingError
|
|
1849
|
+
| ValidationError
|
|
1585
1850
|
>;
|
|
1586
1851
|
|
|
1587
1852
|
/**
|
|
@@ -1592,7 +1857,13 @@ interface IoTWirelessService$ {
|
|
|
1592
1857
|
options?: HttpHandlerOptions,
|
|
1593
1858
|
): Effect.Effect<
|
|
1594
1859
|
ResetAllResourceLogLevelsCommandOutput,
|
|
1595
|
-
|
|
1860
|
+
| Cause.TimeoutException
|
|
1861
|
+
| SdkError
|
|
1862
|
+
| AccessDeniedError
|
|
1863
|
+
| InternalServerError
|
|
1864
|
+
| ResourceNotFoundError
|
|
1865
|
+
| ThrottlingError
|
|
1866
|
+
| ValidationError
|
|
1596
1867
|
>;
|
|
1597
1868
|
|
|
1598
1869
|
/**
|
|
@@ -1603,7 +1874,13 @@ interface IoTWirelessService$ {
|
|
|
1603
1874
|
options?: HttpHandlerOptions,
|
|
1604
1875
|
): Effect.Effect<
|
|
1605
1876
|
ResetResourceLogLevelCommandOutput,
|
|
1606
|
-
|
|
1877
|
+
| Cause.TimeoutException
|
|
1878
|
+
| SdkError
|
|
1879
|
+
| AccessDeniedError
|
|
1880
|
+
| InternalServerError
|
|
1881
|
+
| ResourceNotFoundError
|
|
1882
|
+
| ThrottlingError
|
|
1883
|
+
| ValidationError
|
|
1607
1884
|
>;
|
|
1608
1885
|
|
|
1609
1886
|
/**
|
|
@@ -1614,6 +1891,7 @@ interface IoTWirelessService$ {
|
|
|
1614
1891
|
options?: HttpHandlerOptions,
|
|
1615
1892
|
): Effect.Effect<
|
|
1616
1893
|
SendDataToMulticastGroupCommandOutput,
|
|
1894
|
+
| Cause.TimeoutException
|
|
1617
1895
|
| SdkError
|
|
1618
1896
|
| AccessDeniedError
|
|
1619
1897
|
| ConflictError
|
|
@@ -1631,7 +1909,7 @@ interface IoTWirelessService$ {
|
|
|
1631
1909
|
options?: HttpHandlerOptions,
|
|
1632
1910
|
): Effect.Effect<
|
|
1633
1911
|
SendDataToWirelessDeviceCommandOutput,
|
|
1634
|
-
SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1912
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1635
1913
|
>;
|
|
1636
1914
|
|
|
1637
1915
|
/**
|
|
@@ -1642,7 +1920,13 @@ interface IoTWirelessService$ {
|
|
|
1642
1920
|
options?: HttpHandlerOptions,
|
|
1643
1921
|
): Effect.Effect<
|
|
1644
1922
|
StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput,
|
|
1645
|
-
|
|
1923
|
+
| Cause.TimeoutException
|
|
1924
|
+
| SdkError
|
|
1925
|
+
| AccessDeniedError
|
|
1926
|
+
| InternalServerError
|
|
1927
|
+
| ResourceNotFoundError
|
|
1928
|
+
| ThrottlingError
|
|
1929
|
+
| ValidationError
|
|
1646
1930
|
>;
|
|
1647
1931
|
|
|
1648
1932
|
/**
|
|
@@ -1653,7 +1937,13 @@ interface IoTWirelessService$ {
|
|
|
1653
1937
|
options?: HttpHandlerOptions,
|
|
1654
1938
|
): Effect.Effect<
|
|
1655
1939
|
StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput,
|
|
1656
|
-
|
|
1940
|
+
| Cause.TimeoutException
|
|
1941
|
+
| SdkError
|
|
1942
|
+
| AccessDeniedError
|
|
1943
|
+
| InternalServerError
|
|
1944
|
+
| ResourceNotFoundError
|
|
1945
|
+
| ThrottlingError
|
|
1946
|
+
| ValidationError
|
|
1657
1947
|
>;
|
|
1658
1948
|
|
|
1659
1949
|
/**
|
|
@@ -1664,6 +1954,7 @@ interface IoTWirelessService$ {
|
|
|
1664
1954
|
options?: HttpHandlerOptions,
|
|
1665
1955
|
): Effect.Effect<
|
|
1666
1956
|
StartFuotaTaskCommandOutput,
|
|
1957
|
+
| Cause.TimeoutException
|
|
1667
1958
|
| SdkError
|
|
1668
1959
|
| AccessDeniedError
|
|
1669
1960
|
| ConflictError
|
|
@@ -1681,6 +1972,7 @@ interface IoTWirelessService$ {
|
|
|
1681
1972
|
options?: HttpHandlerOptions,
|
|
1682
1973
|
): Effect.Effect<
|
|
1683
1974
|
StartMulticastGroupSessionCommandOutput,
|
|
1975
|
+
| Cause.TimeoutException
|
|
1684
1976
|
| SdkError
|
|
1685
1977
|
| AccessDeniedError
|
|
1686
1978
|
| ConflictError
|
|
@@ -1698,6 +1990,7 @@ interface IoTWirelessService$ {
|
|
|
1698
1990
|
options?: HttpHandlerOptions,
|
|
1699
1991
|
): Effect.Effect<
|
|
1700
1992
|
StartSingleWirelessDeviceImportTaskCommandOutput,
|
|
1993
|
+
| Cause.TimeoutException
|
|
1701
1994
|
| SdkError
|
|
1702
1995
|
| AccessDeniedError
|
|
1703
1996
|
| ConflictError
|
|
@@ -1715,6 +2008,7 @@ interface IoTWirelessService$ {
|
|
|
1715
2008
|
options?: HttpHandlerOptions,
|
|
1716
2009
|
): Effect.Effect<
|
|
1717
2010
|
StartWirelessDeviceImportTaskCommandOutput,
|
|
2011
|
+
| Cause.TimeoutException
|
|
1718
2012
|
| SdkError
|
|
1719
2013
|
| AccessDeniedError
|
|
1720
2014
|
| ConflictError
|
|
@@ -1732,6 +2026,7 @@ interface IoTWirelessService$ {
|
|
|
1732
2026
|
options?: HttpHandlerOptions,
|
|
1733
2027
|
): Effect.Effect<
|
|
1734
2028
|
TagResourceCommandOutput,
|
|
2029
|
+
| Cause.TimeoutException
|
|
1735
2030
|
| SdkError
|
|
1736
2031
|
| ConflictError
|
|
1737
2032
|
| InternalServerError
|
|
@@ -1749,7 +2044,7 @@ interface IoTWirelessService$ {
|
|
|
1749
2044
|
options?: HttpHandlerOptions,
|
|
1750
2045
|
): Effect.Effect<
|
|
1751
2046
|
TestWirelessDeviceCommandOutput,
|
|
1752
|
-
SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
2047
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1753
2048
|
>;
|
|
1754
2049
|
|
|
1755
2050
|
/**
|
|
@@ -1760,7 +2055,13 @@ interface IoTWirelessService$ {
|
|
|
1760
2055
|
options?: HttpHandlerOptions,
|
|
1761
2056
|
): Effect.Effect<
|
|
1762
2057
|
UntagResourceCommandOutput,
|
|
1763
|
-
|
|
2058
|
+
| Cause.TimeoutException
|
|
2059
|
+
| SdkError
|
|
2060
|
+
| ConflictError
|
|
2061
|
+
| InternalServerError
|
|
2062
|
+
| ResourceNotFoundError
|
|
2063
|
+
| ThrottlingError
|
|
2064
|
+
| ValidationError
|
|
1764
2065
|
>;
|
|
1765
2066
|
|
|
1766
2067
|
/**
|
|
@@ -1771,7 +2072,13 @@ interface IoTWirelessService$ {
|
|
|
1771
2072
|
options?: HttpHandlerOptions,
|
|
1772
2073
|
): Effect.Effect<
|
|
1773
2074
|
UpdateDestinationCommandOutput,
|
|
1774
|
-
|
|
2075
|
+
| Cause.TimeoutException
|
|
2076
|
+
| SdkError
|
|
2077
|
+
| AccessDeniedError
|
|
2078
|
+
| InternalServerError
|
|
2079
|
+
| ResourceNotFoundError
|
|
2080
|
+
| ThrottlingError
|
|
2081
|
+
| ValidationError
|
|
1775
2082
|
>;
|
|
1776
2083
|
|
|
1777
2084
|
/**
|
|
@@ -1782,7 +2089,7 @@ interface IoTWirelessService$ {
|
|
|
1782
2089
|
options?: HttpHandlerOptions,
|
|
1783
2090
|
): Effect.Effect<
|
|
1784
2091
|
UpdateEventConfigurationByResourceTypesCommandOutput,
|
|
1785
|
-
SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
2092
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1786
2093
|
>;
|
|
1787
2094
|
|
|
1788
2095
|
/**
|
|
@@ -1793,6 +2100,7 @@ interface IoTWirelessService$ {
|
|
|
1793
2100
|
options?: HttpHandlerOptions,
|
|
1794
2101
|
): Effect.Effect<
|
|
1795
2102
|
UpdateFuotaTaskCommandOutput,
|
|
2103
|
+
| Cause.TimeoutException
|
|
1796
2104
|
| SdkError
|
|
1797
2105
|
| AccessDeniedError
|
|
1798
2106
|
| ConflictError
|
|
@@ -1810,6 +2118,7 @@ interface IoTWirelessService$ {
|
|
|
1810
2118
|
options?: HttpHandlerOptions,
|
|
1811
2119
|
): Effect.Effect<
|
|
1812
2120
|
UpdateLogLevelsByResourceTypesCommandOutput,
|
|
2121
|
+
| Cause.TimeoutException
|
|
1813
2122
|
| SdkError
|
|
1814
2123
|
| AccessDeniedError
|
|
1815
2124
|
| ConflictError
|
|
@@ -1827,6 +2136,7 @@ interface IoTWirelessService$ {
|
|
|
1827
2136
|
options?: HttpHandlerOptions,
|
|
1828
2137
|
): Effect.Effect<
|
|
1829
2138
|
UpdateMetricConfigurationCommandOutput,
|
|
2139
|
+
| Cause.TimeoutException
|
|
1830
2140
|
| SdkError
|
|
1831
2141
|
| AccessDeniedError
|
|
1832
2142
|
| ConflictError
|
|
@@ -1844,6 +2154,7 @@ interface IoTWirelessService$ {
|
|
|
1844
2154
|
options?: HttpHandlerOptions,
|
|
1845
2155
|
): Effect.Effect<
|
|
1846
2156
|
UpdateMulticastGroupCommandOutput,
|
|
2157
|
+
| Cause.TimeoutException
|
|
1847
2158
|
| SdkError
|
|
1848
2159
|
| AccessDeniedError
|
|
1849
2160
|
| ConflictError
|
|
@@ -1861,7 +2172,13 @@ interface IoTWirelessService$ {
|
|
|
1861
2172
|
options?: HttpHandlerOptions,
|
|
1862
2173
|
): Effect.Effect<
|
|
1863
2174
|
UpdateNetworkAnalyzerConfigurationCommandOutput,
|
|
1864
|
-
|
|
2175
|
+
| Cause.TimeoutException
|
|
2176
|
+
| SdkError
|
|
2177
|
+
| AccessDeniedError
|
|
2178
|
+
| InternalServerError
|
|
2179
|
+
| ResourceNotFoundError
|
|
2180
|
+
| ThrottlingError
|
|
2181
|
+
| ValidationError
|
|
1865
2182
|
>;
|
|
1866
2183
|
|
|
1867
2184
|
/**
|
|
@@ -1872,7 +2189,7 @@ interface IoTWirelessService$ {
|
|
|
1872
2189
|
options?: HttpHandlerOptions,
|
|
1873
2190
|
): Effect.Effect<
|
|
1874
2191
|
UpdatePartnerAccountCommandOutput,
|
|
1875
|
-
SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
2192
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1876
2193
|
>;
|
|
1877
2194
|
|
|
1878
2195
|
/**
|
|
@@ -1883,7 +2200,13 @@ interface IoTWirelessService$ {
|
|
|
1883
2200
|
options?: HttpHandlerOptions,
|
|
1884
2201
|
): Effect.Effect<
|
|
1885
2202
|
UpdatePositionCommandOutput,
|
|
1886
|
-
|
|
2203
|
+
| Cause.TimeoutException
|
|
2204
|
+
| SdkError
|
|
2205
|
+
| AccessDeniedError
|
|
2206
|
+
| InternalServerError
|
|
2207
|
+
| ResourceNotFoundError
|
|
2208
|
+
| ThrottlingError
|
|
2209
|
+
| ValidationError
|
|
1887
2210
|
>;
|
|
1888
2211
|
|
|
1889
2212
|
/**
|
|
@@ -1894,6 +2217,7 @@ interface IoTWirelessService$ {
|
|
|
1894
2217
|
options?: HttpHandlerOptions,
|
|
1895
2218
|
): Effect.Effect<
|
|
1896
2219
|
UpdateResourceEventConfigurationCommandOutput,
|
|
2220
|
+
| Cause.TimeoutException
|
|
1897
2221
|
| SdkError
|
|
1898
2222
|
| AccessDeniedError
|
|
1899
2223
|
| ConflictError
|
|
@@ -1911,7 +2235,13 @@ interface IoTWirelessService$ {
|
|
|
1911
2235
|
options?: HttpHandlerOptions,
|
|
1912
2236
|
): Effect.Effect<
|
|
1913
2237
|
UpdateResourcePositionCommandOutput,
|
|
1914
|
-
|
|
2238
|
+
| Cause.TimeoutException
|
|
2239
|
+
| SdkError
|
|
2240
|
+
| AccessDeniedError
|
|
2241
|
+
| InternalServerError
|
|
2242
|
+
| ResourceNotFoundError
|
|
2243
|
+
| ThrottlingError
|
|
2244
|
+
| ValidationError
|
|
1915
2245
|
>;
|
|
1916
2246
|
|
|
1917
2247
|
/**
|
|
@@ -1922,7 +2252,13 @@ interface IoTWirelessService$ {
|
|
|
1922
2252
|
options?: HttpHandlerOptions,
|
|
1923
2253
|
): Effect.Effect<
|
|
1924
2254
|
UpdateWirelessDeviceCommandOutput,
|
|
1925
|
-
|
|
2255
|
+
| Cause.TimeoutException
|
|
2256
|
+
| SdkError
|
|
2257
|
+
| AccessDeniedError
|
|
2258
|
+
| InternalServerError
|
|
2259
|
+
| ResourceNotFoundError
|
|
2260
|
+
| ThrottlingError
|
|
2261
|
+
| ValidationError
|
|
1926
2262
|
>;
|
|
1927
2263
|
|
|
1928
2264
|
/**
|
|
@@ -1933,6 +2269,7 @@ interface IoTWirelessService$ {
|
|
|
1933
2269
|
options?: HttpHandlerOptions,
|
|
1934
2270
|
): Effect.Effect<
|
|
1935
2271
|
UpdateWirelessDeviceImportTaskCommandOutput,
|
|
2272
|
+
| Cause.TimeoutException
|
|
1936
2273
|
| SdkError
|
|
1937
2274
|
| AccessDeniedError
|
|
1938
2275
|
| ConflictError
|
|
@@ -1950,7 +2287,13 @@ interface IoTWirelessService$ {
|
|
|
1950
2287
|
options?: HttpHandlerOptions,
|
|
1951
2288
|
): Effect.Effect<
|
|
1952
2289
|
UpdateWirelessGatewayCommandOutput,
|
|
1953
|
-
|
|
2290
|
+
| Cause.TimeoutException
|
|
2291
|
+
| SdkError
|
|
2292
|
+
| AccessDeniedError
|
|
2293
|
+
| InternalServerError
|
|
2294
|
+
| ResourceNotFoundError
|
|
2295
|
+
| ThrottlingError
|
|
2296
|
+
| ValidationError
|
|
1954
2297
|
>;
|
|
1955
2298
|
}
|
|
1956
2299
|
|
|
@@ -1961,7 +2304,7 @@ interface IoTWirelessService$ {
|
|
|
1961
2304
|
export const makeIoTWirelessService = Effect.gen(function*() {
|
|
1962
2305
|
const client = yield* Instance.IoTWirelessClientInstance;
|
|
1963
2306
|
|
|
1964
|
-
return Service.fromClientAndCommands<IoTWirelessService$>(
|
|
2307
|
+
return yield* Service.fromClientAndCommands<IoTWirelessService$>(
|
|
1965
2308
|
client,
|
|
1966
2309
|
commands,
|
|
1967
2310
|
{
|