aws-sdk-iotwireless 1.44.0 → 1.46.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e57233ae52241e58bae235e5446db0097669e99d710a556f57b17ed8feff506e
4
- data.tar.gz: a315d8b53b482b0427931f1f4d192eca97a1abb569a2e568320c10027cd0a741
3
+ metadata.gz: dd17f3dc7b72ee576a06e4a6af68525af1a23d7c36a801e8aeac4352944fd77b
4
+ data.tar.gz: cd88326ccce36c6eb403e1f1529df702507c73c59cceb7fc173aa466f69f8f9c
5
5
  SHA512:
6
- metadata.gz: 85dea37a609bd16d108729ad7907e4c9d92baefd203c4a407adfe473c6325b990f0cd11d310e415fa60b6cfffd33b9d664acc1df776b348b2470b2a6c49f7a8b
7
- data.tar.gz: 9b773f9f38fc6788258a755ab5e63cc2d3981de7bcfa4f93cb53323ca9679b50a4840ff00b43497cc30236a313a420255878e78e150221d1a143d9c948a5aebd
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.44.0
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
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
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 [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
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 [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
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 [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
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. If you try to
398
- # create a new resource with the same token as a resource that already
399
- # exists, an exception occurs. If you omit this value, AWS SDKs will
400
- # automatically generate a unique client request.
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. If you try to
637
- # create a new resource with the same token as a resource that already
638
- # exists, an exception occurs. If you omit this value, AWS SDKs will
639
- # automatically generate a unique client request.
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. If you try to
692
- # create a new resource with the same token as a resource that already
693
- # exists, an exception occurs. If you omit this value, AWS SDKs will
694
- # automatically generate a unique client request.
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. If you try to
766
- # create a new resource with the same token as a resource that already
767
- # exists, an exception occurs. If you omit this value, AWS SDKs will
768
- # automatically generate a unique client request.
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. If you try to
857
- # create a new resource with the same token as a resource that already
858
- # exists, an exception occurs. If you omit this value, AWS SDKs will
859
- # automatically generate a unique client request.
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. If you try to
934
- # create a new resource with the same token as a resource that already
935
- # exists, an exception occurs. If you omit this value, AWS SDKs will
936
- # automatically generate a unique client request.
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. If you try to
999
- # create a new resource with the same token as a resource that already
1000
- # exists, an exception occurs. If you omit this value, AWS SDKs will
1001
- # automatically generate a unique client request.
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. If you try to
1059
- # create a new resource with the same token as a resource that already
1060
- # exists, an exception occurs. If you omit this value, AWS SDKs will
1061
- # automatically generate a unique client request.
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. If you try to
1188
- # create a new resource with the same token as a resource that already
1189
- # exists, an exception occurs. If you omit this value, AWS SDKs will
1190
- # automatically generate a unique client request.
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. If you try to
1287
- # create a new resource with the same token as a resource that already
1288
- # exists, an exception occurs. If you omit this value, AWS SDKs will
1289
- # automatically generate a unique client request.
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. If you try to
4250
- # create a new resource with the same token as a resource that already
4251
- # exists, an exception occurs. If you omit this value, AWS SDKs will
4252
- # automatically generate a unique client request.
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. If you try to
4313
- # create a new resource with the same token as a resource that already
4314
- # exists, an exception occurs. If you omit this value, AWS SDKs will
4315
- # automatically generate a unique client request.
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.44.0'
5284
+ context[:gem_version] = '1.46.0'
5120
5285
  Seahorse::Client::Request.new(handlers, context)
5121
5286
  end
5122
5287