aws-sdk-iotwireless 1.17.0 → 1.21.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: bac6dfa741d60ba280f8c99a04be1ba7001d81a247d012df892543e673541055
4
- data.tar.gz: 59cf2408adf9016e3ac3b6e4407be241dbcb585ce1a0dfa7fea4b7cfcf8d5987
3
+ metadata.gz: a7d2cf20cc3cd8ad0491d7923a1b656e574acad57048a8eced507bd91369b796
4
+ data.tar.gz: 4a514b23f52eafedd454fd7dc0d802db944b4e0ef1d27aa6951402c8ab223917
5
5
  SHA512:
6
- metadata.gz: a0a1cf8b37e882589f552f6c4ad99470669c783bf6b689014284c26d2f96302c814f1335a4abe21ac699fd3aff70481d5f44a8e963b684621fc9d029abf14e45
7
- data.tar.gz: edba1c23154d702c3d1beacd7c9204f2513baa0a3052aee9e8c1b0a3cba6c5a6874064c46d8f3526e7643888e7139d427667e303ff73a8cc9a54c8126e53d276
6
+ metadata.gz: f9d503f8fbbf4e1155a2710c42ee671a737d7ee6ffd74c83df8e9dab95a9523b36eed3cdd34e126c3500827b33ca02c9dd55dded9b2310c4e5b0ee5f599a242f
7
+ data.tar.gz: 05ea9d20b1eadda24cfbd031876cff9cf987b3c8e9c7aa1de745ab3a2ed97dccedcfbf23fcad3f829dd7317e1ef8eda30e46de52c2895d73ed1ee01a3ce15c45
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.20.0 (2022-01-06)
10
+ ------------------
11
+
12
+ * 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.
13
+
14
+ 1.19.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.18.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.17.0 (2021-11-23)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.21.0
@@ -27,6 +27,8 @@ 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'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::IoTWireless
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
82
 
@@ -119,7 +123,9 @@ module Aws::IoTWireless
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::IoTWireless
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -295,7 +305,7 @@ module Aws::IoTWireless
295
305
  # seconds to wait when opening a HTTP session before raising a
296
306
  # `Timeout::Error`.
297
307
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
299
309
  # number of seconds to wait for response data. This value can
300
310
  # safely be set per-request on the session.
301
311
  #
@@ -311,6 +321,9 @@ module Aws::IoTWireless
311
321
  # disables this behaviour. This value can safely be set per
312
322
  # request on the session.
313
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
314
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
328
  # HTTP debug output will be sent to the `:logger`.
316
329
  #
@@ -1227,6 +1240,36 @@ module Aws::IoTWireless
1227
1240
  req.send_request(options)
1228
1241
  end
1229
1242
 
1243
+ # The operation to delete queued messages.
1244
+ #
1245
+ # @option params [required, String] :id
1246
+ # Id of a given wireless device which messages will be deleted
1247
+ #
1248
+ # @option params [required, String] :message_id
1249
+ # if messageID=="*", the queue for a particular wireless deviceId
1250
+ # will be purged, otherwise, the specific message with messageId will be
1251
+ # deleted
1252
+ #
1253
+ # @option params [String] :wireless_device_type
1254
+ # The wireless device type, it is either Sidewalk or LoRaWAN.
1255
+ #
1256
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1257
+ #
1258
+ # @example Request syntax with placeholder values
1259
+ #
1260
+ # resp = client.delete_queued_messages({
1261
+ # id: "WirelessDeviceId", # required
1262
+ # message_id: "MessageId", # required
1263
+ # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
1264
+ # })
1265
+ #
1266
+ # @overload delete_queued_messages(params = {})
1267
+ # @param [Hash] params ({})
1268
+ def delete_queued_messages(params = {}, options = {})
1269
+ req = build_request(:delete_queued_messages, params)
1270
+ req.send_request(options)
1271
+ end
1272
+
1230
1273
  # Deletes a service profile.
1231
1274
  #
1232
1275
  # @option params [required, String] :id
@@ -2509,6 +2552,54 @@ module Aws::IoTWireless
2509
2552
  req.send_request(options)
2510
2553
  end
2511
2554
 
2555
+ # The operation to list queued messages.
2556
+ #
2557
+ # @option params [required, String] :id
2558
+ # Id of a given wireless device which the downlink packets are targeted
2559
+ #
2560
+ # @option params [String] :next_token
2561
+ # To retrieve the next set of results, the `nextToken` value from a
2562
+ # previous response; otherwise **null** to receive the first set of
2563
+ # results.
2564
+ #
2565
+ # @option params [Integer] :max_results
2566
+ # The maximum number of results to return in this operation.
2567
+ #
2568
+ # @option params [String] :wireless_device_type
2569
+ # The wireless device type, it is either Sidewalk or LoRaWAN.
2570
+ #
2571
+ # @return [Types::ListQueuedMessagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2572
+ #
2573
+ # * {Types::ListQueuedMessagesResponse#next_token #next_token} => String
2574
+ # * {Types::ListQueuedMessagesResponse#downlink_queue_messages_list #downlink_queue_messages_list} => Array<Types::DownlinkQueueMessage>
2575
+ #
2576
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2577
+ #
2578
+ # @example Request syntax with placeholder values
2579
+ #
2580
+ # resp = client.list_queued_messages({
2581
+ # id: "WirelessDeviceId", # required
2582
+ # next_token: "NextToken",
2583
+ # max_results: 1,
2584
+ # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
2585
+ # })
2586
+ #
2587
+ # @example Response structure
2588
+ #
2589
+ # resp.next_token #=> String
2590
+ # resp.downlink_queue_messages_list #=> Array
2591
+ # resp.downlink_queue_messages_list[0].message_id #=> String
2592
+ # resp.downlink_queue_messages_list[0].transmit_mode #=> Integer
2593
+ # resp.downlink_queue_messages_list[0].received_at #=> String
2594
+ # resp.downlink_queue_messages_list[0].lo_ra_wan.f_port #=> Integer
2595
+ #
2596
+ # @overload list_queued_messages(params = {})
2597
+ # @param [Hash] params ({})
2598
+ def list_queued_messages(params = {}, options = {})
2599
+ req = build_request(:list_queued_messages, params)
2600
+ req.send_request(options)
2601
+ end
2602
+
2512
2603
  # Lists the service profiles registered to your AWS account.
2513
2604
  #
2514
2605
  # @option params [String] :next_token
@@ -3497,7 +3588,7 @@ module Aws::IoTWireless
3497
3588
  params: params,
3498
3589
  config: config)
3499
3590
  context[:gem_name] = 'aws-sdk-iotwireless'
3500
- context[:gem_version] = '1.17.0'
3591
+ context[:gem_version] = '1.21.0'
3501
3592
  Seahorse::Client::Request.new(handlers, context)
3502
3593
  end
3503
3594
 
@@ -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')
@@ -212,6 +216,8 @@ module Aws::IoTWireless
212
216
  ListMulticastGroupsResponse = Shapes::StructureShape.new(name: 'ListMulticastGroupsResponse')
213
217
  ListPartnerAccountsRequest = Shapes::StructureShape.new(name: 'ListPartnerAccountsRequest')
214
218
  ListPartnerAccountsResponse = Shapes::StructureShape.new(name: 'ListPartnerAccountsResponse')
219
+ ListQueuedMessagesRequest = Shapes::StructureShape.new(name: 'ListQueuedMessagesRequest')
220
+ ListQueuedMessagesResponse = Shapes::StructureShape.new(name: 'ListQueuedMessagesResponse')
215
221
  ListServiceProfilesRequest = Shapes::StructureShape.new(name: 'ListServiceProfilesRequest')
216
222
  ListServiceProfilesResponse = Shapes::StructureShape.new(name: 'ListServiceProfilesResponse')
217
223
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
@@ -626,6 +632,13 @@ module Aws::IoTWireless
626
632
 
627
633
  DeleteMulticastGroupResponse.struct_class = Types::DeleteMulticastGroupResponse
628
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
+
629
642
  DeleteServiceProfileRequest.add_member(:id, Shapes::ShapeRef.new(shape: ServiceProfileId, required: true, location: "uri", location_name: "Id"))
630
643
  DeleteServiceProfileRequest.struct_class = Types::DeleteServiceProfileRequest
631
644
 
@@ -712,6 +725,14 @@ module Aws::IoTWireless
712
725
 
713
726
  DisassociateWirelessGatewayFromThingResponse.struct_class = Types::DisassociateWirelessGatewayFromThingResponse
714
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
+
715
736
  FPorts.add_member(:fuota, Shapes::ShapeRef.new(shape: FPort, location_name: "Fuota"))
716
737
  FPorts.add_member(:multicast, Shapes::ShapeRef.new(shape: FPort, location_name: "Multicast"))
717
738
  FPorts.add_member(:clock_sync, Shapes::ShapeRef.new(shape: FPort, location_name: "ClockSync"))
@@ -968,6 +989,16 @@ module Aws::IoTWireless
968
989
  ListPartnerAccountsResponse.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkAccountList, location_name: "Sidewalk"))
969
990
  ListPartnerAccountsResponse.struct_class = Types::ListPartnerAccountsResponse
970
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
+
971
1002
  ListServiceProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
972
1003
  ListServiceProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
973
1004
  ListServiceProfilesRequest.struct_class = Types::ListServiceProfilesRequest
@@ -1796,6 +1827,19 @@ module Aws::IoTWireless
1796
1827
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1797
1828
  end)
1798
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
+
1799
1843
  api.add_operation(:delete_service_profile, Seahorse::Model::Operation.new.tap do |o|
1800
1844
  o.name = "DeleteServiceProfile"
1801
1845
  o.http_method = "DELETE"
@@ -2316,6 +2360,25 @@ module Aws::IoTWireless
2316
2360
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2317
2361
  end)
2318
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
+
2319
2382
  api.add_operation(:list_service_profiles, Seahorse::Model::Operation.new.tap do |o|
2320
2383
  o.name = "ListServiceProfiles"
2321
2384
  o.http_method = "GET"
@@ -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
  #
@@ -2665,6 +2727,61 @@ module Aws::IoTWireless
2665
2727
  include Aws::Structure
2666
2728
  end
2667
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
+
2668
2785
  # @note When making an API call, you may pass ListServiceProfilesRequest
2669
2786
  # data as a hash:
2670
2787
  #
@@ -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.17.0'
51
+ GEM_VERSION = '1.21.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.17.0
4
+ version: 1.21.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-23 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.126.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.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement