aws-sdk-iotwireless 1.44.0 → 1.45.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +194 -53
- data/lib/aws-sdk-iotwireless/client_api.rb +16 -0
- data/lib/aws-sdk-iotwireless/types.rb +232 -80
- data/lib/aws-sdk-iotwireless.rb +1 -1
- data/sig/types.rbs +11 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fdd3392b2e4ee7d0c51ec5dc2de53ff533786efeff8cb79c16785c9056b7696
|
4
|
+
data.tar.gz: 6c72bce59f88508b217c20431c4765cccb2d3625383d22458027a7d96dc1ee86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f572e5f577b12b65bace77e78ded07e2ca5aa8955f611b31397d2dd901685c99d16ece5801970a0071de19960914c19757714f88c96728c92c338c50def1a70
|
7
|
+
data.tar.gz: cdae2ab0791a649af6b1d4902582760b10e75fc8f9965d9f716a15dc0b932f2e193de1193de2f5e6bef56400f19c3b40e72fe37d9463a51d746e3b9cbc24a428
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2024-04-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add PublicGateways in the GetWirelessStatistics call response, indicating the LoRaWAN public network accessed by the device.
|
8
|
+
|
4
9
|
1.44.0 (2024-03-29)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
@@ -394,14 +394,23 @@ module Aws::IoTWireless
|
|
394
394
|
# The Sidewalk account credentials.
|
395
395
|
#
|
396
396
|
# @option params [String] :client_request_token
|
397
|
-
# Each resource must have a unique client request token.
|
398
|
-
#
|
399
|
-
#
|
400
|
-
#
|
397
|
+
# Each resource must have a unique client request token. The client
|
398
|
+
# token is used to implement idempotency. It ensures that the request
|
399
|
+
# completes no more than one time. If you retry a request with the same
|
400
|
+
# token and the same parameters, the request will complete successfully.
|
401
|
+
# However, if you try to create a new resource using the same token but
|
402
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
403
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
404
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
405
|
+
# Amazon EC2 API requests][1].
|
401
406
|
#
|
402
407
|
# **A suitable default value is auto-generated.** You should normally
|
403
408
|
# not need to pass this option.**
|
404
409
|
#
|
410
|
+
#
|
411
|
+
#
|
412
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
413
|
+
#
|
405
414
|
# @option params [Array<Types::Tag>] :tags
|
406
415
|
# The tags to attach to the specified resource. Tags are metadata that
|
407
416
|
# you can use to manage a resource.
|
@@ -633,14 +642,23 @@ module Aws::IoTWireless
|
|
633
642
|
# can use to manage a resource.
|
634
643
|
#
|
635
644
|
# @option params [String] :client_request_token
|
636
|
-
# Each resource must have a unique client request token.
|
637
|
-
#
|
638
|
-
#
|
639
|
-
#
|
645
|
+
# Each resource must have a unique client request token. The client
|
646
|
+
# token is used to implement idempotency. It ensures that the request
|
647
|
+
# completes no more than one time. If you retry a request with the same
|
648
|
+
# token and the same parameters, the request will complete successfully.
|
649
|
+
# However, if you try to create a new resource using the same token but
|
650
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
651
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
652
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
653
|
+
# Amazon EC2 API requests][1].
|
640
654
|
#
|
641
655
|
# **A suitable default value is auto-generated.** You should normally
|
642
656
|
# not need to pass this option.**
|
643
657
|
#
|
658
|
+
#
|
659
|
+
#
|
660
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
661
|
+
#
|
644
662
|
# @return [Types::CreateDestinationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
645
663
|
#
|
646
664
|
# * {Types::CreateDestinationResponse#arn #arn} => String
|
@@ -688,14 +706,23 @@ module Aws::IoTWireless
|
|
688
706
|
# you can use to manage a resource.
|
689
707
|
#
|
690
708
|
# @option params [String] :client_request_token
|
691
|
-
# Each resource must have a unique client request token.
|
692
|
-
#
|
693
|
-
#
|
694
|
-
#
|
709
|
+
# Each resource must have a unique client request token. The client
|
710
|
+
# token is used to implement idempotency. It ensures that the request
|
711
|
+
# completes no more than one time. If you retry a request with the same
|
712
|
+
# token and the same parameters, the request will complete successfully.
|
713
|
+
# However, if you try to create a new resource using the same token but
|
714
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
715
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
716
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
717
|
+
# Amazon EC2 API requests][1].
|
695
718
|
#
|
696
719
|
# **A suitable default value is auto-generated.** You should normally
|
697
720
|
# not need to pass this option.**
|
698
721
|
#
|
722
|
+
#
|
723
|
+
#
|
724
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
725
|
+
#
|
699
726
|
# @option params [Types::SidewalkCreateDeviceProfile] :sidewalk
|
700
727
|
# The Sidewalk-related information for creating the Sidewalk device
|
701
728
|
# profile.
|
@@ -762,14 +789,23 @@ module Aws::IoTWireless
|
|
762
789
|
# The description of the new resource.
|
763
790
|
#
|
764
791
|
# @option params [String] :client_request_token
|
765
|
-
# Each resource must have a unique client request token.
|
766
|
-
#
|
767
|
-
#
|
768
|
-
#
|
792
|
+
# Each resource must have a unique client request token. The client
|
793
|
+
# token is used to implement idempotency. It ensures that the request
|
794
|
+
# completes no more than one time. If you retry a request with the same
|
795
|
+
# token and the same parameters, the request will complete successfully.
|
796
|
+
# However, if you try to create a new resource using the same token but
|
797
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
798
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
799
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
800
|
+
# Amazon EC2 API requests][1].
|
769
801
|
#
|
770
802
|
# **A suitable default value is auto-generated.** You should normally
|
771
803
|
# not need to pass this option.**
|
772
804
|
#
|
805
|
+
#
|
806
|
+
#
|
807
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
808
|
+
#
|
773
809
|
# @option params [Types::LoRaWANFuotaTask] :lo_ra_wan
|
774
810
|
# The LoRaWAN information used with a FUOTA task.
|
775
811
|
#
|
@@ -853,14 +889,23 @@ module Aws::IoTWireless
|
|
853
889
|
# The description of the multicast group.
|
854
890
|
#
|
855
891
|
# @option params [String] :client_request_token
|
856
|
-
# Each resource must have a unique client request token.
|
857
|
-
#
|
858
|
-
#
|
859
|
-
#
|
892
|
+
# Each resource must have a unique client request token. The client
|
893
|
+
# token is used to implement idempotency. It ensures that the request
|
894
|
+
# completes no more than one time. If you retry a request with the same
|
895
|
+
# token and the same parameters, the request will complete successfully.
|
896
|
+
# However, if you try to create a new resource using the same token but
|
897
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
898
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
899
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
900
|
+
# Amazon EC2 API requests][1].
|
860
901
|
#
|
861
902
|
# **A suitable default value is auto-generated.** You should normally
|
862
903
|
# not need to pass this option.**
|
863
904
|
#
|
905
|
+
#
|
906
|
+
#
|
907
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
908
|
+
#
|
864
909
|
# @option params [required, Types::LoRaWANMulticast] :lo_ra_wan
|
865
910
|
# The LoRaWAN information that is to be used with the multicast group.
|
866
911
|
#
|
@@ -930,14 +975,23 @@ module Aws::IoTWireless
|
|
930
975
|
# you can use to manage a resource.
|
931
976
|
#
|
932
977
|
# @option params [String] :client_request_token
|
933
|
-
# Each resource must have a unique client request token.
|
934
|
-
#
|
935
|
-
#
|
936
|
-
#
|
978
|
+
# Each resource must have a unique client request token. The client
|
979
|
+
# token is used to implement idempotency. It ensures that the request
|
980
|
+
# completes no more than one time. If you retry a request with the same
|
981
|
+
# token and the same parameters, the request will complete successfully.
|
982
|
+
# However, if you try to create a new resource using the same token but
|
983
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
984
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
985
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
986
|
+
# Amazon EC2 API requests][1].
|
937
987
|
#
|
938
988
|
# **A suitable default value is auto-generated.** You should normally
|
939
989
|
# not need to pass this option.**
|
940
990
|
#
|
991
|
+
#
|
992
|
+
#
|
993
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
994
|
+
#
|
941
995
|
# @option params [Array<String>] :multicast_groups
|
942
996
|
# Multicast Group resources to add to the network analyzer
|
943
997
|
# configruation. Provide the `MulticastGroupId` of the resource to add
|
@@ -995,14 +1049,23 @@ module Aws::IoTWireless
|
|
995
1049
|
# you can use to manage a resource.
|
996
1050
|
#
|
997
1051
|
# @option params [String] :client_request_token
|
998
|
-
# Each resource must have a unique client request token.
|
999
|
-
#
|
1000
|
-
#
|
1001
|
-
#
|
1052
|
+
# Each resource must have a unique client request token. The client
|
1053
|
+
# token is used to implement idempotency. It ensures that the request
|
1054
|
+
# completes no more than one time. If you retry a request with the same
|
1055
|
+
# token and the same parameters, the request will complete successfully.
|
1056
|
+
# However, if you try to create a new resource using the same token but
|
1057
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1058
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1059
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1060
|
+
# Amazon EC2 API requests][1].
|
1002
1061
|
#
|
1003
1062
|
# **A suitable default value is auto-generated.** You should normally
|
1004
1063
|
# not need to pass this option.**
|
1005
1064
|
#
|
1065
|
+
#
|
1066
|
+
#
|
1067
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1068
|
+
#
|
1006
1069
|
# @return [Types::CreateServiceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1007
1070
|
#
|
1008
1071
|
# * {Types::CreateServiceProfileResponse#arn #arn} => String
|
@@ -1055,14 +1118,23 @@ module Aws::IoTWireless
|
|
1055
1118
|
# The name of the destination to assign to the new wireless device.
|
1056
1119
|
#
|
1057
1120
|
# @option params [String] :client_request_token
|
1058
|
-
# Each resource must have a unique client request token.
|
1059
|
-
#
|
1060
|
-
#
|
1061
|
-
#
|
1121
|
+
# Each resource must have a unique client request token. The client
|
1122
|
+
# token is used to implement idempotency. It ensures that the request
|
1123
|
+
# completes no more than one time. If you retry a request with the same
|
1124
|
+
# token and the same parameters, the request will complete successfully.
|
1125
|
+
# However, if you try to create a new resource using the same token but
|
1126
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1127
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1128
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1129
|
+
# Amazon EC2 API requests][1].
|
1062
1130
|
#
|
1063
1131
|
# **A suitable default value is auto-generated.** You should normally
|
1064
1132
|
# not need to pass this option.**
|
1065
1133
|
#
|
1134
|
+
#
|
1135
|
+
#
|
1136
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1137
|
+
#
|
1066
1138
|
# @option params [Types::LoRaWANDevice] :lo_ra_wan
|
1067
1139
|
# The device configuration information to use to create the wireless
|
1068
1140
|
# device.
|
@@ -1169,6 +1241,19 @@ module Aws::IoTWireless
|
|
1169
1241
|
|
1170
1242
|
# Provisions a wireless gateway.
|
1171
1243
|
#
|
1244
|
+
# <note markdown="1"> When provisioning a wireless gateway, you might run into duplication
|
1245
|
+
# errors for the following reasons.
|
1246
|
+
#
|
1247
|
+
# * If you specify a `GatewayEui` value that already exists.
|
1248
|
+
#
|
1249
|
+
# * If you used a `ClientRequestToken` with the same parameters within
|
1250
|
+
# the last 10 minutes.
|
1251
|
+
#
|
1252
|
+
# To avoid this error, make sure that you use unique identifiers and
|
1253
|
+
# parameters for each request within the specified time period.
|
1254
|
+
#
|
1255
|
+
# </note>
|
1256
|
+
#
|
1172
1257
|
# @option params [String] :name
|
1173
1258
|
# The name of the new resource.
|
1174
1259
|
#
|
@@ -1184,14 +1269,23 @@ module Aws::IoTWireless
|
|
1184
1269
|
# you can use to manage a resource.
|
1185
1270
|
#
|
1186
1271
|
# @option params [String] :client_request_token
|
1187
|
-
# Each resource must have a unique client request token.
|
1188
|
-
#
|
1189
|
-
#
|
1190
|
-
#
|
1272
|
+
# Each resource must have a unique client request token. The client
|
1273
|
+
# token is used to implement idempotency. It ensures that the request
|
1274
|
+
# completes no more than one time. If you retry a request with the same
|
1275
|
+
# token and the same parameters, the request will complete successfully.
|
1276
|
+
# However, if you try to create a new resource using the same token but
|
1277
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1278
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1279
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1280
|
+
# Amazon EC2 API requests][1].
|
1191
1281
|
#
|
1192
1282
|
# **A suitable default value is auto-generated.** You should normally
|
1193
1283
|
# not need to pass this option.**
|
1194
1284
|
#
|
1285
|
+
#
|
1286
|
+
#
|
1287
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1288
|
+
#
|
1195
1289
|
# @return [Types::CreateWirelessGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1196
1290
|
#
|
1197
1291
|
# * {Types::CreateWirelessGatewayResponse#arn #arn} => String
|
@@ -1283,14 +1377,23 @@ module Aws::IoTWireless
|
|
1283
1377
|
# Information about the gateways to update.
|
1284
1378
|
#
|
1285
1379
|
# @option params [String] :client_request_token
|
1286
|
-
# Each resource must have a unique client request token.
|
1287
|
-
#
|
1288
|
-
#
|
1289
|
-
#
|
1380
|
+
# Each resource must have a unique client request token. The client
|
1381
|
+
# token is used to implement idempotency. It ensures that the request
|
1382
|
+
# completes no more than one time. If you retry a request with the same
|
1383
|
+
# token and the same parameters, the request will complete successfully.
|
1384
|
+
# However, if you try to create a new resource using the same token but
|
1385
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1386
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1387
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1388
|
+
# Amazon EC2 API requests][1].
|
1290
1389
|
#
|
1291
1390
|
# **A suitable default value is auto-generated.** You should normally
|
1292
1391
|
# not need to pass this option.**
|
1293
1392
|
#
|
1393
|
+
#
|
1394
|
+
#
|
1395
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1396
|
+
#
|
1294
1397
|
# @option params [Array<Types::Tag>] :tags
|
1295
1398
|
# The tags to attach to the specified resource. Tags are metadata that
|
1296
1399
|
# you can use to manage a resource.
|
@@ -1537,6 +1640,19 @@ module Aws::IoTWireless
|
|
1537
1640
|
|
1538
1641
|
# Deletes a wireless gateway.
|
1539
1642
|
#
|
1643
|
+
# <note markdown="1"> When deleting a wireless gateway, you might run into duplication
|
1644
|
+
# errors for the following reasons.
|
1645
|
+
#
|
1646
|
+
# * If you specify a `GatewayEui` value that already exists.
|
1647
|
+
#
|
1648
|
+
# * If you used a `ClientRequestToken` with the same parameters within
|
1649
|
+
# the last 10 minutes.
|
1650
|
+
#
|
1651
|
+
# To avoid this error, make sure that you use unique identifiers and
|
1652
|
+
# parameters for each request within the specified time period.
|
1653
|
+
#
|
1654
|
+
# </note>
|
1655
|
+
#
|
1540
1656
|
# @option params [required, String] :id
|
1541
1657
|
# The ID of the resource to delete.
|
1542
1658
|
#
|
@@ -1984,7 +2100,7 @@ module Aws::IoTWireless
|
|
1984
2100
|
req.send_request(options)
|
1985
2101
|
end
|
1986
2102
|
|
1987
|
-
# Get the metric configuration status for this account.
|
2103
|
+
# Get the metric configuration status for this AWS account.
|
1988
2104
|
#
|
1989
2105
|
# @return [Types::GetMetricConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1990
2106
|
#
|
@@ -2001,10 +2117,10 @@ module Aws::IoTWireless
|
|
2001
2117
|
req.send_request(options)
|
2002
2118
|
end
|
2003
2119
|
|
2004
|
-
# Get metrics.
|
2120
|
+
# Get the summary metrics for this AWS account.
|
2005
2121
|
#
|
2006
2122
|
# @option params [Array<Types::SummaryMetricQuery>] :summary_metric_queries
|
2007
|
-
# The list of queries to retrieve summary metrics.
|
2123
|
+
# The list of queries to retrieve the summary metrics.
|
2008
2124
|
#
|
2009
2125
|
# @return [Types::GetMetricsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2010
2126
|
#
|
@@ -2871,6 +2987,13 @@ module Aws::IoTWireless
|
|
2871
2987
|
# resp.lo_ra_wan.gateways[0].gateway_eui #=> String
|
2872
2988
|
# resp.lo_ra_wan.gateways[0].snr #=> Float
|
2873
2989
|
# resp.lo_ra_wan.gateways[0].rssi #=> Float
|
2990
|
+
# resp.lo_ra_wan.public_gateways #=> Array
|
2991
|
+
# resp.lo_ra_wan.public_gateways[0].provider_net_id #=> String
|
2992
|
+
# resp.lo_ra_wan.public_gateways[0].id #=> String
|
2993
|
+
# resp.lo_ra_wan.public_gateways[0].rssi #=> Float
|
2994
|
+
# resp.lo_ra_wan.public_gateways[0].snr #=> Float
|
2995
|
+
# resp.lo_ra_wan.public_gateways[0].rf_region #=> String
|
2996
|
+
# resp.lo_ra_wan.public_gateways[0].dl_allowed #=> Boolean
|
2874
2997
|
# resp.sidewalk.rssi #=> Integer
|
2875
2998
|
# resp.sidewalk.battery_level #=> String, one of "normal", "low", "critical"
|
2876
2999
|
# resp.sidewalk.event #=> String, one of "discovered", "lost", "ack", "nack", "passthrough"
|
@@ -4246,14 +4369,23 @@ module Aws::IoTWireless
|
|
4246
4369
|
# onboarded to AWS IoT Wireless.
|
4247
4370
|
#
|
4248
4371
|
# @option params [String] :client_request_token
|
4249
|
-
# Each resource must have a unique client request token.
|
4250
|
-
#
|
4251
|
-
#
|
4252
|
-
#
|
4372
|
+
# Each resource must have a unique client request token. The client
|
4373
|
+
# token is used to implement idempotency. It ensures that the request
|
4374
|
+
# completes no more than one time. If you retry a request with the same
|
4375
|
+
# token and the same parameters, the request will complete successfully.
|
4376
|
+
# However, if you try to create a new resource using the same token but
|
4377
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
4378
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
4379
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
4380
|
+
# Amazon EC2 API requests][1].
|
4253
4381
|
#
|
4254
4382
|
# **A suitable default value is auto-generated.** You should normally
|
4255
4383
|
# not need to pass this option.**
|
4256
4384
|
#
|
4385
|
+
#
|
4386
|
+
#
|
4387
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
4388
|
+
#
|
4257
4389
|
# @option params [String] :device_name
|
4258
4390
|
# The name of the wireless device for which an import task is being
|
4259
4391
|
# started.
|
@@ -4309,14 +4441,23 @@ module Aws::IoTWireless
|
|
4309
4441
|
# to AWS IoT Wireless.
|
4310
4442
|
#
|
4311
4443
|
# @option params [String] :client_request_token
|
4312
|
-
# Each resource must have a unique client request token.
|
4313
|
-
#
|
4314
|
-
#
|
4315
|
-
#
|
4444
|
+
# Each resource must have a unique client request token. The client
|
4445
|
+
# token is used to implement idempotency. It ensures that the request
|
4446
|
+
# completes no more than one time. If you retry a request with the same
|
4447
|
+
# token and the same parameters, the request will complete successfully.
|
4448
|
+
# However, if you try to create a new resource using the same token but
|
4449
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
4450
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
4451
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
4452
|
+
# Amazon EC2 API requests][1].
|
4316
4453
|
#
|
4317
4454
|
# **A suitable default value is auto-generated.** You should normally
|
4318
4455
|
# not need to pass this option.**
|
4319
4456
|
#
|
4457
|
+
#
|
4458
|
+
#
|
4459
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
4460
|
+
#
|
4320
4461
|
# @option params [Array<Types::Tag>] :tags
|
4321
4462
|
# The tag to attach to the specified resource. Tags are metadata that
|
4322
4463
|
# you can use to manage a resource.
|
@@ -4659,7 +4800,7 @@ module Aws::IoTWireless
|
|
4659
4800
|
req.send_request(options)
|
4660
4801
|
end
|
4661
4802
|
|
4662
|
-
# Update the metric configuration.
|
4803
|
+
# Update the summary metric configuration.
|
4663
4804
|
#
|
4664
4805
|
# @option params [Types::SummaryMetricConfiguration] :summary_metric
|
4665
4806
|
# The value to be used to set summary metric configuration.
|
@@ -5116,7 +5257,7 @@ module Aws::IoTWireless
|
|
5116
5257
|
params: params,
|
5117
5258
|
config: config)
|
5118
5259
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
5119
|
-
context[:gem_version] = '1.
|
5260
|
+
context[:gem_version] = '1.45.0'
|
5120
5261
|
Seahorse::Client::Request.new(handlers, context)
|
5121
5262
|
end
|
5122
5263
|
|
@@ -175,6 +175,7 @@ module Aws::IoTWireless
|
|
175
175
|
DisassociateWirelessGatewayFromCertificateResponse = Shapes::StructureShape.new(name: 'DisassociateWirelessGatewayFromCertificateResponse')
|
176
176
|
DisassociateWirelessGatewayFromThingRequest = Shapes::StructureShape.new(name: 'DisassociateWirelessGatewayFromThingRequest')
|
177
177
|
DisassociateWirelessGatewayFromThingResponse = Shapes::StructureShape.new(name: 'DisassociateWirelessGatewayFromThingResponse')
|
178
|
+
DlAllowed = Shapes::BooleanShape.new(name: 'DlAllowed')
|
178
179
|
DlBucketSize = Shapes::IntegerShape.new(name: 'DlBucketSize')
|
179
180
|
DlClass = Shapes::StringShape.new(name: 'DlClass')
|
180
181
|
DlDr = Shapes::IntegerShape.new(name: 'DlDr')
|
@@ -297,6 +298,7 @@ module Aws::IoTWireless
|
|
297
298
|
HrAllowed = Shapes::BooleanShape.new(name: 'HrAllowed')
|
298
299
|
IPAddress = Shapes::StringShape.new(name: 'IPAddress')
|
299
300
|
ISODateTimeString = Shapes::StringShape.new(name: 'ISODateTimeString')
|
301
|
+
Id = Shapes::StringShape.new(name: 'Id')
|
300
302
|
Identifier = Shapes::StringShape.new(name: 'Identifier')
|
301
303
|
IdentifierType = Shapes::StringShape.new(name: 'IdentifierType')
|
302
304
|
ImportTaskArn = Shapes::StringShape.new(name: 'ImportTaskArn')
|
@@ -371,6 +373,8 @@ module Aws::IoTWireless
|
|
371
373
|
LoRaWANMulticastGet = Shapes::StructureShape.new(name: 'LoRaWANMulticastGet')
|
372
374
|
LoRaWANMulticastMetadata = Shapes::StructureShape.new(name: 'LoRaWANMulticastMetadata')
|
373
375
|
LoRaWANMulticastSession = Shapes::StructureShape.new(name: 'LoRaWANMulticastSession')
|
376
|
+
LoRaWANPublicGatewayMetadata = Shapes::StructureShape.new(name: 'LoRaWANPublicGatewayMetadata')
|
377
|
+
LoRaWANPublicGatewayMetadataList = Shapes::ListShape.new(name: 'LoRaWANPublicGatewayMetadataList')
|
374
378
|
LoRaWANSendDataToDevice = Shapes::StructureShape.new(name: 'LoRaWANSendDataToDevice')
|
375
379
|
LoRaWANServiceProfile = Shapes::StructureShape.new(name: 'LoRaWANServiceProfile')
|
376
380
|
LoRaWANStartFuotaTask = Shapes::StructureShape.new(name: 'LoRaWANStartFuotaTask')
|
@@ -478,6 +482,7 @@ module Aws::IoTWireless
|
|
478
482
|
PrAllowed = Shapes::BooleanShape.new(name: 'PrAllowed')
|
479
483
|
PresetFreq = Shapes::IntegerShape.new(name: 'PresetFreq')
|
480
484
|
PrivateKeysList = Shapes::ListShape.new(name: 'PrivateKeysList')
|
485
|
+
ProviderNetId = Shapes::StringShape.new(name: 'ProviderNetId')
|
481
486
|
ProximityEventConfiguration = Shapes::StructureShape.new(name: 'ProximityEventConfiguration')
|
482
487
|
ProximityResourceTypeEventConfiguration = Shapes::StructureShape.new(name: 'ProximityResourceTypeEventConfiguration')
|
483
488
|
PutPositionConfigurationRequest = Shapes::StructureShape.new(name: 'PutPositionConfigurationRequest')
|
@@ -1654,6 +1659,7 @@ module Aws::IoTWireless
|
|
1654
1659
|
LoRaWANDeviceMetadata.add_member(:frequency, Shapes::ShapeRef.new(shape: Integer, location_name: "Frequency"))
|
1655
1660
|
LoRaWANDeviceMetadata.add_member(:timestamp, Shapes::ShapeRef.new(shape: ISODateTimeString, location_name: "Timestamp"))
|
1656
1661
|
LoRaWANDeviceMetadata.add_member(:gateways, Shapes::ShapeRef.new(shape: LoRaWANGatewayMetadataList, location_name: "Gateways"))
|
1662
|
+
LoRaWANDeviceMetadata.add_member(:public_gateways, Shapes::ShapeRef.new(shape: LoRaWANPublicGatewayMetadataList, location_name: "PublicGateways"))
|
1657
1663
|
LoRaWANDeviceMetadata.struct_class = Types::LoRaWANDeviceMetadata
|
1658
1664
|
|
1659
1665
|
LoRaWANDeviceProfile.add_member(:supports_class_b, Shapes::ShapeRef.new(shape: SupportsClassB, location_name: "SupportsClassB"))
|
@@ -1758,6 +1764,16 @@ module Aws::IoTWireless
|
|
1758
1764
|
LoRaWANMulticastSession.add_member(:ping_slot_period, Shapes::ShapeRef.new(shape: PingSlotPeriod, location_name: "PingSlotPeriod"))
|
1759
1765
|
LoRaWANMulticastSession.struct_class = Types::LoRaWANMulticastSession
|
1760
1766
|
|
1767
|
+
LoRaWANPublicGatewayMetadata.add_member(:provider_net_id, Shapes::ShapeRef.new(shape: ProviderNetId, location_name: "ProviderNetId"))
|
1768
|
+
LoRaWANPublicGatewayMetadata.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
|
1769
|
+
LoRaWANPublicGatewayMetadata.add_member(:rssi, Shapes::ShapeRef.new(shape: Double, location_name: "Rssi"))
|
1770
|
+
LoRaWANPublicGatewayMetadata.add_member(:snr, Shapes::ShapeRef.new(shape: Double, location_name: "Snr"))
|
1771
|
+
LoRaWANPublicGatewayMetadata.add_member(:rf_region, Shapes::ShapeRef.new(shape: RfRegion, location_name: "RfRegion"))
|
1772
|
+
LoRaWANPublicGatewayMetadata.add_member(:dl_allowed, Shapes::ShapeRef.new(shape: DlAllowed, location_name: "DlAllowed"))
|
1773
|
+
LoRaWANPublicGatewayMetadata.struct_class = Types::LoRaWANPublicGatewayMetadata
|
1774
|
+
|
1775
|
+
LoRaWANPublicGatewayMetadataList.member = Shapes::ShapeRef.new(shape: LoRaWANPublicGatewayMetadata)
|
1776
|
+
|
1761
1777
|
LoRaWANSendDataToDevice.add_member(:f_port, Shapes::ShapeRef.new(shape: FPort, location_name: "FPort"))
|
1762
1778
|
LoRaWANSendDataToDevice.add_member(:participating_gateways, Shapes::ShapeRef.new(shape: ParticipatingGateways, location_name: "ParticipatingGateways"))
|
1763
1779
|
LoRaWANSendDataToDevice.struct_class = Types::LoRaWANSendDataToDevice
|
@@ -121,13 +121,22 @@ module Aws::IoTWireless
|
|
121
121
|
# @return [Types::SidewalkAccountInfo]
|
122
122
|
#
|
123
123
|
# @!attribute [rw] client_request_token
|
124
|
-
# Each resource must have a unique client request token.
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
124
|
+
# Each resource must have a unique client request token. The client
|
125
|
+
# token is used to implement idempotency. It ensures that the request
|
126
|
+
# completes no more than one time. If you retry a request with the
|
127
|
+
# same token and the same parameters, the request will complete
|
128
|
+
# successfully. However, if you try to create a new resource using the
|
129
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
130
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
131
|
+
# client request. For more information about idempotency, see
|
132
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
128
133
|
#
|
129
134
|
# **A suitable default value is auto-generated.** You should normally
|
130
135
|
# not need to pass this option.
|
136
|
+
#
|
137
|
+
#
|
138
|
+
#
|
139
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
131
140
|
# @return [String]
|
132
141
|
#
|
133
142
|
# @!attribute [rw] tags
|
@@ -529,13 +538,22 @@ module Aws::IoTWireless
|
|
529
538
|
# @return [Array<Types::Tag>]
|
530
539
|
#
|
531
540
|
# @!attribute [rw] client_request_token
|
532
|
-
# Each resource must have a unique client request token.
|
533
|
-
#
|
534
|
-
#
|
535
|
-
#
|
541
|
+
# Each resource must have a unique client request token. The client
|
542
|
+
# token is used to implement idempotency. It ensures that the request
|
543
|
+
# completes no more than one time. If you retry a request with the
|
544
|
+
# same token and the same parameters, the request will complete
|
545
|
+
# successfully. However, if you try to create a new resource using the
|
546
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
547
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
548
|
+
# client request. For more information about idempotency, see
|
549
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
536
550
|
#
|
537
551
|
# **A suitable default value is auto-generated.** You should normally
|
538
552
|
# not need to pass this option.
|
553
|
+
#
|
554
|
+
#
|
555
|
+
#
|
556
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
539
557
|
# @return [String]
|
540
558
|
#
|
541
559
|
class CreateDestinationRequest < Struct.new(
|
@@ -579,13 +597,22 @@ module Aws::IoTWireless
|
|
579
597
|
# @return [Array<Types::Tag>]
|
580
598
|
#
|
581
599
|
# @!attribute [rw] client_request_token
|
582
|
-
# Each resource must have a unique client request token.
|
583
|
-
#
|
584
|
-
#
|
585
|
-
#
|
600
|
+
# Each resource must have a unique client request token. The client
|
601
|
+
# token is used to implement idempotency. It ensures that the request
|
602
|
+
# completes no more than one time. If you retry a request with the
|
603
|
+
# same token and the same parameters, the request will complete
|
604
|
+
# successfully. However, if you try to create a new resource using the
|
605
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
606
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
607
|
+
# client request. For more information about idempotency, see
|
608
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
586
609
|
#
|
587
610
|
# **A suitable default value is auto-generated.** You should normally
|
588
611
|
# not need to pass this option.
|
612
|
+
#
|
613
|
+
#
|
614
|
+
#
|
615
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
589
616
|
# @return [String]
|
590
617
|
#
|
591
618
|
# @!attribute [rw] sidewalk
|
@@ -627,13 +654,22 @@ module Aws::IoTWireless
|
|
627
654
|
# @return [String]
|
628
655
|
#
|
629
656
|
# @!attribute [rw] client_request_token
|
630
|
-
# Each resource must have a unique client request token.
|
631
|
-
#
|
632
|
-
#
|
633
|
-
#
|
657
|
+
# Each resource must have a unique client request token. The client
|
658
|
+
# token is used to implement idempotency. It ensures that the request
|
659
|
+
# completes no more than one time. If you retry a request with the
|
660
|
+
# same token and the same parameters, the request will complete
|
661
|
+
# successfully. However, if you try to create a new resource using the
|
662
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
663
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
664
|
+
# client request. For more information about idempotency, see
|
665
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
634
666
|
#
|
635
667
|
# **A suitable default value is auto-generated.** You should normally
|
636
668
|
# not need to pass this option.
|
669
|
+
#
|
670
|
+
#
|
671
|
+
#
|
672
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
637
673
|
# @return [String]
|
638
674
|
#
|
639
675
|
# @!attribute [rw] lo_ra_wan
|
@@ -718,13 +754,22 @@ module Aws::IoTWireless
|
|
718
754
|
# @return [String]
|
719
755
|
#
|
720
756
|
# @!attribute [rw] client_request_token
|
721
|
-
# Each resource must have a unique client request token.
|
722
|
-
#
|
723
|
-
#
|
724
|
-
#
|
757
|
+
# Each resource must have a unique client request token. The client
|
758
|
+
# token is used to implement idempotency. It ensures that the request
|
759
|
+
# completes no more than one time. If you retry a request with the
|
760
|
+
# same token and the same parameters, the request will complete
|
761
|
+
# successfully. However, if you try to create a new resource using the
|
762
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
763
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
764
|
+
# client request. For more information about idempotency, see
|
765
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
725
766
|
#
|
726
767
|
# **A suitable default value is auto-generated.** You should normally
|
727
768
|
# not need to pass this option.
|
769
|
+
#
|
770
|
+
#
|
771
|
+
#
|
772
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
728
773
|
# @return [String]
|
729
774
|
#
|
730
775
|
# @!attribute [rw] lo_ra_wan
|
@@ -792,13 +837,22 @@ module Aws::IoTWireless
|
|
792
837
|
# @return [Array<Types::Tag>]
|
793
838
|
#
|
794
839
|
# @!attribute [rw] client_request_token
|
795
|
-
# Each resource must have a unique client request token.
|
796
|
-
#
|
797
|
-
#
|
798
|
-
#
|
840
|
+
# Each resource must have a unique client request token. The client
|
841
|
+
# token is used to implement idempotency. It ensures that the request
|
842
|
+
# completes no more than one time. If you retry a request with the
|
843
|
+
# same token and the same parameters, the request will complete
|
844
|
+
# successfully. However, if you try to create a new resource using the
|
845
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
846
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
847
|
+
# client request. For more information about idempotency, see
|
848
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
799
849
|
#
|
800
850
|
# **A suitable default value is auto-generated.** You should normally
|
801
851
|
# not need to pass this option.
|
852
|
+
#
|
853
|
+
#
|
854
|
+
#
|
855
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
802
856
|
# @return [String]
|
803
857
|
#
|
804
858
|
# @!attribute [rw] multicast_groups
|
@@ -850,13 +904,22 @@ module Aws::IoTWireless
|
|
850
904
|
# @return [Array<Types::Tag>]
|
851
905
|
#
|
852
906
|
# @!attribute [rw] client_request_token
|
853
|
-
# Each resource must have a unique client request token.
|
854
|
-
#
|
855
|
-
#
|
856
|
-
#
|
907
|
+
# Each resource must have a unique client request token. The client
|
908
|
+
# token is used to implement idempotency. It ensures that the request
|
909
|
+
# completes no more than one time. If you retry a request with the
|
910
|
+
# same token and the same parameters, the request will complete
|
911
|
+
# successfully. However, if you try to create a new resource using the
|
912
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
913
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
914
|
+
# client request. For more information about idempotency, see
|
915
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
857
916
|
#
|
858
917
|
# **A suitable default value is auto-generated.** You should normally
|
859
918
|
# not need to pass this option.
|
919
|
+
#
|
920
|
+
#
|
921
|
+
#
|
922
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
860
923
|
# @return [String]
|
861
924
|
#
|
862
925
|
class CreateServiceProfileRequest < Struct.new(
|
@@ -900,13 +963,22 @@ module Aws::IoTWireless
|
|
900
963
|
# @return [String]
|
901
964
|
#
|
902
965
|
# @!attribute [rw] client_request_token
|
903
|
-
# Each resource must have a unique client request token.
|
904
|
-
#
|
905
|
-
#
|
906
|
-
#
|
966
|
+
# Each resource must have a unique client request token. The client
|
967
|
+
# token is used to implement idempotency. It ensures that the request
|
968
|
+
# completes no more than one time. If you retry a request with the
|
969
|
+
# same token and the same parameters, the request will complete
|
970
|
+
# successfully. However, if you try to create a new resource using the
|
971
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
972
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
973
|
+
# client request. For more information about idempotency, see
|
974
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
907
975
|
#
|
908
976
|
# **A suitable default value is auto-generated.** You should normally
|
909
977
|
# not need to pass this option.
|
978
|
+
#
|
979
|
+
#
|
980
|
+
#
|
981
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
910
982
|
# @return [String]
|
911
983
|
#
|
912
984
|
# @!attribute [rw] lo_ra_wan
|
@@ -977,13 +1049,22 @@ module Aws::IoTWireless
|
|
977
1049
|
# @return [Array<Types::Tag>]
|
978
1050
|
#
|
979
1051
|
# @!attribute [rw] client_request_token
|
980
|
-
# Each resource must have a unique client request token.
|
981
|
-
#
|
982
|
-
#
|
983
|
-
#
|
1052
|
+
# Each resource must have a unique client request token. The client
|
1053
|
+
# token is used to implement idempotency. It ensures that the request
|
1054
|
+
# completes no more than one time. If you retry a request with the
|
1055
|
+
# same token and the same parameters, the request will complete
|
1056
|
+
# successfully. However, if you try to create a new resource using the
|
1057
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
1058
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
1059
|
+
# client request. For more information about idempotency, see
|
1060
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
984
1061
|
#
|
985
1062
|
# **A suitable default value is auto-generated.** You should normally
|
986
1063
|
# not need to pass this option.
|
1064
|
+
#
|
1065
|
+
#
|
1066
|
+
#
|
1067
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
987
1068
|
# @return [String]
|
988
1069
|
#
|
989
1070
|
class CreateWirelessGatewayRequest < Struct.new(
|
@@ -1026,13 +1107,22 @@ module Aws::IoTWireless
|
|
1026
1107
|
# @return [Types::UpdateWirelessGatewayTaskCreate]
|
1027
1108
|
#
|
1028
1109
|
# @!attribute [rw] client_request_token
|
1029
|
-
# Each resource must have a unique client request token.
|
1030
|
-
#
|
1031
|
-
#
|
1032
|
-
#
|
1110
|
+
# Each resource must have a unique client request token. The client
|
1111
|
+
# token is used to implement idempotency. It ensures that the request
|
1112
|
+
# completes no more than one time. If you retry a request with the
|
1113
|
+
# same token and the same parameters, the request will complete
|
1114
|
+
# successfully. However, if you try to create a new resource using the
|
1115
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
1116
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
1117
|
+
# client request. For more information about idempotency, see
|
1118
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
1033
1119
|
#
|
1034
1120
|
# **A suitable default value is auto-generated.** You should normally
|
1035
1121
|
# not need to pass this option.
|
1122
|
+
#
|
1123
|
+
#
|
1124
|
+
#
|
1125
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1036
1126
|
# @return [String]
|
1037
1127
|
#
|
1038
1128
|
# @!attribute [rw] tags
|
@@ -1932,7 +2022,8 @@ module Aws::IoTWireless
|
|
1932
2022
|
class GetMetricConfigurationRequest < Aws::EmptyStructure; end
|
1933
2023
|
|
1934
2024
|
# @!attribute [rw] summary_metric
|
1935
|
-
# The
|
2025
|
+
# The configuration status of the AWS account for summary metric
|
2026
|
+
# aggregation.
|
1936
2027
|
# @return [Types::SummaryMetricConfiguration]
|
1937
2028
|
#
|
1938
2029
|
class GetMetricConfigurationResponse < Struct.new(
|
@@ -1942,7 +2033,7 @@ module Aws::IoTWireless
|
|
1942
2033
|
end
|
1943
2034
|
|
1944
2035
|
# @!attribute [rw] summary_metric_queries
|
1945
|
-
# The list of queries to retrieve summary metrics.
|
2036
|
+
# The list of queries to retrieve the summary metrics.
|
1946
2037
|
# @return [Array<Types::SummaryMetricQuery>]
|
1947
2038
|
#
|
1948
2039
|
class GetMetricsRequest < Struct.new(
|
@@ -1952,7 +2043,7 @@ module Aws::IoTWireless
|
|
1952
2043
|
end
|
1953
2044
|
|
1954
2045
|
# @!attribute [rw] summary_metric_query_results
|
1955
|
-
# The list of
|
2046
|
+
# The list of summary metrics that were retrieved.
|
1956
2047
|
# @return [Array<Types::SummaryMetricQueryResult>]
|
1957
2048
|
#
|
1958
2049
|
class GetMetricsResponse < Struct.new(
|
@@ -3870,13 +3961,18 @@ module Aws::IoTWireless
|
|
3870
3961
|
# Information about the gateways accessed by the device.
|
3871
3962
|
# @return [Array<Types::LoRaWANGatewayMetadata>]
|
3872
3963
|
#
|
3964
|
+
# @!attribute [rw] public_gateways
|
3965
|
+
# Information about the LoRaWAN public network accessed by the device.
|
3966
|
+
# @return [Array<Types::LoRaWANPublicGatewayMetadata>]
|
3967
|
+
#
|
3873
3968
|
class LoRaWANDeviceMetadata < Struct.new(
|
3874
3969
|
:dev_eui,
|
3875
3970
|
:f_port,
|
3876
3971
|
:data_rate,
|
3877
3972
|
:frequency,
|
3878
3973
|
:timestamp,
|
3879
|
-
:gateways
|
3974
|
+
:gateways,
|
3975
|
+
:public_gateways)
|
3880
3976
|
SENSITIVE = []
|
3881
3977
|
include Aws::Structure
|
3882
3978
|
end
|
@@ -4346,6 +4442,44 @@ module Aws::IoTWireless
|
|
4346
4442
|
include Aws::Structure
|
4347
4443
|
end
|
4348
4444
|
|
4445
|
+
# LoRaWAN public gateway metadata.
|
4446
|
+
#
|
4447
|
+
# @!attribute [rw] provider_net_id
|
4448
|
+
# The ID of the LoRaWAN public network provider.
|
4449
|
+
# @return [String]
|
4450
|
+
#
|
4451
|
+
# @!attribute [rw] id
|
4452
|
+
# The ID of the gateways that are operated by the network provider.
|
4453
|
+
# @return [String]
|
4454
|
+
#
|
4455
|
+
# @!attribute [rw] rssi
|
4456
|
+
# The RSSI (received signal strength indicator) value.
|
4457
|
+
# @return [Float]
|
4458
|
+
#
|
4459
|
+
# @!attribute [rw] snr
|
4460
|
+
# The SNR (signal to noise ratio) value.
|
4461
|
+
# @return [Float]
|
4462
|
+
#
|
4463
|
+
# @!attribute [rw] rf_region
|
4464
|
+
# The frequency band (RFRegion) value.
|
4465
|
+
# @return [String]
|
4466
|
+
#
|
4467
|
+
# @!attribute [rw] dl_allowed
|
4468
|
+
# Boolean that indicates whether downlink is allowed using the
|
4469
|
+
# network.
|
4470
|
+
# @return [Boolean]
|
4471
|
+
#
|
4472
|
+
class LoRaWANPublicGatewayMetadata < Struct.new(
|
4473
|
+
:provider_net_id,
|
4474
|
+
:id,
|
4475
|
+
:rssi,
|
4476
|
+
:snr,
|
4477
|
+
:rf_region,
|
4478
|
+
:dl_allowed)
|
4479
|
+
SENSITIVE = []
|
4480
|
+
include Aws::Structure
|
4481
|
+
end
|
4482
|
+
|
4349
4483
|
# LoRaWAN router info.
|
4350
4484
|
#
|
4351
4485
|
# @!attribute [rw] f_port
|
@@ -4639,33 +4773,33 @@ module Aws::IoTWireless
|
|
4639
4773
|
# The aggregated values of the metric.
|
4640
4774
|
#
|
4641
4775
|
# @!attribute [rw] min
|
4642
|
-
# The minimum of the values of
|
4643
|
-
#
|
4776
|
+
# The minimum of the values of all data points collected during the
|
4777
|
+
# aggregation period.
|
4644
4778
|
# @return [Float]
|
4645
4779
|
#
|
4646
4780
|
# @!attribute [rw] max
|
4647
|
-
# The maximum of the values of the
|
4648
|
-
# the period.
|
4781
|
+
# The maximum of the values of all the data points collected during
|
4782
|
+
# the aggregation period.
|
4649
4783
|
# @return [Float]
|
4650
4784
|
#
|
4651
4785
|
# @!attribute [rw] sum
|
4652
|
-
# The sum of the values of
|
4653
|
-
# period.
|
4786
|
+
# The sum of the values of all data points collected during the
|
4787
|
+
# aggregation period.
|
4654
4788
|
# @return [Float]
|
4655
4789
|
#
|
4656
4790
|
# @!attribute [rw] avg
|
4657
|
-
# The average of the values of
|
4658
|
-
#
|
4791
|
+
# The average of the values of all data points collected during the
|
4792
|
+
# aggregation period.
|
4659
4793
|
# @return [Float]
|
4660
4794
|
#
|
4661
4795
|
# @!attribute [rw] std
|
4662
|
-
# The standard deviation of the values of
|
4663
|
-
#
|
4796
|
+
# The standard deviation of the values of all data points collected
|
4797
|
+
# during the aggregation period.
|
4664
4798
|
# @return [Float]
|
4665
4799
|
#
|
4666
4800
|
# @!attribute [rw] p90
|
4667
|
-
# The 90th percentile of the values of
|
4668
|
-
# during the period.
|
4801
|
+
# The 90th percentile of the values of all data points collected
|
4802
|
+
# during the aggregation period.
|
4669
4803
|
# @return [Float]
|
4670
4804
|
#
|
4671
4805
|
class MetricQueryValue < Struct.new(
|
@@ -5622,13 +5756,22 @@ module Aws::IoTWireless
|
|
5622
5756
|
# @return [String]
|
5623
5757
|
#
|
5624
5758
|
# @!attribute [rw] client_request_token
|
5625
|
-
# Each resource must have a unique client request token.
|
5626
|
-
#
|
5627
|
-
#
|
5628
|
-
#
|
5759
|
+
# Each resource must have a unique client request token. The client
|
5760
|
+
# token is used to implement idempotency. It ensures that the request
|
5761
|
+
# completes no more than one time. If you retry a request with the
|
5762
|
+
# same token and the same parameters, the request will complete
|
5763
|
+
# successfully. However, if you try to create a new resource using the
|
5764
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
5765
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
5766
|
+
# client request. For more information about idempotency, see
|
5767
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
5629
5768
|
#
|
5630
5769
|
# **A suitable default value is auto-generated.** You should normally
|
5631
5770
|
# not need to pass this option.
|
5771
|
+
#
|
5772
|
+
#
|
5773
|
+
#
|
5774
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
5632
5775
|
# @return [String]
|
5633
5776
|
#
|
5634
5777
|
# @!attribute [rw] device_name
|
@@ -5678,13 +5821,22 @@ module Aws::IoTWireless
|
|
5678
5821
|
# @return [String]
|
5679
5822
|
#
|
5680
5823
|
# @!attribute [rw] client_request_token
|
5681
|
-
# Each resource must have a unique client request token.
|
5682
|
-
#
|
5683
|
-
#
|
5684
|
-
#
|
5824
|
+
# Each resource must have a unique client request token. The client
|
5825
|
+
# token is used to implement idempotency. It ensures that the request
|
5826
|
+
# completes no more than one time. If you retry a request with the
|
5827
|
+
# same token and the same parameters, the request will complete
|
5828
|
+
# successfully. However, if you try to create a new resource using the
|
5829
|
+
# same token but different parameters, an HTTP 409 conflict occurs. If
|
5830
|
+
# you omit this value, AWS SDKs will automatically generate a unique
|
5831
|
+
# client request. For more information about idempotency, see
|
5832
|
+
# [Ensuring idempotency in Amazon EC2 API requests][1].
|
5685
5833
|
#
|
5686
5834
|
# **A suitable default value is auto-generated.** You should normally
|
5687
5835
|
# not need to pass this option.
|
5836
|
+
#
|
5837
|
+
#
|
5838
|
+
#
|
5839
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
5688
5840
|
# @return [String]
|
5689
5841
|
#
|
5690
5842
|
# @!attribute [rw] tags
|
@@ -5721,10 +5873,10 @@ module Aws::IoTWireless
|
|
5721
5873
|
include Aws::Structure
|
5722
5874
|
end
|
5723
5875
|
|
5724
|
-
# The configuration of summary
|
5876
|
+
# The configuration of summary metrics.
|
5725
5877
|
#
|
5726
5878
|
# @!attribute [rw] status
|
5727
|
-
# The configuration of summary
|
5879
|
+
# The status of the configuration of summary metrics.
|
5728
5880
|
# @return [String]
|
5729
5881
|
#
|
5730
5882
|
class SummaryMetricConfiguration < Struct.new(
|
@@ -5733,10 +5885,10 @@ module Aws::IoTWireless
|
|
5733
5885
|
include Aws::Structure
|
5734
5886
|
end
|
5735
5887
|
|
5736
|
-
# The metric query object.
|
5888
|
+
# The summary metric query object.
|
5737
5889
|
#
|
5738
5890
|
# @!attribute [rw] query_id
|
5739
|
-
# The id of the query.
|
5891
|
+
# The id of the summary metric query.
|
5740
5892
|
# @return [String]
|
5741
5893
|
#
|
5742
5894
|
# @!attribute [rw] metric_name
|
@@ -5744,19 +5896,19 @@ module Aws::IoTWireless
|
|
5744
5896
|
# @return [String]
|
5745
5897
|
#
|
5746
5898
|
# @!attribute [rw] dimensions
|
5747
|
-
# The dimensions of the metric.
|
5899
|
+
# The dimensions of the summary metric.
|
5748
5900
|
# @return [Array<Types::Dimension>]
|
5749
5901
|
#
|
5750
5902
|
# @!attribute [rw] aggregation_period
|
5751
|
-
# The aggregation period of the metric.
|
5903
|
+
# The aggregation period of the summary metric.
|
5752
5904
|
# @return [String]
|
5753
5905
|
#
|
5754
5906
|
# @!attribute [rw] start_timestamp
|
5755
|
-
# The start timestamp for summary metric query.
|
5907
|
+
# The start timestamp for the summary metric query.
|
5756
5908
|
# @return [Time]
|
5757
5909
|
#
|
5758
5910
|
# @!attribute [rw] end_timestamp
|
5759
|
-
# The end timestamp for summary metric query.
|
5911
|
+
# The end timestamp for the summary metric query.
|
5760
5912
|
# @return [Time]
|
5761
5913
|
#
|
5762
5914
|
class SummaryMetricQuery < Struct.new(
|
@@ -5770,22 +5922,22 @@ module Aws::IoTWireless
|
|
5770
5922
|
include Aws::Structure
|
5771
5923
|
end
|
5772
5924
|
|
5773
|
-
# The result of metrics aggregation operation.
|
5925
|
+
# The result of the summary metrics aggregation operation.
|
5774
5926
|
#
|
5775
5927
|
# @!attribute [rw] query_id
|
5776
|
-
# The
|
5928
|
+
# The ID of the summary metric results query operation.
|
5777
5929
|
# @return [String]
|
5778
5930
|
#
|
5779
5931
|
# @!attribute [rw] query_status
|
5780
|
-
# The status of the metric query.
|
5932
|
+
# The status of the summary metric query result.
|
5781
5933
|
# @return [String]
|
5782
5934
|
#
|
5783
5935
|
# @!attribute [rw] error
|
5784
|
-
# The error message for the summary metric query.
|
5936
|
+
# The error message for the summary metric query result.
|
5785
5937
|
# @return [String]
|
5786
5938
|
#
|
5787
5939
|
# @!attribute [rw] metric_name
|
5788
|
-
# The name of the metric.
|
5940
|
+
# The name of the summary metric query result.
|
5789
5941
|
# @return [String]
|
5790
5942
|
#
|
5791
5943
|
# @!attribute [rw] dimensions
|
@@ -5797,11 +5949,11 @@ module Aws::IoTWireless
|
|
5797
5949
|
# @return [String]
|
5798
5950
|
#
|
5799
5951
|
# @!attribute [rw] start_timestamp
|
5800
|
-
# The start timestamp for summary metric query.
|
5952
|
+
# The start timestamp for the summary metric query.
|
5801
5953
|
# @return [Time]
|
5802
5954
|
#
|
5803
5955
|
# @!attribute [rw] end_timestamp
|
5804
|
-
# The end timestamp for summary metric query.
|
5956
|
+
# The end timestamp for the summary metric query.
|
5805
5957
|
# @return [Time]
|
5806
5958
|
#
|
5807
5959
|
# @!attribute [rw] timestamps
|
@@ -5809,7 +5961,7 @@ module Aws::IoTWireless
|
|
5809
5961
|
# @return [Array<Time>]
|
5810
5962
|
#
|
5811
5963
|
# @!attribute [rw] values
|
5812
|
-
# The list of aggregated
|
5964
|
+
# The list of aggregated summary metric query results.
|
5813
5965
|
# @return [Array<Types::MetricQueryValue>]
|
5814
5966
|
#
|
5815
5967
|
# @!attribute [rw] unit
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -1303,6 +1303,7 @@ module Aws::IoTWireless
|
|
1303
1303
|
attr_accessor frequency: ::Integer
|
1304
1304
|
attr_accessor timestamp: ::String
|
1305
1305
|
attr_accessor gateways: ::Array[Types::LoRaWANGatewayMetadata]
|
1306
|
+
attr_accessor public_gateways: ::Array[Types::LoRaWANPublicGatewayMetadata]
|
1306
1307
|
SENSITIVE: []
|
1307
1308
|
end
|
1308
1309
|
|
@@ -1436,6 +1437,16 @@ module Aws::IoTWireless
|
|
1436
1437
|
SENSITIVE: []
|
1437
1438
|
end
|
1438
1439
|
|
1440
|
+
class LoRaWANPublicGatewayMetadata
|
1441
|
+
attr_accessor provider_net_id: ::String
|
1442
|
+
attr_accessor id: ::String
|
1443
|
+
attr_accessor rssi: ::Float
|
1444
|
+
attr_accessor snr: ::Float
|
1445
|
+
attr_accessor rf_region: ::String
|
1446
|
+
attr_accessor dl_allowed: bool
|
1447
|
+
SENSITIVE: []
|
1448
|
+
end
|
1449
|
+
|
1439
1450
|
class LoRaWANSendDataToDevice
|
1440
1451
|
attr_accessor f_port: ::Integer
|
1441
1452
|
attr_accessor participating_gateways: Types::ParticipatingGateways
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotwireless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|