aws-sdk-iotwireless 1.13.0 → 1.17.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -275,6 +275,15 @@ module Aws::IoTWireless
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -379,6 +388,78 @@ module Aws::IoTWireless
379
388
  req.send_request(options)
380
389
  end
381
390
 
391
+ # Associate a multicast group with a FUOTA task.
392
+ #
393
+ # @option params [required, String] :id
394
+ # The ID of a FUOTA task.
395
+ #
396
+ # @option params [required, String] :multicast_group_id
397
+ # The ID of the multicast group.
398
+ #
399
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
400
+ #
401
+ # @example Request syntax with placeholder values
402
+ #
403
+ # resp = client.associate_multicast_group_with_fuota_task({
404
+ # id: "FuotaTaskId", # required
405
+ # multicast_group_id: "MulticastGroupId", # required
406
+ # })
407
+ #
408
+ # @overload associate_multicast_group_with_fuota_task(params = {})
409
+ # @param [Hash] params ({})
410
+ def associate_multicast_group_with_fuota_task(params = {}, options = {})
411
+ req = build_request(:associate_multicast_group_with_fuota_task, params)
412
+ req.send_request(options)
413
+ end
414
+
415
+ # Associate a wireless device with a FUOTA task.
416
+ #
417
+ # @option params [required, String] :id
418
+ # The ID of a FUOTA task.
419
+ #
420
+ # @option params [required, String] :wireless_device_id
421
+ # The ID of the wireless device.
422
+ #
423
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
424
+ #
425
+ # @example Request syntax with placeholder values
426
+ #
427
+ # resp = client.associate_wireless_device_with_fuota_task({
428
+ # id: "FuotaTaskId", # required
429
+ # wireless_device_id: "WirelessDeviceId", # required
430
+ # })
431
+ #
432
+ # @overload associate_wireless_device_with_fuota_task(params = {})
433
+ # @param [Hash] params ({})
434
+ def associate_wireless_device_with_fuota_task(params = {}, options = {})
435
+ req = build_request(:associate_wireless_device_with_fuota_task, params)
436
+ req.send_request(options)
437
+ end
438
+
439
+ # Associates a wireless device with a multicast group.
440
+ #
441
+ # @option params [required, String] :id
442
+ # The ID of the multicast group.
443
+ #
444
+ # @option params [required, String] :wireless_device_id
445
+ # The ID of the wireless device.
446
+ #
447
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
448
+ #
449
+ # @example Request syntax with placeholder values
450
+ #
451
+ # resp = client.associate_wireless_device_with_multicast_group({
452
+ # id: "MulticastGroupId", # required
453
+ # wireless_device_id: "WirelessDeviceId", # required
454
+ # })
455
+ #
456
+ # @overload associate_wireless_device_with_multicast_group(params = {})
457
+ # @param [Hash] params ({})
458
+ def associate_wireless_device_with_multicast_group(params = {}, options = {})
459
+ req = build_request(:associate_wireless_device_with_multicast_group, params)
460
+ req.send_request(options)
461
+ end
462
+
382
463
  # Associates a wireless device with a thing.
383
464
  #
384
465
  # @option params [required, String] :id
@@ -457,6 +538,26 @@ module Aws::IoTWireless
457
538
  req.send_request(options)
458
539
  end
459
540
 
541
+ # Cancels an existing multicast group session.
542
+ #
543
+ # @option params [required, String] :id
544
+ # The ID of the multicast group.
545
+ #
546
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
547
+ #
548
+ # @example Request syntax with placeholder values
549
+ #
550
+ # resp = client.cancel_multicast_group_session({
551
+ # id: "MulticastGroupId", # required
552
+ # })
553
+ #
554
+ # @overload cancel_multicast_group_session(params = {})
555
+ # @param [Hash] params ({})
556
+ def cancel_multicast_group_session(params = {}, options = {})
557
+ req = build_request(:cancel_multicast_group_session, params)
558
+ req.send_request(options)
559
+ end
560
+
460
561
  # Creates a new destination that maps a device message to an AWS IoT
461
562
  # rule.
462
563
  #
@@ -594,6 +695,132 @@ module Aws::IoTWireless
594
695
  req.send_request(options)
595
696
  end
596
697
 
698
+ # Creates a FUOTA task.
699
+ #
700
+ # @option params [String] :name
701
+ # The name of a FUOTA task.
702
+ #
703
+ # @option params [String] :description
704
+ # The description of the new resource.
705
+ #
706
+ # @option params [String] :client_request_token
707
+ # Each resource must have a unique client request token. If you try to
708
+ # create a new resource with the same token as a resource that already
709
+ # exists, an exception occurs. If you omit this value, AWS SDKs will
710
+ # automatically generate a unique client request.
711
+ #
712
+ # **A suitable default value is auto-generated.** You should normally
713
+ # not need to pass this option.**
714
+ #
715
+ # @option params [Types::LoRaWANFuotaTask] :lo_ra_wan
716
+ # The LoRaWAN information used with a FUOTA task.
717
+ #
718
+ # @option params [required, String] :firmware_update_image
719
+ # The S3 URI points to a firmware update image that is to be used with a
720
+ # FUOTA task.
721
+ #
722
+ # @option params [required, String] :firmware_update_role
723
+ # The firmware update role that is to be used with a FUOTA task.
724
+ #
725
+ # @option params [Array<Types::Tag>] :tags
726
+ # The tag to attach to the specified resource. Tags are metadata that
727
+ # you can use to manage a resource.
728
+ #
729
+ # @return [Types::CreateFuotaTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
730
+ #
731
+ # * {Types::CreateFuotaTaskResponse#arn #arn} => String
732
+ # * {Types::CreateFuotaTaskResponse#id #id} => String
733
+ #
734
+ # @example Request syntax with placeholder values
735
+ #
736
+ # resp = client.create_fuota_task({
737
+ # name: "FuotaTaskName",
738
+ # description: "Description",
739
+ # client_request_token: "ClientRequestToken",
740
+ # lo_ra_wan: {
741
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
742
+ # },
743
+ # firmware_update_image: "FirmwareUpdateImage", # required
744
+ # firmware_update_role: "FirmwareUpdateRole", # required
745
+ # tags: [
746
+ # {
747
+ # key: "TagKey", # required
748
+ # value: "TagValue", # required
749
+ # },
750
+ # ],
751
+ # })
752
+ #
753
+ # @example Response structure
754
+ #
755
+ # resp.arn #=> String
756
+ # resp.id #=> String
757
+ #
758
+ # @overload create_fuota_task(params = {})
759
+ # @param [Hash] params ({})
760
+ def create_fuota_task(params = {}, options = {})
761
+ req = build_request(:create_fuota_task, params)
762
+ req.send_request(options)
763
+ end
764
+
765
+ # Creates a multicast group.
766
+ #
767
+ # @option params [String] :name
768
+ # The name of the multicast group.
769
+ #
770
+ # @option params [String] :description
771
+ # The description of the multicast group.
772
+ #
773
+ # @option params [String] :client_request_token
774
+ # Each resource must have a unique client request token. If you try to
775
+ # create a new resource with the same token as a resource that already
776
+ # exists, an exception occurs. If you omit this value, AWS SDKs will
777
+ # automatically generate a unique client request.
778
+ #
779
+ # **A suitable default value is auto-generated.** You should normally
780
+ # not need to pass this option.**
781
+ #
782
+ # @option params [required, Types::LoRaWANMulticast] :lo_ra_wan
783
+ # The LoRaWAN information that is to be used with the multicast group.
784
+ #
785
+ # @option params [Array<Types::Tag>] :tags
786
+ # The tag to attach to the specified resource. Tags are metadata that
787
+ # you can use to manage a resource.
788
+ #
789
+ # @return [Types::CreateMulticastGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
790
+ #
791
+ # * {Types::CreateMulticastGroupResponse#arn #arn} => String
792
+ # * {Types::CreateMulticastGroupResponse#id #id} => String
793
+ #
794
+ # @example Request syntax with placeholder values
795
+ #
796
+ # resp = client.create_multicast_group({
797
+ # name: "MulticastGroupName",
798
+ # description: "Description",
799
+ # client_request_token: "ClientRequestToken",
800
+ # lo_ra_wan: { # required
801
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
802
+ # dl_class: "ClassB", # accepts ClassB, ClassC
803
+ # },
804
+ # tags: [
805
+ # {
806
+ # key: "TagKey", # required
807
+ # value: "TagValue", # required
808
+ # },
809
+ # ],
810
+ # })
811
+ #
812
+ # @example Response structure
813
+ #
814
+ # resp.arn #=> String
815
+ # resp.id #=> String
816
+ #
817
+ # @overload create_multicast_group(params = {})
818
+ # @param [Hash] params ({})
819
+ def create_multicast_group(params = {}, options = {})
820
+ req = build_request(:create_multicast_group, params)
821
+ req.send_request(options)
822
+ end
823
+
597
824
  # Creates a new service profile.
598
825
  #
599
826
  # @option params [String] :name
@@ -704,6 +931,7 @@ module Aws::IoTWireless
704
931
  # otaa_v1_0_x: {
705
932
  # app_key: "AppKey",
706
933
  # app_eui: "AppEui",
934
+ # gen_app_key: "GenAppKey",
707
935
  # },
708
936
  # abp_v1_1: {
709
937
  # dev_addr: "DevAddr",
@@ -721,6 +949,11 @@ module Aws::IoTWireless
721
949
  # app_s_key: "AppSKey",
722
950
  # },
723
951
  # },
952
+ # f_ports: {
953
+ # fuota: 1,
954
+ # multicast: 1,
955
+ # clock_sync: 1,
956
+ # },
724
957
  # },
725
958
  # tags: [
726
959
  # {
@@ -954,6 +1187,46 @@ module Aws::IoTWireless
954
1187
  req.send_request(options)
955
1188
  end
956
1189
 
1190
+ # Deletes a FUOTA task.
1191
+ #
1192
+ # @option params [required, String] :id
1193
+ # The ID of a FUOTA task.
1194
+ #
1195
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1196
+ #
1197
+ # @example Request syntax with placeholder values
1198
+ #
1199
+ # resp = client.delete_fuota_task({
1200
+ # id: "FuotaTaskId", # required
1201
+ # })
1202
+ #
1203
+ # @overload delete_fuota_task(params = {})
1204
+ # @param [Hash] params ({})
1205
+ def delete_fuota_task(params = {}, options = {})
1206
+ req = build_request(:delete_fuota_task, params)
1207
+ req.send_request(options)
1208
+ end
1209
+
1210
+ # Deletes a multicast group if it is not in use by a fuota task.
1211
+ #
1212
+ # @option params [required, String] :id
1213
+ # The ID of the multicast group.
1214
+ #
1215
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1216
+ #
1217
+ # @example Request syntax with placeholder values
1218
+ #
1219
+ # resp = client.delete_multicast_group({
1220
+ # id: "MulticastGroupId", # required
1221
+ # })
1222
+ #
1223
+ # @overload delete_multicast_group(params = {})
1224
+ # @param [Hash] params ({})
1225
+ def delete_multicast_group(params = {}, options = {})
1226
+ req = build_request(:delete_multicast_group, params)
1227
+ req.send_request(options)
1228
+ end
1229
+
957
1230
  # Deletes a service profile.
958
1231
  #
959
1232
  # @option params [required, String] :id
@@ -1081,6 +1354,78 @@ module Aws::IoTWireless
1081
1354
  req.send_request(options)
1082
1355
  end
1083
1356
 
1357
+ # Disassociates a multicast group from a fuota task.
1358
+ #
1359
+ # @option params [required, String] :id
1360
+ # The ID of a FUOTA task.
1361
+ #
1362
+ # @option params [required, String] :multicast_group_id
1363
+ # The ID of the multicast group.
1364
+ #
1365
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1366
+ #
1367
+ # @example Request syntax with placeholder values
1368
+ #
1369
+ # resp = client.disassociate_multicast_group_from_fuota_task({
1370
+ # id: "FuotaTaskId", # required
1371
+ # multicast_group_id: "MulticastGroupId", # required
1372
+ # })
1373
+ #
1374
+ # @overload disassociate_multicast_group_from_fuota_task(params = {})
1375
+ # @param [Hash] params ({})
1376
+ def disassociate_multicast_group_from_fuota_task(params = {}, options = {})
1377
+ req = build_request(:disassociate_multicast_group_from_fuota_task, params)
1378
+ req.send_request(options)
1379
+ end
1380
+
1381
+ # Disassociates a wireless device from a FUOTA task.
1382
+ #
1383
+ # @option params [required, String] :id
1384
+ # The ID of a FUOTA task.
1385
+ #
1386
+ # @option params [required, String] :wireless_device_id
1387
+ # The ID of the wireless device.
1388
+ #
1389
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1390
+ #
1391
+ # @example Request syntax with placeholder values
1392
+ #
1393
+ # resp = client.disassociate_wireless_device_from_fuota_task({
1394
+ # id: "FuotaTaskId", # required
1395
+ # wireless_device_id: "WirelessDeviceId", # required
1396
+ # })
1397
+ #
1398
+ # @overload disassociate_wireless_device_from_fuota_task(params = {})
1399
+ # @param [Hash] params ({})
1400
+ def disassociate_wireless_device_from_fuota_task(params = {}, options = {})
1401
+ req = build_request(:disassociate_wireless_device_from_fuota_task, params)
1402
+ req.send_request(options)
1403
+ end
1404
+
1405
+ # Disassociates a wireless device from a multicast group.
1406
+ #
1407
+ # @option params [required, String] :id
1408
+ # The ID of the multicast group.
1409
+ #
1410
+ # @option params [required, String] :wireless_device_id
1411
+ # The ID of the wireless device.
1412
+ #
1413
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1414
+ #
1415
+ # @example Request syntax with placeholder values
1416
+ #
1417
+ # resp = client.disassociate_wireless_device_from_multicast_group({
1418
+ # id: "MulticastGroupId", # required
1419
+ # wireless_device_id: "WirelessDeviceId", # required
1420
+ # })
1421
+ #
1422
+ # @overload disassociate_wireless_device_from_multicast_group(params = {})
1423
+ # @param [Hash] params ({})
1424
+ def disassociate_wireless_device_from_multicast_group(params = {}, options = {})
1425
+ req = build_request(:disassociate_wireless_device_from_multicast_group, params)
1426
+ req.send_request(options)
1427
+ end
1428
+
1084
1429
  # Disassociates a wireless device from its currently associated thing.
1085
1430
  #
1086
1431
  # @option params [required, String] :id
@@ -1229,6 +1574,49 @@ module Aws::IoTWireless
1229
1574
  req.send_request(options)
1230
1575
  end
1231
1576
 
1577
+ # Gets information about a FUOTA task.
1578
+ #
1579
+ # @option params [required, String] :id
1580
+ # The ID of a FUOTA task.
1581
+ #
1582
+ # @return [Types::GetFuotaTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1583
+ #
1584
+ # * {Types::GetFuotaTaskResponse#arn #arn} => String
1585
+ # * {Types::GetFuotaTaskResponse#id #id} => String
1586
+ # * {Types::GetFuotaTaskResponse#status #status} => String
1587
+ # * {Types::GetFuotaTaskResponse#name #name} => String
1588
+ # * {Types::GetFuotaTaskResponse#description #description} => String
1589
+ # * {Types::GetFuotaTaskResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANFuotaTaskGetInfo
1590
+ # * {Types::GetFuotaTaskResponse#firmware_update_image #firmware_update_image} => String
1591
+ # * {Types::GetFuotaTaskResponse#firmware_update_role #firmware_update_role} => String
1592
+ # * {Types::GetFuotaTaskResponse#created_at #created_at} => Time
1593
+ #
1594
+ # @example Request syntax with placeholder values
1595
+ #
1596
+ # resp = client.get_fuota_task({
1597
+ # id: "FuotaTaskId", # required
1598
+ # })
1599
+ #
1600
+ # @example Response structure
1601
+ #
1602
+ # resp.arn #=> String
1603
+ # resp.id #=> String
1604
+ # resp.status #=> String, one of "Pending", "FuotaSession_Waiting", "In_FuotaSession", "FuotaDone", "Delete_Waiting"
1605
+ # resp.name #=> String
1606
+ # resp.description #=> String
1607
+ # resp.lo_ra_wan.rf_region #=> String
1608
+ # resp.lo_ra_wan.start_time #=> Time
1609
+ # resp.firmware_update_image #=> String
1610
+ # resp.firmware_update_role #=> String
1611
+ # resp.created_at #=> Time
1612
+ #
1613
+ # @overload get_fuota_task(params = {})
1614
+ # @param [Hash] params ({})
1615
+ def get_fuota_task(params = {}, options = {})
1616
+ req = build_request(:get_fuota_task, params)
1617
+ req.send_request(options)
1618
+ end
1619
+
1232
1620
  # Returns current default log levels or log levels by resource types.
1233
1621
  # Based on resource types, log levels can be for wireless device log
1234
1622
  # options or wireless gateway log options.
@@ -1262,19 +1650,122 @@ module Aws::IoTWireless
1262
1650
  req.send_request(options)
1263
1651
  end
1264
1652
 
1265
- # Gets information about a partner account. If `PartnerAccountId` and
1266
- # `PartnerType` are `null`, returns all partner accounts.
1267
- #
1268
- # @option params [required, String] :partner_account_id
1269
- # The partner account ID to disassociate from the AWS account.
1653
+ # Gets information about a multicast group.
1270
1654
  #
1271
- # @option params [required, String] :partner_type
1272
- # The partner type.
1655
+ # @option params [required, String] :id
1656
+ # The ID of the multicast group.
1273
1657
  #
1274
- # @return [Types::GetPartnerAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1658
+ # @return [Types::GetMulticastGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1275
1659
  #
1276
- # * {Types::GetPartnerAccountResponse#sidewalk #sidewalk} => Types::SidewalkAccountInfoWithFingerprint
1277
- # * {Types::GetPartnerAccountResponse#account_linked #account_linked} => Boolean
1660
+ # * {Types::GetMulticastGroupResponse#arn #arn} => String
1661
+ # * {Types::GetMulticastGroupResponse#id #id} => String
1662
+ # * {Types::GetMulticastGroupResponse#name #name} => String
1663
+ # * {Types::GetMulticastGroupResponse#description #description} => String
1664
+ # * {Types::GetMulticastGroupResponse#status #status} => String
1665
+ # * {Types::GetMulticastGroupResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANMulticastGet
1666
+ # * {Types::GetMulticastGroupResponse#created_at #created_at} => Time
1667
+ #
1668
+ # @example Request syntax with placeholder values
1669
+ #
1670
+ # resp = client.get_multicast_group({
1671
+ # id: "MulticastGroupId", # required
1672
+ # })
1673
+ #
1674
+ # @example Response structure
1675
+ #
1676
+ # resp.arn #=> String
1677
+ # resp.id #=> String
1678
+ # resp.name #=> String
1679
+ # resp.description #=> String
1680
+ # resp.status #=> String
1681
+ # resp.lo_ra_wan.rf_region #=> String, one of "EU868", "US915", "AU915", "AS923-1"
1682
+ # resp.lo_ra_wan.dl_class #=> String, one of "ClassB", "ClassC"
1683
+ # resp.lo_ra_wan.number_of_devices_requested #=> Integer
1684
+ # resp.lo_ra_wan.number_of_devices_in_group #=> Integer
1685
+ # resp.created_at #=> Time
1686
+ #
1687
+ # @overload get_multicast_group(params = {})
1688
+ # @param [Hash] params ({})
1689
+ def get_multicast_group(params = {}, options = {})
1690
+ req = build_request(:get_multicast_group, params)
1691
+ req.send_request(options)
1692
+ end
1693
+
1694
+ # Gets information about a multicast group session.
1695
+ #
1696
+ # @option params [required, String] :id
1697
+ # The ID of the multicast group.
1698
+ #
1699
+ # @return [Types::GetMulticastGroupSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1700
+ #
1701
+ # * {Types::GetMulticastGroupSessionResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANMulticastSession
1702
+ #
1703
+ # @example Request syntax with placeholder values
1704
+ #
1705
+ # resp = client.get_multicast_group_session({
1706
+ # id: "MulticastGroupId", # required
1707
+ # })
1708
+ #
1709
+ # @example Response structure
1710
+ #
1711
+ # resp.lo_ra_wan.dl_dr #=> Integer
1712
+ # resp.lo_ra_wan.dl_freq #=> Integer
1713
+ # resp.lo_ra_wan.session_start_time #=> Time
1714
+ # resp.lo_ra_wan.session_timeout #=> Integer
1715
+ #
1716
+ # @overload get_multicast_group_session(params = {})
1717
+ # @param [Hash] params ({})
1718
+ def get_multicast_group_session(params = {}, options = {})
1719
+ req = build_request(:get_multicast_group_session, params)
1720
+ req.send_request(options)
1721
+ end
1722
+
1723
+ # Get NetworkAnalyzer configuration.
1724
+ #
1725
+ # @option params [required, String] :configuration_name
1726
+ # NetworkAnalyzer configuration name.
1727
+ #
1728
+ # @return [Types::GetNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1729
+ #
1730
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#trace_content #trace_content} => Types::TraceContent
1731
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_devices #wireless_devices} => Array&lt;String&gt;
1732
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_gateways #wireless_gateways} => Array&lt;String&gt;
1733
+ #
1734
+ # @example Request syntax with placeholder values
1735
+ #
1736
+ # resp = client.get_network_analyzer_configuration({
1737
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
1738
+ # })
1739
+ #
1740
+ # @example Response structure
1741
+ #
1742
+ # resp.trace_content.wireless_device_frame_info #=> String, one of "ENABLED", "DISABLED"
1743
+ # resp.trace_content.log_level #=> String, one of "INFO", "ERROR", "DISABLED"
1744
+ # resp.wireless_devices #=> Array
1745
+ # resp.wireless_devices[0] #=> String
1746
+ # resp.wireless_gateways #=> Array
1747
+ # resp.wireless_gateways[0] #=> String
1748
+ #
1749
+ # @overload get_network_analyzer_configuration(params = {})
1750
+ # @param [Hash] params ({})
1751
+ def get_network_analyzer_configuration(params = {}, options = {})
1752
+ req = build_request(:get_network_analyzer_configuration, params)
1753
+ req.send_request(options)
1754
+ end
1755
+
1756
+ # Gets information about a partner account. If `PartnerAccountId` and
1757
+ # `PartnerType` are `null`, returns all partner accounts.
1758
+ #
1759
+ # @option params [required, String] :partner_account_id
1760
+ # The partner account ID to disassociate from the AWS account.
1761
+ #
1762
+ # @option params [required, String] :partner_type
1763
+ # The partner type.
1764
+ #
1765
+ # @return [Types::GetPartnerAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1766
+ #
1767
+ # * {Types::GetPartnerAccountResponse#sidewalk #sidewalk} => Types::SidewalkAccountInfoWithFingerprint
1768
+ # * {Types::GetPartnerAccountResponse#account_linked #account_linked} => Boolean
1278
1769
  #
1279
1770
  # @example Request syntax with placeholder values
1280
1771
  #
@@ -1297,6 +1788,44 @@ module Aws::IoTWireless
1297
1788
  req.send_request(options)
1298
1789
  end
1299
1790
 
1791
+ # Get the event configuration for a particular resource identifier.
1792
+ #
1793
+ # @option params [required, String] :identifier
1794
+ # Resource identifier to opt in for event messaging.
1795
+ #
1796
+ # @option params [required, String] :identifier_type
1797
+ # Identifier type of the particular resource identifier for event
1798
+ # configuration.
1799
+ #
1800
+ # @option params [String] :partner_type
1801
+ # Partner type of the resource if the identifier type is
1802
+ # PartnerAccountId.
1803
+ #
1804
+ # @return [Types::GetResourceEventConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1805
+ #
1806
+ # * {Types::GetResourceEventConfigurationResponse#device_registration_state #device_registration_state} => Types::DeviceRegistrationStateEventConfiguration
1807
+ # * {Types::GetResourceEventConfigurationResponse#proximity #proximity} => Types::ProximityEventConfiguration
1808
+ #
1809
+ # @example Request syntax with placeholder values
1810
+ #
1811
+ # resp = client.get_resource_event_configuration({
1812
+ # identifier: "Identifier", # required
1813
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
1814
+ # partner_type: "Sidewalk", # accepts Sidewalk
1815
+ # })
1816
+ #
1817
+ # @example Response structure
1818
+ #
1819
+ # resp.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
1820
+ # resp.proximity.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
1821
+ #
1822
+ # @overload get_resource_event_configuration(params = {})
1823
+ # @param [Hash] params ({})
1824
+ def get_resource_event_configuration(params = {}, options = {})
1825
+ req = build_request(:get_resource_event_configuration, params)
1826
+ req.send_request(options)
1827
+ end
1828
+
1300
1829
  # Fetches the log-level override, if any, for a given resource-ID and
1301
1830
  # resource-type. It can be used for a wireless device or a wireless
1302
1831
  # gateway.
@@ -1461,6 +1990,7 @@ module Aws::IoTWireless
1461
1990
  # resp.lo_ra_wan.otaa_v1_1.join_eui #=> String
1462
1991
  # resp.lo_ra_wan.otaa_v1_0_x.app_key #=> String
1463
1992
  # resp.lo_ra_wan.otaa_v1_0_x.app_eui #=> String
1993
+ # resp.lo_ra_wan.otaa_v1_0_x.gen_app_key #=> String
1464
1994
  # resp.lo_ra_wan.abp_v1_1.dev_addr #=> String
1465
1995
  # resp.lo_ra_wan.abp_v1_1.session_keys.f_nwk_s_int_key #=> String
1466
1996
  # resp.lo_ra_wan.abp_v1_1.session_keys.s_nwk_s_int_key #=> String
@@ -1469,6 +1999,9 @@ module Aws::IoTWireless
1469
1999
  # resp.lo_ra_wan.abp_v1_0_x.dev_addr #=> String
1470
2000
  # resp.lo_ra_wan.abp_v1_0_x.session_keys.nwk_s_key #=> String
1471
2001
  # resp.lo_ra_wan.abp_v1_0_x.session_keys.app_s_key #=> String
2002
+ # resp.lo_ra_wan.f_ports.fuota #=> Integer
2003
+ # resp.lo_ra_wan.f_ports.multicast #=> Integer
2004
+ # resp.lo_ra_wan.f_ports.clock_sync #=> Integer
1472
2005
  # resp.sidewalk.amazon_id #=> String
1473
2006
  # resp.sidewalk.sidewalk_id #=> String
1474
2007
  # resp.sidewalk.sidewalk_manufacturing_sn #=> String
@@ -1820,6 +2353,125 @@ module Aws::IoTWireless
1820
2353
  req.send_request(options)
1821
2354
  end
1822
2355
 
2356
+ # Lists the FUOTA tasks registered to your AWS account.
2357
+ #
2358
+ # @option params [String] :next_token
2359
+ # To retrieve the next set of results, the `nextToken` value from a
2360
+ # previous response; otherwise **null** to receive the first set of
2361
+ # results.
2362
+ #
2363
+ # @option params [Integer] :max_results
2364
+ # The maximum number of results to return in this operation.
2365
+ #
2366
+ # @return [Types::ListFuotaTasksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2367
+ #
2368
+ # * {Types::ListFuotaTasksResponse#next_token #next_token} => String
2369
+ # * {Types::ListFuotaTasksResponse#fuota_task_list #fuota_task_list} => Array&lt;Types::FuotaTask&gt;
2370
+ #
2371
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2372
+ #
2373
+ # @example Request syntax with placeholder values
2374
+ #
2375
+ # resp = client.list_fuota_tasks({
2376
+ # next_token: "NextToken",
2377
+ # max_results: 1,
2378
+ # })
2379
+ #
2380
+ # @example Response structure
2381
+ #
2382
+ # resp.next_token #=> String
2383
+ # resp.fuota_task_list #=> Array
2384
+ # resp.fuota_task_list[0].id #=> String
2385
+ # resp.fuota_task_list[0].arn #=> String
2386
+ # resp.fuota_task_list[0].name #=> String
2387
+ #
2388
+ # @overload list_fuota_tasks(params = {})
2389
+ # @param [Hash] params ({})
2390
+ def list_fuota_tasks(params = {}, options = {})
2391
+ req = build_request(:list_fuota_tasks, params)
2392
+ req.send_request(options)
2393
+ end
2394
+
2395
+ # Lists the multicast groups registered to your AWS account.
2396
+ #
2397
+ # @option params [String] :next_token
2398
+ # To retrieve the next set of results, the `nextToken` value from a
2399
+ # previous response; otherwise **null** to receive the first set of
2400
+ # results.
2401
+ #
2402
+ # @option params [Integer] :max_results
2403
+ # The maximum number of results to return in this operation.
2404
+ #
2405
+ # @return [Types::ListMulticastGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2406
+ #
2407
+ # * {Types::ListMulticastGroupsResponse#next_token #next_token} => String
2408
+ # * {Types::ListMulticastGroupsResponse#multicast_group_list #multicast_group_list} => Array&lt;Types::MulticastGroup&gt;
2409
+ #
2410
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2411
+ #
2412
+ # @example Request syntax with placeholder values
2413
+ #
2414
+ # resp = client.list_multicast_groups({
2415
+ # next_token: "NextToken",
2416
+ # max_results: 1,
2417
+ # })
2418
+ #
2419
+ # @example Response structure
2420
+ #
2421
+ # resp.next_token #=> String
2422
+ # resp.multicast_group_list #=> Array
2423
+ # resp.multicast_group_list[0].id #=> String
2424
+ # resp.multicast_group_list[0].arn #=> String
2425
+ # resp.multicast_group_list[0].name #=> String
2426
+ #
2427
+ # @overload list_multicast_groups(params = {})
2428
+ # @param [Hash] params ({})
2429
+ def list_multicast_groups(params = {}, options = {})
2430
+ req = build_request(:list_multicast_groups, params)
2431
+ req.send_request(options)
2432
+ end
2433
+
2434
+ # List all multicast groups associated with a fuota task.
2435
+ #
2436
+ # @option params [required, String] :id
2437
+ # The ID of a FUOTA task.
2438
+ #
2439
+ # @option params [String] :next_token
2440
+ # To retrieve the next set of results, the `nextToken` value from a
2441
+ # previous response; otherwise **null** to receive the first set of
2442
+ # results.
2443
+ #
2444
+ # @option params [Integer] :max_results
2445
+ # The maximum number of results to return in this operation.
2446
+ #
2447
+ # @return [Types::ListMulticastGroupsByFuotaTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2448
+ #
2449
+ # * {Types::ListMulticastGroupsByFuotaTaskResponse#next_token #next_token} => String
2450
+ # * {Types::ListMulticastGroupsByFuotaTaskResponse#multicast_group_list #multicast_group_list} => Array&lt;Types::MulticastGroupByFuotaTask&gt;
2451
+ #
2452
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2453
+ #
2454
+ # @example Request syntax with placeholder values
2455
+ #
2456
+ # resp = client.list_multicast_groups_by_fuota_task({
2457
+ # id: "FuotaTaskId", # required
2458
+ # next_token: "NextToken",
2459
+ # max_results: 1,
2460
+ # })
2461
+ #
2462
+ # @example Response structure
2463
+ #
2464
+ # resp.next_token #=> String
2465
+ # resp.multicast_group_list #=> Array
2466
+ # resp.multicast_group_list[0].id #=> String
2467
+ #
2468
+ # @overload list_multicast_groups_by_fuota_task(params = {})
2469
+ # @param [Hash] params ({})
2470
+ def list_multicast_groups_by_fuota_task(params = {}, options = {})
2471
+ req = build_request(:list_multicast_groups_by_fuota_task, params)
2472
+ req.send_request(options)
2473
+ end
2474
+
1823
2475
  # Lists the partner accounts associated with your AWS account.
1824
2476
  #
1825
2477
  # @option params [String] :next_token
@@ -1949,6 +2601,12 @@ module Aws::IoTWireless
1949
2601
  # A filter to list only the wireless devices that use this wireless
1950
2602
  # device type.
1951
2603
  #
2604
+ # @option params [String] :fuota_task_id
2605
+ # The ID of a FUOTA task.
2606
+ #
2607
+ # @option params [String] :multicast_group_id
2608
+ # The ID of the multicast group.
2609
+ #
1952
2610
  # @return [Types::ListWirelessDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1953
2611
  #
1954
2612
  # * {Types::ListWirelessDevicesResponse#next_token #next_token} => String
@@ -1965,6 +2623,8 @@ module Aws::IoTWireless
1965
2623
  # device_profile_id: "DeviceProfileId",
1966
2624
  # service_profile_id: "ServiceProfileId",
1967
2625
  # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
2626
+ # fuota_task_id: "FuotaTaskId",
2627
+ # multicast_group_id: "MulticastGroupId",
1968
2628
  # })
1969
2629
  #
1970
2630
  # @example Response structure
@@ -1984,6 +2644,9 @@ module Aws::IoTWireless
1984
2644
  # resp.wireless_device_list[0].sidewalk.device_certificates #=> Array
1985
2645
  # resp.wireless_device_list[0].sidewalk.device_certificates[0].signing_alg #=> String, one of "Ed25519", "P256r1"
1986
2646
  # resp.wireless_device_list[0].sidewalk.device_certificates[0].value #=> String
2647
+ # resp.wireless_device_list[0].fuota_device_status #=> String, one of "Initial", "Package_Not_Supported", "FragAlgo_unsupported", "Not_enough_memory", "FragIndex_unsupported", "Wrong_descriptor", "SessionCnt_replay", "MissingFrag", "MemoryError", "MICError", "Successful"
2648
+ # resp.wireless_device_list[0].multicast_device_status #=> String
2649
+ # resp.wireless_device_list[0].mc_group_id #=> Integer
1987
2650
  #
1988
2651
  # @overload list_wireless_devices(params = {})
1989
2652
  # @param [Hash] params ({})
@@ -2164,6 +2827,44 @@ module Aws::IoTWireless
2164
2827
  req.send_request(options)
2165
2828
  end
2166
2829
 
2830
+ # Sends the specified data to a multicast group.
2831
+ #
2832
+ # @option params [required, String] :id
2833
+ # The ID of the multicast group.
2834
+ #
2835
+ # @option params [required, String] :payload_data
2836
+ # The binary to be sent to the end device, encoded in base64.
2837
+ #
2838
+ # @option params [required, Types::MulticastWirelessMetadata] :wireless_metadata
2839
+ # Wireless metadata that is to be sent to multicast group.
2840
+ #
2841
+ # @return [Types::SendDataToMulticastGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2842
+ #
2843
+ # * {Types::SendDataToMulticastGroupResponse#message_id #message_id} => String
2844
+ #
2845
+ # @example Request syntax with placeholder values
2846
+ #
2847
+ # resp = client.send_data_to_multicast_group({
2848
+ # id: "MulticastGroupId", # required
2849
+ # payload_data: "PayloadData", # required
2850
+ # wireless_metadata: { # required
2851
+ # lo_ra_wan: {
2852
+ # f_port: 1,
2853
+ # },
2854
+ # },
2855
+ # })
2856
+ #
2857
+ # @example Response structure
2858
+ #
2859
+ # resp.message_id #=> String
2860
+ #
2861
+ # @overload send_data_to_multicast_group(params = {})
2862
+ # @param [Hash] params ({})
2863
+ def send_data_to_multicast_group(params = {}, options = {})
2864
+ req = build_request(:send_data_to_multicast_group, params)
2865
+ req.send_request(options)
2866
+ end
2867
+
2167
2868
  # Sends a decrypted application data frame to a device.
2168
2869
  #
2169
2870
  # @option params [required, String] :id
@@ -2211,6 +2912,133 @@ module Aws::IoTWireless
2211
2912
  req.send_request(options)
2212
2913
  end
2213
2914
 
2915
+ # Starts a bulk association of all qualifying wireless devices with a
2916
+ # multicast group.
2917
+ #
2918
+ # @option params [required, String] :id
2919
+ # The ID of the multicast group.
2920
+ #
2921
+ # @option params [String] :query_string
2922
+ # Query string used to search for wireless devices as part of the bulk
2923
+ # associate and disassociate process.
2924
+ #
2925
+ # @option params [Array<Types::Tag>] :tags
2926
+ # The tag to attach to the specified resource. Tags are metadata that
2927
+ # you can use to manage a resource.
2928
+ #
2929
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2930
+ #
2931
+ # @example Request syntax with placeholder values
2932
+ #
2933
+ # resp = client.start_bulk_associate_wireless_device_with_multicast_group({
2934
+ # id: "MulticastGroupId", # required
2935
+ # query_string: "QueryString",
2936
+ # tags: [
2937
+ # {
2938
+ # key: "TagKey", # required
2939
+ # value: "TagValue", # required
2940
+ # },
2941
+ # ],
2942
+ # })
2943
+ #
2944
+ # @overload start_bulk_associate_wireless_device_with_multicast_group(params = {})
2945
+ # @param [Hash] params ({})
2946
+ def start_bulk_associate_wireless_device_with_multicast_group(params = {}, options = {})
2947
+ req = build_request(:start_bulk_associate_wireless_device_with_multicast_group, params)
2948
+ req.send_request(options)
2949
+ end
2950
+
2951
+ # Starts a bulk disassociatin of all qualifying wireless devices from a
2952
+ # multicast group.
2953
+ #
2954
+ # @option params [required, String] :id
2955
+ # The ID of the multicast group.
2956
+ #
2957
+ # @option params [String] :query_string
2958
+ # Query string used to search for wireless devices as part of the bulk
2959
+ # associate and disassociate process.
2960
+ #
2961
+ # @option params [Array<Types::Tag>] :tags
2962
+ # The tag to attach to the specified resource. Tags are metadata that
2963
+ # you can use to manage a resource.
2964
+ #
2965
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2966
+ #
2967
+ # @example Request syntax with placeholder values
2968
+ #
2969
+ # resp = client.start_bulk_disassociate_wireless_device_from_multicast_group({
2970
+ # id: "MulticastGroupId", # required
2971
+ # query_string: "QueryString",
2972
+ # tags: [
2973
+ # {
2974
+ # key: "TagKey", # required
2975
+ # value: "TagValue", # required
2976
+ # },
2977
+ # ],
2978
+ # })
2979
+ #
2980
+ # @overload start_bulk_disassociate_wireless_device_from_multicast_group(params = {})
2981
+ # @param [Hash] params ({})
2982
+ def start_bulk_disassociate_wireless_device_from_multicast_group(params = {}, options = {})
2983
+ req = build_request(:start_bulk_disassociate_wireless_device_from_multicast_group, params)
2984
+ req.send_request(options)
2985
+ end
2986
+
2987
+ # Starts a FUOTA task.
2988
+ #
2989
+ # @option params [required, String] :id
2990
+ # The ID of a FUOTA task.
2991
+ #
2992
+ # @option params [Types::LoRaWANStartFuotaTask] :lo_ra_wan
2993
+ # The LoRaWAN information used to start a FUOTA task.
2994
+ #
2995
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2996
+ #
2997
+ # @example Request syntax with placeholder values
2998
+ #
2999
+ # resp = client.start_fuota_task({
3000
+ # id: "FuotaTaskId", # required
3001
+ # lo_ra_wan: {
3002
+ # start_time: Time.now,
3003
+ # },
3004
+ # })
3005
+ #
3006
+ # @overload start_fuota_task(params = {})
3007
+ # @param [Hash] params ({})
3008
+ def start_fuota_task(params = {}, options = {})
3009
+ req = build_request(:start_fuota_task, params)
3010
+ req.send_request(options)
3011
+ end
3012
+
3013
+ # Starts a multicast group session.
3014
+ #
3015
+ # @option params [required, String] :id
3016
+ # The ID of the multicast group.
3017
+ #
3018
+ # @option params [required, Types::LoRaWANMulticastSession] :lo_ra_wan
3019
+ # The LoRaWAN information used with the multicast session.
3020
+ #
3021
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3022
+ #
3023
+ # @example Request syntax with placeholder values
3024
+ #
3025
+ # resp = client.start_multicast_group_session({
3026
+ # id: "MulticastGroupId", # required
3027
+ # lo_ra_wan: { # required
3028
+ # dl_dr: 1,
3029
+ # dl_freq: 1,
3030
+ # session_start_time: Time.now,
3031
+ # session_timeout: 1,
3032
+ # },
3033
+ # })
3034
+ #
3035
+ # @overload start_multicast_group_session(params = {})
3036
+ # @param [Hash] params ({})
3037
+ def start_multicast_group_session(params = {}, options = {})
3038
+ req = build_request(:start_multicast_group_session, params)
3039
+ req.send_request(options)
3040
+ end
3041
+
2214
3042
  # Adds a tag to a resource.
2215
3043
  #
2216
3044
  # @option params [required, String] :resource_arn
@@ -2328,6 +3156,49 @@ module Aws::IoTWireless
2328
3156
  req.send_request(options)
2329
3157
  end
2330
3158
 
3159
+ # Updates properties of a FUOTA task.
3160
+ #
3161
+ # @option params [required, String] :id
3162
+ # The ID of a FUOTA task.
3163
+ #
3164
+ # @option params [String] :name
3165
+ # The name of a FUOTA task.
3166
+ #
3167
+ # @option params [String] :description
3168
+ # The description of the new resource.
3169
+ #
3170
+ # @option params [Types::LoRaWANFuotaTask] :lo_ra_wan
3171
+ # The LoRaWAN information used with a FUOTA task.
3172
+ #
3173
+ # @option params [String] :firmware_update_image
3174
+ # The S3 URI points to a firmware update image that is to be used with a
3175
+ # FUOTA task.
3176
+ #
3177
+ # @option params [String] :firmware_update_role
3178
+ # The firmware update role that is to be used with a FUOTA task.
3179
+ #
3180
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3181
+ #
3182
+ # @example Request syntax with placeholder values
3183
+ #
3184
+ # resp = client.update_fuota_task({
3185
+ # id: "FuotaTaskId", # required
3186
+ # name: "FuotaTaskName",
3187
+ # description: "Description",
3188
+ # lo_ra_wan: {
3189
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
3190
+ # },
3191
+ # firmware_update_image: "FirmwareUpdateImage",
3192
+ # firmware_update_role: "FirmwareUpdateRole",
3193
+ # })
3194
+ #
3195
+ # @overload update_fuota_task(params = {})
3196
+ # @param [Hash] params ({})
3197
+ def update_fuota_task(params = {}, options = {})
3198
+ req = build_request(:update_fuota_task, params)
3199
+ req.send_request(options)
3200
+ end
3201
+
2331
3202
  # Set default log level, or log levels by resource types. This can be
2332
3203
  # for wireless device log options or wireless gateways log options and
2333
3204
  # is used to control the log messages that'll be displayed in
@@ -2381,6 +3252,84 @@ module Aws::IoTWireless
2381
3252
  req.send_request(options)
2382
3253
  end
2383
3254
 
3255
+ # Updates properties of a multicast group session.
3256
+ #
3257
+ # @option params [required, String] :id
3258
+ # The ID of the multicast group.
3259
+ #
3260
+ # @option params [String] :name
3261
+ # The name of the multicast group.
3262
+ #
3263
+ # @option params [String] :description
3264
+ # The description of the new resource.
3265
+ #
3266
+ # @option params [Types::LoRaWANMulticast] :lo_ra_wan
3267
+ # The LoRaWAN information that is to be used with the multicast group.
3268
+ #
3269
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3270
+ #
3271
+ # @example Request syntax with placeholder values
3272
+ #
3273
+ # resp = client.update_multicast_group({
3274
+ # id: "MulticastGroupId", # required
3275
+ # name: "MulticastGroupName",
3276
+ # description: "Description",
3277
+ # lo_ra_wan: {
3278
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
3279
+ # dl_class: "ClassB", # accepts ClassB, ClassC
3280
+ # },
3281
+ # })
3282
+ #
3283
+ # @overload update_multicast_group(params = {})
3284
+ # @param [Hash] params ({})
3285
+ def update_multicast_group(params = {}, options = {})
3286
+ req = build_request(:update_multicast_group, params)
3287
+ req.send_request(options)
3288
+ end
3289
+
3290
+ # Update NetworkAnalyzer configuration.
3291
+ #
3292
+ # @option params [required, String] :configuration_name
3293
+ # NetworkAnalyzer configuration name.
3294
+ #
3295
+ # @option params [Types::TraceContent] :trace_content
3296
+ # Trace Content for resources.
3297
+ #
3298
+ # @option params [Array<String>] :wireless_devices_to_add
3299
+ # WirelessDevices to add into NetworkAnalyzerConfiguration.
3300
+ #
3301
+ # @option params [Array<String>] :wireless_devices_to_remove
3302
+ # WirelessDevices to remove from NetworkAnalyzerConfiguration.
3303
+ #
3304
+ # @option params [Array<String>] :wireless_gateways_to_add
3305
+ # WirelessGateways to add into NetworkAnalyzerConfiguration.
3306
+ #
3307
+ # @option params [Array<String>] :wireless_gateways_to_remove
3308
+ # WirelessGateways to remove from NetworkAnalyzerConfiguration.
3309
+ #
3310
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3311
+ #
3312
+ # @example Request syntax with placeholder values
3313
+ #
3314
+ # resp = client.update_network_analyzer_configuration({
3315
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
3316
+ # trace_content: {
3317
+ # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
3318
+ # log_level: "INFO", # accepts INFO, ERROR, DISABLED
3319
+ # },
3320
+ # wireless_devices_to_add: ["WirelessDeviceId"],
3321
+ # wireless_devices_to_remove: ["WirelessDeviceId"],
3322
+ # wireless_gateways_to_add: ["WirelessGatewayId"],
3323
+ # wireless_gateways_to_remove: ["WirelessGatewayId"],
3324
+ # })
3325
+ #
3326
+ # @overload update_network_analyzer_configuration(params = {})
3327
+ # @param [Hash] params ({})
3328
+ def update_network_analyzer_configuration(params = {}, options = {})
3329
+ req = build_request(:update_network_analyzer_configuration, params)
3330
+ req.send_request(options)
3331
+ end
3332
+
2384
3333
  # Updates properties of a partner account.
2385
3334
  #
2386
3335
  # @option params [required, Types::SidewalkUpdateAccount] :sidewalk
@@ -2411,6 +3360,52 @@ module Aws::IoTWireless
2411
3360
  req.send_request(options)
2412
3361
  end
2413
3362
 
3363
+ # Update the event configuration for a particular resource identifier.
3364
+ #
3365
+ # @option params [required, String] :identifier
3366
+ # Resource identifier to opt in for event messaging.
3367
+ #
3368
+ # @option params [required, String] :identifier_type
3369
+ # Identifier type of the particular resource identifier for event
3370
+ # configuration.
3371
+ #
3372
+ # @option params [String] :partner_type
3373
+ # Partner type of the resource if the identifier type is
3374
+ # PartnerAccountId
3375
+ #
3376
+ # @option params [Types::DeviceRegistrationStateEventConfiguration] :device_registration_state
3377
+ # Event configuration for the device registration state event
3378
+ #
3379
+ # @option params [Types::ProximityEventConfiguration] :proximity
3380
+ # Event configuration for the Proximity event
3381
+ #
3382
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3383
+ #
3384
+ # @example Request syntax with placeholder values
3385
+ #
3386
+ # resp = client.update_resource_event_configuration({
3387
+ # identifier: "Identifier", # required
3388
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
3389
+ # partner_type: "Sidewalk", # accepts Sidewalk
3390
+ # device_registration_state: {
3391
+ # sidewalk: {
3392
+ # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
3393
+ # },
3394
+ # },
3395
+ # proximity: {
3396
+ # sidewalk: {
3397
+ # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
3398
+ # },
3399
+ # },
3400
+ # })
3401
+ #
3402
+ # @overload update_resource_event_configuration(params = {})
3403
+ # @param [Hash] params ({})
3404
+ def update_resource_event_configuration(params = {}, options = {})
3405
+ req = build_request(:update_resource_event_configuration, params)
3406
+ req.send_request(options)
3407
+ end
3408
+
2414
3409
  # Updates properties of a wireless device.
2415
3410
  #
2416
3411
  # @option params [required, String] :id
@@ -2502,7 +3497,7 @@ module Aws::IoTWireless
2502
3497
  params: params,
2503
3498
  config: config)
2504
3499
  context[:gem_name] = 'aws-sdk-iotwireless'
2505
- context[:gem_version] = '1.13.0'
3500
+ context[:gem_version] = '1.17.0'
2506
3501
  Seahorse::Client::Request.new(handlers, context)
2507
3502
  end
2508
3503