You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-iot-wireless): This release includes a new feature for customers to calculate the position of their devices by adding three new APIs: UpdateResourcePosition, GetResourcePosition, and GetPositionEstimate.
if(typeofoptionsOrCb!=="object")thrownewError(`Expect http options but get ${typeofoptionsOrCb}`);
2169
+
this.send(command,optionsOrCb||{},cb);
2170
+
}else{
2171
+
returnthis.send(command,optionsOrCb);
2172
+
}
2173
+
}
2174
+
2079
2175
/**
2080
2176
* <p>Gets the account-specific endpoint for Configuration and Update Server (CUPS) protocol or LoRaWAN Network Server (LNS) connections.</p>
2081
2177
*/
@@ -2655,7 +2751,14 @@ export class IoTWireless extends IoTWirelessClient {
2655
2751
}
2656
2752
2657
2753
/**
2754
+
* @deprecated
2755
+
*
2658
2756
* <p>List position configurations for a given resource, such as positioning solvers.</p>
2757
+
* <important>
2758
+
* <p>This action is no longer supported. Calls to retrieve position information
2759
+
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_GetResourcePosition.html">GetResourcePosition</a>
2760
+
* API operation instead.</p>
2761
+
* </important>
2659
2762
*/
2660
2763
publiclistPositionConfigurations(
2661
2764
args: ListPositionConfigurationsCommandInput,
@@ -2879,7 +2982,13 @@ export class IoTWireless extends IoTWirelessClient {
2879
2982
}
2880
2983
2881
2984
/**
2985
+
* @deprecated
2986
+
*
2882
2987
* <p>Put position configuration for a given resource.</p>
2988
+
* <important>
2989
+
* <p>This action is no longer supported. Calls to update the position configuration
2990
+
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_UpdateResourcePosition.html">UpdateResourcePosition</a> API operation instead.</p>
2991
+
* </important>
2883
2992
*/
2884
2993
publicputPositionConfiguration(
2885
2994
args: PutPositionConfigurationCommandInput,
@@ -3522,7 +3631,13 @@ export class IoTWireless extends IoTWirelessClient {
3522
3631
}
3523
3632
3524
3633
/**
3634
+
* @deprecated
3635
+
*
3525
3636
* <p>Update the position information of a resource.</p>
3637
+
* <important>
3638
+
* <p>This action is no longer supported. Calls to update the position information
3639
+
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_UpdateResourcePosition.html">UpdateResourcePosition</a> API operation instead.</p>
3640
+
* </important>
3526
3641
*/
3527
3642
publicupdatePosition(
3528
3643
args: UpdatePositionCommandInput,
@@ -3585,6 +3700,40 @@ export class IoTWireless extends IoTWirelessClient {
3585
3700
}
3586
3701
}
3587
3702
3703
+
/**
3704
+
* <p>Update the position information of a given wireless device or a wireless gateway resource. The postion
3705
+
* coordinates are based on the <a href="https://gisgeography.com/wgs84-world-geodetic-system/">
0 commit comments