aws-sdk-iotwireless 1.16.0 → 1.20.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: '082b4058fcb7539f4e668616b56a8e4dca4b568eb6984f3fbc388b63eb9acf5b'
4
- data.tar.gz: c932440d7e15b2be1bef2bb9c90902498867a53a9d74f6f50ca9c7c246c78f99
3
+ metadata.gz: 4890979e9ed84ecd116be20d9055a80c3feaefdd858e289f8aec31d3d82e5786
4
+ data.tar.gz: 440838ef4bea6d80a3c0bf441f03873f66b33dc299d344ce0262b878c015b4e3
5
5
  SHA512:
6
- metadata.gz: b931f258f38cc62852fe27ddf93450fd39d617e9cf9814fb48941f4ac91eaeede9187a58c4e4d33e53b33a99ac671233e282aac6354664e0818310bb9884c961
7
- data.tar.gz: b7313389fce1a09d2d4d7e04257967dc18e7ca5f36066f797d2eee89ca4fdc779a87bf221f3026479b49ab38cf61113062e42d16330edb7b0ef3d5c803e9a5d2
6
+ metadata.gz: 86042e19371af3fc3a442ec387ad227dab55445a7e4f74b9d7d598b006938b6cf30ba11cd9ec97f78be37395efa21d3ce5cb491c2fa2bc7d3ced4a222f289642
7
+ data.tar.gz: 3a495a8640427600062f1652ce875b7d3d2205ac15f1e28a0694f09abe2c2f3cea4786bae15343d81e3abb6dee1a989c07f3a8ecfdb70740941ee9ac911cd92e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2022-01-06)
5
+ ------------------
6
+
7
+ * Feature - Downlink Queue Management feature provides APIs for customers to manage the queued messages destined to device inside AWS IoT Core for LoRaWAN. Customer can view, delete or purge the queued message(s). It allows customer to preempt the queued messages and let more urgent messages go through.
8
+
9
+ 1.19.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.18.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.17.0 (2021-11-23)
20
+ ------------------
21
+
22
+ * Feature - Two new APIs, GetNetworkAnalyzerConfiguration and UpdateNetworkAnalyzerConfiguration, are added for the newly released Network Analyzer feature which enables customers to view real-time frame information and logs from LoRaWAN devices and gateways.
23
+
4
24
  1.16.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.20.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::IoTWireless
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -119,7 +121,9 @@ module Aws::IoTWireless
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::IoTWireless
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -295,7 +303,7 @@ module Aws::IoTWireless
295
303
  # seconds to wait when opening a HTTP session before raising a
296
304
  # `Timeout::Error`.
297
305
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
299
307
  # number of seconds to wait for response data. This value can
300
308
  # safely be set per-request on the session.
301
309
  #
@@ -311,6 +319,9 @@ module Aws::IoTWireless
311
319
  # disables this behaviour. This value can safely be set per
312
320
  # request on the session.
313
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
314
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
326
  # HTTP debug output will be sent to the `:logger`.
316
327
  #
@@ -1227,6 +1238,36 @@ module Aws::IoTWireless
1227
1238
  req.send_request(options)
1228
1239
  end
1229
1240
 
1241
+ # The operation to delete queued messages.
1242
+ #
1243
+ # @option params [required, String] :id
1244
+ # Id of a given wireless device which messages will be deleted
1245
+ #
1246
+ # @option params [required, String] :message_id
1247
+ # if messageID=="*", the queue for a particular wireless deviceId
1248
+ # will be purged, otherwise, the specific message with messageId will be
1249
+ # deleted
1250
+ #
1251
+ # @option params [String] :wireless_device_type
1252
+ # The wireless device type, it is either Sidewalk or LoRaWAN.
1253
+ #
1254
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1255
+ #
1256
+ # @example Request syntax with placeholder values
1257
+ #
1258
+ # resp = client.delete_queued_messages({
1259
+ # id: "WirelessDeviceId", # required
1260
+ # message_id: "MessageId", # required
1261
+ # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
1262
+ # })
1263
+ #
1264
+ # @overload delete_queued_messages(params = {})
1265
+ # @param [Hash] params ({})
1266
+ def delete_queued_messages(params = {}, options = {})
1267
+ req = build_request(:delete_queued_messages, params)
1268
+ req.send_request(options)
1269
+ end
1270
+
1230
1271
  # Deletes a service profile.
1231
1272
  #
1232
1273
  # @option params [required, String] :id
@@ -1720,6 +1761,39 @@ module Aws::IoTWireless
1720
1761
  req.send_request(options)
1721
1762
  end
1722
1763
 
1764
+ # Get NetworkAnalyzer configuration.
1765
+ #
1766
+ # @option params [required, String] :configuration_name
1767
+ # NetworkAnalyzer configuration name.
1768
+ #
1769
+ # @return [Types::GetNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1770
+ #
1771
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#trace_content #trace_content} => Types::TraceContent
1772
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_devices #wireless_devices} => Array<String>
1773
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_gateways #wireless_gateways} => Array<String>
1774
+ #
1775
+ # @example Request syntax with placeholder values
1776
+ #
1777
+ # resp = client.get_network_analyzer_configuration({
1778
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
1779
+ # })
1780
+ #
1781
+ # @example Response structure
1782
+ #
1783
+ # resp.trace_content.wireless_device_frame_info #=> String, one of "ENABLED", "DISABLED"
1784
+ # resp.trace_content.log_level #=> String, one of "INFO", "ERROR", "DISABLED"
1785
+ # resp.wireless_devices #=> Array
1786
+ # resp.wireless_devices[0] #=> String
1787
+ # resp.wireless_gateways #=> Array
1788
+ # resp.wireless_gateways[0] #=> String
1789
+ #
1790
+ # @overload get_network_analyzer_configuration(params = {})
1791
+ # @param [Hash] params ({})
1792
+ def get_network_analyzer_configuration(params = {}, options = {})
1793
+ req = build_request(:get_network_analyzer_configuration, params)
1794
+ req.send_request(options)
1795
+ end
1796
+
1723
1797
  # Gets information about a partner account. If `PartnerAccountId` and
1724
1798
  # `PartnerType` are `null`, returns all partner accounts.
1725
1799
  #
@@ -2476,6 +2550,54 @@ module Aws::IoTWireless
2476
2550
  req.send_request(options)
2477
2551
  end
2478
2552
 
2553
+ # The operation to list queued messages.
2554
+ #
2555
+ # @option params [required, String] :id
2556
+ # Id of a given wireless device which the downlink packets are targeted
2557
+ #
2558
+ # @option params [String] :next_token
2559
+ # To retrieve the next set of results, the `nextToken` value from a
2560
+ # previous response; otherwise **null** to receive the first set of
2561
+ # results.
2562
+ #
2563
+ # @option params [Integer] :max_results
2564
+ # The maximum number of results to return in this operation.
2565
+ #
2566
+ # @option params [String] :wireless_device_type
2567
+ # The wireless device type, it is either Sidewalk or LoRaWAN.
2568
+ #
2569
+ # @return [Types::ListQueuedMessagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2570
+ #
2571
+ # * {Types::ListQueuedMessagesResponse#next_token #next_token} => String
2572
+ # * {Types::ListQueuedMessagesResponse#downlink_queue_messages_list #downlink_queue_messages_list} => Array<Types::DownlinkQueueMessage>
2573
+ #
2574
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2575
+ #
2576
+ # @example Request syntax with placeholder values
2577
+ #
2578
+ # resp = client.list_queued_messages({
2579
+ # id: "WirelessDeviceId", # required
2580
+ # next_token: "NextToken",
2581
+ # max_results: 1,
2582
+ # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
2583
+ # })
2584
+ #
2585
+ # @example Response structure
2586
+ #
2587
+ # resp.next_token #=> String
2588
+ # resp.downlink_queue_messages_list #=> Array
2589
+ # resp.downlink_queue_messages_list[0].message_id #=> String
2590
+ # resp.downlink_queue_messages_list[0].transmit_mode #=> Integer
2591
+ # resp.downlink_queue_messages_list[0].received_at #=> String
2592
+ # resp.downlink_queue_messages_list[0].lo_ra_wan.f_port #=> Integer
2593
+ #
2594
+ # @overload list_queued_messages(params = {})
2595
+ # @param [Hash] params ({})
2596
+ def list_queued_messages(params = {}, options = {})
2597
+ req = build_request(:list_queued_messages, params)
2598
+ req.send_request(options)
2599
+ end
2600
+
2479
2601
  # Lists the service profiles registered to your AWS account.
2480
2602
  #
2481
2603
  # @option params [String] :next_token
@@ -3254,6 +3376,49 @@ module Aws::IoTWireless
3254
3376
  req.send_request(options)
3255
3377
  end
3256
3378
 
3379
+ # Update NetworkAnalyzer configuration.
3380
+ #
3381
+ # @option params [required, String] :configuration_name
3382
+ # NetworkAnalyzer configuration name.
3383
+ #
3384
+ # @option params [Types::TraceContent] :trace_content
3385
+ # Trace Content for resources.
3386
+ #
3387
+ # @option params [Array<String>] :wireless_devices_to_add
3388
+ # WirelessDevices to add into NetworkAnalyzerConfiguration.
3389
+ #
3390
+ # @option params [Array<String>] :wireless_devices_to_remove
3391
+ # WirelessDevices to remove from NetworkAnalyzerConfiguration.
3392
+ #
3393
+ # @option params [Array<String>] :wireless_gateways_to_add
3394
+ # WirelessGateways to add into NetworkAnalyzerConfiguration.
3395
+ #
3396
+ # @option params [Array<String>] :wireless_gateways_to_remove
3397
+ # WirelessGateways to remove from NetworkAnalyzerConfiguration.
3398
+ #
3399
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3400
+ #
3401
+ # @example Request syntax with placeholder values
3402
+ #
3403
+ # resp = client.update_network_analyzer_configuration({
3404
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
3405
+ # trace_content: {
3406
+ # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
3407
+ # log_level: "INFO", # accepts INFO, ERROR, DISABLED
3408
+ # },
3409
+ # wireless_devices_to_add: ["WirelessDeviceId"],
3410
+ # wireless_devices_to_remove: ["WirelessDeviceId"],
3411
+ # wireless_gateways_to_add: ["WirelessGatewayId"],
3412
+ # wireless_gateways_to_remove: ["WirelessGatewayId"],
3413
+ # })
3414
+ #
3415
+ # @overload update_network_analyzer_configuration(params = {})
3416
+ # @param [Hash] params ({})
3417
+ def update_network_analyzer_configuration(params = {}, options = {})
3418
+ req = build_request(:update_network_analyzer_configuration, params)
3419
+ req.send_request(options)
3420
+ end
3421
+
3257
3422
  # Updates properties of a partner account.
3258
3423
  #
3259
3424
  # @option params [required, Types::SidewalkUpdateAccount] :sidewalk
@@ -3421,7 +3586,7 @@ module Aws::IoTWireless
3421
3586
  params: params,
3422
3587
  config: config)
3423
3588
  context[:gem_name] = 'aws-sdk-iotwireless'
3424
- context[:gem_version] = '1.16.0'
3589
+ context[:gem_version] = '1.20.0'
3425
3590
  Seahorse::Client::Request.new(handlers, context)
3426
3591
  end
3427
3592
 
@@ -79,6 +79,8 @@ module Aws::IoTWireless
79
79
  DeleteFuotaTaskResponse = Shapes::StructureShape.new(name: 'DeleteFuotaTaskResponse')
80
80
  DeleteMulticastGroupRequest = Shapes::StructureShape.new(name: 'DeleteMulticastGroupRequest')
81
81
  DeleteMulticastGroupResponse = Shapes::StructureShape.new(name: 'DeleteMulticastGroupResponse')
82
+ DeleteQueuedMessagesRequest = Shapes::StructureShape.new(name: 'DeleteQueuedMessagesRequest')
83
+ DeleteQueuedMessagesResponse = Shapes::StructureShape.new(name: 'DeleteQueuedMessagesResponse')
82
84
  DeleteServiceProfileRequest = Shapes::StructureShape.new(name: 'DeleteServiceProfileRequest')
83
85
  DeleteServiceProfileResponse = Shapes::StructureShape.new(name: 'DeleteServiceProfileResponse')
84
86
  DeleteWirelessDeviceRequest = Shapes::StructureShape.new(name: 'DeleteWirelessDeviceRequest')
@@ -126,6 +128,8 @@ module Aws::IoTWireless
126
128
  DlRate = Shapes::IntegerShape.new(name: 'DlRate')
127
129
  DlRatePolicy = Shapes::StringShape.new(name: 'DlRatePolicy')
128
130
  Double = Shapes::FloatShape.new(name: 'Double')
131
+ DownlinkQueueMessage = Shapes::StructureShape.new(name: 'DownlinkQueueMessage')
132
+ DownlinkQueueMessagesList = Shapes::ListShape.new(name: 'DownlinkQueueMessagesList')
129
133
  DrMax = Shapes::IntegerShape.new(name: 'DrMax')
130
134
  DrMin = Shapes::IntegerShape.new(name: 'DrMin')
131
135
  EndPoint = Shapes::StringShape.new(name: 'EndPoint')
@@ -162,6 +166,8 @@ module Aws::IoTWireless
162
166
  GetMulticastGroupResponse = Shapes::StructureShape.new(name: 'GetMulticastGroupResponse')
163
167
  GetMulticastGroupSessionRequest = Shapes::StructureShape.new(name: 'GetMulticastGroupSessionRequest')
164
168
  GetMulticastGroupSessionResponse = Shapes::StructureShape.new(name: 'GetMulticastGroupSessionResponse')
169
+ GetNetworkAnalyzerConfigurationRequest = Shapes::StructureShape.new(name: 'GetNetworkAnalyzerConfigurationRequest')
170
+ GetNetworkAnalyzerConfigurationResponse = Shapes::StructureShape.new(name: 'GetNetworkAnalyzerConfigurationResponse')
165
171
  GetPartnerAccountRequest = Shapes::StructureShape.new(name: 'GetPartnerAccountRequest')
166
172
  GetPartnerAccountResponse = Shapes::StructureShape.new(name: 'GetPartnerAccountResponse')
167
173
  GetResourceEventConfigurationRequest = Shapes::StructureShape.new(name: 'GetResourceEventConfigurationRequest')
@@ -210,6 +216,8 @@ module Aws::IoTWireless
210
216
  ListMulticastGroupsResponse = Shapes::StructureShape.new(name: 'ListMulticastGroupsResponse')
211
217
  ListPartnerAccountsRequest = Shapes::StructureShape.new(name: 'ListPartnerAccountsRequest')
212
218
  ListPartnerAccountsResponse = Shapes::StructureShape.new(name: 'ListPartnerAccountsResponse')
219
+ ListQueuedMessagesRequest = Shapes::StructureShape.new(name: 'ListQueuedMessagesRequest')
220
+ ListQueuedMessagesResponse = Shapes::StructureShape.new(name: 'ListQueuedMessagesResponse')
213
221
  ListServiceProfilesRequest = Shapes::StructureShape.new(name: 'ListServiceProfilesRequest')
214
222
  ListServiceProfilesResponse = Shapes::StructureShape.new(name: 'ListServiceProfilesResponse')
215
223
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
@@ -266,6 +274,7 @@ module Aws::IoTWireless
266
274
  MulticastWirelessMetadata = Shapes::StructureShape.new(name: 'MulticastWirelessMetadata')
267
275
  NetId = Shapes::StringShape.new(name: 'NetId')
268
276
  NetIdFilters = Shapes::ListShape.new(name: 'NetIdFilters')
277
+ NetworkAnalyzerConfigurationName = Shapes::StringShape.new(name: 'NetworkAnalyzerConfigurationName')
269
278
  NextToken = Shapes::StringShape.new(name: 'NextToken')
270
279
  NumberOfDevicesInGroup = Shapes::IntegerShape.new(name: 'NumberOfDevicesInGroup')
271
280
  NumberOfDevicesRequested = Shapes::IntegerShape.new(name: 'NumberOfDevicesRequested')
@@ -366,6 +375,7 @@ module Aws::IoTWireless
366
375
  ThingName = Shapes::StringShape.new(name: 'ThingName')
367
376
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
368
377
  TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
378
+ TraceContent = Shapes::StructureShape.new(name: 'TraceContent')
369
379
  TransmitMode = Shapes::IntegerShape.new(name: 'TransmitMode')
370
380
  UlBucketSize = Shapes::IntegerShape.new(name: 'UlBucketSize')
371
381
  UlRate = Shapes::IntegerShape.new(name: 'UlRate')
@@ -381,6 +391,8 @@ module Aws::IoTWireless
381
391
  UpdateLogLevelsByResourceTypesResponse = Shapes::StructureShape.new(name: 'UpdateLogLevelsByResourceTypesResponse')
382
392
  UpdateMulticastGroupRequest = Shapes::StructureShape.new(name: 'UpdateMulticastGroupRequest')
383
393
  UpdateMulticastGroupResponse = Shapes::StructureShape.new(name: 'UpdateMulticastGroupResponse')
394
+ UpdateNetworkAnalyzerConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateNetworkAnalyzerConfigurationRequest')
395
+ UpdateNetworkAnalyzerConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateNetworkAnalyzerConfigurationResponse')
384
396
  UpdatePartnerAccountRequest = Shapes::StructureShape.new(name: 'UpdatePartnerAccountRequest')
385
397
  UpdatePartnerAccountResponse = Shapes::StructureShape.new(name: 'UpdatePartnerAccountResponse')
386
398
  UpdateResourceEventConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateResourceEventConfigurationRequest')
@@ -397,8 +409,10 @@ module Aws::IoTWireless
397
409
  WirelessDeviceEvent = Shapes::StringShape.new(name: 'WirelessDeviceEvent')
398
410
  WirelessDeviceEventLogOption = Shapes::StructureShape.new(name: 'WirelessDeviceEventLogOption')
399
411
  WirelessDeviceEventLogOptionList = Shapes::ListShape.new(name: 'WirelessDeviceEventLogOptionList')
412
+ WirelessDeviceFrameInfo = Shapes::StringShape.new(name: 'WirelessDeviceFrameInfo')
400
413
  WirelessDeviceId = Shapes::StringShape.new(name: 'WirelessDeviceId')
401
414
  WirelessDeviceIdType = Shapes::StringShape.new(name: 'WirelessDeviceIdType')
415
+ WirelessDeviceList = Shapes::ListShape.new(name: 'WirelessDeviceList')
402
416
  WirelessDeviceLogOption = Shapes::StructureShape.new(name: 'WirelessDeviceLogOption')
403
417
  WirelessDeviceLogOptionList = Shapes::ListShape.new(name: 'WirelessDeviceLogOptionList')
404
418
  WirelessDeviceName = Shapes::StringShape.new(name: 'WirelessDeviceName')
@@ -411,6 +425,7 @@ module Aws::IoTWireless
411
425
  WirelessGatewayEventLogOptionList = Shapes::ListShape.new(name: 'WirelessGatewayEventLogOptionList')
412
426
  WirelessGatewayId = Shapes::StringShape.new(name: 'WirelessGatewayId')
413
427
  WirelessGatewayIdType = Shapes::StringShape.new(name: 'WirelessGatewayIdType')
428
+ WirelessGatewayList = Shapes::ListShape.new(name: 'WirelessGatewayList')
414
429
  WirelessGatewayLogOption = Shapes::StructureShape.new(name: 'WirelessGatewayLogOption')
415
430
  WirelessGatewayLogOptionList = Shapes::ListShape.new(name: 'WirelessGatewayLogOptionList')
416
431
  WirelessGatewayName = Shapes::StringShape.new(name: 'WirelessGatewayName')
@@ -617,6 +632,13 @@ module Aws::IoTWireless
617
632
 
618
633
  DeleteMulticastGroupResponse.struct_class = Types::DeleteMulticastGroupResponse
619
634
 
635
+ DeleteQueuedMessagesRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessDeviceId, required: true, location: "uri", location_name: "Id"))
636
+ DeleteQueuedMessagesRequest.add_member(:message_id, Shapes::ShapeRef.new(shape: MessageId, required: true, location: "querystring", location_name: "messageId"))
637
+ DeleteQueuedMessagesRequest.add_member(:wireless_device_type, Shapes::ShapeRef.new(shape: WirelessDeviceType, location: "querystring", location_name: "WirelessDeviceType"))
638
+ DeleteQueuedMessagesRequest.struct_class = Types::DeleteQueuedMessagesRequest
639
+
640
+ DeleteQueuedMessagesResponse.struct_class = Types::DeleteQueuedMessagesResponse
641
+
620
642
  DeleteServiceProfileRequest.add_member(:id, Shapes::ShapeRef.new(shape: ServiceProfileId, required: true, location: "uri", location_name: "Id"))
621
643
  DeleteServiceProfileRequest.struct_class = Types::DeleteServiceProfileRequest
622
644
 
@@ -703,6 +725,14 @@ module Aws::IoTWireless
703
725
 
704
726
  DisassociateWirelessGatewayFromThingResponse.struct_class = Types::DisassociateWirelessGatewayFromThingResponse
705
727
 
728
+ DownlinkQueueMessage.add_member(:message_id, Shapes::ShapeRef.new(shape: MessageId, location_name: "MessageId"))
729
+ DownlinkQueueMessage.add_member(:transmit_mode, Shapes::ShapeRef.new(shape: TransmitMode, location_name: "TransmitMode"))
730
+ DownlinkQueueMessage.add_member(:received_at, Shapes::ShapeRef.new(shape: ISODateTimeString, location_name: "ReceivedAt"))
731
+ DownlinkQueueMessage.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANSendDataToDevice, location_name: "LoRaWAN"))
732
+ DownlinkQueueMessage.struct_class = Types::DownlinkQueueMessage
733
+
734
+ DownlinkQueueMessagesList.member = Shapes::ShapeRef.new(shape: DownlinkQueueMessage)
735
+
706
736
  FPorts.add_member(:fuota, Shapes::ShapeRef.new(shape: FPort, location_name: "Fuota"))
707
737
  FPorts.add_member(:multicast, Shapes::ShapeRef.new(shape: FPort, location_name: "Multicast"))
708
738
  FPorts.add_member(:clock_sync, Shapes::ShapeRef.new(shape: FPort, location_name: "ClockSync"))
@@ -776,6 +806,14 @@ module Aws::IoTWireless
776
806
  GetMulticastGroupSessionResponse.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANMulticastSession, location_name: "LoRaWAN"))
777
807
  GetMulticastGroupSessionResponse.struct_class = Types::GetMulticastGroupSessionResponse
778
808
 
809
+ GetNetworkAnalyzerConfigurationRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationName, required: true, location: "uri", location_name: "ConfigurationName"))
810
+ GetNetworkAnalyzerConfigurationRequest.struct_class = Types::GetNetworkAnalyzerConfigurationRequest
811
+
812
+ GetNetworkAnalyzerConfigurationResponse.add_member(:trace_content, Shapes::ShapeRef.new(shape: TraceContent, location_name: "TraceContent"))
813
+ GetNetworkAnalyzerConfigurationResponse.add_member(:wireless_devices, Shapes::ShapeRef.new(shape: WirelessDeviceList, location_name: "WirelessDevices"))
814
+ GetNetworkAnalyzerConfigurationResponse.add_member(:wireless_gateways, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGateways"))
815
+ GetNetworkAnalyzerConfigurationResponse.struct_class = Types::GetNetworkAnalyzerConfigurationResponse
816
+
779
817
  GetPartnerAccountRequest.add_member(:partner_account_id, Shapes::ShapeRef.new(shape: PartnerAccountId, required: true, location: "uri", location_name: "PartnerAccountId"))
780
818
  GetPartnerAccountRequest.add_member(:partner_type, Shapes::ShapeRef.new(shape: PartnerType, required: true, location: "querystring", location_name: "partnerType"))
781
819
  GetPartnerAccountRequest.struct_class = Types::GetPartnerAccountRequest
@@ -951,6 +989,16 @@ module Aws::IoTWireless
951
989
  ListPartnerAccountsResponse.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkAccountList, location_name: "Sidewalk"))
952
990
  ListPartnerAccountsResponse.struct_class = Types::ListPartnerAccountsResponse
953
991
 
992
+ ListQueuedMessagesRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessDeviceId, required: true, location: "uri", location_name: "Id"))
993
+ ListQueuedMessagesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
994
+ ListQueuedMessagesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
995
+ ListQueuedMessagesRequest.add_member(:wireless_device_type, Shapes::ShapeRef.new(shape: WirelessDeviceType, location: "querystring", location_name: "WirelessDeviceType"))
996
+ ListQueuedMessagesRequest.struct_class = Types::ListQueuedMessagesRequest
997
+
998
+ ListQueuedMessagesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
999
+ ListQueuedMessagesResponse.add_member(:downlink_queue_messages_list, Shapes::ShapeRef.new(shape: DownlinkQueueMessagesList, location_name: "DownlinkQueueMessagesList"))
1000
+ ListQueuedMessagesResponse.struct_class = Types::ListQueuedMessagesResponse
1001
+
954
1002
  ListServiceProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
955
1003
  ListServiceProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
956
1004
  ListServiceProfilesRequest.struct_class = Types::ListServiceProfilesRequest
@@ -1310,6 +1358,10 @@ module Aws::IoTWireless
1310
1358
  TooManyTagsException.add_member(:resource_name, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "ResourceName"))
1311
1359
  TooManyTagsException.struct_class = Types::TooManyTagsException
1312
1360
 
1361
+ TraceContent.add_member(:wireless_device_frame_info, Shapes::ShapeRef.new(shape: WirelessDeviceFrameInfo, location_name: "WirelessDeviceFrameInfo"))
1362
+ TraceContent.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "LogLevel"))
1363
+ TraceContent.struct_class = Types::TraceContent
1364
+
1313
1365
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "resourceArn"))
1314
1366
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
1315
1367
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -1350,6 +1402,16 @@ module Aws::IoTWireless
1350
1402
 
1351
1403
  UpdateMulticastGroupResponse.struct_class = Types::UpdateMulticastGroupResponse
1352
1404
 
1405
+ UpdateNetworkAnalyzerConfigurationRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationName, required: true, location: "uri", location_name: "ConfigurationName"))
1406
+ UpdateNetworkAnalyzerConfigurationRequest.add_member(:trace_content, Shapes::ShapeRef.new(shape: TraceContent, location_name: "TraceContent"))
1407
+ UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_devices_to_add, Shapes::ShapeRef.new(shape: WirelessDeviceList, location_name: "WirelessDevicesToAdd"))
1408
+ UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_devices_to_remove, Shapes::ShapeRef.new(shape: WirelessDeviceList, location_name: "WirelessDevicesToRemove"))
1409
+ UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_add, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToAdd"))
1410
+ UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_remove, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToRemove"))
1411
+ UpdateNetworkAnalyzerConfigurationRequest.struct_class = Types::UpdateNetworkAnalyzerConfigurationRequest
1412
+
1413
+ UpdateNetworkAnalyzerConfigurationResponse.struct_class = Types::UpdateNetworkAnalyzerConfigurationResponse
1414
+
1353
1415
  UpdatePartnerAccountRequest.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkUpdateAccount, required: true, location_name: "Sidewalk"))
1354
1416
  UpdatePartnerAccountRequest.add_member(:partner_account_id, Shapes::ShapeRef.new(shape: PartnerAccountId, required: true, location: "uri", location_name: "PartnerAccountId"))
1355
1417
  UpdatePartnerAccountRequest.add_member(:partner_type, Shapes::ShapeRef.new(shape: PartnerType, required: true, location: "querystring", location_name: "partnerType"))
@@ -1403,6 +1465,8 @@ module Aws::IoTWireless
1403
1465
 
1404
1466
  WirelessDeviceEventLogOptionList.member = Shapes::ShapeRef.new(shape: WirelessDeviceEventLogOption)
1405
1467
 
1468
+ WirelessDeviceList.member = Shapes::ShapeRef.new(shape: WirelessDeviceId)
1469
+
1406
1470
  WirelessDeviceLogOption.add_member(:type, Shapes::ShapeRef.new(shape: WirelessDeviceType, required: true, location_name: "Type"))
1407
1471
  WirelessDeviceLogOption.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "LogLevel"))
1408
1472
  WirelessDeviceLogOption.add_member(:events, Shapes::ShapeRef.new(shape: WirelessDeviceEventLogOptionList, location_name: "Events"))
@@ -1431,6 +1495,8 @@ module Aws::IoTWireless
1431
1495
 
1432
1496
  WirelessGatewayEventLogOptionList.member = Shapes::ShapeRef.new(shape: WirelessGatewayEventLogOption)
1433
1497
 
1498
+ WirelessGatewayList.member = Shapes::ShapeRef.new(shape: WirelessGatewayId)
1499
+
1434
1500
  WirelessGatewayLogOption.add_member(:type, Shapes::ShapeRef.new(shape: WirelessGatewayType, required: true, location_name: "Type"))
1435
1501
  WirelessGatewayLogOption.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "LogLevel"))
1436
1502
  WirelessGatewayLogOption.add_member(:events, Shapes::ShapeRef.new(shape: WirelessGatewayEventLogOptionList, location_name: "Events"))
@@ -1761,6 +1827,19 @@ module Aws::IoTWireless
1761
1827
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1762
1828
  end)
1763
1829
 
1830
+ api.add_operation(:delete_queued_messages, Seahorse::Model::Operation.new.tap do |o|
1831
+ o.name = "DeleteQueuedMessages"
1832
+ o.http_method = "DELETE"
1833
+ o.http_request_uri = "/wireless-devices/{Id}/data"
1834
+ o.input = Shapes::ShapeRef.new(shape: DeleteQueuedMessagesRequest)
1835
+ o.output = Shapes::ShapeRef.new(shape: DeleteQueuedMessagesResponse)
1836
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1837
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1838
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1839
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1840
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1841
+ end)
1842
+
1764
1843
  api.add_operation(:delete_service_profile, Seahorse::Model::Operation.new.tap do |o|
1765
1844
  o.name = "DeleteServiceProfile"
1766
1845
  o.http_method = "DELETE"
@@ -1998,6 +2077,19 @@ module Aws::IoTWireless
1998
2077
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1999
2078
  end)
2000
2079
 
2080
+ api.add_operation(:get_network_analyzer_configuration, Seahorse::Model::Operation.new.tap do |o|
2081
+ o.name = "GetNetworkAnalyzerConfiguration"
2082
+ o.http_method = "GET"
2083
+ o.http_request_uri = "/network-analyzer-configurations/{ConfigurationName}"
2084
+ o.input = Shapes::ShapeRef.new(shape: GetNetworkAnalyzerConfigurationRequest)
2085
+ o.output = Shapes::ShapeRef.new(shape: GetNetworkAnalyzerConfigurationResponse)
2086
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2087
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2088
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2089
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2090
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2091
+ end)
2092
+
2001
2093
  api.add_operation(:get_partner_account, Seahorse::Model::Operation.new.tap do |o|
2002
2094
  o.name = "GetPartnerAccount"
2003
2095
  o.http_method = "GET"
@@ -2268,6 +2360,25 @@ module Aws::IoTWireless
2268
2360
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2269
2361
  end)
2270
2362
 
2363
+ api.add_operation(:list_queued_messages, Seahorse::Model::Operation.new.tap do |o|
2364
+ o.name = "ListQueuedMessages"
2365
+ o.http_method = "GET"
2366
+ o.http_request_uri = "/wireless-devices/{Id}/data"
2367
+ o.input = Shapes::ShapeRef.new(shape: ListQueuedMessagesRequest)
2368
+ o.output = Shapes::ShapeRef.new(shape: ListQueuedMessagesResponse)
2369
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2370
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2371
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2372
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2373
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2374
+ o[:pager] = Aws::Pager.new(
2375
+ limit_key: "max_results",
2376
+ tokens: {
2377
+ "next_token" => "next_token"
2378
+ }
2379
+ )
2380
+ end)
2381
+
2271
2382
  api.add_operation(:list_service_profiles, Seahorse::Model::Operation.new.tap do |o|
2272
2383
  o.name = "ListServiceProfiles"
2273
2384
  o.http_method = "GET"
@@ -2560,6 +2671,19 @@ module Aws::IoTWireless
2560
2671
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2561
2672
  end)
2562
2673
 
2674
+ api.add_operation(:update_network_analyzer_configuration, Seahorse::Model::Operation.new.tap do |o|
2675
+ o.name = "UpdateNetworkAnalyzerConfiguration"
2676
+ o.http_method = "PATCH"
2677
+ o.http_request_uri = "/network-analyzer-configurations/{ConfigurationName}"
2678
+ o.input = Shapes::ShapeRef.new(shape: UpdateNetworkAnalyzerConfigurationRequest)
2679
+ o.output = Shapes::ShapeRef.new(shape: UpdateNetworkAnalyzerConfigurationResponse)
2680
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2681
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2682
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2683
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2684
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2685
+ end)
2686
+
2563
2687
  api.add_operation(:update_partner_account, Seahorse::Model::Operation.new.tap do |o|
2564
2688
  o.name = "UpdatePartnerAccount"
2565
2689
  o.http_method = "PATCH"
@@ -1129,6 +1129,39 @@ module Aws::IoTWireless
1129
1129
 
1130
1130
  class DeleteMulticastGroupResponse < Aws::EmptyStructure; end
1131
1131
 
1132
+ # @note When making an API call, you may pass DeleteQueuedMessagesRequest
1133
+ # data as a hash:
1134
+ #
1135
+ # {
1136
+ # id: "WirelessDeviceId", # required
1137
+ # message_id: "MessageId", # required
1138
+ # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
1139
+ # }
1140
+ #
1141
+ # @!attribute [rw] id
1142
+ # Id of a given wireless device which messages will be deleted
1143
+ # @return [String]
1144
+ #
1145
+ # @!attribute [rw] message_id
1146
+ # if messageID=="*", the queue for a particular wireless deviceId
1147
+ # will be purged, otherwise, the specific message with messageId will
1148
+ # be deleted
1149
+ # @return [String]
1150
+ #
1151
+ # @!attribute [rw] wireless_device_type
1152
+ # The wireless device type, it is either Sidewalk or LoRaWAN.
1153
+ # @return [String]
1154
+ #
1155
+ class DeleteQueuedMessagesRequest < Struct.new(
1156
+ :id,
1157
+ :message_id,
1158
+ :wireless_device_type)
1159
+ SENSITIVE = []
1160
+ include Aws::Structure
1161
+ end
1162
+
1163
+ class DeleteQueuedMessagesResponse < Aws::EmptyStructure; end
1164
+
1132
1165
  # @note When making an API call, you may pass DeleteServiceProfileRequest
1133
1166
  # data as a hash:
1134
1167
  #
@@ -1463,6 +1496,35 @@ module Aws::IoTWireless
1463
1496
 
1464
1497
  class DisassociateWirelessGatewayFromThingResponse < Aws::EmptyStructure; end
1465
1498
 
1499
+ # The message in downlink queue.
1500
+ #
1501
+ # @!attribute [rw] message_id
1502
+ # The messageId allocated by IoT Wireless for tracing purpose
1503
+ # @return [String]
1504
+ #
1505
+ # @!attribute [rw] transmit_mode
1506
+ # The transmit mode to use to send data to the wireless device. Can
1507
+ # be: `0` for UM (unacknowledge mode) or `1` for AM (acknowledge
1508
+ # mode).
1509
+ # @return [Integer]
1510
+ #
1511
+ # @!attribute [rw] received_at
1512
+ # The timestamp that Iot Wireless received the message.
1513
+ # @return [String]
1514
+ #
1515
+ # @!attribute [rw] lo_ra_wan
1516
+ # LoRaWAN router info.
1517
+ # @return [Types::LoRaWANSendDataToDevice]
1518
+ #
1519
+ class DownlinkQueueMessage < Struct.new(
1520
+ :message_id,
1521
+ :transmit_mode,
1522
+ :received_at,
1523
+ :lo_ra_wan)
1524
+ SENSITIVE = []
1525
+ include Aws::Structure
1526
+ end
1527
+
1466
1528
  # List of FPort assigned for different LoRaWAN application packages to
1467
1529
  # use
1468
1530
  #
@@ -1788,6 +1850,43 @@ module Aws::IoTWireless
1788
1850
  include Aws::Structure
1789
1851
  end
1790
1852
 
1853
+ # @note When making an API call, you may pass GetNetworkAnalyzerConfigurationRequest
1854
+ # data as a hash:
1855
+ #
1856
+ # {
1857
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
1858
+ # }
1859
+ #
1860
+ # @!attribute [rw] configuration_name
1861
+ # NetworkAnalyzer configuration name.
1862
+ # @return [String]
1863
+ #
1864
+ class GetNetworkAnalyzerConfigurationRequest < Struct.new(
1865
+ :configuration_name)
1866
+ SENSITIVE = []
1867
+ include Aws::Structure
1868
+ end
1869
+
1870
+ # @!attribute [rw] trace_content
1871
+ # Trace Content for resources.
1872
+ # @return [Types::TraceContent]
1873
+ #
1874
+ # @!attribute [rw] wireless_devices
1875
+ # List of WirelessDevices in the NetworkAnalyzerConfiguration.
1876
+ # @return [Array<String>]
1877
+ #
1878
+ # @!attribute [rw] wireless_gateways
1879
+ # List of WirelessGateways in the NetworkAnalyzerConfiguration.
1880
+ # @return [Array<String>]
1881
+ #
1882
+ class GetNetworkAnalyzerConfigurationResponse < Struct.new(
1883
+ :trace_content,
1884
+ :wireless_devices,
1885
+ :wireless_gateways)
1886
+ SENSITIVE = []
1887
+ include Aws::Structure
1888
+ end
1889
+
1791
1890
  # @note When making an API call, you may pass GetPartnerAccountRequest
1792
1891
  # data as a hash:
1793
1892
  #
@@ -2628,6 +2727,61 @@ module Aws::IoTWireless
2628
2727
  include Aws::Structure
2629
2728
  end
2630
2729
 
2730
+ # @note When making an API call, you may pass ListQueuedMessagesRequest
2731
+ # data as a hash:
2732
+ #
2733
+ # {
2734
+ # id: "WirelessDeviceId", # required
2735
+ # next_token: "NextToken",
2736
+ # max_results: 1,
2737
+ # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
2738
+ # }
2739
+ #
2740
+ # @!attribute [rw] id
2741
+ # Id of a given wireless device which the downlink packets are
2742
+ # targeted
2743
+ # @return [String]
2744
+ #
2745
+ # @!attribute [rw] next_token
2746
+ # To retrieve the next set of results, the `nextToken` value from a
2747
+ # previous response; otherwise **null** to receive the first set of
2748
+ # results.
2749
+ # @return [String]
2750
+ #
2751
+ # @!attribute [rw] max_results
2752
+ # The maximum number of results to return in this operation.
2753
+ # @return [Integer]
2754
+ #
2755
+ # @!attribute [rw] wireless_device_type
2756
+ # The wireless device type, it is either Sidewalk or LoRaWAN.
2757
+ # @return [String]
2758
+ #
2759
+ class ListQueuedMessagesRequest < Struct.new(
2760
+ :id,
2761
+ :next_token,
2762
+ :max_results,
2763
+ :wireless_device_type)
2764
+ SENSITIVE = []
2765
+ include Aws::Structure
2766
+ end
2767
+
2768
+ # @!attribute [rw] next_token
2769
+ # To retrieve the next set of results, the `nextToken` value from a
2770
+ # previous response; otherwise **null** to receive the first set of
2771
+ # results.
2772
+ # @return [String]
2773
+ #
2774
+ # @!attribute [rw] downlink_queue_messages_list
2775
+ # The messages in downlink queue.
2776
+ # @return [Array<Types::DownlinkQueueMessage>]
2777
+ #
2778
+ class ListQueuedMessagesResponse < Struct.new(
2779
+ :next_token,
2780
+ :downlink_queue_messages_list)
2781
+ SENSITIVE = []
2782
+ include Aws::Structure
2783
+ end
2784
+
2631
2785
  # @note When making an API call, you may pass ListServiceProfilesRequest
2632
2786
  # data as a hash:
2633
2787
  #
@@ -4487,6 +4641,31 @@ module Aws::IoTWireless
4487
4641
  include Aws::Structure
4488
4642
  end
4489
4643
 
4644
+ # Trace Content for resources.
4645
+ #
4646
+ # @note When making an API call, you may pass TraceContent
4647
+ # data as a hash:
4648
+ #
4649
+ # {
4650
+ # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
4651
+ # log_level: "INFO", # accepts INFO, ERROR, DISABLED
4652
+ # }
4653
+ #
4654
+ # @!attribute [rw] wireless_device_frame_info
4655
+ # WirelessDevice FrameInfo for trace content.
4656
+ # @return [String]
4657
+ #
4658
+ # @!attribute [rw] log_level
4659
+ # The log level for a log message.
4660
+ # @return [String]
4661
+ #
4662
+ class TraceContent < Struct.new(
4663
+ :wireless_device_frame_info,
4664
+ :log_level)
4665
+ SENSITIVE = []
4666
+ include Aws::Structure
4667
+ end
4668
+
4490
4669
  # @note When making an API call, you may pass UntagResourceRequest
4491
4670
  # data as a hash:
4492
4671
  #
@@ -4700,6 +4879,58 @@ module Aws::IoTWireless
4700
4879
 
4701
4880
  class UpdateMulticastGroupResponse < Aws::EmptyStructure; end
4702
4881
 
4882
+ # @note When making an API call, you may pass UpdateNetworkAnalyzerConfigurationRequest
4883
+ # data as a hash:
4884
+ #
4885
+ # {
4886
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
4887
+ # trace_content: {
4888
+ # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
4889
+ # log_level: "INFO", # accepts INFO, ERROR, DISABLED
4890
+ # },
4891
+ # wireless_devices_to_add: ["WirelessDeviceId"],
4892
+ # wireless_devices_to_remove: ["WirelessDeviceId"],
4893
+ # wireless_gateways_to_add: ["WirelessGatewayId"],
4894
+ # wireless_gateways_to_remove: ["WirelessGatewayId"],
4895
+ # }
4896
+ #
4897
+ # @!attribute [rw] configuration_name
4898
+ # NetworkAnalyzer configuration name.
4899
+ # @return [String]
4900
+ #
4901
+ # @!attribute [rw] trace_content
4902
+ # Trace Content for resources.
4903
+ # @return [Types::TraceContent]
4904
+ #
4905
+ # @!attribute [rw] wireless_devices_to_add
4906
+ # WirelessDevices to add into NetworkAnalyzerConfiguration.
4907
+ # @return [Array<String>]
4908
+ #
4909
+ # @!attribute [rw] wireless_devices_to_remove
4910
+ # WirelessDevices to remove from NetworkAnalyzerConfiguration.
4911
+ # @return [Array<String>]
4912
+ #
4913
+ # @!attribute [rw] wireless_gateways_to_add
4914
+ # WirelessGateways to add into NetworkAnalyzerConfiguration.
4915
+ # @return [Array<String>]
4916
+ #
4917
+ # @!attribute [rw] wireless_gateways_to_remove
4918
+ # WirelessGateways to remove from NetworkAnalyzerConfiguration.
4919
+ # @return [Array<String>]
4920
+ #
4921
+ class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
4922
+ :configuration_name,
4923
+ :trace_content,
4924
+ :wireless_devices_to_add,
4925
+ :wireless_devices_to_remove,
4926
+ :wireless_gateways_to_add,
4927
+ :wireless_gateways_to_remove)
4928
+ SENSITIVE = []
4929
+ include Aws::Structure
4930
+ end
4931
+
4932
+ class UpdateNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
4933
+
4703
4934
  # @note When making an API call, you may pass UpdatePartnerAccountRequest
4704
4935
  # data as a hash:
4705
4936
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-iotwireless/customizations'
48
48
  # @!group service
49
49
  module Aws::IoTWireless
50
50
 
51
- GEM_VERSION = '1.16.0'
51
+ GEM_VERSION = '1.20.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotwireless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2022-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.125.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement