aws-sdk-iotwireless 1.14.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +1009 -12
- data/lib/aws-sdk-iotwireless/client_api.rb +802 -0
- data/lib/aws-sdk-iotwireless/types.rb +1572 -54
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +4 -4
@@ -138,6 +138,81 @@ module Aws::IoTWireless
|
|
138
138
|
include Aws::Structure
|
139
139
|
end
|
140
140
|
|
141
|
+
# @note When making an API call, you may pass AssociateMulticastGroupWithFuotaTaskRequest
|
142
|
+
# data as a hash:
|
143
|
+
#
|
144
|
+
# {
|
145
|
+
# id: "FuotaTaskId", # required
|
146
|
+
# multicast_group_id: "MulticastGroupId", # required
|
147
|
+
# }
|
148
|
+
#
|
149
|
+
# @!attribute [rw] id
|
150
|
+
# The ID of a FUOTA task.
|
151
|
+
# @return [String]
|
152
|
+
#
|
153
|
+
# @!attribute [rw] multicast_group_id
|
154
|
+
# The ID of the multicast group.
|
155
|
+
# @return [String]
|
156
|
+
#
|
157
|
+
class AssociateMulticastGroupWithFuotaTaskRequest < Struct.new(
|
158
|
+
:id,
|
159
|
+
:multicast_group_id)
|
160
|
+
SENSITIVE = []
|
161
|
+
include Aws::Structure
|
162
|
+
end
|
163
|
+
|
164
|
+
class AssociateMulticastGroupWithFuotaTaskResponse < Aws::EmptyStructure; end
|
165
|
+
|
166
|
+
# @note When making an API call, you may pass AssociateWirelessDeviceWithFuotaTaskRequest
|
167
|
+
# data as a hash:
|
168
|
+
#
|
169
|
+
# {
|
170
|
+
# id: "FuotaTaskId", # required
|
171
|
+
# wireless_device_id: "WirelessDeviceId", # required
|
172
|
+
# }
|
173
|
+
#
|
174
|
+
# @!attribute [rw] id
|
175
|
+
# The ID of a FUOTA task.
|
176
|
+
# @return [String]
|
177
|
+
#
|
178
|
+
# @!attribute [rw] wireless_device_id
|
179
|
+
# The ID of the wireless device.
|
180
|
+
# @return [String]
|
181
|
+
#
|
182
|
+
class AssociateWirelessDeviceWithFuotaTaskRequest < Struct.new(
|
183
|
+
:id,
|
184
|
+
:wireless_device_id)
|
185
|
+
SENSITIVE = []
|
186
|
+
include Aws::Structure
|
187
|
+
end
|
188
|
+
|
189
|
+
class AssociateWirelessDeviceWithFuotaTaskResponse < Aws::EmptyStructure; end
|
190
|
+
|
191
|
+
# @note When making an API call, you may pass AssociateWirelessDeviceWithMulticastGroupRequest
|
192
|
+
# data as a hash:
|
193
|
+
#
|
194
|
+
# {
|
195
|
+
# id: "MulticastGroupId", # required
|
196
|
+
# wireless_device_id: "WirelessDeviceId", # required
|
197
|
+
# }
|
198
|
+
#
|
199
|
+
# @!attribute [rw] id
|
200
|
+
# The ID of the multicast group.
|
201
|
+
# @return [String]
|
202
|
+
#
|
203
|
+
# @!attribute [rw] wireless_device_id
|
204
|
+
# The ID of the wireless device.
|
205
|
+
# @return [String]
|
206
|
+
#
|
207
|
+
class AssociateWirelessDeviceWithMulticastGroupRequest < Struct.new(
|
208
|
+
:id,
|
209
|
+
:wireless_device_id)
|
210
|
+
SENSITIVE = []
|
211
|
+
include Aws::Structure
|
212
|
+
end
|
213
|
+
|
214
|
+
class AssociateWirelessDeviceWithMulticastGroupResponse < Aws::EmptyStructure; end
|
215
|
+
|
141
216
|
# @note When making an API call, you may pass AssociateWirelessDeviceWithThingRequest
|
142
217
|
# data as a hash:
|
143
218
|
#
|
@@ -221,6 +296,25 @@ module Aws::IoTWireless
|
|
221
296
|
|
222
297
|
class AssociateWirelessGatewayWithThingResponse < Aws::EmptyStructure; end
|
223
298
|
|
299
|
+
# @note When making an API call, you may pass CancelMulticastGroupSessionRequest
|
300
|
+
# data as a hash:
|
301
|
+
#
|
302
|
+
# {
|
303
|
+
# id: "MulticastGroupId", # required
|
304
|
+
# }
|
305
|
+
#
|
306
|
+
# @!attribute [rw] id
|
307
|
+
# The ID of the multicast group.
|
308
|
+
# @return [String]
|
309
|
+
#
|
310
|
+
class CancelMulticastGroupSessionRequest < Struct.new(
|
311
|
+
:id)
|
312
|
+
SENSITIVE = []
|
313
|
+
include Aws::Structure
|
314
|
+
end
|
315
|
+
|
316
|
+
class CancelMulticastGroupSessionResponse < Aws::EmptyStructure; end
|
317
|
+
|
224
318
|
# List of sidewalk certificates.
|
225
319
|
#
|
226
320
|
# @!attribute [rw] signing_alg
|
@@ -422,6 +516,160 @@ module Aws::IoTWireless
|
|
422
516
|
include Aws::Structure
|
423
517
|
end
|
424
518
|
|
519
|
+
# @note When making an API call, you may pass CreateFuotaTaskRequest
|
520
|
+
# data as a hash:
|
521
|
+
#
|
522
|
+
# {
|
523
|
+
# name: "FuotaTaskName",
|
524
|
+
# description: "Description",
|
525
|
+
# client_request_token: "ClientRequestToken",
|
526
|
+
# lo_ra_wan: {
|
527
|
+
# rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
|
528
|
+
# },
|
529
|
+
# firmware_update_image: "FirmwareUpdateImage", # required
|
530
|
+
# firmware_update_role: "FirmwareUpdateRole", # required
|
531
|
+
# tags: [
|
532
|
+
# {
|
533
|
+
# key: "TagKey", # required
|
534
|
+
# value: "TagValue", # required
|
535
|
+
# },
|
536
|
+
# ],
|
537
|
+
# }
|
538
|
+
#
|
539
|
+
# @!attribute [rw] name
|
540
|
+
# The name of a FUOTA task.
|
541
|
+
# @return [String]
|
542
|
+
#
|
543
|
+
# @!attribute [rw] description
|
544
|
+
# The description of the new resource.
|
545
|
+
# @return [String]
|
546
|
+
#
|
547
|
+
# @!attribute [rw] client_request_token
|
548
|
+
# Each resource must have a unique client request token. If you try to
|
549
|
+
# create a new resource with the same token as a resource that already
|
550
|
+
# exists, an exception occurs. If you omit this value, AWS SDKs will
|
551
|
+
# automatically generate a unique client request.
|
552
|
+
#
|
553
|
+
# **A suitable default value is auto-generated.** You should normally
|
554
|
+
# not need to pass this option.
|
555
|
+
# @return [String]
|
556
|
+
#
|
557
|
+
# @!attribute [rw] lo_ra_wan
|
558
|
+
# The LoRaWAN information used with a FUOTA task.
|
559
|
+
# @return [Types::LoRaWANFuotaTask]
|
560
|
+
#
|
561
|
+
# @!attribute [rw] firmware_update_image
|
562
|
+
# The S3 URI points to a firmware update image that is to be used with
|
563
|
+
# a FUOTA task.
|
564
|
+
# @return [String]
|
565
|
+
#
|
566
|
+
# @!attribute [rw] firmware_update_role
|
567
|
+
# The firmware update role that is to be used with a FUOTA task.
|
568
|
+
# @return [String]
|
569
|
+
#
|
570
|
+
# @!attribute [rw] tags
|
571
|
+
# The tag to attach to the specified resource. Tags are metadata that
|
572
|
+
# you can use to manage a resource.
|
573
|
+
# @return [Array<Types::Tag>]
|
574
|
+
#
|
575
|
+
class CreateFuotaTaskRequest < Struct.new(
|
576
|
+
:name,
|
577
|
+
:description,
|
578
|
+
:client_request_token,
|
579
|
+
:lo_ra_wan,
|
580
|
+
:firmware_update_image,
|
581
|
+
:firmware_update_role,
|
582
|
+
:tags)
|
583
|
+
SENSITIVE = []
|
584
|
+
include Aws::Structure
|
585
|
+
end
|
586
|
+
|
587
|
+
# @!attribute [rw] arn
|
588
|
+
# The arn of a FUOTA task.
|
589
|
+
# @return [String]
|
590
|
+
#
|
591
|
+
# @!attribute [rw] id
|
592
|
+
# The ID of a FUOTA task.
|
593
|
+
# @return [String]
|
594
|
+
#
|
595
|
+
class CreateFuotaTaskResponse < Struct.new(
|
596
|
+
:arn,
|
597
|
+
:id)
|
598
|
+
SENSITIVE = []
|
599
|
+
include Aws::Structure
|
600
|
+
end
|
601
|
+
|
602
|
+
# @note When making an API call, you may pass CreateMulticastGroupRequest
|
603
|
+
# data as a hash:
|
604
|
+
#
|
605
|
+
# {
|
606
|
+
# name: "MulticastGroupName",
|
607
|
+
# description: "Description",
|
608
|
+
# client_request_token: "ClientRequestToken",
|
609
|
+
# lo_ra_wan: { # required
|
610
|
+
# rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
|
611
|
+
# dl_class: "ClassB", # accepts ClassB, ClassC
|
612
|
+
# },
|
613
|
+
# tags: [
|
614
|
+
# {
|
615
|
+
# key: "TagKey", # required
|
616
|
+
# value: "TagValue", # required
|
617
|
+
# },
|
618
|
+
# ],
|
619
|
+
# }
|
620
|
+
#
|
621
|
+
# @!attribute [rw] name
|
622
|
+
# The name of the multicast group.
|
623
|
+
# @return [String]
|
624
|
+
#
|
625
|
+
# @!attribute [rw] description
|
626
|
+
# The description of the multicast group.
|
627
|
+
# @return [String]
|
628
|
+
#
|
629
|
+
# @!attribute [rw] client_request_token
|
630
|
+
# Each resource must have a unique client request token. If you try to
|
631
|
+
# create a new resource with the same token as a resource that already
|
632
|
+
# exists, an exception occurs. If you omit this value, AWS SDKs will
|
633
|
+
# automatically generate a unique client request.
|
634
|
+
#
|
635
|
+
# **A suitable default value is auto-generated.** You should normally
|
636
|
+
# not need to pass this option.
|
637
|
+
# @return [String]
|
638
|
+
#
|
639
|
+
# @!attribute [rw] lo_ra_wan
|
640
|
+
# The LoRaWAN information that is to be used with the multicast group.
|
641
|
+
# @return [Types::LoRaWANMulticast]
|
642
|
+
#
|
643
|
+
# @!attribute [rw] tags
|
644
|
+
# The tag to attach to the specified resource. Tags are metadata that
|
645
|
+
# you can use to manage a resource.
|
646
|
+
# @return [Array<Types::Tag>]
|
647
|
+
#
|
648
|
+
class CreateMulticastGroupRequest < Struct.new(
|
649
|
+
:name,
|
650
|
+
:description,
|
651
|
+
:client_request_token,
|
652
|
+
:lo_ra_wan,
|
653
|
+
:tags)
|
654
|
+
SENSITIVE = []
|
655
|
+
include Aws::Structure
|
656
|
+
end
|
657
|
+
|
658
|
+
# @!attribute [rw] arn
|
659
|
+
# The arn of the multicast group.
|
660
|
+
# @return [String]
|
661
|
+
#
|
662
|
+
# @!attribute [rw] id
|
663
|
+
# The ID of the multicast group.
|
664
|
+
# @return [String]
|
665
|
+
#
|
666
|
+
class CreateMulticastGroupResponse < Struct.new(
|
667
|
+
:arn,
|
668
|
+
:id)
|
669
|
+
SENSITIVE = []
|
670
|
+
include Aws::Structure
|
671
|
+
end
|
672
|
+
|
425
673
|
# @note When making an API call, you may pass CreateServiceProfileRequest
|
426
674
|
# data as a hash:
|
427
675
|
#
|
@@ -508,6 +756,7 @@ module Aws::IoTWireless
|
|
508
756
|
# otaa_v1_0_x: {
|
509
757
|
# app_key: "AppKey",
|
510
758
|
# app_eui: "AppEui",
|
759
|
+
# gen_app_key: "GenAppKey",
|
511
760
|
# },
|
512
761
|
# abp_v1_1: {
|
513
762
|
# dev_addr: "DevAddr",
|
@@ -525,6 +774,11 @@ module Aws::IoTWireless
|
|
525
774
|
# app_s_key: "AppSKey",
|
526
775
|
# },
|
527
776
|
# },
|
777
|
+
# f_ports: {
|
778
|
+
# fuota: 1,
|
779
|
+
# multicast: 1,
|
780
|
+
# clock_sync: 1,
|
781
|
+
# },
|
528
782
|
# },
|
529
783
|
# tags: [
|
530
784
|
# {
|
@@ -837,6 +1091,44 @@ module Aws::IoTWireless
|
|
837
1091
|
|
838
1092
|
class DeleteDeviceProfileResponse < Aws::EmptyStructure; end
|
839
1093
|
|
1094
|
+
# @note When making an API call, you may pass DeleteFuotaTaskRequest
|
1095
|
+
# data as a hash:
|
1096
|
+
#
|
1097
|
+
# {
|
1098
|
+
# id: "FuotaTaskId", # required
|
1099
|
+
# }
|
1100
|
+
#
|
1101
|
+
# @!attribute [rw] id
|
1102
|
+
# The ID of a FUOTA task.
|
1103
|
+
# @return [String]
|
1104
|
+
#
|
1105
|
+
class DeleteFuotaTaskRequest < Struct.new(
|
1106
|
+
:id)
|
1107
|
+
SENSITIVE = []
|
1108
|
+
include Aws::Structure
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
class DeleteFuotaTaskResponse < Aws::EmptyStructure; end
|
1112
|
+
|
1113
|
+
# @note When making an API call, you may pass DeleteMulticastGroupRequest
|
1114
|
+
# data as a hash:
|
1115
|
+
#
|
1116
|
+
# {
|
1117
|
+
# id: "MulticastGroupId", # required
|
1118
|
+
# }
|
1119
|
+
#
|
1120
|
+
# @!attribute [rw] id
|
1121
|
+
# The ID of the multicast group.
|
1122
|
+
# @return [String]
|
1123
|
+
#
|
1124
|
+
class DeleteMulticastGroupRequest < Struct.new(
|
1125
|
+
:id)
|
1126
|
+
SENSITIVE = []
|
1127
|
+
include Aws::Structure
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class DeleteMulticastGroupResponse < Aws::EmptyStructure; end
|
1131
|
+
|
840
1132
|
# @note When making an API call, you may pass DeleteServiceProfileRequest
|
841
1133
|
# data as a hash:
|
842
1134
|
#
|
@@ -991,6 +1283,29 @@ module Aws::IoTWireless
|
|
991
1283
|
include Aws::Structure
|
992
1284
|
end
|
993
1285
|
|
1286
|
+
# Device registration state event configuration object for enabling and
|
1287
|
+
# disabling relevant topics.
|
1288
|
+
#
|
1289
|
+
# @note When making an API call, you may pass DeviceRegistrationStateEventConfiguration
|
1290
|
+
# data as a hash:
|
1291
|
+
#
|
1292
|
+
# {
|
1293
|
+
# sidewalk: {
|
1294
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
1295
|
+
# },
|
1296
|
+
# }
|
1297
|
+
#
|
1298
|
+
# @!attribute [rw] sidewalk
|
1299
|
+
# Device registration state event configuration object for enabling or
|
1300
|
+
# disabling Sidewalk related event topics.
|
1301
|
+
# @return [Types::SidewalkEventNotificationConfigurations]
|
1302
|
+
#
|
1303
|
+
class DeviceRegistrationStateEventConfiguration < Struct.new(
|
1304
|
+
:sidewalk)
|
1305
|
+
SENSITIVE = []
|
1306
|
+
include Aws::Structure
|
1307
|
+
end
|
1308
|
+
|
994
1309
|
# @note When making an API call, you may pass DisassociateAwsAccountFromPartnerAccountRequest
|
995
1310
|
# data as a hash:
|
996
1311
|
#
|
@@ -1016,38 +1331,113 @@ module Aws::IoTWireless
|
|
1016
1331
|
|
1017
1332
|
class DisassociateAwsAccountFromPartnerAccountResponse < Aws::EmptyStructure; end
|
1018
1333
|
|
1019
|
-
# @note When making an API call, you may pass
|
1334
|
+
# @note When making an API call, you may pass DisassociateMulticastGroupFromFuotaTaskRequest
|
1020
1335
|
# data as a hash:
|
1021
1336
|
#
|
1022
1337
|
# {
|
1023
|
-
# id: "
|
1338
|
+
# id: "FuotaTaskId", # required
|
1339
|
+
# multicast_group_id: "MulticastGroupId", # required
|
1024
1340
|
# }
|
1025
1341
|
#
|
1026
1342
|
# @!attribute [rw] id
|
1027
|
-
# The ID of
|
1343
|
+
# The ID of a FUOTA task.
|
1028
1344
|
# @return [String]
|
1029
1345
|
#
|
1030
|
-
|
1031
|
-
|
1346
|
+
# @!attribute [rw] multicast_group_id
|
1347
|
+
# The ID of the multicast group.
|
1348
|
+
# @return [String]
|
1349
|
+
#
|
1350
|
+
class DisassociateMulticastGroupFromFuotaTaskRequest < Struct.new(
|
1351
|
+
:id,
|
1352
|
+
:multicast_group_id)
|
1032
1353
|
SENSITIVE = []
|
1033
1354
|
include Aws::Structure
|
1034
1355
|
end
|
1035
1356
|
|
1036
|
-
class
|
1357
|
+
class DisassociateMulticastGroupFromFuotaTaskResponse < Aws::EmptyStructure; end
|
1037
1358
|
|
1038
|
-
# @note When making an API call, you may pass
|
1359
|
+
# @note When making an API call, you may pass DisassociateWirelessDeviceFromFuotaTaskRequest
|
1039
1360
|
# data as a hash:
|
1040
1361
|
#
|
1041
1362
|
# {
|
1042
|
-
# id: "
|
1363
|
+
# id: "FuotaTaskId", # required
|
1364
|
+
# wireless_device_id: "WirelessDeviceId", # required
|
1043
1365
|
# }
|
1044
1366
|
#
|
1045
1367
|
# @!attribute [rw] id
|
1046
|
-
# The ID of
|
1368
|
+
# The ID of a FUOTA task.
|
1047
1369
|
# @return [String]
|
1048
1370
|
#
|
1049
|
-
|
1050
|
-
|
1371
|
+
# @!attribute [rw] wireless_device_id
|
1372
|
+
# The ID of the wireless device.
|
1373
|
+
# @return [String]
|
1374
|
+
#
|
1375
|
+
class DisassociateWirelessDeviceFromFuotaTaskRequest < Struct.new(
|
1376
|
+
:id,
|
1377
|
+
:wireless_device_id)
|
1378
|
+
SENSITIVE = []
|
1379
|
+
include Aws::Structure
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
class DisassociateWirelessDeviceFromFuotaTaskResponse < Aws::EmptyStructure; end
|
1383
|
+
|
1384
|
+
# @note When making an API call, you may pass DisassociateWirelessDeviceFromMulticastGroupRequest
|
1385
|
+
# data as a hash:
|
1386
|
+
#
|
1387
|
+
# {
|
1388
|
+
# id: "MulticastGroupId", # required
|
1389
|
+
# wireless_device_id: "WirelessDeviceId", # required
|
1390
|
+
# }
|
1391
|
+
#
|
1392
|
+
# @!attribute [rw] id
|
1393
|
+
# The ID of the multicast group.
|
1394
|
+
# @return [String]
|
1395
|
+
#
|
1396
|
+
# @!attribute [rw] wireless_device_id
|
1397
|
+
# The ID of the wireless device.
|
1398
|
+
# @return [String]
|
1399
|
+
#
|
1400
|
+
class DisassociateWirelessDeviceFromMulticastGroupRequest < Struct.new(
|
1401
|
+
:id,
|
1402
|
+
:wireless_device_id)
|
1403
|
+
SENSITIVE = []
|
1404
|
+
include Aws::Structure
|
1405
|
+
end
|
1406
|
+
|
1407
|
+
class DisassociateWirelessDeviceFromMulticastGroupResponse < Aws::EmptyStructure; end
|
1408
|
+
|
1409
|
+
# @note When making an API call, you may pass DisassociateWirelessDeviceFromThingRequest
|
1410
|
+
# data as a hash:
|
1411
|
+
#
|
1412
|
+
# {
|
1413
|
+
# id: "WirelessDeviceId", # required
|
1414
|
+
# }
|
1415
|
+
#
|
1416
|
+
# @!attribute [rw] id
|
1417
|
+
# The ID of the resource to update.
|
1418
|
+
# @return [String]
|
1419
|
+
#
|
1420
|
+
class DisassociateWirelessDeviceFromThingRequest < Struct.new(
|
1421
|
+
:id)
|
1422
|
+
SENSITIVE = []
|
1423
|
+
include Aws::Structure
|
1424
|
+
end
|
1425
|
+
|
1426
|
+
class DisassociateWirelessDeviceFromThingResponse < Aws::EmptyStructure; end
|
1427
|
+
|
1428
|
+
# @note When making an API call, you may pass DisassociateWirelessGatewayFromCertificateRequest
|
1429
|
+
# data as a hash:
|
1430
|
+
#
|
1431
|
+
# {
|
1432
|
+
# id: "WirelessGatewayId", # required
|
1433
|
+
# }
|
1434
|
+
#
|
1435
|
+
# @!attribute [rw] id
|
1436
|
+
# The ID of the resource to update.
|
1437
|
+
# @return [String]
|
1438
|
+
#
|
1439
|
+
class DisassociateWirelessGatewayFromCertificateRequest < Struct.new(
|
1440
|
+
:id)
|
1051
1441
|
SENSITIVE = []
|
1052
1442
|
include Aws::Structure
|
1053
1443
|
end
|
@@ -1073,6 +1463,60 @@ module Aws::IoTWireless
|
|
1073
1463
|
|
1074
1464
|
class DisassociateWirelessGatewayFromThingResponse < Aws::EmptyStructure; end
|
1075
1465
|
|
1466
|
+
# List of FPort assigned for different LoRaWAN application packages to
|
1467
|
+
# use
|
1468
|
+
#
|
1469
|
+
# @note When making an API call, you may pass FPorts
|
1470
|
+
# data as a hash:
|
1471
|
+
#
|
1472
|
+
# {
|
1473
|
+
# fuota: 1,
|
1474
|
+
# multicast: 1,
|
1475
|
+
# clock_sync: 1,
|
1476
|
+
# }
|
1477
|
+
#
|
1478
|
+
# @!attribute [rw] fuota
|
1479
|
+
# The Fport value.
|
1480
|
+
# @return [Integer]
|
1481
|
+
#
|
1482
|
+
# @!attribute [rw] multicast
|
1483
|
+
# The Fport value.
|
1484
|
+
# @return [Integer]
|
1485
|
+
#
|
1486
|
+
# @!attribute [rw] clock_sync
|
1487
|
+
# The Fport value.
|
1488
|
+
# @return [Integer]
|
1489
|
+
#
|
1490
|
+
class FPorts < Struct.new(
|
1491
|
+
:fuota,
|
1492
|
+
:multicast,
|
1493
|
+
:clock_sync)
|
1494
|
+
SENSITIVE = []
|
1495
|
+
include Aws::Structure
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
# A FUOTA task.
|
1499
|
+
#
|
1500
|
+
# @!attribute [rw] id
|
1501
|
+
# The ID of a FUOTA task.
|
1502
|
+
# @return [String]
|
1503
|
+
#
|
1504
|
+
# @!attribute [rw] arn
|
1505
|
+
# The arn of a FUOTA task.
|
1506
|
+
# @return [String]
|
1507
|
+
#
|
1508
|
+
# @!attribute [rw] name
|
1509
|
+
# The name of a FUOTA task.
|
1510
|
+
# @return [String]
|
1511
|
+
#
|
1512
|
+
class FuotaTask < Struct.new(
|
1513
|
+
:id,
|
1514
|
+
:arn,
|
1515
|
+
:name)
|
1516
|
+
SENSITIVE = []
|
1517
|
+
include Aws::Structure
|
1518
|
+
end
|
1519
|
+
|
1076
1520
|
# @note When making an API call, you may pass GetDestinationRequest
|
1077
1521
|
# data as a hash:
|
1078
1522
|
#
|
@@ -1167,6 +1611,74 @@ module Aws::IoTWireless
|
|
1167
1611
|
include Aws::Structure
|
1168
1612
|
end
|
1169
1613
|
|
1614
|
+
# @note When making an API call, you may pass GetFuotaTaskRequest
|
1615
|
+
# data as a hash:
|
1616
|
+
#
|
1617
|
+
# {
|
1618
|
+
# id: "FuotaTaskId", # required
|
1619
|
+
# }
|
1620
|
+
#
|
1621
|
+
# @!attribute [rw] id
|
1622
|
+
# The ID of a FUOTA task.
|
1623
|
+
# @return [String]
|
1624
|
+
#
|
1625
|
+
class GetFuotaTaskRequest < Struct.new(
|
1626
|
+
:id)
|
1627
|
+
SENSITIVE = []
|
1628
|
+
include Aws::Structure
|
1629
|
+
end
|
1630
|
+
|
1631
|
+
# @!attribute [rw] arn
|
1632
|
+
# The arn of a FUOTA task.
|
1633
|
+
# @return [String]
|
1634
|
+
#
|
1635
|
+
# @!attribute [rw] id
|
1636
|
+
# The ID of a FUOTA task.
|
1637
|
+
# @return [String]
|
1638
|
+
#
|
1639
|
+
# @!attribute [rw] status
|
1640
|
+
# The status of a FUOTA task.
|
1641
|
+
# @return [String]
|
1642
|
+
#
|
1643
|
+
# @!attribute [rw] name
|
1644
|
+
# The name of a FUOTA task.
|
1645
|
+
# @return [String]
|
1646
|
+
#
|
1647
|
+
# @!attribute [rw] description
|
1648
|
+
# The description of the new resource.
|
1649
|
+
# @return [String]
|
1650
|
+
#
|
1651
|
+
# @!attribute [rw] lo_ra_wan
|
1652
|
+
# The LoRaWAN information returned from getting a FUOTA task.
|
1653
|
+
# @return [Types::LoRaWANFuotaTaskGetInfo]
|
1654
|
+
#
|
1655
|
+
# @!attribute [rw] firmware_update_image
|
1656
|
+
# The S3 URI points to a firmware update image that is to be used with
|
1657
|
+
# a FUOTA task.
|
1658
|
+
# @return [String]
|
1659
|
+
#
|
1660
|
+
# @!attribute [rw] firmware_update_role
|
1661
|
+
# The firmware update role that is to be used with a FUOTA task.
|
1662
|
+
# @return [String]
|
1663
|
+
#
|
1664
|
+
# @!attribute [rw] created_at
|
1665
|
+
# Created at timestamp for the resource.
|
1666
|
+
# @return [Time]
|
1667
|
+
#
|
1668
|
+
class GetFuotaTaskResponse < Struct.new(
|
1669
|
+
:arn,
|
1670
|
+
:id,
|
1671
|
+
:status,
|
1672
|
+
:name,
|
1673
|
+
:description,
|
1674
|
+
:lo_ra_wan,
|
1675
|
+
:firmware_update_image,
|
1676
|
+
:firmware_update_role,
|
1677
|
+
:created_at)
|
1678
|
+
SENSITIVE = []
|
1679
|
+
include Aws::Structure
|
1680
|
+
end
|
1681
|
+
|
1170
1682
|
# @api private
|
1171
1683
|
#
|
1172
1684
|
class GetLogLevelsByResourceTypesRequest < Aws::EmptyStructure; end
|
@@ -1191,6 +1703,128 @@ module Aws::IoTWireless
|
|
1191
1703
|
include Aws::Structure
|
1192
1704
|
end
|
1193
1705
|
|
1706
|
+
# @note When making an API call, you may pass GetMulticastGroupRequest
|
1707
|
+
# data as a hash:
|
1708
|
+
#
|
1709
|
+
# {
|
1710
|
+
# id: "MulticastGroupId", # required
|
1711
|
+
# }
|
1712
|
+
#
|
1713
|
+
# @!attribute [rw] id
|
1714
|
+
# The ID of the multicast group.
|
1715
|
+
# @return [String]
|
1716
|
+
#
|
1717
|
+
class GetMulticastGroupRequest < Struct.new(
|
1718
|
+
:id)
|
1719
|
+
SENSITIVE = []
|
1720
|
+
include Aws::Structure
|
1721
|
+
end
|
1722
|
+
|
1723
|
+
# @!attribute [rw] arn
|
1724
|
+
# The arn of the multicast group.
|
1725
|
+
# @return [String]
|
1726
|
+
#
|
1727
|
+
# @!attribute [rw] id
|
1728
|
+
# The ID of the multicast group.
|
1729
|
+
# @return [String]
|
1730
|
+
#
|
1731
|
+
# @!attribute [rw] name
|
1732
|
+
# The name of the multicast group.
|
1733
|
+
# @return [String]
|
1734
|
+
#
|
1735
|
+
# @!attribute [rw] description
|
1736
|
+
# The description of the new resource.
|
1737
|
+
# @return [String]
|
1738
|
+
#
|
1739
|
+
# @!attribute [rw] status
|
1740
|
+
# The status of the multicast group.
|
1741
|
+
# @return [String]
|
1742
|
+
#
|
1743
|
+
# @!attribute [rw] lo_ra_wan
|
1744
|
+
# The LoRaWAN information that is to be returned from getting
|
1745
|
+
# multicast group information.
|
1746
|
+
# @return [Types::LoRaWANMulticastGet]
|
1747
|
+
#
|
1748
|
+
# @!attribute [rw] created_at
|
1749
|
+
# Created at timestamp for the resource.
|
1750
|
+
# @return [Time]
|
1751
|
+
#
|
1752
|
+
class GetMulticastGroupResponse < Struct.new(
|
1753
|
+
:arn,
|
1754
|
+
:id,
|
1755
|
+
:name,
|
1756
|
+
:description,
|
1757
|
+
:status,
|
1758
|
+
:lo_ra_wan,
|
1759
|
+
:created_at)
|
1760
|
+
SENSITIVE = []
|
1761
|
+
include Aws::Structure
|
1762
|
+
end
|
1763
|
+
|
1764
|
+
# @note When making an API call, you may pass GetMulticastGroupSessionRequest
|
1765
|
+
# data as a hash:
|
1766
|
+
#
|
1767
|
+
# {
|
1768
|
+
# id: "MulticastGroupId", # required
|
1769
|
+
# }
|
1770
|
+
#
|
1771
|
+
# @!attribute [rw] id
|
1772
|
+
# The ID of the multicast group.
|
1773
|
+
# @return [String]
|
1774
|
+
#
|
1775
|
+
class GetMulticastGroupSessionRequest < Struct.new(
|
1776
|
+
:id)
|
1777
|
+
SENSITIVE = []
|
1778
|
+
include Aws::Structure
|
1779
|
+
end
|
1780
|
+
|
1781
|
+
# @!attribute [rw] lo_ra_wan
|
1782
|
+
# The LoRaWAN information used with the multicast session.
|
1783
|
+
# @return [Types::LoRaWANMulticastSession]
|
1784
|
+
#
|
1785
|
+
class GetMulticastGroupSessionResponse < Struct.new(
|
1786
|
+
:lo_ra_wan)
|
1787
|
+
SENSITIVE = []
|
1788
|
+
include Aws::Structure
|
1789
|
+
end
|
1790
|
+
|
1791
|
+
# @note When making an API call, you may pass GetNetworkAnalyzerConfigurationRequest
|
1792
|
+
# data as a hash:
|
1793
|
+
#
|
1794
|
+
# {
|
1795
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
1796
|
+
# }
|
1797
|
+
#
|
1798
|
+
# @!attribute [rw] configuration_name
|
1799
|
+
# NetworkAnalyzer configuration name.
|
1800
|
+
# @return [String]
|
1801
|
+
#
|
1802
|
+
class GetNetworkAnalyzerConfigurationRequest < Struct.new(
|
1803
|
+
:configuration_name)
|
1804
|
+
SENSITIVE = []
|
1805
|
+
include Aws::Structure
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
# @!attribute [rw] trace_content
|
1809
|
+
# Trace Content for resources.
|
1810
|
+
# @return [Types::TraceContent]
|
1811
|
+
#
|
1812
|
+
# @!attribute [rw] wireless_devices
|
1813
|
+
# List of WirelessDevices in the NetworkAnalyzerConfiguration.
|
1814
|
+
# @return [Array<String>]
|
1815
|
+
#
|
1816
|
+
# @!attribute [rw] wireless_gateways
|
1817
|
+
# List of WirelessGateways in the NetworkAnalyzerConfiguration.
|
1818
|
+
# @return [Array<String>]
|
1819
|
+
#
|
1820
|
+
class GetNetworkAnalyzerConfigurationResponse < Struct.new(
|
1821
|
+
:trace_content,
|
1822
|
+
:wireless_devices,
|
1823
|
+
:wireless_gateways)
|
1824
|
+
SENSITIVE = []
|
1825
|
+
include Aws::Structure
|
1826
|
+
end
|
1827
|
+
|
1194
1828
|
# @note When making an API call, you may pass GetPartnerAccountRequest
|
1195
1829
|
# data as a hash:
|
1196
1830
|
#
|
@@ -1229,6 +1863,52 @@ module Aws::IoTWireless
|
|
1229
1863
|
include Aws::Structure
|
1230
1864
|
end
|
1231
1865
|
|
1866
|
+
# @note When making an API call, you may pass GetResourceEventConfigurationRequest
|
1867
|
+
# data as a hash:
|
1868
|
+
#
|
1869
|
+
# {
|
1870
|
+
# identifier: "Identifier", # required
|
1871
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
1872
|
+
# partner_type: "Sidewalk", # accepts Sidewalk
|
1873
|
+
# }
|
1874
|
+
#
|
1875
|
+
# @!attribute [rw] identifier
|
1876
|
+
# Resource identifier to opt in for event messaging.
|
1877
|
+
# @return [String]
|
1878
|
+
#
|
1879
|
+
# @!attribute [rw] identifier_type
|
1880
|
+
# Identifier type of the particular resource identifier for event
|
1881
|
+
# configuration.
|
1882
|
+
# @return [String]
|
1883
|
+
#
|
1884
|
+
# @!attribute [rw] partner_type
|
1885
|
+
# Partner type of the resource if the identifier type is
|
1886
|
+
# PartnerAccountId.
|
1887
|
+
# @return [String]
|
1888
|
+
#
|
1889
|
+
class GetResourceEventConfigurationRequest < Struct.new(
|
1890
|
+
:identifier,
|
1891
|
+
:identifier_type,
|
1892
|
+
:partner_type)
|
1893
|
+
SENSITIVE = []
|
1894
|
+
include Aws::Structure
|
1895
|
+
end
|
1896
|
+
|
1897
|
+
# @!attribute [rw] device_registration_state
|
1898
|
+
# Event configuration for the device registration state event
|
1899
|
+
# @return [Types::DeviceRegistrationStateEventConfiguration]
|
1900
|
+
#
|
1901
|
+
# @!attribute [rw] proximity
|
1902
|
+
# Event configuration for the Proximity event
|
1903
|
+
# @return [Types::ProximityEventConfiguration]
|
1904
|
+
#
|
1905
|
+
class GetResourceEventConfigurationResponse < Struct.new(
|
1906
|
+
:device_registration_state,
|
1907
|
+
:proximity)
|
1908
|
+
SENSITIVE = []
|
1909
|
+
include Aws::Structure
|
1910
|
+
end
|
1911
|
+
|
1232
1912
|
# @note When making an API call, you may pass GetResourceLogLevelRequest
|
1233
1913
|
# data as a hash:
|
1234
1914
|
#
|
@@ -1709,38 +2389,163 @@ module Aws::IoTWireless
|
|
1709
2389
|
# The status of the request.
|
1710
2390
|
# @return [String]
|
1711
2391
|
#
|
1712
|
-
class GetWirelessGatewayTaskResponse < Struct.new(
|
1713
|
-
:wireless_gateway_id,
|
1714
|
-
:wireless_gateway_task_definition_id,
|
1715
|
-
:last_uplink_received_at,
|
1716
|
-
:task_created_at,
|
1717
|
-
:status)
|
2392
|
+
class GetWirelessGatewayTaskResponse < Struct.new(
|
2393
|
+
:wireless_gateway_id,
|
2394
|
+
:wireless_gateway_task_definition_id,
|
2395
|
+
:last_uplink_received_at,
|
2396
|
+
:task_created_at,
|
2397
|
+
:status)
|
2398
|
+
SENSITIVE = []
|
2399
|
+
include Aws::Structure
|
2400
|
+
end
|
2401
|
+
|
2402
|
+
# An unexpected error occurred while processing a request.
|
2403
|
+
#
|
2404
|
+
# @!attribute [rw] message
|
2405
|
+
# @return [String]
|
2406
|
+
#
|
2407
|
+
class InternalServerException < Struct.new(
|
2408
|
+
:message)
|
2409
|
+
SENSITIVE = []
|
2410
|
+
include Aws::Structure
|
2411
|
+
end
|
2412
|
+
|
2413
|
+
# @note When making an API call, you may pass ListDestinationsRequest
|
2414
|
+
# data as a hash:
|
2415
|
+
#
|
2416
|
+
# {
|
2417
|
+
# max_results: 1,
|
2418
|
+
# next_token: "NextToken",
|
2419
|
+
# }
|
2420
|
+
#
|
2421
|
+
# @!attribute [rw] max_results
|
2422
|
+
# The maximum number of results to return in this operation.
|
2423
|
+
# @return [Integer]
|
2424
|
+
#
|
2425
|
+
# @!attribute [rw] next_token
|
2426
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2427
|
+
# previous response; otherwise **null** to receive the first set of
|
2428
|
+
# results.
|
2429
|
+
# @return [String]
|
2430
|
+
#
|
2431
|
+
class ListDestinationsRequest < Struct.new(
|
2432
|
+
:max_results,
|
2433
|
+
:next_token)
|
2434
|
+
SENSITIVE = []
|
2435
|
+
include Aws::Structure
|
2436
|
+
end
|
2437
|
+
|
2438
|
+
# @!attribute [rw] next_token
|
2439
|
+
# The token to use to get the next set of results, or **null** if
|
2440
|
+
# there are no additional results.
|
2441
|
+
# @return [String]
|
2442
|
+
#
|
2443
|
+
# @!attribute [rw] destination_list
|
2444
|
+
# The list of destinations.
|
2445
|
+
# @return [Array<Types::Destinations>]
|
2446
|
+
#
|
2447
|
+
class ListDestinationsResponse < Struct.new(
|
2448
|
+
:next_token,
|
2449
|
+
:destination_list)
|
2450
|
+
SENSITIVE = []
|
2451
|
+
include Aws::Structure
|
2452
|
+
end
|
2453
|
+
|
2454
|
+
# @note When making an API call, you may pass ListDeviceProfilesRequest
|
2455
|
+
# data as a hash:
|
2456
|
+
#
|
2457
|
+
# {
|
2458
|
+
# next_token: "NextToken",
|
2459
|
+
# max_results: 1,
|
2460
|
+
# }
|
2461
|
+
#
|
2462
|
+
# @!attribute [rw] next_token
|
2463
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2464
|
+
# previous response; otherwise **null** to receive the first set of
|
2465
|
+
# results.
|
2466
|
+
# @return [String]
|
2467
|
+
#
|
2468
|
+
# @!attribute [rw] max_results
|
2469
|
+
# The maximum number of results to return in this operation.
|
2470
|
+
# @return [Integer]
|
2471
|
+
#
|
2472
|
+
class ListDeviceProfilesRequest < Struct.new(
|
2473
|
+
:next_token,
|
2474
|
+
:max_results)
|
2475
|
+
SENSITIVE = []
|
2476
|
+
include Aws::Structure
|
2477
|
+
end
|
2478
|
+
|
2479
|
+
# @!attribute [rw] next_token
|
2480
|
+
# The token to use to get the next set of results, or **null** if
|
2481
|
+
# there are no additional results.
|
2482
|
+
# @return [String]
|
2483
|
+
#
|
2484
|
+
# @!attribute [rw] device_profile_list
|
2485
|
+
# The list of device profiles.
|
2486
|
+
# @return [Array<Types::DeviceProfile>]
|
2487
|
+
#
|
2488
|
+
class ListDeviceProfilesResponse < Struct.new(
|
2489
|
+
:next_token,
|
2490
|
+
:device_profile_list)
|
2491
|
+
SENSITIVE = []
|
2492
|
+
include Aws::Structure
|
2493
|
+
end
|
2494
|
+
|
2495
|
+
# @note When making an API call, you may pass ListFuotaTasksRequest
|
2496
|
+
# data as a hash:
|
2497
|
+
#
|
2498
|
+
# {
|
2499
|
+
# next_token: "NextToken",
|
2500
|
+
# max_results: 1,
|
2501
|
+
# }
|
2502
|
+
#
|
2503
|
+
# @!attribute [rw] next_token
|
2504
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2505
|
+
# previous response; otherwise **null** to receive the first set of
|
2506
|
+
# results.
|
2507
|
+
# @return [String]
|
2508
|
+
#
|
2509
|
+
# @!attribute [rw] max_results
|
2510
|
+
# The maximum number of results to return in this operation.
|
2511
|
+
# @return [Integer]
|
2512
|
+
#
|
2513
|
+
class ListFuotaTasksRequest < Struct.new(
|
2514
|
+
:next_token,
|
2515
|
+
:max_results)
|
1718
2516
|
SENSITIVE = []
|
1719
2517
|
include Aws::Structure
|
1720
2518
|
end
|
1721
2519
|
|
1722
|
-
#
|
1723
|
-
#
|
1724
|
-
#
|
2520
|
+
# @!attribute [rw] next_token
|
2521
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2522
|
+
# previous response; otherwise **null** to receive the first set of
|
2523
|
+
# results.
|
1725
2524
|
# @return [String]
|
1726
2525
|
#
|
1727
|
-
|
1728
|
-
|
2526
|
+
# @!attribute [rw] fuota_task_list
|
2527
|
+
# Lists the FUOTA tasks registered to your AWS account.
|
2528
|
+
# @return [Array<Types::FuotaTask>]
|
2529
|
+
#
|
2530
|
+
class ListFuotaTasksResponse < Struct.new(
|
2531
|
+
:next_token,
|
2532
|
+
:fuota_task_list)
|
1729
2533
|
SENSITIVE = []
|
1730
2534
|
include Aws::Structure
|
1731
2535
|
end
|
1732
2536
|
|
1733
|
-
# @note When making an API call, you may pass
|
2537
|
+
# @note When making an API call, you may pass ListMulticastGroupsByFuotaTaskRequest
|
1734
2538
|
# data as a hash:
|
1735
2539
|
#
|
1736
2540
|
# {
|
1737
|
-
#
|
2541
|
+
# id: "FuotaTaskId", # required
|
1738
2542
|
# next_token: "NextToken",
|
2543
|
+
# max_results: 1,
|
1739
2544
|
# }
|
1740
2545
|
#
|
1741
|
-
# @!attribute [rw]
|
1742
|
-
# The
|
1743
|
-
# @return [
|
2546
|
+
# @!attribute [rw] id
|
2547
|
+
# The ID of a FUOTA task.
|
2548
|
+
# @return [String]
|
1744
2549
|
#
|
1745
2550
|
# @!attribute [rw] next_token
|
1746
2551
|
# To retrieve the next set of results, the `nextToken` value from a
|
@@ -1748,30 +2553,36 @@ module Aws::IoTWireless
|
|
1748
2553
|
# results.
|
1749
2554
|
# @return [String]
|
1750
2555
|
#
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
2556
|
+
# @!attribute [rw] max_results
|
2557
|
+
# The maximum number of results to return in this operation.
|
2558
|
+
# @return [Integer]
|
2559
|
+
#
|
2560
|
+
class ListMulticastGroupsByFuotaTaskRequest < Struct.new(
|
2561
|
+
:id,
|
2562
|
+
:next_token,
|
2563
|
+
:max_results)
|
1754
2564
|
SENSITIVE = []
|
1755
2565
|
include Aws::Structure
|
1756
2566
|
end
|
1757
2567
|
|
1758
2568
|
# @!attribute [rw] next_token
|
1759
|
-
#
|
1760
|
-
#
|
2569
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2570
|
+
# previous response; otherwise **null** to receive the first set of
|
2571
|
+
# results.
|
1761
2572
|
# @return [String]
|
1762
2573
|
#
|
1763
|
-
# @!attribute [rw]
|
1764
|
-
#
|
1765
|
-
# @return [Array<Types::
|
2574
|
+
# @!attribute [rw] multicast_group_list
|
2575
|
+
# List of multicast groups associated with a FUOTA task.
|
2576
|
+
# @return [Array<Types::MulticastGroupByFuotaTask>]
|
1766
2577
|
#
|
1767
|
-
class
|
2578
|
+
class ListMulticastGroupsByFuotaTaskResponse < Struct.new(
|
1768
2579
|
:next_token,
|
1769
|
-
:
|
2580
|
+
:multicast_group_list)
|
1770
2581
|
SENSITIVE = []
|
1771
2582
|
include Aws::Structure
|
1772
2583
|
end
|
1773
2584
|
|
1774
|
-
# @note When making an API call, you may pass
|
2585
|
+
# @note When making an API call, you may pass ListMulticastGroupsRequest
|
1775
2586
|
# data as a hash:
|
1776
2587
|
#
|
1777
2588
|
# {
|
@@ -1789,7 +2600,7 @@ module Aws::IoTWireless
|
|
1789
2600
|
# The maximum number of results to return in this operation.
|
1790
2601
|
# @return [Integer]
|
1791
2602
|
#
|
1792
|
-
class
|
2603
|
+
class ListMulticastGroupsRequest < Struct.new(
|
1793
2604
|
:next_token,
|
1794
2605
|
:max_results)
|
1795
2606
|
SENSITIVE = []
|
@@ -1797,17 +2608,18 @@ module Aws::IoTWireless
|
|
1797
2608
|
end
|
1798
2609
|
|
1799
2610
|
# @!attribute [rw] next_token
|
1800
|
-
#
|
1801
|
-
#
|
2611
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2612
|
+
# previous response; otherwise **null** to receive the first set of
|
2613
|
+
# results.
|
1802
2614
|
# @return [String]
|
1803
2615
|
#
|
1804
|
-
# @!attribute [rw]
|
1805
|
-
#
|
1806
|
-
# @return [Array<Types::
|
2616
|
+
# @!attribute [rw] multicast_group_list
|
2617
|
+
# List of multicast groups.
|
2618
|
+
# @return [Array<Types::MulticastGroup>]
|
1807
2619
|
#
|
1808
|
-
class
|
2620
|
+
class ListMulticastGroupsResponse < Struct.new(
|
1809
2621
|
:next_token,
|
1810
|
-
:
|
2622
|
+
:multicast_group_list)
|
1811
2623
|
SENSITIVE = []
|
1812
2624
|
include Aws::Structure
|
1813
2625
|
end
|
@@ -1932,6 +2744,8 @@ module Aws::IoTWireless
|
|
1932
2744
|
# device_profile_id: "DeviceProfileId",
|
1933
2745
|
# service_profile_id: "ServiceProfileId",
|
1934
2746
|
# wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
|
2747
|
+
# fuota_task_id: "FuotaTaskId",
|
2748
|
+
# multicast_group_id: "MulticastGroupId",
|
1935
2749
|
# }
|
1936
2750
|
#
|
1937
2751
|
# @!attribute [rw] max_results
|
@@ -1964,13 +2778,23 @@ module Aws::IoTWireless
|
|
1964
2778
|
# device type.
|
1965
2779
|
# @return [String]
|
1966
2780
|
#
|
2781
|
+
# @!attribute [rw] fuota_task_id
|
2782
|
+
# The ID of a FUOTA task.
|
2783
|
+
# @return [String]
|
2784
|
+
#
|
2785
|
+
# @!attribute [rw] multicast_group_id
|
2786
|
+
# The ID of the multicast group.
|
2787
|
+
# @return [String]
|
2788
|
+
#
|
1967
2789
|
class ListWirelessDevicesRequest < Struct.new(
|
1968
2790
|
:max_results,
|
1969
2791
|
:next_token,
|
1970
2792
|
:destination_name,
|
1971
2793
|
:device_profile_id,
|
1972
2794
|
:service_profile_id,
|
1973
|
-
:wireless_device_type
|
2795
|
+
:wireless_device_type,
|
2796
|
+
:fuota_task_id,
|
2797
|
+
:multicast_group_id)
|
1974
2798
|
SENSITIVE = []
|
1975
2799
|
include Aws::Structure
|
1976
2800
|
end
|
@@ -2097,6 +2921,7 @@ module Aws::IoTWireless
|
|
2097
2921
|
# otaa_v1_0_x: {
|
2098
2922
|
# app_key: "AppKey",
|
2099
2923
|
# app_eui: "AppEui",
|
2924
|
+
# gen_app_key: "GenAppKey",
|
2100
2925
|
# },
|
2101
2926
|
# abp_v1_1: {
|
2102
2927
|
# dev_addr: "DevAddr",
|
@@ -2114,6 +2939,11 @@ module Aws::IoTWireless
|
|
2114
2939
|
# app_s_key: "AppSKey",
|
2115
2940
|
# },
|
2116
2941
|
# },
|
2942
|
+
# f_ports: {
|
2943
|
+
# fuota: 1,
|
2944
|
+
# multicast: 1,
|
2945
|
+
# clock_sync: 1,
|
2946
|
+
# },
|
2117
2947
|
# }
|
2118
2948
|
#
|
2119
2949
|
# @!attribute [rw] dev_eui
|
@@ -2144,6 +2974,11 @@ module Aws::IoTWireless
|
|
2144
2974
|
# LoRaWAN object for create APIs
|
2145
2975
|
# @return [Types::AbpV1_0_x]
|
2146
2976
|
#
|
2977
|
+
# @!attribute [rw] f_ports
|
2978
|
+
# List of FPort assigned for different LoRaWAN application packages to
|
2979
|
+
# use
|
2980
|
+
# @return [Types::FPorts]
|
2981
|
+
#
|
2147
2982
|
class LoRaWANDevice < Struct.new(
|
2148
2983
|
:dev_eui,
|
2149
2984
|
:device_profile_id,
|
@@ -2151,7 +2986,8 @@ module Aws::IoTWireless
|
|
2151
2986
|
:otaa_v1_1,
|
2152
2987
|
:otaa_v1_0_x,
|
2153
2988
|
:abp_v1_1,
|
2154
|
-
:abp_v1_0_x
|
2989
|
+
:abp_v1_0_x,
|
2990
|
+
:f_ports)
|
2155
2991
|
SENSITIVE = []
|
2156
2992
|
include Aws::Structure
|
2157
2993
|
end
|
@@ -2321,6 +3157,42 @@ module Aws::IoTWireless
|
|
2321
3157
|
include Aws::Structure
|
2322
3158
|
end
|
2323
3159
|
|
3160
|
+
# The LoRaWAN information used with a FUOTA task.
|
3161
|
+
#
|
3162
|
+
# @note When making an API call, you may pass LoRaWANFuotaTask
|
3163
|
+
# data as a hash:
|
3164
|
+
#
|
3165
|
+
# {
|
3166
|
+
# rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
|
3167
|
+
# }
|
3168
|
+
#
|
3169
|
+
# @!attribute [rw] rf_region
|
3170
|
+
# Supported RfRegions
|
3171
|
+
# @return [String]
|
3172
|
+
#
|
3173
|
+
class LoRaWANFuotaTask < Struct.new(
|
3174
|
+
:rf_region)
|
3175
|
+
SENSITIVE = []
|
3176
|
+
include Aws::Structure
|
3177
|
+
end
|
3178
|
+
|
3179
|
+
# The LoRaWAN information returned from getting a FUOTA task.
|
3180
|
+
#
|
3181
|
+
# @!attribute [rw] rf_region
|
3182
|
+
# The frequency band (RFRegion) value.
|
3183
|
+
# @return [String]
|
3184
|
+
#
|
3185
|
+
# @!attribute [rw] start_time
|
3186
|
+
# Start time of a FUOTA task.
|
3187
|
+
# @return [Time]
|
3188
|
+
#
|
3189
|
+
class LoRaWANFuotaTaskGetInfo < Struct.new(
|
3190
|
+
:rf_region,
|
3191
|
+
:start_time)
|
3192
|
+
SENSITIVE = []
|
3193
|
+
include Aws::Structure
|
3194
|
+
end
|
3195
|
+
|
2324
3196
|
# LoRaWANGateway object.
|
2325
3197
|
#
|
2326
3198
|
# @note When making an API call, you may pass LoRaWANGateway
|
@@ -2550,6 +3422,116 @@ module Aws::IoTWireless
|
|
2550
3422
|
include Aws::Structure
|
2551
3423
|
end
|
2552
3424
|
|
3425
|
+
# The LoRaWAN information that is to be used with the multicast group.
|
3426
|
+
#
|
3427
|
+
# @note When making an API call, you may pass LoRaWANMulticast
|
3428
|
+
# data as a hash:
|
3429
|
+
#
|
3430
|
+
# {
|
3431
|
+
# rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
|
3432
|
+
# dl_class: "ClassB", # accepts ClassB, ClassC
|
3433
|
+
# }
|
3434
|
+
#
|
3435
|
+
# @!attribute [rw] rf_region
|
3436
|
+
# Supported RfRegions
|
3437
|
+
# @return [String]
|
3438
|
+
#
|
3439
|
+
# @!attribute [rw] dl_class
|
3440
|
+
# DlClass for LoRaWAM, valid values are ClassB and ClassC.
|
3441
|
+
# @return [String]
|
3442
|
+
#
|
3443
|
+
class LoRaWANMulticast < Struct.new(
|
3444
|
+
:rf_region,
|
3445
|
+
:dl_class)
|
3446
|
+
SENSITIVE = []
|
3447
|
+
include Aws::Structure
|
3448
|
+
end
|
3449
|
+
|
3450
|
+
# The LoRaWAN information that is to be returned from getting multicast
|
3451
|
+
# group information.
|
3452
|
+
#
|
3453
|
+
# @!attribute [rw] rf_region
|
3454
|
+
# Supported RfRegions
|
3455
|
+
# @return [String]
|
3456
|
+
#
|
3457
|
+
# @!attribute [rw] dl_class
|
3458
|
+
# DlClass for LoRaWAM, valid values are ClassB and ClassC.
|
3459
|
+
# @return [String]
|
3460
|
+
#
|
3461
|
+
# @!attribute [rw] number_of_devices_requested
|
3462
|
+
# Number of devices that are requested to be associated with the
|
3463
|
+
# multicast group.
|
3464
|
+
# @return [Integer]
|
3465
|
+
#
|
3466
|
+
# @!attribute [rw] number_of_devices_in_group
|
3467
|
+
# Number of devices that are associated to the multicast group.
|
3468
|
+
# @return [Integer]
|
3469
|
+
#
|
3470
|
+
class LoRaWANMulticastGet < Struct.new(
|
3471
|
+
:rf_region,
|
3472
|
+
:dl_class,
|
3473
|
+
:number_of_devices_requested,
|
3474
|
+
:number_of_devices_in_group)
|
3475
|
+
SENSITIVE = []
|
3476
|
+
include Aws::Structure
|
3477
|
+
end
|
3478
|
+
|
3479
|
+
# The metadata information of the LoRaWAN multicast group.
|
3480
|
+
#
|
3481
|
+
# @note When making an API call, you may pass LoRaWANMulticastMetadata
|
3482
|
+
# data as a hash:
|
3483
|
+
#
|
3484
|
+
# {
|
3485
|
+
# f_port: 1,
|
3486
|
+
# }
|
3487
|
+
#
|
3488
|
+
# @!attribute [rw] f_port
|
3489
|
+
# The Fport value.
|
3490
|
+
# @return [Integer]
|
3491
|
+
#
|
3492
|
+
class LoRaWANMulticastMetadata < Struct.new(
|
3493
|
+
:f_port)
|
3494
|
+
SENSITIVE = []
|
3495
|
+
include Aws::Structure
|
3496
|
+
end
|
3497
|
+
|
3498
|
+
# The LoRaWAN information used with the multicast session.
|
3499
|
+
#
|
3500
|
+
# @note When making an API call, you may pass LoRaWANMulticastSession
|
3501
|
+
# data as a hash:
|
3502
|
+
#
|
3503
|
+
# {
|
3504
|
+
# dl_dr: 1,
|
3505
|
+
# dl_freq: 1,
|
3506
|
+
# session_start_time: Time.now,
|
3507
|
+
# session_timeout: 1,
|
3508
|
+
# }
|
3509
|
+
#
|
3510
|
+
# @!attribute [rw] dl_dr
|
3511
|
+
# Downlink data rate.
|
3512
|
+
# @return [Integer]
|
3513
|
+
#
|
3514
|
+
# @!attribute [rw] dl_freq
|
3515
|
+
# Downlink frequency.
|
3516
|
+
# @return [Integer]
|
3517
|
+
#
|
3518
|
+
# @!attribute [rw] session_start_time
|
3519
|
+
# Timestamp of when the multicast group session is to start.
|
3520
|
+
# @return [Time]
|
3521
|
+
#
|
3522
|
+
# @!attribute [rw] session_timeout
|
3523
|
+
# How long before a multicast group session is to timeout.
|
3524
|
+
# @return [Integer]
|
3525
|
+
#
|
3526
|
+
class LoRaWANMulticastSession < Struct.new(
|
3527
|
+
:dl_dr,
|
3528
|
+
:dl_freq,
|
3529
|
+
:session_start_time,
|
3530
|
+
:session_timeout)
|
3531
|
+
SENSITIVE = []
|
3532
|
+
include Aws::Structure
|
3533
|
+
end
|
3534
|
+
|
2553
3535
|
# LoRaWAN router info.
|
2554
3536
|
#
|
2555
3537
|
# @note When making an API call, you may pass LoRaWANSendDataToDevice
|
@@ -2588,6 +3570,25 @@ module Aws::IoTWireless
|
|
2588
3570
|
include Aws::Structure
|
2589
3571
|
end
|
2590
3572
|
|
3573
|
+
# The LoRaWAN information used to start a FUOTA task.
|
3574
|
+
#
|
3575
|
+
# @note When making an API call, you may pass LoRaWANStartFuotaTask
|
3576
|
+
# data as a hash:
|
3577
|
+
#
|
3578
|
+
# {
|
3579
|
+
# start_time: Time.now,
|
3580
|
+
# }
|
3581
|
+
#
|
3582
|
+
# @!attribute [rw] start_time
|
3583
|
+
# Start time of a FUOTA task.
|
3584
|
+
# @return [Time]
|
3585
|
+
#
|
3586
|
+
class LoRaWANStartFuotaTask < Struct.new(
|
3587
|
+
:start_time)
|
3588
|
+
SENSITIVE = []
|
3589
|
+
include Aws::Structure
|
3590
|
+
end
|
3591
|
+
|
2591
3592
|
# LoRaWAN object for update functions.
|
2592
3593
|
#
|
2593
3594
|
# @note When making an API call, you may pass LoRaWANUpdateDevice
|
@@ -2675,6 +3676,61 @@ module Aws::IoTWireless
|
|
2675
3676
|
include Aws::Structure
|
2676
3677
|
end
|
2677
3678
|
|
3679
|
+
# A multicast group.
|
3680
|
+
#
|
3681
|
+
# @!attribute [rw] id
|
3682
|
+
# The ID of the multicast group.
|
3683
|
+
# @return [String]
|
3684
|
+
#
|
3685
|
+
# @!attribute [rw] arn
|
3686
|
+
# The arn of the multicast group.
|
3687
|
+
# @return [String]
|
3688
|
+
#
|
3689
|
+
# @!attribute [rw] name
|
3690
|
+
# The name of the multicast group.
|
3691
|
+
# @return [String]
|
3692
|
+
#
|
3693
|
+
class MulticastGroup < Struct.new(
|
3694
|
+
:id,
|
3695
|
+
:arn,
|
3696
|
+
:name)
|
3697
|
+
SENSITIVE = []
|
3698
|
+
include Aws::Structure
|
3699
|
+
end
|
3700
|
+
|
3701
|
+
# A multicast group that is associated with a FUOTA task.
|
3702
|
+
#
|
3703
|
+
# @!attribute [rw] id
|
3704
|
+
# The ID of the multicast group.
|
3705
|
+
# @return [String]
|
3706
|
+
#
|
3707
|
+
class MulticastGroupByFuotaTask < Struct.new(
|
3708
|
+
:id)
|
3709
|
+
SENSITIVE = []
|
3710
|
+
include Aws::Structure
|
3711
|
+
end
|
3712
|
+
|
3713
|
+
# Wireless metadata that is to be sent to multicast group.
|
3714
|
+
#
|
3715
|
+
# @note When making an API call, you may pass MulticastWirelessMetadata
|
3716
|
+
# data as a hash:
|
3717
|
+
#
|
3718
|
+
# {
|
3719
|
+
# lo_ra_wan: {
|
3720
|
+
# f_port: 1,
|
3721
|
+
# },
|
3722
|
+
# }
|
3723
|
+
#
|
3724
|
+
# @!attribute [rw] lo_ra_wan
|
3725
|
+
# The metadata information of the LoRaWAN multicast group.
|
3726
|
+
# @return [Types::LoRaWANMulticastMetadata]
|
3727
|
+
#
|
3728
|
+
class MulticastWirelessMetadata < Struct.new(
|
3729
|
+
:lo_ra_wan)
|
3730
|
+
SENSITIVE = []
|
3731
|
+
include Aws::Structure
|
3732
|
+
end
|
3733
|
+
|
2678
3734
|
# OTAA device object for v1.0.x
|
2679
3735
|
#
|
2680
3736
|
# @note When making an API call, you may pass OtaaV1_0_x
|
@@ -2683,6 +3739,7 @@ module Aws::IoTWireless
|
|
2683
3739
|
# {
|
2684
3740
|
# app_key: "AppKey",
|
2685
3741
|
# app_eui: "AppEui",
|
3742
|
+
# gen_app_key: "GenAppKey",
|
2686
3743
|
# }
|
2687
3744
|
#
|
2688
3745
|
# @!attribute [rw] app_key
|
@@ -2693,9 +3750,14 @@ module Aws::IoTWireless
|
|
2693
3750
|
# The AppEUI value.
|
2694
3751
|
# @return [String]
|
2695
3752
|
#
|
3753
|
+
# @!attribute [rw] gen_app_key
|
3754
|
+
# The GenAppKey value.
|
3755
|
+
# @return [String]
|
3756
|
+
#
|
2696
3757
|
class OtaaV1_0_x < Struct.new(
|
2697
3758
|
:app_key,
|
2698
|
-
:app_eui
|
3759
|
+
:app_eui,
|
3760
|
+
:gen_app_key)
|
2699
3761
|
SENSITIVE = []
|
2700
3762
|
include Aws::Structure
|
2701
3763
|
end
|
@@ -2731,6 +3793,29 @@ module Aws::IoTWireless
|
|
2731
3793
|
include Aws::Structure
|
2732
3794
|
end
|
2733
3795
|
|
3796
|
+
# Proximity event configuration object for enabling and disabling
|
3797
|
+
# relevant topics.
|
3798
|
+
#
|
3799
|
+
# @note When making an API call, you may pass ProximityEventConfiguration
|
3800
|
+
# data as a hash:
|
3801
|
+
#
|
3802
|
+
# {
|
3803
|
+
# sidewalk: {
|
3804
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3805
|
+
# },
|
3806
|
+
# }
|
3807
|
+
#
|
3808
|
+
# @!attribute [rw] sidewalk
|
3809
|
+
# Proximity event configuration object for enabling or disabling
|
3810
|
+
# Sidewalk related event topics.
|
3811
|
+
# @return [Types::SidewalkEventNotificationConfigurations]
|
3812
|
+
#
|
3813
|
+
class ProximityEventConfiguration < Struct.new(
|
3814
|
+
:sidewalk)
|
3815
|
+
SENSITIVE = []
|
3816
|
+
include Aws::Structure
|
3817
|
+
end
|
3818
|
+
|
2734
3819
|
# @note When making an API call, you may pass PutResourceLogLevelRequest
|
2735
3820
|
# data as a hash:
|
2736
3821
|
#
|
@@ -2812,10 +3897,53 @@ module Aws::IoTWireless
|
|
2812
3897
|
# Type of the font found resource.
|
2813
3898
|
# @return [String]
|
2814
3899
|
#
|
2815
|
-
class ResourceNotFoundException < Struct.new(
|
2816
|
-
:message,
|
2817
|
-
:resource_id,
|
2818
|
-
:resource_type)
|
3900
|
+
class ResourceNotFoundException < Struct.new(
|
3901
|
+
:message,
|
3902
|
+
:resource_id,
|
3903
|
+
:resource_type)
|
3904
|
+
SENSITIVE = []
|
3905
|
+
include Aws::Structure
|
3906
|
+
end
|
3907
|
+
|
3908
|
+
# @note When making an API call, you may pass SendDataToMulticastGroupRequest
|
3909
|
+
# data as a hash:
|
3910
|
+
#
|
3911
|
+
# {
|
3912
|
+
# id: "MulticastGroupId", # required
|
3913
|
+
# payload_data: "PayloadData", # required
|
3914
|
+
# wireless_metadata: { # required
|
3915
|
+
# lo_ra_wan: {
|
3916
|
+
# f_port: 1,
|
3917
|
+
# },
|
3918
|
+
# },
|
3919
|
+
# }
|
3920
|
+
#
|
3921
|
+
# @!attribute [rw] id
|
3922
|
+
# The ID of the multicast group.
|
3923
|
+
# @return [String]
|
3924
|
+
#
|
3925
|
+
# @!attribute [rw] payload_data
|
3926
|
+
# The binary to be sent to the end device, encoded in base64.
|
3927
|
+
# @return [String]
|
3928
|
+
#
|
3929
|
+
# @!attribute [rw] wireless_metadata
|
3930
|
+
# Wireless metadata that is to be sent to multicast group.
|
3931
|
+
# @return [Types::MulticastWirelessMetadata]
|
3932
|
+
#
|
3933
|
+
class SendDataToMulticastGroupRequest < Struct.new(
|
3934
|
+
:id,
|
3935
|
+
:payload_data,
|
3936
|
+
:wireless_metadata)
|
3937
|
+
SENSITIVE = []
|
3938
|
+
include Aws::Structure
|
3939
|
+
end
|
3940
|
+
|
3941
|
+
# @!attribute [rw] message_id
|
3942
|
+
# ID of a multicast group message.
|
3943
|
+
# @return [String]
|
3944
|
+
#
|
3945
|
+
class SendDataToMulticastGroupResponse < Struct.new(
|
3946
|
+
:message_id)
|
2819
3947
|
SENSITIVE = []
|
2820
3948
|
include Aws::Structure
|
2821
3949
|
end
|
@@ -3060,6 +4188,26 @@ module Aws::IoTWireless
|
|
3060
4188
|
include Aws::Structure
|
3061
4189
|
end
|
3062
4190
|
|
4191
|
+
# SidewalkEventNotificationConfigurations object Event configuration
|
4192
|
+
# object for Sidewalk related event topics.
|
4193
|
+
#
|
4194
|
+
# @note When making an API call, you may pass SidewalkEventNotificationConfigurations
|
4195
|
+
# data as a hash:
|
4196
|
+
#
|
4197
|
+
# {
|
4198
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4199
|
+
# }
|
4200
|
+
#
|
4201
|
+
# @!attribute [rw] amazon_id_event_topic
|
4202
|
+
# Enum to denote whether amazon id event topic is enabled or disabled.
|
4203
|
+
# @return [String]
|
4204
|
+
#
|
4205
|
+
class SidewalkEventNotificationConfigurations < Struct.new(
|
4206
|
+
:amazon_id_event_topic)
|
4207
|
+
SENSITIVE = []
|
4208
|
+
include Aws::Structure
|
4209
|
+
end
|
4210
|
+
|
3063
4211
|
# Sidewalk object used by list functions.
|
3064
4212
|
#
|
3065
4213
|
# @!attribute [rw] amazon_id
|
@@ -3132,6 +4280,139 @@ module Aws::IoTWireless
|
|
3132
4280
|
include Aws::Structure
|
3133
4281
|
end
|
3134
4282
|
|
4283
|
+
# @note When making an API call, you may pass StartBulkAssociateWirelessDeviceWithMulticastGroupRequest
|
4284
|
+
# data as a hash:
|
4285
|
+
#
|
4286
|
+
# {
|
4287
|
+
# id: "MulticastGroupId", # required
|
4288
|
+
# query_string: "QueryString",
|
4289
|
+
# tags: [
|
4290
|
+
# {
|
4291
|
+
# key: "TagKey", # required
|
4292
|
+
# value: "TagValue", # required
|
4293
|
+
# },
|
4294
|
+
# ],
|
4295
|
+
# }
|
4296
|
+
#
|
4297
|
+
# @!attribute [rw] id
|
4298
|
+
# The ID of the multicast group.
|
4299
|
+
# @return [String]
|
4300
|
+
#
|
4301
|
+
# @!attribute [rw] query_string
|
4302
|
+
# Query string used to search for wireless devices as part of the bulk
|
4303
|
+
# associate and disassociate process.
|
4304
|
+
# @return [String]
|
4305
|
+
#
|
4306
|
+
# @!attribute [rw] tags
|
4307
|
+
# The tag to attach to the specified resource. Tags are metadata that
|
4308
|
+
# you can use to manage a resource.
|
4309
|
+
# @return [Array<Types::Tag>]
|
4310
|
+
#
|
4311
|
+
class StartBulkAssociateWirelessDeviceWithMulticastGroupRequest < Struct.new(
|
4312
|
+
:id,
|
4313
|
+
:query_string,
|
4314
|
+
:tags)
|
4315
|
+
SENSITIVE = []
|
4316
|
+
include Aws::Structure
|
4317
|
+
end
|
4318
|
+
|
4319
|
+
class StartBulkAssociateWirelessDeviceWithMulticastGroupResponse < Aws::EmptyStructure; end
|
4320
|
+
|
4321
|
+
# @note When making an API call, you may pass StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest
|
4322
|
+
# data as a hash:
|
4323
|
+
#
|
4324
|
+
# {
|
4325
|
+
# id: "MulticastGroupId", # required
|
4326
|
+
# query_string: "QueryString",
|
4327
|
+
# tags: [
|
4328
|
+
# {
|
4329
|
+
# key: "TagKey", # required
|
4330
|
+
# value: "TagValue", # required
|
4331
|
+
# },
|
4332
|
+
# ],
|
4333
|
+
# }
|
4334
|
+
#
|
4335
|
+
# @!attribute [rw] id
|
4336
|
+
# The ID of the multicast group.
|
4337
|
+
# @return [String]
|
4338
|
+
#
|
4339
|
+
# @!attribute [rw] query_string
|
4340
|
+
# Query string used to search for wireless devices as part of the bulk
|
4341
|
+
# associate and disassociate process.
|
4342
|
+
# @return [String]
|
4343
|
+
#
|
4344
|
+
# @!attribute [rw] tags
|
4345
|
+
# The tag to attach to the specified resource. Tags are metadata that
|
4346
|
+
# you can use to manage a resource.
|
4347
|
+
# @return [Array<Types::Tag>]
|
4348
|
+
#
|
4349
|
+
class StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest < Struct.new(
|
4350
|
+
:id,
|
4351
|
+
:query_string,
|
4352
|
+
:tags)
|
4353
|
+
SENSITIVE = []
|
4354
|
+
include Aws::Structure
|
4355
|
+
end
|
4356
|
+
|
4357
|
+
class StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse < Aws::EmptyStructure; end
|
4358
|
+
|
4359
|
+
# @note When making an API call, you may pass StartFuotaTaskRequest
|
4360
|
+
# data as a hash:
|
4361
|
+
#
|
4362
|
+
# {
|
4363
|
+
# id: "FuotaTaskId", # required
|
4364
|
+
# lo_ra_wan: {
|
4365
|
+
# start_time: Time.now,
|
4366
|
+
# },
|
4367
|
+
# }
|
4368
|
+
#
|
4369
|
+
# @!attribute [rw] id
|
4370
|
+
# The ID of a FUOTA task.
|
4371
|
+
# @return [String]
|
4372
|
+
#
|
4373
|
+
# @!attribute [rw] lo_ra_wan
|
4374
|
+
# The LoRaWAN information used to start a FUOTA task.
|
4375
|
+
# @return [Types::LoRaWANStartFuotaTask]
|
4376
|
+
#
|
4377
|
+
class StartFuotaTaskRequest < Struct.new(
|
4378
|
+
:id,
|
4379
|
+
:lo_ra_wan)
|
4380
|
+
SENSITIVE = []
|
4381
|
+
include Aws::Structure
|
4382
|
+
end
|
4383
|
+
|
4384
|
+
class StartFuotaTaskResponse < Aws::EmptyStructure; end
|
4385
|
+
|
4386
|
+
# @note When making an API call, you may pass StartMulticastGroupSessionRequest
|
4387
|
+
# data as a hash:
|
4388
|
+
#
|
4389
|
+
# {
|
4390
|
+
# id: "MulticastGroupId", # required
|
4391
|
+
# lo_ra_wan: { # required
|
4392
|
+
# dl_dr: 1,
|
4393
|
+
# dl_freq: 1,
|
4394
|
+
# session_start_time: Time.now,
|
4395
|
+
# session_timeout: 1,
|
4396
|
+
# },
|
4397
|
+
# }
|
4398
|
+
#
|
4399
|
+
# @!attribute [rw] id
|
4400
|
+
# The ID of the multicast group.
|
4401
|
+
# @return [String]
|
4402
|
+
#
|
4403
|
+
# @!attribute [rw] lo_ra_wan
|
4404
|
+
# The LoRaWAN information used with the multicast session.
|
4405
|
+
# @return [Types::LoRaWANMulticastSession]
|
4406
|
+
#
|
4407
|
+
class StartMulticastGroupSessionRequest < Struct.new(
|
4408
|
+
:id,
|
4409
|
+
:lo_ra_wan)
|
4410
|
+
SENSITIVE = []
|
4411
|
+
include Aws::Structure
|
4412
|
+
end
|
4413
|
+
|
4414
|
+
class StartMulticastGroupSessionResponse < Aws::EmptyStructure; end
|
4415
|
+
|
3135
4416
|
# A simple label consisting of a customer-defined key-value pair
|
3136
4417
|
#
|
3137
4418
|
# @note When making an API call, you may pass Tag
|
@@ -3243,6 +4524,31 @@ module Aws::IoTWireless
|
|
3243
4524
|
include Aws::Structure
|
3244
4525
|
end
|
3245
4526
|
|
4527
|
+
# Trace Content for resources.
|
4528
|
+
#
|
4529
|
+
# @note When making an API call, you may pass TraceContent
|
4530
|
+
# data as a hash:
|
4531
|
+
#
|
4532
|
+
# {
|
4533
|
+
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
4534
|
+
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
4535
|
+
# }
|
4536
|
+
#
|
4537
|
+
# @!attribute [rw] wireless_device_frame_info
|
4538
|
+
# WirelessDevice FrameInfo for trace content.
|
4539
|
+
# @return [String]
|
4540
|
+
#
|
4541
|
+
# @!attribute [rw] log_level
|
4542
|
+
# The log level for a log message.
|
4543
|
+
# @return [String]
|
4544
|
+
#
|
4545
|
+
class TraceContent < Struct.new(
|
4546
|
+
:wireless_device_frame_info,
|
4547
|
+
:log_level)
|
4548
|
+
SENSITIVE = []
|
4549
|
+
include Aws::Structure
|
4550
|
+
end
|
4551
|
+
|
3246
4552
|
# @note When making an API call, you may pass UntagResourceRequest
|
3247
4553
|
# data as a hash:
|
3248
4554
|
#
|
@@ -3311,6 +4617,58 @@ module Aws::IoTWireless
|
|
3311
4617
|
|
3312
4618
|
class UpdateDestinationResponse < Aws::EmptyStructure; end
|
3313
4619
|
|
4620
|
+
# @note When making an API call, you may pass UpdateFuotaTaskRequest
|
4621
|
+
# data as a hash:
|
4622
|
+
#
|
4623
|
+
# {
|
4624
|
+
# id: "FuotaTaskId", # required
|
4625
|
+
# name: "FuotaTaskName",
|
4626
|
+
# description: "Description",
|
4627
|
+
# lo_ra_wan: {
|
4628
|
+
# rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
|
4629
|
+
# },
|
4630
|
+
# firmware_update_image: "FirmwareUpdateImage",
|
4631
|
+
# firmware_update_role: "FirmwareUpdateRole",
|
4632
|
+
# }
|
4633
|
+
#
|
4634
|
+
# @!attribute [rw] id
|
4635
|
+
# The ID of a FUOTA task.
|
4636
|
+
# @return [String]
|
4637
|
+
#
|
4638
|
+
# @!attribute [rw] name
|
4639
|
+
# The name of a FUOTA task.
|
4640
|
+
# @return [String]
|
4641
|
+
#
|
4642
|
+
# @!attribute [rw] description
|
4643
|
+
# The description of the new resource.
|
4644
|
+
# @return [String]
|
4645
|
+
#
|
4646
|
+
# @!attribute [rw] lo_ra_wan
|
4647
|
+
# The LoRaWAN information used with a FUOTA task.
|
4648
|
+
# @return [Types::LoRaWANFuotaTask]
|
4649
|
+
#
|
4650
|
+
# @!attribute [rw] firmware_update_image
|
4651
|
+
# The S3 URI points to a firmware update image that is to be used with
|
4652
|
+
# a FUOTA task.
|
4653
|
+
# @return [String]
|
4654
|
+
#
|
4655
|
+
# @!attribute [rw] firmware_update_role
|
4656
|
+
# The firmware update role that is to be used with a FUOTA task.
|
4657
|
+
# @return [String]
|
4658
|
+
#
|
4659
|
+
class UpdateFuotaTaskRequest < Struct.new(
|
4660
|
+
:id,
|
4661
|
+
:name,
|
4662
|
+
:description,
|
4663
|
+
:lo_ra_wan,
|
4664
|
+
:firmware_update_image,
|
4665
|
+
:firmware_update_role)
|
4666
|
+
SENSITIVE = []
|
4667
|
+
include Aws::Structure
|
4668
|
+
end
|
4669
|
+
|
4670
|
+
class UpdateFuotaTaskResponse < Aws::EmptyStructure; end
|
4671
|
+
|
3314
4672
|
# @note When making an API call, you may pass UpdateLogLevelsByResourceTypesRequest
|
3315
4673
|
# data as a hash:
|
3316
4674
|
#
|
@@ -3364,6 +4722,98 @@ module Aws::IoTWireless
|
|
3364
4722
|
|
3365
4723
|
class UpdateLogLevelsByResourceTypesResponse < Aws::EmptyStructure; end
|
3366
4724
|
|
4725
|
+
# @note When making an API call, you may pass UpdateMulticastGroupRequest
|
4726
|
+
# data as a hash:
|
4727
|
+
#
|
4728
|
+
# {
|
4729
|
+
# id: "MulticastGroupId", # required
|
4730
|
+
# name: "MulticastGroupName",
|
4731
|
+
# description: "Description",
|
4732
|
+
# lo_ra_wan: {
|
4733
|
+
# rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
|
4734
|
+
# dl_class: "ClassB", # accepts ClassB, ClassC
|
4735
|
+
# },
|
4736
|
+
# }
|
4737
|
+
#
|
4738
|
+
# @!attribute [rw] id
|
4739
|
+
# The ID of the multicast group.
|
4740
|
+
# @return [String]
|
4741
|
+
#
|
4742
|
+
# @!attribute [rw] name
|
4743
|
+
# The name of the multicast group.
|
4744
|
+
# @return [String]
|
4745
|
+
#
|
4746
|
+
# @!attribute [rw] description
|
4747
|
+
# The description of the new resource.
|
4748
|
+
# @return [String]
|
4749
|
+
#
|
4750
|
+
# @!attribute [rw] lo_ra_wan
|
4751
|
+
# The LoRaWAN information that is to be used with the multicast group.
|
4752
|
+
# @return [Types::LoRaWANMulticast]
|
4753
|
+
#
|
4754
|
+
class UpdateMulticastGroupRequest < Struct.new(
|
4755
|
+
:id,
|
4756
|
+
:name,
|
4757
|
+
:description,
|
4758
|
+
:lo_ra_wan)
|
4759
|
+
SENSITIVE = []
|
4760
|
+
include Aws::Structure
|
4761
|
+
end
|
4762
|
+
|
4763
|
+
class UpdateMulticastGroupResponse < Aws::EmptyStructure; end
|
4764
|
+
|
4765
|
+
# @note When making an API call, you may pass UpdateNetworkAnalyzerConfigurationRequest
|
4766
|
+
# data as a hash:
|
4767
|
+
#
|
4768
|
+
# {
|
4769
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
4770
|
+
# trace_content: {
|
4771
|
+
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
4772
|
+
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
4773
|
+
# },
|
4774
|
+
# wireless_devices_to_add: ["WirelessDeviceId"],
|
4775
|
+
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
4776
|
+
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
4777
|
+
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
4778
|
+
# }
|
4779
|
+
#
|
4780
|
+
# @!attribute [rw] configuration_name
|
4781
|
+
# NetworkAnalyzer configuration name.
|
4782
|
+
# @return [String]
|
4783
|
+
#
|
4784
|
+
# @!attribute [rw] trace_content
|
4785
|
+
# Trace Content for resources.
|
4786
|
+
# @return [Types::TraceContent]
|
4787
|
+
#
|
4788
|
+
# @!attribute [rw] wireless_devices_to_add
|
4789
|
+
# WirelessDevices to add into NetworkAnalyzerConfiguration.
|
4790
|
+
# @return [Array<String>]
|
4791
|
+
#
|
4792
|
+
# @!attribute [rw] wireless_devices_to_remove
|
4793
|
+
# WirelessDevices to remove from NetworkAnalyzerConfiguration.
|
4794
|
+
# @return [Array<String>]
|
4795
|
+
#
|
4796
|
+
# @!attribute [rw] wireless_gateways_to_add
|
4797
|
+
# WirelessGateways to add into NetworkAnalyzerConfiguration.
|
4798
|
+
# @return [Array<String>]
|
4799
|
+
#
|
4800
|
+
# @!attribute [rw] wireless_gateways_to_remove
|
4801
|
+
# WirelessGateways to remove from NetworkAnalyzerConfiguration.
|
4802
|
+
# @return [Array<String>]
|
4803
|
+
#
|
4804
|
+
class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
|
4805
|
+
:configuration_name,
|
4806
|
+
:trace_content,
|
4807
|
+
:wireless_devices_to_add,
|
4808
|
+
:wireless_devices_to_remove,
|
4809
|
+
:wireless_gateways_to_add,
|
4810
|
+
:wireless_gateways_to_remove)
|
4811
|
+
SENSITIVE = []
|
4812
|
+
include Aws::Structure
|
4813
|
+
end
|
4814
|
+
|
4815
|
+
class UpdateNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
|
4816
|
+
|
3367
4817
|
# @note When making an API call, you may pass UpdatePartnerAccountRequest
|
3368
4818
|
# data as a hash:
|
3369
4819
|
#
|
@@ -3397,6 +4847,59 @@ module Aws::IoTWireless
|
|
3397
4847
|
|
3398
4848
|
class UpdatePartnerAccountResponse < Aws::EmptyStructure; end
|
3399
4849
|
|
4850
|
+
# @note When making an API call, you may pass UpdateResourceEventConfigurationRequest
|
4851
|
+
# data as a hash:
|
4852
|
+
#
|
4853
|
+
# {
|
4854
|
+
# identifier: "Identifier", # required
|
4855
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
4856
|
+
# partner_type: "Sidewalk", # accepts Sidewalk
|
4857
|
+
# device_registration_state: {
|
4858
|
+
# sidewalk: {
|
4859
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4860
|
+
# },
|
4861
|
+
# },
|
4862
|
+
# proximity: {
|
4863
|
+
# sidewalk: {
|
4864
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4865
|
+
# },
|
4866
|
+
# },
|
4867
|
+
# }
|
4868
|
+
#
|
4869
|
+
# @!attribute [rw] identifier
|
4870
|
+
# Resource identifier to opt in for event messaging.
|
4871
|
+
# @return [String]
|
4872
|
+
#
|
4873
|
+
# @!attribute [rw] identifier_type
|
4874
|
+
# Identifier type of the particular resource identifier for event
|
4875
|
+
# configuration.
|
4876
|
+
# @return [String]
|
4877
|
+
#
|
4878
|
+
# @!attribute [rw] partner_type
|
4879
|
+
# Partner type of the resource if the identifier type is
|
4880
|
+
# PartnerAccountId
|
4881
|
+
# @return [String]
|
4882
|
+
#
|
4883
|
+
# @!attribute [rw] device_registration_state
|
4884
|
+
# Event configuration for the device registration state event
|
4885
|
+
# @return [Types::DeviceRegistrationStateEventConfiguration]
|
4886
|
+
#
|
4887
|
+
# @!attribute [rw] proximity
|
4888
|
+
# Event configuration for the Proximity event
|
4889
|
+
# @return [Types::ProximityEventConfiguration]
|
4890
|
+
#
|
4891
|
+
class UpdateResourceEventConfigurationRequest < Struct.new(
|
4892
|
+
:identifier,
|
4893
|
+
:identifier_type,
|
4894
|
+
:partner_type,
|
4895
|
+
:device_registration_state,
|
4896
|
+
:proximity)
|
4897
|
+
SENSITIVE = []
|
4898
|
+
include Aws::Structure
|
4899
|
+
end
|
4900
|
+
|
4901
|
+
class UpdateResourceEventConfigurationResponse < Aws::EmptyStructure; end
|
4902
|
+
|
3400
4903
|
# @note When making an API call, you may pass UpdateWirelessDeviceRequest
|
3401
4904
|
# data as a hash:
|
3402
4905
|
#
|
@@ -3669,6 +5172,18 @@ module Aws::IoTWireless
|
|
3669
5172
|
# The Sidewalk account credentials.
|
3670
5173
|
# @return [Types::SidewalkListDevice]
|
3671
5174
|
#
|
5175
|
+
# @!attribute [rw] fuota_device_status
|
5176
|
+
# The status of a wireless device in a FUOTA task.
|
5177
|
+
# @return [String]
|
5178
|
+
#
|
5179
|
+
# @!attribute [rw] multicast_device_status
|
5180
|
+
# The status of the wireless device in the multicast group.
|
5181
|
+
# @return [String]
|
5182
|
+
#
|
5183
|
+
# @!attribute [rw] mc_group_id
|
5184
|
+
# Id of the multicast group.
|
5185
|
+
# @return [Integer]
|
5186
|
+
#
|
3672
5187
|
class WirelessDeviceStatistics < Struct.new(
|
3673
5188
|
:arn,
|
3674
5189
|
:id,
|
@@ -3677,7 +5192,10 @@ module Aws::IoTWireless
|
|
3677
5192
|
:destination_name,
|
3678
5193
|
:last_uplink_received_at,
|
3679
5194
|
:lo_ra_wan,
|
3680
|
-
:sidewalk
|
5195
|
+
:sidewalk,
|
5196
|
+
:fuota_device_status,
|
5197
|
+
:multicast_device_status,
|
5198
|
+
:mc_group_id)
|
3681
5199
|
SENSITIVE = []
|
3682
5200
|
include Aws::Structure
|
3683
5201
|
end
|