aws-sdk-iotwireless 1.44.0 → 1.46.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +263 -98
- 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 +4 -4
@@ -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
|