cdk-docker-image-deployment 0.0.86 → 0.0.88
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +23 -1
- package/node_modules/aws-sdk/README.md +29 -1
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +441 -110
- package/node_modules/aws-sdk/apis/backup-2018-11-15.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +124 -45
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +331 -215
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +252 -214
- package/node_modules/aws-sdk/apis/iot-data-2015-05-28.min.json +26 -0
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +686 -105
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +43 -8
- package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +97 -16
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +931 -118
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +23 -14
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +4 -1
- package/node_modules/aws-sdk/apis/oam-2022-06-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/oam-2022-06-10.min.json +482 -0
- package/node_modules/aws-sdk/apis/oam-2022-06-10.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/organizations-2016-11-28.min.json +62 -16
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +379 -236
- package/node_modules/aws-sdk/apis/rds-2014-10-31.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/textract-2018-06-27.min.json +310 -62
- package/node_modules/aws-sdk/apis/transcribe-2017-10-26.min.json +98 -95
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/backup.d.ts +405 -15
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +30 -16
- package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +196 -65
- package/node_modules/aws-sdk/clients/drs.d.ts +104 -5
- package/node_modules/aws-sdk/clients/ecs.d.ts +159 -17
- package/node_modules/aws-sdk/clients/efs.d.ts +5 -5
- package/node_modules/aws-sdk/clients/iot.d.ts +76 -4
- package/node_modules/aws-sdk/clients/iotdata.d.ts +31 -1
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +599 -14
- package/node_modules/aws-sdk/clients/kendra.d.ts +84 -39
- package/node_modules/aws-sdk/clients/mgn.d.ts +1046 -68
- package/node_modules/aws-sdk/clients/oam.d.ts +559 -0
- package/node_modules/aws-sdk/clients/oam.js +18 -0
- package/node_modules/aws-sdk/clients/organizations.d.ts +69 -8
- package/node_modules/aws-sdk/clients/rds.d.ts +199 -2
- package/node_modules/aws-sdk/clients/textract.d.ts +264 -0
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +210 -191
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +29 -10
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +91 -33
- package/node_modules/aws-sdk/dist/aws-sdk.js +1167 -707
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +59 -59
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/event_listeners.js +22 -5
- package/node_modules/aws-sdk/lib/region_config.js +3 -1
- package/node_modules/aws-sdk/lib/region_config_data.json +11 -1
- package/node_modules/aws-sdk/lib/signers/bearer.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +7 -6
|
@@ -372,21 +372,29 @@ declare class IoTWireless extends Service {
|
|
|
372
372
|
*/
|
|
373
373
|
getPartnerAccount(callback?: (err: AWSError, data: IoTWireless.Types.GetPartnerAccountResponse) => void): Request<IoTWireless.Types.GetPartnerAccountResponse, AWSError>;
|
|
374
374
|
/**
|
|
375
|
-
* Get the position information for a given resource.
|
|
375
|
+
* Get the position information for a given resource. This action is no longer supported. Calls to retrieve the position information should use the GetResourcePosition API operation instead.
|
|
376
376
|
*/
|
|
377
377
|
getPosition(params: IoTWireless.Types.GetPositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetPositionResponse) => void): Request<IoTWireless.Types.GetPositionResponse, AWSError>;
|
|
378
378
|
/**
|
|
379
|
-
* Get the position information for a given resource.
|
|
379
|
+
* Get the position information for a given resource. This action is no longer supported. Calls to retrieve the position information should use the GetResourcePosition API operation instead.
|
|
380
380
|
*/
|
|
381
381
|
getPosition(callback?: (err: AWSError, data: IoTWireless.Types.GetPositionResponse) => void): Request<IoTWireless.Types.GetPositionResponse, AWSError>;
|
|
382
382
|
/**
|
|
383
|
-
* Get position configuration for a given resource.
|
|
383
|
+
* Get position configuration for a given resource. This action is no longer supported. Calls to retrieve the position configuration should use the GetResourcePosition API operation instead.
|
|
384
384
|
*/
|
|
385
385
|
getPositionConfiguration(params: IoTWireless.Types.GetPositionConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetPositionConfigurationResponse) => void): Request<IoTWireless.Types.GetPositionConfigurationResponse, AWSError>;
|
|
386
386
|
/**
|
|
387
|
-
* Get position configuration for a given resource.
|
|
387
|
+
* Get position configuration for a given resource. This action is no longer supported. Calls to retrieve the position configuration should use the GetResourcePosition API operation instead.
|
|
388
388
|
*/
|
|
389
389
|
getPositionConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.GetPositionConfigurationResponse) => void): Request<IoTWireless.Types.GetPositionConfigurationResponse, AWSError>;
|
|
390
|
+
/**
|
|
391
|
+
* Get estimated position information as a payload in GeoJSON format. The payload measurement data is resolved using solvers that are provided by third-party vendors.
|
|
392
|
+
*/
|
|
393
|
+
getPositionEstimate(params: IoTWireless.Types.GetPositionEstimateRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetPositionEstimateResponse) => void): Request<IoTWireless.Types.GetPositionEstimateResponse, AWSError>;
|
|
394
|
+
/**
|
|
395
|
+
* Get estimated position information as a payload in GeoJSON format. The payload measurement data is resolved using solvers that are provided by third-party vendors.
|
|
396
|
+
*/
|
|
397
|
+
getPositionEstimate(callback?: (err: AWSError, data: IoTWireless.Types.GetPositionEstimateResponse) => void): Request<IoTWireless.Types.GetPositionEstimateResponse, AWSError>;
|
|
390
398
|
/**
|
|
391
399
|
* Get the event configuration for a particular resource identifier.
|
|
392
400
|
*/
|
|
@@ -403,6 +411,14 @@ declare class IoTWireless extends Service {
|
|
|
403
411
|
* Fetches the log-level override, if any, for a given resource-ID and resource-type. It can be used for a wireless device or a wireless gateway.
|
|
404
412
|
*/
|
|
405
413
|
getResourceLogLevel(callback?: (err: AWSError, data: IoTWireless.Types.GetResourceLogLevelResponse) => void): Request<IoTWireless.Types.GetResourceLogLevelResponse, AWSError>;
|
|
414
|
+
/**
|
|
415
|
+
* Get the position information for a given wireless device or a wireless gateway resource. The postion information uses the World Geodetic System (WGS84).
|
|
416
|
+
*/
|
|
417
|
+
getResourcePosition(params: IoTWireless.Types.GetResourcePositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetResourcePositionResponse) => void): Request<IoTWireless.Types.GetResourcePositionResponse, AWSError>;
|
|
418
|
+
/**
|
|
419
|
+
* Get the position information for a given wireless device or a wireless gateway resource. The postion information uses the World Geodetic System (WGS84).
|
|
420
|
+
*/
|
|
421
|
+
getResourcePosition(callback?: (err: AWSError, data: IoTWireless.Types.GetResourcePositionResponse) => void): Request<IoTWireless.Types.GetResourcePositionResponse, AWSError>;
|
|
406
422
|
/**
|
|
407
423
|
* Gets the account-specific endpoint for Configuration and Update Server (CUPS) protocol or LoRaWAN Network Server (LNS) connections.
|
|
408
424
|
*/
|
|
@@ -548,11 +564,11 @@ declare class IoTWireless extends Service {
|
|
|
548
564
|
*/
|
|
549
565
|
listPartnerAccounts(callback?: (err: AWSError, data: IoTWireless.Types.ListPartnerAccountsResponse) => void): Request<IoTWireless.Types.ListPartnerAccountsResponse, AWSError>;
|
|
550
566
|
/**
|
|
551
|
-
* List position configurations for a given resource, such as positioning solvers.
|
|
567
|
+
* List position configurations for a given resource, such as positioning solvers. This action is no longer supported. Calls to retrieve position information should use the GetResourcePosition API operation instead.
|
|
552
568
|
*/
|
|
553
569
|
listPositionConfigurations(params: IoTWireless.Types.ListPositionConfigurationsRequest, callback?: (err: AWSError, data: IoTWireless.Types.ListPositionConfigurationsResponse) => void): Request<IoTWireless.Types.ListPositionConfigurationsResponse, AWSError>;
|
|
554
570
|
/**
|
|
555
|
-
* List position configurations for a given resource, such as positioning solvers.
|
|
571
|
+
* List position configurations for a given resource, such as positioning solvers. This action is no longer supported. Calls to retrieve position information should use the GetResourcePosition API operation instead.
|
|
556
572
|
*/
|
|
557
573
|
listPositionConfigurations(callback?: (err: AWSError, data: IoTWireless.Types.ListPositionConfigurationsResponse) => void): Request<IoTWireless.Types.ListPositionConfigurationsResponse, AWSError>;
|
|
558
574
|
/**
|
|
@@ -604,11 +620,11 @@ declare class IoTWireless extends Service {
|
|
|
604
620
|
*/
|
|
605
621
|
listWirelessGateways(callback?: (err: AWSError, data: IoTWireless.Types.ListWirelessGatewaysResponse) => void): Request<IoTWireless.Types.ListWirelessGatewaysResponse, AWSError>;
|
|
606
622
|
/**
|
|
607
|
-
* Put position configuration for a given resource.
|
|
623
|
+
* Put position configuration for a given resource. This action is no longer supported. Calls to update the position configuration should use the UpdateResourcePosition API operation instead.
|
|
608
624
|
*/
|
|
609
625
|
putPositionConfiguration(params: IoTWireless.Types.PutPositionConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.PutPositionConfigurationResponse) => void): Request<IoTWireless.Types.PutPositionConfigurationResponse, AWSError>;
|
|
610
626
|
/**
|
|
611
|
-
* Put position configuration for a given resource.
|
|
627
|
+
* Put position configuration for a given resource. This action is no longer supported. Calls to update the position configuration should use the UpdateResourcePosition API operation instead.
|
|
612
628
|
*/
|
|
613
629
|
putPositionConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.PutPositionConfigurationResponse) => void): Request<IoTWireless.Types.PutPositionConfigurationResponse, AWSError>;
|
|
614
630
|
/**
|
|
@@ -764,11 +780,11 @@ declare class IoTWireless extends Service {
|
|
|
764
780
|
*/
|
|
765
781
|
updatePartnerAccount(callback?: (err: AWSError, data: IoTWireless.Types.UpdatePartnerAccountResponse) => void): Request<IoTWireless.Types.UpdatePartnerAccountResponse, AWSError>;
|
|
766
782
|
/**
|
|
767
|
-
* Update the position information of a resource.
|
|
783
|
+
* Update the position information of a resource. This action is no longer supported. Calls to update the position information should use the UpdateResourcePosition API operation instead.
|
|
768
784
|
*/
|
|
769
785
|
updatePosition(params: IoTWireless.Types.UpdatePositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdatePositionResponse) => void): Request<IoTWireless.Types.UpdatePositionResponse, AWSError>;
|
|
770
786
|
/**
|
|
771
|
-
* Update the position information of a resource.
|
|
787
|
+
* Update the position information of a resource. This action is no longer supported. Calls to update the position information should use the UpdateResourcePosition API operation instead.
|
|
772
788
|
*/
|
|
773
789
|
updatePosition(callback?: (err: AWSError, data: IoTWireless.Types.UpdatePositionResponse) => void): Request<IoTWireless.Types.UpdatePositionResponse, AWSError>;
|
|
774
790
|
/**
|
|
@@ -779,6 +795,14 @@ declare class IoTWireless extends Service {
|
|
|
779
795
|
* Update the event configuration for a particular resource identifier.
|
|
780
796
|
*/
|
|
781
797
|
updateResourceEventConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.UpdateResourceEventConfigurationResponse) => void): Request<IoTWireless.Types.UpdateResourceEventConfigurationResponse, AWSError>;
|
|
798
|
+
/**
|
|
799
|
+
* Update the position information of a given wireless device or a wireless gateway resource. The postion coordinates are based on the World Geodetic System (WGS84).
|
|
800
|
+
*/
|
|
801
|
+
updateResourcePosition(params: IoTWireless.Types.UpdateResourcePositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdateResourcePositionResponse) => void): Request<IoTWireless.Types.UpdateResourcePositionResponse, AWSError>;
|
|
802
|
+
/**
|
|
803
|
+
* Update the position information of a given wireless device or a wireless gateway resource. The postion coordinates are based on the World Geodetic System (WGS84).
|
|
804
|
+
*/
|
|
805
|
+
updateResourcePosition(callback?: (err: AWSError, data: IoTWireless.Types.UpdateResourcePositionResponse) => void): Request<IoTWireless.Types.UpdateResourcePositionResponse, AWSError>;
|
|
782
806
|
/**
|
|
783
807
|
* Updates properties of a wireless device.
|
|
784
808
|
*/
|
|
@@ -828,11 +852,11 @@ declare namespace IoTWireless {
|
|
|
828
852
|
export type AccountLinked = boolean;
|
|
829
853
|
export interface Accuracy {
|
|
830
854
|
/**
|
|
831
|
-
* The horizontal accuracy of the estimated position
|
|
855
|
+
* The horizontal accuracy of the estimated position, which is the difference between the estimated location and the actual device location.
|
|
832
856
|
*/
|
|
833
857
|
HorizontalAccuracy?: HorizontalAccuracy;
|
|
834
858
|
/**
|
|
835
|
-
* The vertical accuracy of the estimated position in meters.
|
|
859
|
+
* The vertical accuracy of the estimated position, which is the difference between the estimated altitude and actual device latitude in meters.
|
|
836
860
|
*/
|
|
837
861
|
VerticalAccuracy?: VerticalAccuracy;
|
|
838
862
|
}
|
|
@@ -844,6 +868,20 @@ declare namespace IoTWireless {
|
|
|
844
868
|
export type AppKey = string;
|
|
845
869
|
export type AppSKey = string;
|
|
846
870
|
export type AppServerPrivateKey = string;
|
|
871
|
+
export interface ApplicationConfig {
|
|
872
|
+
FPort?: FPort;
|
|
873
|
+
/**
|
|
874
|
+
* Application type, which can be specified to obtain real-time position information of your LoRaWAN device.
|
|
875
|
+
*/
|
|
876
|
+
Type?: ApplicationConfigType;
|
|
877
|
+
/**
|
|
878
|
+
* The name of the position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
|
|
879
|
+
*/
|
|
880
|
+
DestinationName?: DestinationName;
|
|
881
|
+
}
|
|
882
|
+
export type ApplicationConfigType = "SemtechGeolocation"|string;
|
|
883
|
+
export type Applications = ApplicationConfig[];
|
|
884
|
+
export type AssistPosition = Coordinate[];
|
|
847
885
|
export interface AssociateAwsAccountWithPartnerAccountRequest {
|
|
848
886
|
/**
|
|
849
887
|
* The Sidewalk account credentials.
|
|
@@ -927,6 +965,11 @@ declare namespace IoTWireless {
|
|
|
927
965
|
export interface AssociateWirelessGatewayWithThingResponse {
|
|
928
966
|
}
|
|
929
967
|
export type AutoCreateTasks = boolean;
|
|
968
|
+
export type BCCH = number;
|
|
969
|
+
export type BSIC = number;
|
|
970
|
+
export type BaseLat = number;
|
|
971
|
+
export type BaseLng = number;
|
|
972
|
+
export type BaseStationId = number;
|
|
930
973
|
export type BatteryLevel = "normal"|"low"|"critical"|string;
|
|
931
974
|
export interface Beaconing {
|
|
932
975
|
/**
|
|
@@ -946,6 +989,99 @@ declare namespace IoTWireless {
|
|
|
946
989
|
}
|
|
947
990
|
export interface CancelMulticastGroupSessionResponse {
|
|
948
991
|
}
|
|
992
|
+
export type CaptureTimeAccuracy = number;
|
|
993
|
+
export type CdmaChannel = number;
|
|
994
|
+
export type CdmaList = CdmaObj[];
|
|
995
|
+
export interface CdmaLocalId {
|
|
996
|
+
/**
|
|
997
|
+
* Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio tower.
|
|
998
|
+
*/
|
|
999
|
+
PnOffset: PnOffset;
|
|
1000
|
+
/**
|
|
1001
|
+
* CDMA channel information.
|
|
1002
|
+
*/
|
|
1003
|
+
CdmaChannel: CdmaChannel;
|
|
1004
|
+
}
|
|
1005
|
+
export type CdmaNmrList = CdmaNmrObj[];
|
|
1006
|
+
export interface CdmaNmrObj {
|
|
1007
|
+
/**
|
|
1008
|
+
* Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio tower.
|
|
1009
|
+
*/
|
|
1010
|
+
PnOffset: PnOffset;
|
|
1011
|
+
/**
|
|
1012
|
+
* CDMA channel information.
|
|
1013
|
+
*/
|
|
1014
|
+
CdmaChannel: CdmaChannel;
|
|
1015
|
+
/**
|
|
1016
|
+
* Transmit power level of the pilot signal, measured in dBm (decibel-milliwatts).
|
|
1017
|
+
*/
|
|
1018
|
+
PilotPower?: PilotPower;
|
|
1019
|
+
/**
|
|
1020
|
+
* CDMA base station ID (BSID).
|
|
1021
|
+
*/
|
|
1022
|
+
BaseStationId?: BaseStationId;
|
|
1023
|
+
}
|
|
1024
|
+
export interface CdmaObj {
|
|
1025
|
+
/**
|
|
1026
|
+
* CDMA system ID (SID).
|
|
1027
|
+
*/
|
|
1028
|
+
SystemId: SystemId;
|
|
1029
|
+
/**
|
|
1030
|
+
* CDMA network ID (NID).
|
|
1031
|
+
*/
|
|
1032
|
+
NetworkId: NetworkId;
|
|
1033
|
+
/**
|
|
1034
|
+
* CDMA base station ID (BSID).
|
|
1035
|
+
*/
|
|
1036
|
+
BaseStationId: BaseStationId;
|
|
1037
|
+
/**
|
|
1038
|
+
* CDMA registration zone (RZ).
|
|
1039
|
+
*/
|
|
1040
|
+
RegistrationZone?: RegistrationZone;
|
|
1041
|
+
/**
|
|
1042
|
+
* CDMA local identification (local ID) parameters.
|
|
1043
|
+
*/
|
|
1044
|
+
CdmaLocalId?: CdmaLocalId;
|
|
1045
|
+
/**
|
|
1046
|
+
* Transmit power level of the pilot signal, measured in dBm (decibel-milliwatts).
|
|
1047
|
+
*/
|
|
1048
|
+
PilotPower?: PilotPower;
|
|
1049
|
+
/**
|
|
1050
|
+
* CDMA base station latitude in degrees.
|
|
1051
|
+
*/
|
|
1052
|
+
BaseLat?: BaseLat;
|
|
1053
|
+
/**
|
|
1054
|
+
* CDMA base station longtitude in degrees.
|
|
1055
|
+
*/
|
|
1056
|
+
BaseLng?: BaseLng;
|
|
1057
|
+
/**
|
|
1058
|
+
* CDMA network measurement reports.
|
|
1059
|
+
*/
|
|
1060
|
+
CdmaNmr?: CdmaNmrList;
|
|
1061
|
+
}
|
|
1062
|
+
export type CellParams = number;
|
|
1063
|
+
export interface CellTowers {
|
|
1064
|
+
/**
|
|
1065
|
+
* GSM object information.
|
|
1066
|
+
*/
|
|
1067
|
+
Gsm?: GsmList;
|
|
1068
|
+
/**
|
|
1069
|
+
* WCDMA object information.
|
|
1070
|
+
*/
|
|
1071
|
+
Wcdma?: WcdmaList;
|
|
1072
|
+
/**
|
|
1073
|
+
* TD-SCDMA object information.
|
|
1074
|
+
*/
|
|
1075
|
+
Tdscdma?: TdscdmaList;
|
|
1076
|
+
/**
|
|
1077
|
+
* LTE object information.
|
|
1078
|
+
*/
|
|
1079
|
+
Lte?: LteList;
|
|
1080
|
+
/**
|
|
1081
|
+
* CDMA object information.
|
|
1082
|
+
*/
|
|
1083
|
+
Cdma?: CdmaList;
|
|
1084
|
+
}
|
|
949
1085
|
export interface CertificateList {
|
|
950
1086
|
/**
|
|
951
1087
|
* The certificate chain algorithm provided by sidewalk.
|
|
@@ -979,6 +1115,7 @@ declare namespace IoTWireless {
|
|
|
979
1115
|
*/
|
|
980
1116
|
LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration;
|
|
981
1117
|
}
|
|
1118
|
+
export type Coordinate = number;
|
|
982
1119
|
export type Crc = number;
|
|
983
1120
|
export interface CreateDestinationRequest {
|
|
984
1121
|
/**
|
|
@@ -1157,6 +1294,10 @@ declare namespace IoTWireless {
|
|
|
1157
1294
|
* The tags to attach to the new wireless device. Tags are metadata that you can use to manage a resource.
|
|
1158
1295
|
*/
|
|
1159
1296
|
Tags?: TagList;
|
|
1297
|
+
/**
|
|
1298
|
+
* FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
|
|
1299
|
+
*/
|
|
1300
|
+
Positioning?: PositioningConfigStatus;
|
|
1160
1301
|
}
|
|
1161
1302
|
export interface CreateWirelessDeviceResponse {
|
|
1162
1303
|
/**
|
|
@@ -1253,6 +1394,7 @@ declare namespace IoTWireless {
|
|
|
1253
1394
|
Status?: WirelessGatewayTaskStatus;
|
|
1254
1395
|
}
|
|
1255
1396
|
export type CreatedAt = Date;
|
|
1397
|
+
export type CreationDate = Date;
|
|
1256
1398
|
export interface DeleteDestinationRequest {
|
|
1257
1399
|
/**
|
|
1258
1400
|
* The name of the resource to delete.
|
|
@@ -1492,7 +1634,9 @@ declare namespace IoTWireless {
|
|
|
1492
1634
|
export type DrMaxBox = number;
|
|
1493
1635
|
export type DrMin = number;
|
|
1494
1636
|
export type DrMinBox = number;
|
|
1637
|
+
export type EARFCN = number;
|
|
1495
1638
|
export type EndPoint = string;
|
|
1639
|
+
export type EutranCid = number;
|
|
1496
1640
|
export type Event = "discovered"|"lost"|"ack"|"nack"|"passthrough"|string;
|
|
1497
1641
|
export interface EventConfigurationItem {
|
|
1498
1642
|
/**
|
|
@@ -1548,6 +1692,10 @@ declare namespace IoTWireless {
|
|
|
1548
1692
|
* FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
|
|
1549
1693
|
*/
|
|
1550
1694
|
Positioning?: Positioning;
|
|
1695
|
+
/**
|
|
1696
|
+
* Optional LoRaWAN application information, which can be used for geolocation.
|
|
1697
|
+
*/
|
|
1698
|
+
Applications?: Applications;
|
|
1551
1699
|
}
|
|
1552
1700
|
export type FactoryPresetFreqsList = PresetFreq[];
|
|
1553
1701
|
export type Fingerprint = string;
|
|
@@ -1564,6 +1712,7 @@ declare namespace IoTWireless {
|
|
|
1564
1712
|
export type FuotaTaskList = FuotaTask[];
|
|
1565
1713
|
export type FuotaTaskName = string;
|
|
1566
1714
|
export type FuotaTaskStatus = "Pending"|"FuotaSession_Waiting"|"In_FuotaSession"|"FuotaDone"|"Delete_Waiting"|string;
|
|
1715
|
+
export type GPST = number;
|
|
1567
1716
|
export type GatewayEui = string;
|
|
1568
1717
|
export type GatewayList = GatewayListItem[];
|
|
1569
1718
|
export interface GatewayListItem {
|
|
@@ -1577,6 +1726,8 @@ declare namespace IoTWireless {
|
|
|
1577
1726
|
DownlinkFrequency: DownlinkFrequency;
|
|
1578
1727
|
}
|
|
1579
1728
|
export type GenAppKey = string;
|
|
1729
|
+
export type GeoJsonPayload = Buffer|Uint8Array|Blob|string;
|
|
1730
|
+
export type GeranCid = number;
|
|
1580
1731
|
export interface GetDestinationRequest {
|
|
1581
1732
|
/**
|
|
1582
1733
|
* The name of the resource to get.
|
|
@@ -1756,6 +1907,34 @@ declare namespace IoTWireless {
|
|
|
1756
1907
|
*/
|
|
1757
1908
|
Destination?: DestinationName;
|
|
1758
1909
|
}
|
|
1910
|
+
export interface GetPositionEstimateRequest {
|
|
1911
|
+
/**
|
|
1912
|
+
* Retrieves an estimated device position by resolving WLAN measurement data. The position is resolved using HERE's Wi-Fi based solver.
|
|
1913
|
+
*/
|
|
1914
|
+
WiFiAccessPoints?: WiFiAccessPoints;
|
|
1915
|
+
/**
|
|
1916
|
+
* Retrieves an estimated device position by resolving measurement data from cellular radio towers. The position is resolved using HERE's cellular-based solver.
|
|
1917
|
+
*/
|
|
1918
|
+
CellTowers?: CellTowers;
|
|
1919
|
+
/**
|
|
1920
|
+
* Retrieves an estimated device position by resolving the IP address information from the device. The position is resolved using MaxMind's IP-based solver.
|
|
1921
|
+
*/
|
|
1922
|
+
Ip?: Ip;
|
|
1923
|
+
/**
|
|
1924
|
+
* Retrieves an estimated device position by resolving the global navigation satellite system (GNSS) scan data. The position is resolved using the GNSS solver powered by LoRa Cloud.
|
|
1925
|
+
*/
|
|
1926
|
+
Gnss?: Gnss;
|
|
1927
|
+
/**
|
|
1928
|
+
* Optional information that specifies the time when the position information will be resolved. It uses the UNIX timestamp format. If not specified, the time at which the request was received will be used.
|
|
1929
|
+
*/
|
|
1930
|
+
Timestamp?: CreationDate;
|
|
1931
|
+
}
|
|
1932
|
+
export interface GetPositionEstimateResponse {
|
|
1933
|
+
/**
|
|
1934
|
+
* The position information of the resource, displayed as a JSON payload. The payload uses the GeoJSON format, which a format that's used to encode geographic data structures. For more information, see GeoJSON.
|
|
1935
|
+
*/
|
|
1936
|
+
GeoJsonPayload?: GeoJsonPayload;
|
|
1937
|
+
}
|
|
1759
1938
|
export interface GetPositionRequest {
|
|
1760
1939
|
/**
|
|
1761
1940
|
* Resource identifier used to retrieve the position information.
|
|
@@ -1838,6 +2017,22 @@ declare namespace IoTWireless {
|
|
|
1838
2017
|
export interface GetResourceLogLevelResponse {
|
|
1839
2018
|
LogLevel?: LogLevel;
|
|
1840
2019
|
}
|
|
2020
|
+
export interface GetResourcePositionRequest {
|
|
2021
|
+
/**
|
|
2022
|
+
* The identifier of the resource for which position information is retrieved. It can be the wireless device ID or the wireless gateway ID depending on the resource type.
|
|
2023
|
+
*/
|
|
2024
|
+
ResourceIdentifier: PositionResourceIdentifier;
|
|
2025
|
+
/**
|
|
2026
|
+
* The type of resource for which position information is retrieved, which can be a wireless device or a wireless gateway.
|
|
2027
|
+
*/
|
|
2028
|
+
ResourceType: PositionResourceType;
|
|
2029
|
+
}
|
|
2030
|
+
export interface GetResourcePositionResponse {
|
|
2031
|
+
/**
|
|
2032
|
+
* The position information of the resource, displayed as a JSON payload. The payload uses the GeoJSON format, which a format that's used to encode geographic data structures. For more information, see GeoJSON.
|
|
2033
|
+
*/
|
|
2034
|
+
GeoJsonPayload?: GeoJsonPayload;
|
|
2035
|
+
}
|
|
1841
2036
|
export interface GetServiceEndpointRequest {
|
|
1842
2037
|
/**
|
|
1843
2038
|
* The service type for which to get endpoint information about. Can be CUPS for the Configuration and Update Server endpoint, or LNS for the LoRaWAN Network Server endpoint or CLAIM for the global endpoint.
|
|
@@ -1933,6 +2128,10 @@ declare namespace IoTWireless {
|
|
|
1933
2128
|
* Sidewalk device object.
|
|
1934
2129
|
*/
|
|
1935
2130
|
Sidewalk?: SidewalkDevice;
|
|
2131
|
+
/**
|
|
2132
|
+
* FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
|
|
2133
|
+
*/
|
|
2134
|
+
Positioning?: PositioningConfigStatus;
|
|
1936
2135
|
}
|
|
1937
2136
|
export interface GetWirelessDeviceStatisticsRequest {
|
|
1938
2137
|
/**
|
|
@@ -2098,13 +2297,122 @@ declare namespace IoTWireless {
|
|
|
2098
2297
|
*/
|
|
2099
2298
|
Status?: WirelessGatewayTaskStatus;
|
|
2100
2299
|
}
|
|
2300
|
+
export interface GlobalIdentity {
|
|
2301
|
+
/**
|
|
2302
|
+
* Location area code of the global identity.
|
|
2303
|
+
*/
|
|
2304
|
+
Lac: LAC;
|
|
2305
|
+
/**
|
|
2306
|
+
* GERAN (GSM EDGE Radio Access Network) cell global identifier.
|
|
2307
|
+
*/
|
|
2308
|
+
GeranCid: GeranCid;
|
|
2309
|
+
}
|
|
2310
|
+
export interface Gnss {
|
|
2311
|
+
/**
|
|
2312
|
+
* Payload that contains the GNSS scan result, or NAV message, in hexadecimal notation.
|
|
2313
|
+
*/
|
|
2314
|
+
Payload: GnssNav;
|
|
2315
|
+
/**
|
|
2316
|
+
* Optional parameter that gives an estimate of the time when the GNSS scan information is taken, in seconds GPS time (GPST). If capture time is not specified, the local server time is used.
|
|
2317
|
+
*/
|
|
2318
|
+
CaptureTime?: GPST;
|
|
2319
|
+
/**
|
|
2320
|
+
* Optional value that gives the capture time estimate accuracy, in seconds. If capture time accuracy is not specified, default value of 300 is used.
|
|
2321
|
+
*/
|
|
2322
|
+
CaptureTimeAccuracy?: CaptureTimeAccuracy;
|
|
2323
|
+
/**
|
|
2324
|
+
* Optional assistance position information, specified using latitude and longitude values in degrees. The co-ordinates are inside the WGS84 reference frame.
|
|
2325
|
+
*/
|
|
2326
|
+
AssistPosition?: AssistPosition;
|
|
2327
|
+
/**
|
|
2328
|
+
* Optional assistance altitude, which is the altitude of the device at capture time, specified in meters above the WGS84 reference ellipsoid.
|
|
2329
|
+
*/
|
|
2330
|
+
AssistAltitude?: Coordinate;
|
|
2331
|
+
/**
|
|
2332
|
+
* Optional parameter that forces 2D solve, which modifies the positioning algorithm to a 2D solution problem. When this parameter is specified, the assistance altitude should have an accuracy of at least 10 meters.
|
|
2333
|
+
*/
|
|
2334
|
+
Use2DSolver?: Use2DSolver;
|
|
2335
|
+
}
|
|
2336
|
+
export type GnssNav = string;
|
|
2337
|
+
export type GsmList = GsmObj[];
|
|
2338
|
+
export interface GsmLocalId {
|
|
2339
|
+
/**
|
|
2340
|
+
* GSM base station identity code (BSIC).
|
|
2341
|
+
*/
|
|
2342
|
+
Bsic: BSIC;
|
|
2343
|
+
/**
|
|
2344
|
+
* GSM broadcast control channel.
|
|
2345
|
+
*/
|
|
2346
|
+
Bcch: BCCH;
|
|
2347
|
+
}
|
|
2348
|
+
export type GsmNmrList = GsmNmrObj[];
|
|
2349
|
+
export interface GsmNmrObj {
|
|
2350
|
+
/**
|
|
2351
|
+
* GSM base station identity code (BSIC).
|
|
2352
|
+
*/
|
|
2353
|
+
Bsic: BSIC;
|
|
2354
|
+
/**
|
|
2355
|
+
* GSM broadcast control channel.
|
|
2356
|
+
*/
|
|
2357
|
+
Bcch: BCCH;
|
|
2358
|
+
/**
|
|
2359
|
+
* Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).
|
|
2360
|
+
*/
|
|
2361
|
+
RxLevel?: RxLevel;
|
|
2362
|
+
/**
|
|
2363
|
+
* Global identity information of the GSM object.
|
|
2364
|
+
*/
|
|
2365
|
+
GlobalIdentity?: GlobalIdentity;
|
|
2366
|
+
}
|
|
2367
|
+
export interface GsmObj {
|
|
2368
|
+
/**
|
|
2369
|
+
* Mobile Country Code.
|
|
2370
|
+
*/
|
|
2371
|
+
Mcc: MCC;
|
|
2372
|
+
/**
|
|
2373
|
+
* Mobile Network Code.
|
|
2374
|
+
*/
|
|
2375
|
+
Mnc: MNC;
|
|
2376
|
+
/**
|
|
2377
|
+
* Location area code.
|
|
2378
|
+
*/
|
|
2379
|
+
Lac: LAC;
|
|
2380
|
+
/**
|
|
2381
|
+
* GERAN (GSM EDGE Radio Access Network) Cell Global Identifier.
|
|
2382
|
+
*/
|
|
2383
|
+
GeranCid: GeranCid;
|
|
2384
|
+
/**
|
|
2385
|
+
* GSM local identification (local ID) information.
|
|
2386
|
+
*/
|
|
2387
|
+
GsmLocalId?: GsmLocalId;
|
|
2388
|
+
/**
|
|
2389
|
+
* Timing advance value, which corresponds to the length of time a signal takes to reach the base station from a mobile phone.
|
|
2390
|
+
*/
|
|
2391
|
+
GsmTimingAdvance?: GsmTimingAdvance;
|
|
2392
|
+
/**
|
|
2393
|
+
* Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).
|
|
2394
|
+
*/
|
|
2395
|
+
RxLevel?: RxLevel;
|
|
2396
|
+
/**
|
|
2397
|
+
* GSM object for network measurement reports.
|
|
2398
|
+
*/
|
|
2399
|
+
GsmNmr?: GsmNmrList;
|
|
2400
|
+
}
|
|
2401
|
+
export type GsmTimingAdvance = number;
|
|
2101
2402
|
export type HorizontalAccuracy = number;
|
|
2102
2403
|
export type HrAllowed = boolean;
|
|
2404
|
+
export type IPAddress = string;
|
|
2103
2405
|
export type ISODateTimeString = string;
|
|
2104
2406
|
export type Identifier = string;
|
|
2105
2407
|
export type IdentifierType = "PartnerAccountId"|"DevEui"|"GatewayEui"|"WirelessDeviceId"|"WirelessGatewayId"|string;
|
|
2106
2408
|
export type Integer = number;
|
|
2107
2409
|
export type IotCertificateId = string;
|
|
2410
|
+
export interface Ip {
|
|
2411
|
+
/**
|
|
2412
|
+
* IP address information.
|
|
2413
|
+
*/
|
|
2414
|
+
IpAddress: IPAddress;
|
|
2415
|
+
}
|
|
2108
2416
|
export type JoinEui = string;
|
|
2109
2417
|
export type JoinEuiFilters = JoinEuiRange[];
|
|
2110
2418
|
export type JoinEuiRange = JoinEui[];
|
|
@@ -2124,6 +2432,7 @@ declare namespace IoTWireless {
|
|
|
2124
2432
|
*/
|
|
2125
2433
|
LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
|
|
2126
2434
|
}
|
|
2435
|
+
export type LAC = number;
|
|
2127
2436
|
export interface ListDestinationsRequest {
|
|
2128
2437
|
/**
|
|
2129
2438
|
* The maximum number of results to return in this operation.
|
|
@@ -2824,6 +3133,86 @@ declare namespace IoTWireless {
|
|
|
2824
3133
|
UpdateVersion?: LoRaWANGatewayVersion;
|
|
2825
3134
|
}
|
|
2826
3135
|
export type LogLevel = "INFO"|"ERROR"|"DISABLED"|string;
|
|
3136
|
+
export type LteList = LteObj[];
|
|
3137
|
+
export interface LteLocalId {
|
|
3138
|
+
/**
|
|
3139
|
+
* Physical cell ID.
|
|
3140
|
+
*/
|
|
3141
|
+
Pci: PCI;
|
|
3142
|
+
/**
|
|
3143
|
+
* Evolved universal terrestrial radio access (E-UTRA) absolute radio frequency channel number (FCN).
|
|
3144
|
+
*/
|
|
3145
|
+
Earfcn: EARFCN;
|
|
3146
|
+
}
|
|
3147
|
+
export type LteNmrList = LteNmrObj[];
|
|
3148
|
+
export interface LteNmrObj {
|
|
3149
|
+
/**
|
|
3150
|
+
* Physical cell ID.
|
|
3151
|
+
*/
|
|
3152
|
+
Pci: PCI;
|
|
3153
|
+
/**
|
|
3154
|
+
* E-UTRA (Evolved universal terrestrial Radio Access) absolute radio frequency channel Number (EARFCN).
|
|
3155
|
+
*/
|
|
3156
|
+
Earfcn: EARFCN;
|
|
3157
|
+
/**
|
|
3158
|
+
* E-UTRAN (Evolved Universal Terrestrial Radio Access Network) cell global identifier (EUTRANCID).
|
|
3159
|
+
*/
|
|
3160
|
+
EutranCid: EutranCid;
|
|
3161
|
+
/**
|
|
3162
|
+
* Signal power of the reference signal received, measured in dBm (decibel-milliwatts).
|
|
3163
|
+
*/
|
|
3164
|
+
Rsrp?: RSRP;
|
|
3165
|
+
/**
|
|
3166
|
+
* Signal quality of the reference Signal received, measured in decibels (dB).
|
|
3167
|
+
*/
|
|
3168
|
+
Rsrq?: RSRQ;
|
|
3169
|
+
}
|
|
3170
|
+
export interface LteObj {
|
|
3171
|
+
/**
|
|
3172
|
+
* Mobile Country Code.
|
|
3173
|
+
*/
|
|
3174
|
+
Mcc: MCC;
|
|
3175
|
+
/**
|
|
3176
|
+
* Mobile Network Code.
|
|
3177
|
+
*/
|
|
3178
|
+
Mnc: MNC;
|
|
3179
|
+
/**
|
|
3180
|
+
* E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier.
|
|
3181
|
+
*/
|
|
3182
|
+
EutranCid: EutranCid;
|
|
3183
|
+
/**
|
|
3184
|
+
* LTE tracking area code.
|
|
3185
|
+
*/
|
|
3186
|
+
Tac?: TAC;
|
|
3187
|
+
/**
|
|
3188
|
+
* LTE local identification (local ID) information.
|
|
3189
|
+
*/
|
|
3190
|
+
LteLocalId?: LteLocalId;
|
|
3191
|
+
/**
|
|
3192
|
+
* LTE timing advance.
|
|
3193
|
+
*/
|
|
3194
|
+
LteTimingAdvance?: LteTimingAdvance;
|
|
3195
|
+
/**
|
|
3196
|
+
* Signal power of the reference signal received, measured in dBm (decibel-milliwatts).
|
|
3197
|
+
*/
|
|
3198
|
+
Rsrp?: RSRP;
|
|
3199
|
+
/**
|
|
3200
|
+
* Signal quality of the reference Signal received, measured in decibels (dB).
|
|
3201
|
+
*/
|
|
3202
|
+
Rsrq?: RSRQ;
|
|
3203
|
+
/**
|
|
3204
|
+
* Parameter that determines whether the LTE object is capable of supporting NR (new radio).
|
|
3205
|
+
*/
|
|
3206
|
+
NrCapable?: NRCapable;
|
|
3207
|
+
/**
|
|
3208
|
+
* LTE object for network measurement reports.
|
|
3209
|
+
*/
|
|
3210
|
+
LteNmr?: LteNmrList;
|
|
3211
|
+
}
|
|
3212
|
+
export type LteTimingAdvance = number;
|
|
3213
|
+
export type MCC = number;
|
|
3214
|
+
export type MNC = number;
|
|
3215
|
+
export type MacAddress = string;
|
|
2827
3216
|
export type MacVersion = string;
|
|
2828
3217
|
export type MaxDutyCycle = number;
|
|
2829
3218
|
export type MaxEirp = number;
|
|
@@ -2832,7 +3221,7 @@ declare namespace IoTWireless {
|
|
|
2832
3221
|
export interface MessageDeliveryStatusEventConfiguration {
|
|
2833
3222
|
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
2834
3223
|
/**
|
|
2835
|
-
* Denotes whether the wireless device ID
|
|
3224
|
+
* Denotes whether the wireless device ID message delivery status event topic is enabled or disabled.
|
|
2836
3225
|
*/
|
|
2837
3226
|
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
|
2838
3227
|
}
|
|
@@ -2862,6 +3251,7 @@ declare namespace IoTWireless {
|
|
|
2862
3251
|
export interface MulticastWirelessMetadata {
|
|
2863
3252
|
LoRaWAN?: LoRaWANMulticastMetadata;
|
|
2864
3253
|
}
|
|
3254
|
+
export type NRCapable = boolean;
|
|
2865
3255
|
export type NetId = string;
|
|
2866
3256
|
export type NetIdFilters = NetId[];
|
|
2867
3257
|
export type NetworkAnalyzerConfigurationArn = string;
|
|
@@ -2874,6 +3264,7 @@ declare namespace IoTWireless {
|
|
|
2874
3264
|
Arn?: NetworkAnalyzerConfigurationArn;
|
|
2875
3265
|
Name?: NetworkAnalyzerConfigurationName;
|
|
2876
3266
|
}
|
|
3267
|
+
export type NetworkId = number;
|
|
2877
3268
|
export type NextToken = string;
|
|
2878
3269
|
export type NumberOfDevicesInGroup = number;
|
|
2879
3270
|
export type NumberOfDevicesRequested = number;
|
|
@@ -2909,6 +3300,8 @@ declare namespace IoTWireless {
|
|
|
2909
3300
|
*/
|
|
2910
3301
|
JoinEui?: JoinEui;
|
|
2911
3302
|
}
|
|
3303
|
+
export type PCI = number;
|
|
3304
|
+
export type PSC = number;
|
|
2912
3305
|
export type PackageVersion = string;
|
|
2913
3306
|
export interface ParticipatingGateways {
|
|
2914
3307
|
/**
|
|
@@ -2927,10 +3320,13 @@ declare namespace IoTWireless {
|
|
|
2927
3320
|
export type PartnerAccountArn = string;
|
|
2928
3321
|
export type PartnerAccountId = string;
|
|
2929
3322
|
export type PartnerType = "Sidewalk"|string;
|
|
3323
|
+
export type PathLoss = number;
|
|
2930
3324
|
export type PayloadData = string;
|
|
3325
|
+
export type PilotPower = number;
|
|
2931
3326
|
export type PingSlotDr = number;
|
|
2932
3327
|
export type PingSlotFreq = number;
|
|
2933
3328
|
export type PingSlotPeriod = number;
|
|
3329
|
+
export type PnOffset = number;
|
|
2934
3330
|
export type PositionConfigurationFec = "ROSE"|"NONE"|string;
|
|
2935
3331
|
export interface PositionConfigurationItem {
|
|
2936
3332
|
/**
|
|
@@ -2976,6 +3372,7 @@ declare namespace IoTWireless {
|
|
|
2976
3372
|
Stream?: FPort;
|
|
2977
3373
|
Gnss?: FPort;
|
|
2978
3374
|
}
|
|
3375
|
+
export type PositioningConfigStatus = "Enabled"|"Disabled"|string;
|
|
2979
3376
|
export type PrAllowed = boolean;
|
|
2980
3377
|
export type PresetFreq = number;
|
|
2981
3378
|
export interface ProximityEventConfiguration {
|
|
@@ -3025,8 +3422,13 @@ declare namespace IoTWireless {
|
|
|
3025
3422
|
export interface PutResourceLogLevelResponse {
|
|
3026
3423
|
}
|
|
3027
3424
|
export type QueryString = string;
|
|
3425
|
+
export type RSCP = number;
|
|
3426
|
+
export type RSRP = number;
|
|
3427
|
+
export type RSRQ = number;
|
|
3428
|
+
export type RSS = number;
|
|
3028
3429
|
export type RaAllowed = boolean;
|
|
3029
3430
|
export type RegParamsRevision = string;
|
|
3431
|
+
export type RegistrationZone = number;
|
|
3030
3432
|
export type ReportDevStatusBattery = boolean;
|
|
3031
3433
|
export type ReportDevStatusMargin = boolean;
|
|
3032
3434
|
export interface ResetAllResourceLogLevelsRequest {
|
|
@@ -3051,6 +3453,7 @@ declare namespace IoTWireless {
|
|
|
3051
3453
|
export type RxDelay1 = number;
|
|
3052
3454
|
export type RxDrOffset1 = number;
|
|
3053
3455
|
export type RxFreq2 = number;
|
|
3456
|
+
export type RxLevel = number;
|
|
3054
3457
|
export type SNwkSIntKey = string;
|
|
3055
3458
|
export interface SemtechGnssConfiguration {
|
|
3056
3459
|
/**
|
|
@@ -3255,7 +3658,7 @@ declare namespace IoTWireless {
|
|
|
3255
3658
|
Seq?: Seq;
|
|
3256
3659
|
MessageType?: MessageType;
|
|
3257
3660
|
/**
|
|
3258
|
-
* The duration of time in seconds
|
|
3661
|
+
* The duration of time in seconds to retry sending the ACK.
|
|
3259
3662
|
*/
|
|
3260
3663
|
AckModeRetryDurationSecs?: AckModeRetryDurationSecs;
|
|
3261
3664
|
}
|
|
@@ -3301,6 +3704,8 @@ declare namespace IoTWireless {
|
|
|
3301
3704
|
export type SupportsClassB = boolean;
|
|
3302
3705
|
export type SupportsClassC = boolean;
|
|
3303
3706
|
export type SupportsJoin = boolean;
|
|
3707
|
+
export type SystemId = number;
|
|
3708
|
+
export type TAC = number;
|
|
3304
3709
|
export interface Tag {
|
|
3305
3710
|
/**
|
|
3306
3711
|
* The tag's key value.
|
|
@@ -3328,6 +3733,79 @@ declare namespace IoTWireless {
|
|
|
3328
3733
|
}
|
|
3329
3734
|
export type TagValue = string;
|
|
3330
3735
|
export type TargetPer = number;
|
|
3736
|
+
export type TdscdmaList = TdscdmaObj[];
|
|
3737
|
+
export interface TdscdmaLocalId {
|
|
3738
|
+
/**
|
|
3739
|
+
* TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel number (UARFCN).
|
|
3740
|
+
*/
|
|
3741
|
+
Uarfcn: UARFCN;
|
|
3742
|
+
/**
|
|
3743
|
+
* Cell parameters for TD-SCDMA.
|
|
3744
|
+
*/
|
|
3745
|
+
CellParams: CellParams;
|
|
3746
|
+
}
|
|
3747
|
+
export type TdscdmaNmrList = TdscdmaNmrObj[];
|
|
3748
|
+
export interface TdscdmaNmrObj {
|
|
3749
|
+
/**
|
|
3750
|
+
* TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel number.
|
|
3751
|
+
*/
|
|
3752
|
+
Uarfcn: UARFCN;
|
|
3753
|
+
/**
|
|
3754
|
+
* Cell parameters for TD-SCDMA network measurement reports object.
|
|
3755
|
+
*/
|
|
3756
|
+
CellParams: CellParams;
|
|
3757
|
+
/**
|
|
3758
|
+
* UTRAN (UMTS Terrestrial Radio Access Network) cell global identifier.
|
|
3759
|
+
*/
|
|
3760
|
+
UtranCid?: UtranCid;
|
|
3761
|
+
/**
|
|
3762
|
+
* Code power of the received signal, measured in decibel-milliwatts (dBm).
|
|
3763
|
+
*/
|
|
3764
|
+
Rscp?: RSCP;
|
|
3765
|
+
/**
|
|
3766
|
+
* Path loss, or path attenuation, is the reduction in power density of an electromagnetic wave as it propagates through space.
|
|
3767
|
+
*/
|
|
3768
|
+
PathLoss?: PathLoss;
|
|
3769
|
+
}
|
|
3770
|
+
export interface TdscdmaObj {
|
|
3771
|
+
/**
|
|
3772
|
+
* Mobile Country Code.
|
|
3773
|
+
*/
|
|
3774
|
+
Mcc: MCC;
|
|
3775
|
+
/**
|
|
3776
|
+
* Mobile Network Code.
|
|
3777
|
+
*/
|
|
3778
|
+
Mnc: MNC;
|
|
3779
|
+
/**
|
|
3780
|
+
* Location Area Code.
|
|
3781
|
+
*/
|
|
3782
|
+
Lac?: LAC;
|
|
3783
|
+
/**
|
|
3784
|
+
* UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.
|
|
3785
|
+
*/
|
|
3786
|
+
UtranCid: UtranCid;
|
|
3787
|
+
/**
|
|
3788
|
+
* TD-SCDMA local identification (local ID) information.
|
|
3789
|
+
*/
|
|
3790
|
+
TdscdmaLocalId?: TdscdmaLocalId;
|
|
3791
|
+
/**
|
|
3792
|
+
* TD-SCDMA Timing advance.
|
|
3793
|
+
*/
|
|
3794
|
+
TdscdmaTimingAdvance?: TdscdmaTimingAdvance;
|
|
3795
|
+
/**
|
|
3796
|
+
* Signal power of the received signal (Received Signal Code Power), measured in decibel-milliwatts (dBm).
|
|
3797
|
+
*/
|
|
3798
|
+
Rscp?: RSCP;
|
|
3799
|
+
/**
|
|
3800
|
+
* Path loss, or path attenuation, is the reduction in power density of an electromagnetic wave as it propagates through space.
|
|
3801
|
+
*/
|
|
3802
|
+
PathLoss?: PathLoss;
|
|
3803
|
+
/**
|
|
3804
|
+
* TD-SCDMA object for network measurement reports.
|
|
3805
|
+
*/
|
|
3806
|
+
TdscdmaNmr?: TdscdmaNmrList;
|
|
3807
|
+
}
|
|
3808
|
+
export type TdscdmaTimingAdvance = number;
|
|
3331
3809
|
export interface TestWirelessDeviceRequest {
|
|
3332
3810
|
/**
|
|
3333
3811
|
* The ID of the wireless device to test.
|
|
@@ -3348,6 +3826,8 @@ declare namespace IoTWireless {
|
|
|
3348
3826
|
}
|
|
3349
3827
|
export type TransmissionInterval = number;
|
|
3350
3828
|
export type TransmitMode = number;
|
|
3829
|
+
export type UARFCN = number;
|
|
3830
|
+
export type UARFCNDL = number;
|
|
3351
3831
|
export type UlBucketSize = number;
|
|
3352
3832
|
export type UlRate = number;
|
|
3353
3833
|
export type UlRatePolicy = string;
|
|
@@ -3429,6 +3909,10 @@ declare namespace IoTWireless {
|
|
|
3429
3909
|
* Positioning FPorts for the ClockSync, Stream, and GNSS functions.
|
|
3430
3910
|
*/
|
|
3431
3911
|
Positioning?: Positioning;
|
|
3912
|
+
/**
|
|
3913
|
+
* LoRaWAN application, which can be used for geolocation by activating positioning.
|
|
3914
|
+
*/
|
|
3915
|
+
Applications?: Applications;
|
|
3432
3916
|
}
|
|
3433
3917
|
export interface UpdateFuotaTaskRequest {
|
|
3434
3918
|
Id: FuotaTaskId;
|
|
@@ -3546,6 +4030,22 @@ declare namespace IoTWireless {
|
|
|
3546
4030
|
}
|
|
3547
4031
|
export interface UpdateResourceEventConfigurationResponse {
|
|
3548
4032
|
}
|
|
4033
|
+
export interface UpdateResourcePositionRequest {
|
|
4034
|
+
/**
|
|
4035
|
+
* The identifier of the resource for which position information is updated. It can be the wireless device ID or the wireless gateway ID depending on the resource type.
|
|
4036
|
+
*/
|
|
4037
|
+
ResourceIdentifier: PositionResourceIdentifier;
|
|
4038
|
+
/**
|
|
4039
|
+
* The type of resource for which position information is updated, which can be a wireless device or a wireless gateway.
|
|
4040
|
+
*/
|
|
4041
|
+
ResourceType: PositionResourceType;
|
|
4042
|
+
/**
|
|
4043
|
+
* The position information of the resource, displayed as a JSON payload. The payload uses the GeoJSON format, which a format that's used to encode geographic data structures. For more information, see GeoJSON.
|
|
4044
|
+
*/
|
|
4045
|
+
GeoJsonPayload?: GeoJsonPayload;
|
|
4046
|
+
}
|
|
4047
|
+
export interface UpdateResourcePositionResponse {
|
|
4048
|
+
}
|
|
3549
4049
|
export type UpdateSignature = string;
|
|
3550
4050
|
export interface UpdateWirelessDeviceRequest {
|
|
3551
4051
|
/**
|
|
@@ -3568,6 +4068,10 @@ declare namespace IoTWireless {
|
|
|
3568
4068
|
* The updated wireless device's configuration.
|
|
3569
4069
|
*/
|
|
3570
4070
|
LoRaWAN?: LoRaWANUpdateDevice;
|
|
4071
|
+
/**
|
|
4072
|
+
* FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
|
|
4073
|
+
*/
|
|
4074
|
+
Positioning?: PositioningConfigStatus;
|
|
3571
4075
|
}
|
|
3572
4076
|
export interface UpdateWirelessDeviceResponse {
|
|
3573
4077
|
}
|
|
@@ -3617,7 +4121,88 @@ declare namespace IoTWireless {
|
|
|
3617
4121
|
*/
|
|
3618
4122
|
Arn?: WirelessGatewayTaskDefinitionArn;
|
|
3619
4123
|
}
|
|
4124
|
+
export type Use2DSolver = boolean;
|
|
4125
|
+
export type UtranCid = number;
|
|
3620
4126
|
export type VerticalAccuracy = number;
|
|
4127
|
+
export type WcdmaList = WcdmaObj[];
|
|
4128
|
+
export interface WcdmaLocalId {
|
|
4129
|
+
/**
|
|
4130
|
+
* WCDMA UTRA Absolute RF Channel Number downlink.
|
|
4131
|
+
*/
|
|
4132
|
+
Uarfcndl: UARFCNDL;
|
|
4133
|
+
/**
|
|
4134
|
+
* Primary Scrambling Code.
|
|
4135
|
+
*/
|
|
4136
|
+
Psc: PSC;
|
|
4137
|
+
}
|
|
4138
|
+
export type WcdmaNmrList = WcdmaNmrObj[];
|
|
4139
|
+
export interface WcdmaNmrObj {
|
|
4140
|
+
/**
|
|
4141
|
+
* WCDMA UTRA Absolute RF Channel Number downlink.
|
|
4142
|
+
*/
|
|
4143
|
+
Uarfcndl: UARFCNDL;
|
|
4144
|
+
/**
|
|
4145
|
+
* Primary Scrambling Code.
|
|
4146
|
+
*/
|
|
4147
|
+
Psc: PSC;
|
|
4148
|
+
/**
|
|
4149
|
+
* UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.
|
|
4150
|
+
*/
|
|
4151
|
+
UtranCid: UtranCid;
|
|
4152
|
+
/**
|
|
4153
|
+
* Received Signal Code Power (signal power) (dBm)
|
|
4154
|
+
*/
|
|
4155
|
+
Rscp?: RSCP;
|
|
4156
|
+
/**
|
|
4157
|
+
* Path loss, or path attenuation, is the reduction in power density of an electromagnetic wave as it propagates through space.
|
|
4158
|
+
*/
|
|
4159
|
+
PathLoss?: PathLoss;
|
|
4160
|
+
}
|
|
4161
|
+
export interface WcdmaObj {
|
|
4162
|
+
/**
|
|
4163
|
+
* Mobile Country Code.
|
|
4164
|
+
*/
|
|
4165
|
+
Mcc: MCC;
|
|
4166
|
+
/**
|
|
4167
|
+
* Mobile Network Code.
|
|
4168
|
+
*/
|
|
4169
|
+
Mnc: MNC;
|
|
4170
|
+
/**
|
|
4171
|
+
* Location Area Code.
|
|
4172
|
+
*/
|
|
4173
|
+
Lac?: LAC;
|
|
4174
|
+
/**
|
|
4175
|
+
* UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.
|
|
4176
|
+
*/
|
|
4177
|
+
UtranCid: UtranCid;
|
|
4178
|
+
/**
|
|
4179
|
+
* WCDMA local ID information.
|
|
4180
|
+
*/
|
|
4181
|
+
WcdmaLocalId?: WcdmaLocalId;
|
|
4182
|
+
/**
|
|
4183
|
+
* Received Signal Code Power (signal power) (dBm).
|
|
4184
|
+
*/
|
|
4185
|
+
Rscp?: RSCP;
|
|
4186
|
+
/**
|
|
4187
|
+
* Path loss, or path attenuation, is the reduction in power density of an electromagnetic wave as it propagates through space.
|
|
4188
|
+
*/
|
|
4189
|
+
PathLoss?: PathLoss;
|
|
4190
|
+
/**
|
|
4191
|
+
* WCDMA object for network measurement reports.
|
|
4192
|
+
*/
|
|
4193
|
+
WcdmaNmr?: WcdmaNmrList;
|
|
4194
|
+
}
|
|
4195
|
+
export interface WiFiAccessPoint {
|
|
4196
|
+
/**
|
|
4197
|
+
* Wi-Fi MAC Address.
|
|
4198
|
+
*/
|
|
4199
|
+
MacAddress: MacAddress;
|
|
4200
|
+
/**
|
|
4201
|
+
* Recived signal strength of the WLAN measurement data.
|
|
4202
|
+
*/
|
|
4203
|
+
Rss: RSS;
|
|
4204
|
+
}
|
|
4205
|
+
export type WiFiAccessPoints = WiFiAccessPoint[];
|
|
3621
4206
|
export type WirelessDeviceArn = string;
|
|
3622
4207
|
export type WirelessDeviceEvent = "Join"|"Rejoin"|"Uplink_Data"|"Downlink_Data"|"Registration"|string;
|
|
3623
4208
|
export interface WirelessDeviceEventLogOption {
|