@aws-sdk/client-iot-wireless 3.441.0 → 3.445.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-types/commands/CreateWirelessDeviceCommand.d.ts +1 -0
- package/dist-types/commands/GetWirelessDeviceCommand.d.ts +1 -0
- package/dist-types/commands/GetWirelessDeviceImportTaskCommand.d.ts +2 -2
- package/dist-types/commands/StartWirelessDeviceImportTaskCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +125 -87
- package/dist-types/models/models_1.d.ts +26 -18
- package/dist-types/ts3.4/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +4 -4
|
@@ -48,6 +48,7 @@ export interface CreateWirelessDeviceCommandOutput extends CreateWirelessDeviceR
|
|
|
48
48
|
* OtaaV1_0_x: { // OtaaV1_0_x
|
|
49
49
|
* AppKey: "STRING_VALUE",
|
|
50
50
|
* AppEui: "STRING_VALUE",
|
|
51
|
+
* JoinEui: "STRING_VALUE",
|
|
51
52
|
* GenAppKey: "STRING_VALUE",
|
|
52
53
|
* },
|
|
53
54
|
* AbpV1_1: { // AbpV1_1
|
|
@@ -57,6 +57,7 @@ export interface GetWirelessDeviceCommandOutput extends GetWirelessDeviceRespons
|
|
|
57
57
|
* // OtaaV1_0_x: { // OtaaV1_0_x
|
|
58
58
|
* // AppKey: "STRING_VALUE",
|
|
59
59
|
* // AppEui: "STRING_VALUE",
|
|
60
|
+
* // JoinEui: "STRING_VALUE",
|
|
60
61
|
* // GenAppKey: "STRING_VALUE",
|
|
61
62
|
* // },
|
|
62
63
|
* // AbpV1_1: { // AbpV1_1
|
|
@@ -23,8 +23,8 @@ export interface GetWirelessDeviceImportTaskCommandOutput extends GetWirelessDev
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Get information about an import task and count of device onboarding summary
|
|
27
|
-
*
|
|
26
|
+
* <p>Get information about an import task and count of device onboarding summary
|
|
27
|
+
* information for the import task.</p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
30
|
* ```javascript
|
|
@@ -23,7 +23,8 @@ export interface StartWirelessDeviceImportTaskCommandOutput extends StartWireles
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Start import task for provisioning Sidewalk devices in bulk using an S3 CSV
|
|
26
|
+
* <p>Start import task for provisioning Sidewalk devices in bulk using an S3 CSV
|
|
27
|
+
* file.</p>
|
|
27
28
|
* @example
|
|
28
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
30
|
* ```javascript
|
package/dist-types/index.d.ts
CHANGED
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
export * from "./IoTWirelessClient";
|
|
19
19
|
export * from "./IoTWireless";
|
|
20
20
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
21
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
22
|
+
export { IoTWirelessExtensionConfiguration } from "./extensionConfiguration";
|
|
21
23
|
export * from "./commands";
|
|
22
24
|
export * from "./pagination";
|
|
23
25
|
export * from "./models";
|
|
@@ -141,13 +141,14 @@ export interface ApplicationConfig {
|
|
|
141
141
|
FPort?: number;
|
|
142
142
|
/**
|
|
143
143
|
* @public
|
|
144
|
-
* <p>Application type, which can be specified to obtain real-time position information of
|
|
144
|
+
* <p>Application type, which can be specified to obtain real-time position information of
|
|
145
|
+
* your LoRaWAN device.</p>
|
|
145
146
|
*/
|
|
146
147
|
Type?: ApplicationConfigType;
|
|
147
148
|
/**
|
|
148
149
|
* @public
|
|
149
|
-
* <p>The name of the position data destination that describes the AWS IoT rule that
|
|
150
|
-
*
|
|
150
|
+
* <p>The name of the position data destination that describes the AWS IoT rule that
|
|
151
|
+
* processes the device's position data for use by AWS IoT Core for LoRaWAN.</p>
|
|
151
152
|
*/
|
|
152
153
|
DestinationName?: string;
|
|
153
154
|
}
|
|
@@ -478,12 +479,14 @@ export interface CancelMulticastGroupSessionResponse {
|
|
|
478
479
|
}
|
|
479
480
|
/**
|
|
480
481
|
* @public
|
|
481
|
-
* <p>CDMA local ID information, which corresponds to the local identification parameters of
|
|
482
|
+
* <p>CDMA local ID information, which corresponds to the local identification parameters of
|
|
483
|
+
* a CDMA cell.</p>
|
|
482
484
|
*/
|
|
483
485
|
export interface CdmaLocalId {
|
|
484
486
|
/**
|
|
485
487
|
* @public
|
|
486
|
-
* <p>Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio
|
|
488
|
+
* <p>Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio
|
|
489
|
+
* tower.</p>
|
|
487
490
|
*/
|
|
488
491
|
PnOffset: number | undefined;
|
|
489
492
|
/**
|
|
@@ -499,7 +502,8 @@ export interface CdmaLocalId {
|
|
|
499
502
|
export interface CdmaNmrObj {
|
|
500
503
|
/**
|
|
501
504
|
* @public
|
|
502
|
-
* <p>Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio
|
|
505
|
+
* <p>Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio
|
|
506
|
+
* tower.</p>
|
|
503
507
|
*/
|
|
504
508
|
PnOffset: number | undefined;
|
|
505
509
|
/**
|
|
@@ -571,7 +575,8 @@ export interface CdmaObj {
|
|
|
571
575
|
}
|
|
572
576
|
/**
|
|
573
577
|
* @public
|
|
574
|
-
* <p>GSM local ID information, which corresponds to the local identification parameters of
|
|
578
|
+
* <p>GSM local ID information, which corresponds to the local identification parameters of
|
|
579
|
+
* a GSM cell.</p>
|
|
575
580
|
*/
|
|
576
581
|
export interface GsmLocalId {
|
|
577
582
|
/**
|
|
@@ -618,7 +623,8 @@ export interface GsmNmrObj {
|
|
|
618
623
|
Bcch: number | undefined;
|
|
619
624
|
/**
|
|
620
625
|
* @public
|
|
621
|
-
* <p>Rx level, which is the received signal power, measured in dBm
|
|
626
|
+
* <p>Rx level, which is the received signal power, measured in dBm
|
|
627
|
+
* (decibel-milliwatts).</p>
|
|
622
628
|
*/
|
|
623
629
|
RxLevel?: number;
|
|
624
630
|
/**
|
|
@@ -659,13 +665,14 @@ export interface GsmObj {
|
|
|
659
665
|
GsmLocalId?: GsmLocalId;
|
|
660
666
|
/**
|
|
661
667
|
* @public
|
|
662
|
-
* <p>Timing advance value, which corresponds to the length of time a signal takes to reach
|
|
663
|
-
*
|
|
668
|
+
* <p>Timing advance value, which corresponds to the length of time a signal takes to reach
|
|
669
|
+
* the base station from a mobile phone.</p>
|
|
664
670
|
*/
|
|
665
671
|
GsmTimingAdvance?: number;
|
|
666
672
|
/**
|
|
667
673
|
* @public
|
|
668
|
-
* <p>Rx level, which is the received signal power, measured in dBm
|
|
674
|
+
* <p>Rx level, which is the received signal power, measured in dBm
|
|
675
|
+
* (decibel-milliwatts).</p>
|
|
669
676
|
*/
|
|
670
677
|
RxLevel?: number;
|
|
671
678
|
/**
|
|
@@ -686,7 +693,8 @@ export interface LteLocalId {
|
|
|
686
693
|
Pci: number | undefined;
|
|
687
694
|
/**
|
|
688
695
|
* @public
|
|
689
|
-
* <p>Evolved universal terrestrial radio access (E-UTRA) absolute radio frequency channel
|
|
696
|
+
* <p>Evolved universal terrestrial radio access (E-UTRA) absolute radio frequency channel
|
|
697
|
+
* number (FCN).</p>
|
|
690
698
|
*/
|
|
691
699
|
Earfcn: number | undefined;
|
|
692
700
|
}
|
|
@@ -702,17 +710,20 @@ export interface LteNmrObj {
|
|
|
702
710
|
Pci: number | undefined;
|
|
703
711
|
/**
|
|
704
712
|
* @public
|
|
705
|
-
* <p>E-UTRA (Evolved universal terrestrial Radio Access) absolute radio frequency channel
|
|
713
|
+
* <p>E-UTRA (Evolved universal terrestrial Radio Access) absolute radio frequency channel
|
|
714
|
+
* Number (EARFCN).</p>
|
|
706
715
|
*/
|
|
707
716
|
Earfcn: number | undefined;
|
|
708
717
|
/**
|
|
709
718
|
* @public
|
|
710
|
-
* <p>E-UTRAN (Evolved Universal Terrestrial Radio Access Network) cell global identifier
|
|
719
|
+
* <p>E-UTRAN (Evolved Universal Terrestrial Radio Access Network) cell global identifier
|
|
720
|
+
* (EUTRANCID).</p>
|
|
711
721
|
*/
|
|
712
722
|
EutranCid: number | undefined;
|
|
713
723
|
/**
|
|
714
724
|
* @public
|
|
715
|
-
* <p>Signal power of the reference signal received, measured in dBm
|
|
725
|
+
* <p>Signal power of the reference signal received, measured in dBm
|
|
726
|
+
* (decibel-milliwatts).</p>
|
|
716
727
|
*/
|
|
717
728
|
Rsrp?: number;
|
|
718
729
|
/**
|
|
@@ -738,7 +749,8 @@ export interface LteObj {
|
|
|
738
749
|
Mnc: number | undefined;
|
|
739
750
|
/**
|
|
740
751
|
* @public
|
|
741
|
-
* <p>E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global
|
|
752
|
+
* <p>E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global
|
|
753
|
+
* Identifier.</p>
|
|
742
754
|
*/
|
|
743
755
|
EutranCid: number | undefined;
|
|
744
756
|
/**
|
|
@@ -758,7 +770,8 @@ export interface LteObj {
|
|
|
758
770
|
LteTimingAdvance?: number;
|
|
759
771
|
/**
|
|
760
772
|
* @public
|
|
761
|
-
* <p>Signal power of the reference signal received, measured in dBm
|
|
773
|
+
* <p>Signal power of the reference signal received, measured in dBm
|
|
774
|
+
* (decibel-milliwatts).</p>
|
|
762
775
|
*/
|
|
763
776
|
Rsrp?: number;
|
|
764
777
|
/**
|
|
@@ -768,7 +781,8 @@ export interface LteObj {
|
|
|
768
781
|
Rsrq?: number;
|
|
769
782
|
/**
|
|
770
783
|
* @public
|
|
771
|
-
* <p>Parameter that determines whether the LTE object is capable of supporting NR (new
|
|
784
|
+
* <p>Parameter that determines whether the LTE object is capable of supporting NR (new
|
|
785
|
+
* radio).</p>
|
|
772
786
|
*/
|
|
773
787
|
NrCapable?: boolean;
|
|
774
788
|
/**
|
|
@@ -784,7 +798,8 @@ export interface LteObj {
|
|
|
784
798
|
export interface TdscdmaLocalId {
|
|
785
799
|
/**
|
|
786
800
|
* @public
|
|
787
|
-
* <p>TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel number
|
|
801
|
+
* <p>TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel number
|
|
802
|
+
* (UARFCN).</p>
|
|
788
803
|
*/
|
|
789
804
|
Uarfcn: number | undefined;
|
|
790
805
|
/**
|
|
@@ -800,7 +815,8 @@ export interface TdscdmaLocalId {
|
|
|
800
815
|
export interface TdscdmaNmrObj {
|
|
801
816
|
/**
|
|
802
817
|
* @public
|
|
803
|
-
* <p>TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel
|
|
818
|
+
* <p>TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel
|
|
819
|
+
* number.</p>
|
|
804
820
|
*/
|
|
805
821
|
Uarfcn: number | undefined;
|
|
806
822
|
/**
|
|
@@ -820,8 +836,8 @@ export interface TdscdmaNmrObj {
|
|
|
820
836
|
Rscp?: number;
|
|
821
837
|
/**
|
|
822
838
|
* @public
|
|
823
|
-
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
824
|
-
*
|
|
839
|
+
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
840
|
+
* electromagnetic wave as it propagates through space.</p>
|
|
825
841
|
*/
|
|
826
842
|
PathLoss?: number;
|
|
827
843
|
}
|
|
@@ -862,13 +878,14 @@ export interface TdscdmaObj {
|
|
|
862
878
|
TdscdmaTimingAdvance?: number;
|
|
863
879
|
/**
|
|
864
880
|
* @public
|
|
865
|
-
* <p>Signal power of the received signal (Received Signal Code Power), measured in
|
|
881
|
+
* <p>Signal power of the received signal (Received Signal Code Power), measured in
|
|
882
|
+
* decibel-milliwatts (dBm).</p>
|
|
866
883
|
*/
|
|
867
884
|
Rscp?: number;
|
|
868
885
|
/**
|
|
869
886
|
* @public
|
|
870
|
-
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
871
|
-
*
|
|
887
|
+
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
888
|
+
* electromagnetic wave as it propagates through space.</p>
|
|
872
889
|
*/
|
|
873
890
|
PathLoss?: number;
|
|
874
891
|
/**
|
|
@@ -920,8 +937,8 @@ export interface WcdmaNmrObj {
|
|
|
920
937
|
Rscp?: number;
|
|
921
938
|
/**
|
|
922
939
|
* @public
|
|
923
|
-
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
924
|
-
*
|
|
940
|
+
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
941
|
+
* electromagnetic wave as it propagates through space.</p>
|
|
925
942
|
*/
|
|
926
943
|
PathLoss?: number;
|
|
927
944
|
}
|
|
@@ -962,8 +979,8 @@ export interface WcdmaObj {
|
|
|
962
979
|
Rscp?: number;
|
|
963
980
|
/**
|
|
964
981
|
* @public
|
|
965
|
-
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
966
|
-
*
|
|
982
|
+
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
983
|
+
* electromagnetic wave as it propagates through space.</p>
|
|
967
984
|
*/
|
|
968
985
|
PathLoss?: number;
|
|
969
986
|
/**
|
|
@@ -1264,7 +1281,7 @@ export interface LoRaWANDeviceProfile {
|
|
|
1264
1281
|
MaxEirp?: number;
|
|
1265
1282
|
/**
|
|
1266
1283
|
* @public
|
|
1267
|
-
* <p>The MaxDutyCycle value.</p>
|
|
1284
|
+
* <p>The MaxDutyCycle value. It ranges from 0 to 15.</p>
|
|
1268
1285
|
*/
|
|
1269
1286
|
MaxDutyCycle?: number;
|
|
1270
1287
|
/**
|
|
@@ -1574,7 +1591,7 @@ export declare const WirelessDeviceFrameInfo: {
|
|
|
1574
1591
|
export type WirelessDeviceFrameInfo = (typeof WirelessDeviceFrameInfo)[keyof typeof WirelessDeviceFrameInfo];
|
|
1575
1592
|
/**
|
|
1576
1593
|
* @public
|
|
1577
|
-
* <p>Trace content for your wireless
|
|
1594
|
+
* <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
|
|
1578
1595
|
*/
|
|
1579
1596
|
export interface TraceContent {
|
|
1580
1597
|
/**
|
|
@@ -1596,7 +1613,7 @@ export interface TraceContent {
|
|
|
1596
1613
|
* @public
|
|
1597
1614
|
* <p>
|
|
1598
1615
|
* <code>FrameInfo</code> of your multicast group resources for the trace content. Use
|
|
1599
|
-
* FrameInfo to debug the multicast communication between your
|
|
1616
|
+
* FrameInfo to debug the multicast communication between your multicast groups and the network server.</p>
|
|
1600
1617
|
*/
|
|
1601
1618
|
MulticastFrameInfo?: MulticastFrameInfo;
|
|
1602
1619
|
}
|
|
@@ -1611,7 +1628,7 @@ export interface CreateNetworkAnalyzerConfigurationRequest {
|
|
|
1611
1628
|
Name: string | undefined;
|
|
1612
1629
|
/**
|
|
1613
1630
|
* @public
|
|
1614
|
-
* <p>Trace content for your wireless
|
|
1631
|
+
* <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
|
|
1615
1632
|
*/
|
|
1616
1633
|
TraceContent?: TraceContent;
|
|
1617
1634
|
/**
|
|
@@ -1810,6 +1827,11 @@ export interface OtaaV1_0_x {
|
|
|
1810
1827
|
* <p>The AppEUI value.</p>
|
|
1811
1828
|
*/
|
|
1812
1829
|
AppEui?: string;
|
|
1830
|
+
/**
|
|
1831
|
+
* @public
|
|
1832
|
+
* <p>The JoinEUI value.</p>
|
|
1833
|
+
*/
|
|
1834
|
+
JoinEui?: string;
|
|
1813
1835
|
/**
|
|
1814
1836
|
* @public
|
|
1815
1837
|
* <p>The GenAppKey value.</p>
|
|
@@ -2257,8 +2279,8 @@ export interface DakCertificateMetadata {
|
|
|
2257
2279
|
CertificateId: string | undefined;
|
|
2258
2280
|
/**
|
|
2259
2281
|
* @public
|
|
2260
|
-
* <p>The maximum number of signatures that the DAK can sign. A value of <code>-1</code>
|
|
2261
|
-
*
|
|
2282
|
+
* <p>The maximum number of signatures that the DAK can sign. A value of <code>-1</code>
|
|
2283
|
+
* indicates that there's no device limit.</p>
|
|
2262
2284
|
*/
|
|
2263
2285
|
MaxAllowedSignature?: number;
|
|
2264
2286
|
/**
|
|
@@ -2268,7 +2290,8 @@ export interface DakCertificateMetadata {
|
|
|
2268
2290
|
FactorySupport?: boolean;
|
|
2269
2291
|
/**
|
|
2270
2292
|
* @public
|
|
2271
|
-
* <p>The advertised product ID (APID) that's used for pre-production and production
|
|
2293
|
+
* <p>The advertised product ID (APID) that's used for pre-production and production
|
|
2294
|
+
* applications.</p>
|
|
2272
2295
|
*/
|
|
2273
2296
|
ApId?: string;
|
|
2274
2297
|
/**
|
|
@@ -2480,8 +2503,8 @@ export interface DeregisterWirelessDeviceRequest {
|
|
|
2480
2503
|
Identifier: string | undefined;
|
|
2481
2504
|
/**
|
|
2482
2505
|
* @public
|
|
2483
|
-
* <p>The type of wireless device to deregister from AWS IoT Wireless, which can be
|
|
2484
|
-
*
|
|
2506
|
+
* <p>The type of wireless device to deregister from AWS IoT Wireless, which can be
|
|
2507
|
+
* <code>LoRaWAN</code> or <code>Sidewalk</code>.</p>
|
|
2485
2508
|
*/
|
|
2486
2509
|
WirelessDeviceType?: WirelessDeviceType;
|
|
2487
2510
|
}
|
|
@@ -3699,12 +3722,12 @@ export interface GetNetworkAnalyzerConfigurationRequest {
|
|
|
3699
3722
|
export interface GetNetworkAnalyzerConfigurationResponse {
|
|
3700
3723
|
/**
|
|
3701
3724
|
* @public
|
|
3702
|
-
* <p>Trace content for your wireless
|
|
3725
|
+
* <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
|
|
3703
3726
|
*/
|
|
3704
3727
|
TraceContent?: TraceContent;
|
|
3705
3728
|
/**
|
|
3706
3729
|
* @public
|
|
3707
|
-
* <p>List of wireless
|
|
3730
|
+
* <p>List of wireless device resources that have been added to the network analyzer
|
|
3708
3731
|
* configuration.</p>
|
|
3709
3732
|
*/
|
|
3710
3733
|
WirelessDevices?: string[];
|
|
@@ -3973,37 +3996,40 @@ export interface GetPositionConfigurationResponse {
|
|
|
3973
3996
|
export interface Gnss {
|
|
3974
3997
|
/**
|
|
3975
3998
|
* @public
|
|
3976
|
-
* <p>Payload that contains the GNSS scan result, or NAV message, in hexadecimal
|
|
3999
|
+
* <p>Payload that contains the GNSS scan result, or NAV message, in hexadecimal
|
|
4000
|
+
* notation.</p>
|
|
3977
4001
|
*/
|
|
3978
4002
|
Payload: string | undefined;
|
|
3979
4003
|
/**
|
|
3980
4004
|
* @public
|
|
3981
|
-
* <p>Optional parameter that gives an estimate of the time when the GNSS scan information
|
|
3982
|
-
*
|
|
4005
|
+
* <p>Optional parameter that gives an estimate of the time when the GNSS scan information
|
|
4006
|
+
* is taken, in seconds GPS time (GPST). If capture time is not specified, the local server
|
|
4007
|
+
* time is used.</p>
|
|
3983
4008
|
*/
|
|
3984
4009
|
CaptureTime?: number;
|
|
3985
4010
|
/**
|
|
3986
4011
|
* @public
|
|
3987
|
-
* <p>Optional value that gives the capture time estimate accuracy, in seconds. If capture
|
|
3988
|
-
*
|
|
4012
|
+
* <p>Optional value that gives the capture time estimate accuracy, in seconds. If capture
|
|
4013
|
+
* time accuracy is not specified, default value of 300 is used.</p>
|
|
3989
4014
|
*/
|
|
3990
4015
|
CaptureTimeAccuracy?: number;
|
|
3991
4016
|
/**
|
|
3992
4017
|
* @public
|
|
3993
|
-
* <p>Optional assistance position information, specified using latitude and longitude
|
|
3994
|
-
* in degrees. The coordinates are inside the WGS84 reference frame.</p>
|
|
4018
|
+
* <p>Optional assistance position information, specified using latitude and longitude
|
|
4019
|
+
* values in degrees. The coordinates are inside the WGS84 reference frame.</p>
|
|
3995
4020
|
*/
|
|
3996
4021
|
AssistPosition?: number[];
|
|
3997
4022
|
/**
|
|
3998
4023
|
* @public
|
|
3999
|
-
* <p>Optional assistance altitude, which is the altitude of the device at capture time,
|
|
4000
|
-
*
|
|
4024
|
+
* <p>Optional assistance altitude, which is the altitude of the device at capture time,
|
|
4025
|
+
* specified in meters above the WGS84 reference ellipsoid.</p>
|
|
4001
4026
|
*/
|
|
4002
4027
|
AssistAltitude?: number;
|
|
4003
4028
|
/**
|
|
4004
4029
|
* @public
|
|
4005
|
-
* <p>Optional parameter that forces 2D solve, which modifies the positioning algorithm to a
|
|
4006
|
-
*
|
|
4030
|
+
* <p>Optional parameter that forces 2D solve, which modifies the positioning algorithm to a
|
|
4031
|
+
* 2D solution problem. When this parameter is specified, the assistance altitude should
|
|
4032
|
+
* have an accuracy of at least 10 meters.</p>
|
|
4007
4033
|
*/
|
|
4008
4034
|
Use2DSolver?: boolean;
|
|
4009
4035
|
}
|
|
@@ -4077,9 +4103,11 @@ export interface GetPositionEstimateRequest {
|
|
|
4077
4103
|
export interface GetPositionEstimateResponse {
|
|
4078
4104
|
/**
|
|
4079
4105
|
* @public
|
|
4080
|
-
* <p>The position information of the resource, displayed as a JSON payload. The payload
|
|
4081
|
-
* uses the GeoJSON format,
|
|
4082
|
-
*
|
|
4106
|
+
* <p>The position information of the resource, displayed as a JSON payload. The payload is
|
|
4107
|
+
* of type blob and uses the <a href="https://geojson.org/">GeoJSON</a> format,
|
|
4108
|
+
* which a format that's used to encode geographic data structures. A sample payload
|
|
4109
|
+
* contains the timestamp information, the WGS84 coordinates of the location, and the
|
|
4110
|
+
* accuracy and confidence level. For more information and examples, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/location-resolve-console.html">Resolve device location (console)</a>.</p>
|
|
4083
4111
|
*/
|
|
4084
4112
|
GeoJsonPayload?: Uint8Array;
|
|
4085
4113
|
}
|
|
@@ -4536,7 +4564,8 @@ export interface GetWirelessDeviceImportTaskRequest {
|
|
|
4536
4564
|
}
|
|
4537
4565
|
/**
|
|
4538
4566
|
* @public
|
|
4539
|
-
* <p>Sidewalk-related information for devices in an import task that are being
|
|
4567
|
+
* <p>Sidewalk-related information for devices in an import task that are being
|
|
4568
|
+
* onboarded.</p>
|
|
4540
4569
|
*/
|
|
4541
4570
|
export interface SidewalkGetStartImportInfo {
|
|
4542
4571
|
/**
|
|
@@ -4546,7 +4575,8 @@ export interface SidewalkGetStartImportInfo {
|
|
|
4546
4575
|
DeviceCreationFileList?: string[];
|
|
4547
4576
|
/**
|
|
4548
4577
|
* @public
|
|
4549
|
-
* <p>The IAM role that allows AWS IoT Wireless to access the CSV file in the S3
|
|
4578
|
+
* <p>The IAM role that allows AWS IoT Wireless to access the CSV file in the S3
|
|
4579
|
+
* bucket.</p>
|
|
4550
4580
|
*/
|
|
4551
4581
|
Role?: string;
|
|
4552
4582
|
}
|
|
@@ -4582,7 +4612,8 @@ export interface GetWirelessDeviceImportTaskResponse {
|
|
|
4582
4612
|
Arn?: string;
|
|
4583
4613
|
/**
|
|
4584
4614
|
* @public
|
|
4585
|
-
* <p>The name of the destination that's assigned to the wireless devices in the import
|
|
4615
|
+
* <p>The name of the destination that's assigned to the wireless devices in the import
|
|
4616
|
+
* task.</p>
|
|
4586
4617
|
*/
|
|
4587
4618
|
DestinationName?: string;
|
|
4588
4619
|
/**
|
|
@@ -4602,28 +4633,32 @@ export interface GetWirelessDeviceImportTaskResponse {
|
|
|
4602
4633
|
Status?: ImportTaskStatus;
|
|
4603
4634
|
/**
|
|
4604
4635
|
* @public
|
|
4605
|
-
* <p>The reason for the provided status information, such as a validation error that causes
|
|
4606
|
-
*
|
|
4636
|
+
* <p>The reason for the provided status information, such as a validation error that causes
|
|
4637
|
+
* the import task to fail.</p>
|
|
4607
4638
|
*/
|
|
4608
4639
|
StatusReason?: string;
|
|
4609
4640
|
/**
|
|
4610
4641
|
* @public
|
|
4611
|
-
* <p>The number of devices in the import task that are waiting for the control log to start
|
|
4642
|
+
* <p>The number of devices in the import task that are waiting for the control log to start
|
|
4643
|
+
* processing.</p>
|
|
4612
4644
|
*/
|
|
4613
4645
|
InitializedImportedDeviceCount?: number;
|
|
4614
4646
|
/**
|
|
4615
4647
|
* @public
|
|
4616
|
-
* <p>The number of devices in the import task that are waiting in the import task queue to
|
|
4648
|
+
* <p>The number of devices in the import task that are waiting in the import task queue to
|
|
4649
|
+
* be onboarded.</p>
|
|
4617
4650
|
*/
|
|
4618
4651
|
PendingImportedDeviceCount?: number;
|
|
4619
4652
|
/**
|
|
4620
4653
|
* @public
|
|
4621
|
-
* <p>The number of devices in the import task that have been onboarded to the import
|
|
4654
|
+
* <p>The number of devices in the import task that have been onboarded to the import
|
|
4655
|
+
* task.</p>
|
|
4622
4656
|
*/
|
|
4623
4657
|
OnboardedImportedDeviceCount?: number;
|
|
4624
4658
|
/**
|
|
4625
4659
|
* @public
|
|
4626
|
-
* <p>The number of devices in the import task that failed to onboard to the import
|
|
4660
|
+
* <p>The number of devices in the import task that failed to onboard to the import
|
|
4661
|
+
* task.</p>
|
|
4627
4662
|
*/
|
|
4628
4663
|
FailedImportedDeviceCount?: number;
|
|
4629
4664
|
}
|
|
@@ -5034,7 +5069,8 @@ export interface ImportedSidewalkDevice {
|
|
|
5034
5069
|
export interface ImportedWirelessDevice {
|
|
5035
5070
|
/**
|
|
5036
5071
|
* @public
|
|
5037
|
-
* <p>The Sidewalk-related information about a device that has been added to an import
|
|
5072
|
+
* <p>The Sidewalk-related information about a device that has been added to an import
|
|
5073
|
+
* task.</p>
|
|
5038
5074
|
*/
|
|
5039
5075
|
Sidewalk?: ImportedSidewalkDevice;
|
|
5040
5076
|
}
|
|
@@ -5088,8 +5124,8 @@ export interface ListDeviceProfilesRequest {
|
|
|
5088
5124
|
MaxResults?: number;
|
|
5089
5125
|
/**
|
|
5090
5126
|
* @public
|
|
5091
|
-
* <p>A filter to list only device profiles that use this type, which can be
|
|
5092
|
-
*
|
|
5127
|
+
* <p>A filter to list only device profiles that use this type, which can be
|
|
5128
|
+
* <code>LoRaWAN</code> or <code>Sidewalk</code>.</p>
|
|
5093
5129
|
*/
|
|
5094
5130
|
DeviceProfileType?: DeviceProfileType;
|
|
5095
5131
|
}
|
|
@@ -5124,8 +5160,8 @@ export interface ListDevicesForWirelessDeviceImportTaskRequest {
|
|
|
5124
5160
|
MaxResults?: number;
|
|
5125
5161
|
/**
|
|
5126
5162
|
* @public
|
|
5127
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5128
|
-
*
|
|
5163
|
+
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5164
|
+
* response; otherwise <code>null</code> to receive the first set of results.</p>
|
|
5129
5165
|
*/
|
|
5130
5166
|
NextToken?: string;
|
|
5131
5167
|
/**
|
|
@@ -5140,14 +5176,14 @@ export interface ListDevicesForWirelessDeviceImportTaskRequest {
|
|
|
5140
5176
|
export interface ListDevicesForWirelessDeviceImportTaskResponse {
|
|
5141
5177
|
/**
|
|
5142
5178
|
* @public
|
|
5143
|
-
* <p>The token to use to get the next set of results, or <code>null</code> if there are no
|
|
5144
|
-
*
|
|
5179
|
+
* <p>The token to use to get the next set of results, or <code>null</code> if there are no
|
|
5180
|
+
* additional results.</p>
|
|
5145
5181
|
*/
|
|
5146
5182
|
NextToken?: string;
|
|
5147
5183
|
/**
|
|
5148
5184
|
* @public
|
|
5149
|
-
* <p>The name of the Sidewalk destination that describes the IoT rule to route messages
|
|
5150
|
-
*
|
|
5185
|
+
* <p>The name of the Sidewalk destination that describes the IoT rule to route messages
|
|
5186
|
+
* received from devices in an import task that are onboarded to AWS IoT Wireless.</p>
|
|
5151
5187
|
*/
|
|
5152
5188
|
DestinationName?: string;
|
|
5153
5189
|
/**
|
|
@@ -5608,8 +5644,8 @@ export interface ListWirelessDeviceImportTasksRequest {
|
|
|
5608
5644
|
MaxResults?: number;
|
|
5609
5645
|
/**
|
|
5610
5646
|
* @public
|
|
5611
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5612
|
-
*
|
|
5647
|
+
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5648
|
+
* response; otherwise <code>null</code> to receive the first set of results.</p>
|
|
5613
5649
|
*/
|
|
5614
5650
|
NextToken?: string;
|
|
5615
5651
|
}
|
|
@@ -5630,8 +5666,9 @@ export interface WirelessDeviceImportTask {
|
|
|
5630
5666
|
Arn?: string;
|
|
5631
5667
|
/**
|
|
5632
5668
|
* @public
|
|
5633
|
-
* <p>The name of the Sidewalk destination that that describes the IoT rule to route
|
|
5634
|
-
*
|
|
5669
|
+
* <p>The name of the Sidewalk destination that that describes the IoT rule to route
|
|
5670
|
+
* messages from the device in the import task that will be onboarded to AWS IoT
|
|
5671
|
+
* Wireless</p>
|
|
5635
5672
|
*/
|
|
5636
5673
|
DestinationName?: string;
|
|
5637
5674
|
/**
|
|
@@ -5656,26 +5693,26 @@ export interface WirelessDeviceImportTask {
|
|
|
5656
5693
|
StatusReason?: string;
|
|
5657
5694
|
/**
|
|
5658
5695
|
* @public
|
|
5659
|
-
* <p>The summary information of count of wireless devices that are waiting for the control
|
|
5660
|
-
*
|
|
5696
|
+
* <p>The summary information of count of wireless devices that are waiting for the control
|
|
5697
|
+
* log to be added to an import task.</p>
|
|
5661
5698
|
*/
|
|
5662
5699
|
InitializedImportedDeviceCount?: number;
|
|
5663
5700
|
/**
|
|
5664
5701
|
* @public
|
|
5665
|
-
* <p>The summary information of count of wireless devices in an import task that are
|
|
5666
|
-
*
|
|
5702
|
+
* <p>The summary information of count of wireless devices in an import task that are
|
|
5703
|
+
* waiting in the queue to be onboarded.</p>
|
|
5667
5704
|
*/
|
|
5668
5705
|
PendingImportedDeviceCount?: number;
|
|
5669
5706
|
/**
|
|
5670
5707
|
* @public
|
|
5671
|
-
* <p>The summary information of count of wireless devices in an import task that have been
|
|
5672
|
-
*
|
|
5708
|
+
* <p>The summary information of count of wireless devices in an import task that have been
|
|
5709
|
+
* onboarded to the import task.</p>
|
|
5673
5710
|
*/
|
|
5674
5711
|
OnboardedImportedDeviceCount?: number;
|
|
5675
5712
|
/**
|
|
5676
5713
|
* @public
|
|
5677
|
-
* <p>The summary information of count of wireless devices in an import task that failed to
|
|
5678
|
-
*
|
|
5714
|
+
* <p>The summary information of count of wireless devices in an import task that failed to
|
|
5715
|
+
* onboarded to the import task.</p>
|
|
5679
5716
|
*/
|
|
5680
5717
|
FailedImportedDeviceCount?: number;
|
|
5681
5718
|
}
|
|
@@ -5685,13 +5722,14 @@ export interface WirelessDeviceImportTask {
|
|
|
5685
5722
|
export interface ListWirelessDeviceImportTasksResponse {
|
|
5686
5723
|
/**
|
|
5687
5724
|
* @public
|
|
5688
|
-
* <p>The token to use to get the next set of results, or <code>null</code> if there are no
|
|
5689
|
-
*
|
|
5725
|
+
* <p>The token to use to get the next set of results, or <code>null</code> if there are no
|
|
5726
|
+
* additional results.</p>
|
|
5690
5727
|
*/
|
|
5691
5728
|
NextToken?: string;
|
|
5692
5729
|
/**
|
|
5693
5730
|
* @public
|
|
5694
|
-
* <p>List of import tasks and summary information of onboarding status of devices in each
|
|
5731
|
+
* <p>List of import tasks and summary information of onboarding status of devices in each
|
|
5732
|
+
* import task.</p>
|
|
5695
5733
|
*/
|
|
5696
5734
|
WirelessDeviceImportTaskList?: WirelessDeviceImportTask[];
|
|
5697
5735
|
}
|
|
@@ -646,7 +646,8 @@ export interface StartMulticastGroupSessionResponse {
|
|
|
646
646
|
export interface SidewalkSingleStartImportInfo {
|
|
647
647
|
/**
|
|
648
648
|
* @public
|
|
649
|
-
* <p>The Sidewalk manufacturing serial number (SMSN) of the device added to the import
|
|
649
|
+
* <p>The Sidewalk manufacturing serial number (SMSN) of the device added to the import
|
|
650
|
+
* task.</p>
|
|
650
651
|
*/
|
|
651
652
|
SidewalkManufacturingSn?: string;
|
|
652
653
|
}
|
|
@@ -656,8 +657,8 @@ export interface SidewalkSingleStartImportInfo {
|
|
|
656
657
|
export interface StartSingleWirelessDeviceImportTaskRequest {
|
|
657
658
|
/**
|
|
658
659
|
* @public
|
|
659
|
-
* <p>The name of the Sidewalk destination that describes the IoT rule to route messages
|
|
660
|
-
*
|
|
660
|
+
* <p>The name of the Sidewalk destination that describes the IoT rule to route messages
|
|
661
|
+
* from the device in the import task that will be onboarded to AWS IoT Wireless.</p>
|
|
661
662
|
*/
|
|
662
663
|
DestinationName: string | undefined;
|
|
663
664
|
/**
|
|
@@ -707,12 +708,14 @@ export interface StartSingleWirelessDeviceImportTaskResponse {
|
|
|
707
708
|
export interface SidewalkStartImportInfo {
|
|
708
709
|
/**
|
|
709
710
|
* @public
|
|
710
|
-
* <p>The CSV file contained in an S3 bucket that's used for adding devices to an import
|
|
711
|
+
* <p>The CSV file contained in an S3 bucket that's used for adding devices to an import
|
|
712
|
+
* task.</p>
|
|
711
713
|
*/
|
|
712
714
|
DeviceCreationFile?: string;
|
|
713
715
|
/**
|
|
714
716
|
* @public
|
|
715
|
-
* <p>The IAM role that allows AWS IoT Wireless to access the CSV file in the S3
|
|
717
|
+
* <p>The IAM role that allows AWS IoT Wireless to access the CSV file in the S3
|
|
718
|
+
* bucket.</p>
|
|
716
719
|
*/
|
|
717
720
|
Role?: string;
|
|
718
721
|
}
|
|
@@ -722,8 +725,8 @@ export interface SidewalkStartImportInfo {
|
|
|
722
725
|
export interface StartWirelessDeviceImportTaskRequest {
|
|
723
726
|
/**
|
|
724
727
|
* @public
|
|
725
|
-
* <p>The name of the Sidewalk destination that describes the IoT rule to route messages
|
|
726
|
-
*
|
|
728
|
+
* <p>The name of the Sidewalk destination that describes the IoT rule to route messages
|
|
729
|
+
* from the devices in the import task that are onboarded to AWS IoT Wireless.</p>
|
|
727
730
|
*/
|
|
728
731
|
DestinationName: string | undefined;
|
|
729
732
|
/**
|
|
@@ -742,7 +745,8 @@ export interface StartWirelessDeviceImportTaskRequest {
|
|
|
742
745
|
Tags?: Tag[];
|
|
743
746
|
/**
|
|
744
747
|
* @public
|
|
745
|
-
* <p>The Sidewalk-related parameters for importing wireless devices that need to be
|
|
748
|
+
* <p>The Sidewalk-related parameters for importing wireless devices that need to be
|
|
749
|
+
* provisioned in bulk.</p>
|
|
746
750
|
*/
|
|
747
751
|
Sidewalk: SidewalkStartImportInfo | undefined;
|
|
748
752
|
}
|
|
@@ -1050,7 +1054,7 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
|
1050
1054
|
ConfigurationName: string | undefined;
|
|
1051
1055
|
/**
|
|
1052
1056
|
* @public
|
|
1053
|
-
* <p>Trace content for your wireless
|
|
1057
|
+
* <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
|
|
1054
1058
|
*/
|
|
1055
1059
|
TraceContent?: TraceContent;
|
|
1056
1060
|
/**
|
|
@@ -1091,7 +1095,7 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
|
1091
1095
|
/**
|
|
1092
1096
|
* @public
|
|
1093
1097
|
* <p>Multicast group resources to remove from the network analyzer configuration. Provide the
|
|
1094
|
-
* <code>MulticastGroupId</code> of the
|
|
1098
|
+
* <code>MulticastGroupId</code> of the resources to remove in the input array.</p>
|
|
1095
1099
|
*/
|
|
1096
1100
|
MulticastGroupsToRemove?: string[];
|
|
1097
1101
|
}
|
|
@@ -1219,20 +1223,22 @@ export interface UpdateResourceEventConfigurationResponse {
|
|
|
1219
1223
|
export interface UpdateResourcePositionRequest {
|
|
1220
1224
|
/**
|
|
1221
1225
|
* @public
|
|
1222
|
-
* <p>The identifier of the resource for which position information is updated. It can be
|
|
1223
|
-
* wireless device ID or the wireless gateway ID, depending on the resource
|
|
1226
|
+
* <p>The identifier of the resource for which position information is updated. It can be
|
|
1227
|
+
* the wireless device ID or the wireless gateway ID, depending on the resource
|
|
1228
|
+
* type.</p>
|
|
1224
1229
|
*/
|
|
1225
1230
|
ResourceIdentifier: string | undefined;
|
|
1226
1231
|
/**
|
|
1227
1232
|
* @public
|
|
1228
|
-
* <p>The type of resource for which position information is updated, which can be a
|
|
1229
|
-
*
|
|
1233
|
+
* <p>The type of resource for which position information is updated, which can be a
|
|
1234
|
+
* wireless device or a wireless gateway.</p>
|
|
1230
1235
|
*/
|
|
1231
1236
|
ResourceType: PositionResourceType | undefined;
|
|
1232
1237
|
/**
|
|
1233
1238
|
* @public
|
|
1234
|
-
* <p>The position information of the resource, displayed as a JSON payload. The payload
|
|
1235
|
-
*
|
|
1239
|
+
* <p>The position information of the resource, displayed as a JSON payload. The payload
|
|
1240
|
+
* uses the GeoJSON format, which a format that's used to encode geographic data
|
|
1241
|
+
* structures. For more information, see <a href="https://geojson.org/">GeoJSON</a>.</p>
|
|
1236
1242
|
*/
|
|
1237
1243
|
GeoJsonPayload?: Uint8Array;
|
|
1238
1244
|
}
|
|
@@ -1275,7 +1281,8 @@ export interface UpdateFPorts {
|
|
|
1275
1281
|
Positioning?: Positioning;
|
|
1276
1282
|
/**
|
|
1277
1283
|
* @public
|
|
1278
|
-
* <p>LoRaWAN application, which can be used for geolocation by activating
|
|
1284
|
+
* <p>LoRaWAN application, which can be used for geolocation by activating
|
|
1285
|
+
* positioning.</p>
|
|
1279
1286
|
*/
|
|
1280
1287
|
Applications?: ApplicationConfig[];
|
|
1281
1288
|
}
|
|
@@ -1358,7 +1365,8 @@ export interface UpdateWirelessDeviceResponse {
|
|
|
1358
1365
|
export interface SidewalkUpdateImportInfo {
|
|
1359
1366
|
/**
|
|
1360
1367
|
* @public
|
|
1361
|
-
* <p>The CSV file contained in an S3 bucket that's used for appending devices to an
|
|
1368
|
+
* <p>The CSV file contained in an S3 bucket that's used for appending devices to an
|
|
1369
|
+
* existing import task.</p>
|
|
1362
1370
|
*/
|
|
1363
1371
|
DeviceCreationFile?: string;
|
|
1364
1372
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from "./IoTWirelessClient";
|
|
2
2
|
export * from "./IoTWireless";
|
|
3
3
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { IoTWirelessExtensionConfiguration } from "./extensionConfiguration";
|
|
4
6
|
export * from "./commands";
|
|
5
7
|
export * from "./pagination";
|
|
6
8
|
export * from "./models";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-wireless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.445.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.445.0",
|
|
25
|
+
"@aws-sdk/core": "3.445.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.445.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|