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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd17f3dc7b72ee576a06e4a6af68525af1a23d7c36a801e8aeac4352944fd77b
|
4
|
+
data.tar.gz: cd88326ccce36c6eb403e1f1529df702507c73c59cceb7fc173aa466f69f8f9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d6edc0ca35877ae0540e8b3128afcc4fe07bdb32efe533db0983fa9239c85e513cf72c95a16fd7e68d9bd277166a1d0bef9691c256ab35a381e3be7eac1ef09
|
7
|
+
data.tar.gz: 2b6ce186c5eaf584d87d735aba02c4e82571f99468fcf87a3f98d2741a9ced1bad6a42fdfea856db8779ed29cbced09d74ca428d23c08b0c14f78f16d9869cd6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.46.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.45.0 (2024-04-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add PublicGateways in the GetWirelessStatistics call response, indicating the LoRaWAN public network accessed by the device.
|
13
|
+
|
4
14
|
1.44.0 (2024-03-29)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.46.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::IoTWireless
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::IoTWireless
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::IoTWireless
|
|
337
346
|
# @option options [Aws::IoTWireless::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::IoTWireless::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
368
399
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
378
405
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -394,14 +418,23 @@ module Aws::IoTWireless
|
|
394
418
|
# The Sidewalk account credentials.
|
395
419
|
#
|
396
420
|
# @option params [String] :client_request_token
|
397
|
-
# Each resource must have a unique client request token.
|
398
|
-
#
|
399
|
-
#
|
400
|
-
#
|
421
|
+
# Each resource must have a unique client request token. The client
|
422
|
+
# token is used to implement idempotency. It ensures that the request
|
423
|
+
# completes no more than one time. If you retry a request with the same
|
424
|
+
# token and the same parameters, the request will complete successfully.
|
425
|
+
# However, if you try to create a new resource using the same token but
|
426
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
427
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
428
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
429
|
+
# Amazon EC2 API requests][1].
|
401
430
|
#
|
402
431
|
# **A suitable default value is auto-generated.** You should normally
|
403
432
|
# not need to pass this option.**
|
404
433
|
#
|
434
|
+
#
|
435
|
+
#
|
436
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
437
|
+
#
|
405
438
|
# @option params [Array<Types::Tag>] :tags
|
406
439
|
# The tags to attach to the specified resource. Tags are metadata that
|
407
440
|
# you can use to manage a resource.
|
@@ -633,14 +666,23 @@ module Aws::IoTWireless
|
|
633
666
|
# can use to manage a resource.
|
634
667
|
#
|
635
668
|
# @option params [String] :client_request_token
|
636
|
-
# Each resource must have a unique client request token.
|
637
|
-
#
|
638
|
-
#
|
639
|
-
#
|
669
|
+
# Each resource must have a unique client request token. The client
|
670
|
+
# token is used to implement idempotency. It ensures that the request
|
671
|
+
# completes no more than one time. If you retry a request with the same
|
672
|
+
# token and the same parameters, the request will complete successfully.
|
673
|
+
# However, if you try to create a new resource using the same token but
|
674
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
675
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
676
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
677
|
+
# Amazon EC2 API requests][1].
|
640
678
|
#
|
641
679
|
# **A suitable default value is auto-generated.** You should normally
|
642
680
|
# not need to pass this option.**
|
643
681
|
#
|
682
|
+
#
|
683
|
+
#
|
684
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
685
|
+
#
|
644
686
|
# @return [Types::CreateDestinationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
645
687
|
#
|
646
688
|
# * {Types::CreateDestinationResponse#arn #arn} => String
|
@@ -688,14 +730,23 @@ module Aws::IoTWireless
|
|
688
730
|
# you can use to manage a resource.
|
689
731
|
#
|
690
732
|
# @option params [String] :client_request_token
|
691
|
-
# Each resource must have a unique client request token.
|
692
|
-
#
|
693
|
-
#
|
694
|
-
#
|
733
|
+
# Each resource must have a unique client request token. The client
|
734
|
+
# token is used to implement idempotency. It ensures that the request
|
735
|
+
# completes no more than one time. If you retry a request with the same
|
736
|
+
# token and the same parameters, the request will complete successfully.
|
737
|
+
# However, if you try to create a new resource using the same token but
|
738
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
739
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
740
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
741
|
+
# Amazon EC2 API requests][1].
|
695
742
|
#
|
696
743
|
# **A suitable default value is auto-generated.** You should normally
|
697
744
|
# not need to pass this option.**
|
698
745
|
#
|
746
|
+
#
|
747
|
+
#
|
748
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
749
|
+
#
|
699
750
|
# @option params [Types::SidewalkCreateDeviceProfile] :sidewalk
|
700
751
|
# The Sidewalk-related information for creating the Sidewalk device
|
701
752
|
# profile.
|
@@ -762,14 +813,23 @@ module Aws::IoTWireless
|
|
762
813
|
# The description of the new resource.
|
763
814
|
#
|
764
815
|
# @option params [String] :client_request_token
|
765
|
-
# Each resource must have a unique client request token.
|
766
|
-
#
|
767
|
-
#
|
768
|
-
#
|
816
|
+
# Each resource must have a unique client request token. The client
|
817
|
+
# token is used to implement idempotency. It ensures that the request
|
818
|
+
# completes no more than one time. If you retry a request with the same
|
819
|
+
# token and the same parameters, the request will complete successfully.
|
820
|
+
# However, if you try to create a new resource using the same token but
|
821
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
822
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
823
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
824
|
+
# Amazon EC2 API requests][1].
|
769
825
|
#
|
770
826
|
# **A suitable default value is auto-generated.** You should normally
|
771
827
|
# not need to pass this option.**
|
772
828
|
#
|
829
|
+
#
|
830
|
+
#
|
831
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
832
|
+
#
|
773
833
|
# @option params [Types::LoRaWANFuotaTask] :lo_ra_wan
|
774
834
|
# The LoRaWAN information used with a FUOTA task.
|
775
835
|
#
|
@@ -853,14 +913,23 @@ module Aws::IoTWireless
|
|
853
913
|
# The description of the multicast group.
|
854
914
|
#
|
855
915
|
# @option params [String] :client_request_token
|
856
|
-
# Each resource must have a unique client request token.
|
857
|
-
#
|
858
|
-
#
|
859
|
-
#
|
916
|
+
# Each resource must have a unique client request token. The client
|
917
|
+
# token is used to implement idempotency. It ensures that the request
|
918
|
+
# completes no more than one time. If you retry a request with the same
|
919
|
+
# token and the same parameters, the request will complete successfully.
|
920
|
+
# However, if you try to create a new resource using the same token but
|
921
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
922
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
923
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
924
|
+
# Amazon EC2 API requests][1].
|
860
925
|
#
|
861
926
|
# **A suitable default value is auto-generated.** You should normally
|
862
927
|
# not need to pass this option.**
|
863
928
|
#
|
929
|
+
#
|
930
|
+
#
|
931
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
932
|
+
#
|
864
933
|
# @option params [required, Types::LoRaWANMulticast] :lo_ra_wan
|
865
934
|
# The LoRaWAN information that is to be used with the multicast group.
|
866
935
|
#
|
@@ -930,14 +999,23 @@ module Aws::IoTWireless
|
|
930
999
|
# you can use to manage a resource.
|
931
1000
|
#
|
932
1001
|
# @option params [String] :client_request_token
|
933
|
-
# Each resource must have a unique client request token.
|
934
|
-
#
|
935
|
-
#
|
936
|
-
#
|
1002
|
+
# Each resource must have a unique client request token. The client
|
1003
|
+
# token is used to implement idempotency. It ensures that the request
|
1004
|
+
# completes no more than one time. If you retry a request with the same
|
1005
|
+
# token and the same parameters, the request will complete successfully.
|
1006
|
+
# However, if you try to create a new resource using the same token but
|
1007
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1008
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1009
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1010
|
+
# Amazon EC2 API requests][1].
|
937
1011
|
#
|
938
1012
|
# **A suitable default value is auto-generated.** You should normally
|
939
1013
|
# not need to pass this option.**
|
940
1014
|
#
|
1015
|
+
#
|
1016
|
+
#
|
1017
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1018
|
+
#
|
941
1019
|
# @option params [Array<String>] :multicast_groups
|
942
1020
|
# Multicast Group resources to add to the network analyzer
|
943
1021
|
# configruation. Provide the `MulticastGroupId` of the resource to add
|
@@ -995,14 +1073,23 @@ module Aws::IoTWireless
|
|
995
1073
|
# you can use to manage a resource.
|
996
1074
|
#
|
997
1075
|
# @option params [String] :client_request_token
|
998
|
-
# Each resource must have a unique client request token.
|
999
|
-
#
|
1000
|
-
#
|
1001
|
-
#
|
1076
|
+
# Each resource must have a unique client request token. The client
|
1077
|
+
# token is used to implement idempotency. It ensures that the request
|
1078
|
+
# completes no more than one time. If you retry a request with the same
|
1079
|
+
# token and the same parameters, the request will complete successfully.
|
1080
|
+
# However, if you try to create a new resource using the same token but
|
1081
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1082
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1083
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1084
|
+
# Amazon EC2 API requests][1].
|
1002
1085
|
#
|
1003
1086
|
# **A suitable default value is auto-generated.** You should normally
|
1004
1087
|
# not need to pass this option.**
|
1005
1088
|
#
|
1089
|
+
#
|
1090
|
+
#
|
1091
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1092
|
+
#
|
1006
1093
|
# @return [Types::CreateServiceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1007
1094
|
#
|
1008
1095
|
# * {Types::CreateServiceProfileResponse#arn #arn} => String
|
@@ -1055,14 +1142,23 @@ module Aws::IoTWireless
|
|
1055
1142
|
# The name of the destination to assign to the new wireless device.
|
1056
1143
|
#
|
1057
1144
|
# @option params [String] :client_request_token
|
1058
|
-
# Each resource must have a unique client request token.
|
1059
|
-
#
|
1060
|
-
#
|
1061
|
-
#
|
1145
|
+
# Each resource must have a unique client request token. The client
|
1146
|
+
# token is used to implement idempotency. It ensures that the request
|
1147
|
+
# completes no more than one time. If you retry a request with the same
|
1148
|
+
# token and the same parameters, the request will complete successfully.
|
1149
|
+
# However, if you try to create a new resource using the same token but
|
1150
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1151
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1152
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1153
|
+
# Amazon EC2 API requests][1].
|
1062
1154
|
#
|
1063
1155
|
# **A suitable default value is auto-generated.** You should normally
|
1064
1156
|
# not need to pass this option.**
|
1065
1157
|
#
|
1158
|
+
#
|
1159
|
+
#
|
1160
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1161
|
+
#
|
1066
1162
|
# @option params [Types::LoRaWANDevice] :lo_ra_wan
|
1067
1163
|
# The device configuration information to use to create the wireless
|
1068
1164
|
# device.
|
@@ -1169,6 +1265,19 @@ module Aws::IoTWireless
|
|
1169
1265
|
|
1170
1266
|
# Provisions a wireless gateway.
|
1171
1267
|
#
|
1268
|
+
# <note markdown="1"> When provisioning a wireless gateway, you might run into duplication
|
1269
|
+
# errors for the following reasons.
|
1270
|
+
#
|
1271
|
+
# * If you specify a `GatewayEui` value that already exists.
|
1272
|
+
#
|
1273
|
+
# * If you used a `ClientRequestToken` with the same parameters within
|
1274
|
+
# the last 10 minutes.
|
1275
|
+
#
|
1276
|
+
# To avoid this error, make sure that you use unique identifiers and
|
1277
|
+
# parameters for each request within the specified time period.
|
1278
|
+
#
|
1279
|
+
# </note>
|
1280
|
+
#
|
1172
1281
|
# @option params [String] :name
|
1173
1282
|
# The name of the new resource.
|
1174
1283
|
#
|
@@ -1184,14 +1293,23 @@ module Aws::IoTWireless
|
|
1184
1293
|
# you can use to manage a resource.
|
1185
1294
|
#
|
1186
1295
|
# @option params [String] :client_request_token
|
1187
|
-
# Each resource must have a unique client request token.
|
1188
|
-
#
|
1189
|
-
#
|
1190
|
-
#
|
1296
|
+
# Each resource must have a unique client request token. The client
|
1297
|
+
# token is used to implement idempotency. It ensures that the request
|
1298
|
+
# completes no more than one time. If you retry a request with the same
|
1299
|
+
# token and the same parameters, the request will complete successfully.
|
1300
|
+
# However, if you try to create a new resource using the same token but
|
1301
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1302
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1303
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1304
|
+
# Amazon EC2 API requests][1].
|
1191
1305
|
#
|
1192
1306
|
# **A suitable default value is auto-generated.** You should normally
|
1193
1307
|
# not need to pass this option.**
|
1194
1308
|
#
|
1309
|
+
#
|
1310
|
+
#
|
1311
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1312
|
+
#
|
1195
1313
|
# @return [Types::CreateWirelessGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1196
1314
|
#
|
1197
1315
|
# * {Types::CreateWirelessGatewayResponse#arn #arn} => String
|
@@ -1283,14 +1401,23 @@ module Aws::IoTWireless
|
|
1283
1401
|
# Information about the gateways to update.
|
1284
1402
|
#
|
1285
1403
|
# @option params [String] :client_request_token
|
1286
|
-
# Each resource must have a unique client request token.
|
1287
|
-
#
|
1288
|
-
#
|
1289
|
-
#
|
1404
|
+
# Each resource must have a unique client request token. The client
|
1405
|
+
# token is used to implement idempotency. It ensures that the request
|
1406
|
+
# completes no more than one time. If you retry a request with the same
|
1407
|
+
# token and the same parameters, the request will complete successfully.
|
1408
|
+
# However, if you try to create a new resource using the same token but
|
1409
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
1410
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
1411
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
1412
|
+
# Amazon EC2 API requests][1].
|
1290
1413
|
#
|
1291
1414
|
# **A suitable default value is auto-generated.** You should normally
|
1292
1415
|
# not need to pass this option.**
|
1293
1416
|
#
|
1417
|
+
#
|
1418
|
+
#
|
1419
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1420
|
+
#
|
1294
1421
|
# @option params [Array<Types::Tag>] :tags
|
1295
1422
|
# The tags to attach to the specified resource. Tags are metadata that
|
1296
1423
|
# you can use to manage a resource.
|
@@ -1537,6 +1664,19 @@ module Aws::IoTWireless
|
|
1537
1664
|
|
1538
1665
|
# Deletes a wireless gateway.
|
1539
1666
|
#
|
1667
|
+
# <note markdown="1"> When deleting a wireless gateway, you might run into duplication
|
1668
|
+
# errors for the following reasons.
|
1669
|
+
#
|
1670
|
+
# * If you specify a `GatewayEui` value that already exists.
|
1671
|
+
#
|
1672
|
+
# * If you used a `ClientRequestToken` with the same parameters within
|
1673
|
+
# the last 10 minutes.
|
1674
|
+
#
|
1675
|
+
# To avoid this error, make sure that you use unique identifiers and
|
1676
|
+
# parameters for each request within the specified time period.
|
1677
|
+
#
|
1678
|
+
# </note>
|
1679
|
+
#
|
1540
1680
|
# @option params [required, String] :id
|
1541
1681
|
# The ID of the resource to delete.
|
1542
1682
|
#
|
@@ -1984,7 +2124,7 @@ module Aws::IoTWireless
|
|
1984
2124
|
req.send_request(options)
|
1985
2125
|
end
|
1986
2126
|
|
1987
|
-
# Get the metric configuration status for this account.
|
2127
|
+
# Get the metric configuration status for this AWS account.
|
1988
2128
|
#
|
1989
2129
|
# @return [Types::GetMetricConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1990
2130
|
#
|
@@ -2001,10 +2141,10 @@ module Aws::IoTWireless
|
|
2001
2141
|
req.send_request(options)
|
2002
2142
|
end
|
2003
2143
|
|
2004
|
-
# Get metrics.
|
2144
|
+
# Get the summary metrics for this AWS account.
|
2005
2145
|
#
|
2006
2146
|
# @option params [Array<Types::SummaryMetricQuery>] :summary_metric_queries
|
2007
|
-
# The list of queries to retrieve summary metrics.
|
2147
|
+
# The list of queries to retrieve the summary metrics.
|
2008
2148
|
#
|
2009
2149
|
# @return [Types::GetMetricsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2010
2150
|
#
|
@@ -2871,6 +3011,13 @@ module Aws::IoTWireless
|
|
2871
3011
|
# resp.lo_ra_wan.gateways[0].gateway_eui #=> String
|
2872
3012
|
# resp.lo_ra_wan.gateways[0].snr #=> Float
|
2873
3013
|
# resp.lo_ra_wan.gateways[0].rssi #=> Float
|
3014
|
+
# resp.lo_ra_wan.public_gateways #=> Array
|
3015
|
+
# resp.lo_ra_wan.public_gateways[0].provider_net_id #=> String
|
3016
|
+
# resp.lo_ra_wan.public_gateways[0].id #=> String
|
3017
|
+
# resp.lo_ra_wan.public_gateways[0].rssi #=> Float
|
3018
|
+
# resp.lo_ra_wan.public_gateways[0].snr #=> Float
|
3019
|
+
# resp.lo_ra_wan.public_gateways[0].rf_region #=> String
|
3020
|
+
# resp.lo_ra_wan.public_gateways[0].dl_allowed #=> Boolean
|
2874
3021
|
# resp.sidewalk.rssi #=> Integer
|
2875
3022
|
# resp.sidewalk.battery_level #=> String, one of "normal", "low", "critical"
|
2876
3023
|
# resp.sidewalk.event #=> String, one of "discovered", "lost", "ack", "nack", "passthrough"
|
@@ -4246,14 +4393,23 @@ module Aws::IoTWireless
|
|
4246
4393
|
# onboarded to AWS IoT Wireless.
|
4247
4394
|
#
|
4248
4395
|
# @option params [String] :client_request_token
|
4249
|
-
# Each resource must have a unique client request token.
|
4250
|
-
#
|
4251
|
-
#
|
4252
|
-
#
|
4396
|
+
# Each resource must have a unique client request token. The client
|
4397
|
+
# token is used to implement idempotency. It ensures that the request
|
4398
|
+
# completes no more than one time. If you retry a request with the same
|
4399
|
+
# token and the same parameters, the request will complete successfully.
|
4400
|
+
# However, if you try to create a new resource using the same token but
|
4401
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
4402
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
4403
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
4404
|
+
# Amazon EC2 API requests][1].
|
4253
4405
|
#
|
4254
4406
|
# **A suitable default value is auto-generated.** You should normally
|
4255
4407
|
# not need to pass this option.**
|
4256
4408
|
#
|
4409
|
+
#
|
4410
|
+
#
|
4411
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
4412
|
+
#
|
4257
4413
|
# @option params [String] :device_name
|
4258
4414
|
# The name of the wireless device for which an import task is being
|
4259
4415
|
# started.
|
@@ -4309,14 +4465,23 @@ module Aws::IoTWireless
|
|
4309
4465
|
# to AWS IoT Wireless.
|
4310
4466
|
#
|
4311
4467
|
# @option params [String] :client_request_token
|
4312
|
-
# Each resource must have a unique client request token.
|
4313
|
-
#
|
4314
|
-
#
|
4315
|
-
#
|
4468
|
+
# Each resource must have a unique client request token. The client
|
4469
|
+
# token is used to implement idempotency. It ensures that the request
|
4470
|
+
# completes no more than one time. If you retry a request with the same
|
4471
|
+
# token and the same parameters, the request will complete successfully.
|
4472
|
+
# However, if you try to create a new resource using the same token but
|
4473
|
+
# different parameters, an HTTP 409 conflict occurs. If you omit this
|
4474
|
+
# value, AWS SDKs will automatically generate a unique client request.
|
4475
|
+
# For more information about idempotency, see [Ensuring idempotency in
|
4476
|
+
# Amazon EC2 API requests][1].
|
4316
4477
|
#
|
4317
4478
|
# **A suitable default value is auto-generated.** You should normally
|
4318
4479
|
# not need to pass this option.**
|
4319
4480
|
#
|
4481
|
+
#
|
4482
|
+
#
|
4483
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
4484
|
+
#
|
4320
4485
|
# @option params [Array<Types::Tag>] :tags
|
4321
4486
|
# The tag to attach to the specified resource. Tags are metadata that
|
4322
4487
|
# you can use to manage a resource.
|
@@ -4659,7 +4824,7 @@ module Aws::IoTWireless
|
|
4659
4824
|
req.send_request(options)
|
4660
4825
|
end
|
4661
4826
|
|
4662
|
-
# Update the metric configuration.
|
4827
|
+
# Update the summary metric configuration.
|
4663
4828
|
#
|
4664
4829
|
# @option params [Types::SummaryMetricConfiguration] :summary_metric
|
4665
4830
|
# The value to be used to set summary metric configuration.
|
@@ -5116,7 +5281,7 @@ module Aws::IoTWireless
|
|
5116
5281
|
params: params,
|
5117
5282
|
config: config)
|
5118
5283
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
5119
|
-
context[:gem_version] = '1.
|
5284
|
+
context[:gem_version] = '1.46.0'
|
5120
5285
|
Seahorse::Client::Request.new(handlers, context)
|
5121
5286
|
end
|
5122
5287
|
|