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