aws-sdk-iotwireless 1.30.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d9a3099381e5e0df41a43711fb5563375ce43c2410deeb62cde2f2d58a2224b
4
- data.tar.gz: f5676df5cc1a4ac3642840a18ceabb015ac182be5c5f1e239005c87cddca57ab
3
+ metadata.gz: 858ddf5d5a61fb916817402a0113fd74c19bf1f12b6be1273adf33cc3b9f578c
4
+ data.tar.gz: cd8efe1f99b93a667680cc3be8ab7d2115c39ded7331d094231ecb7e5ad7e947
5
5
  SHA512:
6
- metadata.gz: 443f50e83defec76ebf872cc7980907ccc326f11aa2f31bdf4d7cec57dc2efe3c5dc24d34e5227470f02888d058e5feaedbad3d0a1b02518cf087ef59327dace
7
- data.tar.gz: dfcb37b0b3daa471d792bbd22853458a3e5f4c796740f2e4323e0244e0db4105bfd2b62b4ed00eb4bf0f3606b0ae082d04816aff1ff74f479803a28859d87bc3
6
+ metadata.gz: 9c7220660dc96ec5921b5acf58c0565a3ded299b54e1462ffba158215f8845b2886eb08db4eb9f3f853bbca77d099fdcfdb0550cdb9f7a06d410a1058fc4f04e
7
+ data.tar.gz: 43186e634cfde556d85310cef3ae8d1cafe0533007a3333d04a9cfb4ee8c46f2b7c501a5e1552b75ed3f3b1cdd401ed290990d1b31a9d083c8b794a1bd24a77c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2023-04-17)
5
+ ------------------
6
+
7
+ * Feature - Supports the new feature of LoRaWAN roaming, allows to configure MaxEirp for LoRaWAN gateway, and allows to configure PingSlotPeriod for LoRaWAN multicast group
8
+
9
+ 1.31.0 (2023-03-27)
10
+ ------------------
11
+
12
+ * Feature - Introducing new APIs that enable Sidewalk devices to communicate with AWS IoT Core through Sidewalk gateways. This will empower AWS customers to connect Sidewalk devices with other AWS IoT Services, creating possibilities for seamless integration and advanced device management.
13
+
4
14
  1.30.0 (2023-02-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.32.0
@@ -676,6 +676,10 @@ module Aws::IoTWireless
676
676
  # **A suitable default value is auto-generated.** You should normally
677
677
  # not need to pass this option.**
678
678
  #
679
+ # @option params [Types::SidewalkCreateDeviceProfile] :sidewalk
680
+ # The Sidewalk-related information for creating the Sidewalk device
681
+ # profile.
682
+ #
679
683
  # @return [Types::CreateDeviceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
680
684
  #
681
685
  # * {Types::CreateDeviceProfileResponse#arn #arn} => String
@@ -713,6 +717,8 @@ module Aws::IoTWireless
713
717
  # },
714
718
  # ],
715
719
  # client_request_token: "ClientRequestToken",
720
+ # sidewalk: {
721
+ # },
716
722
  # })
717
723
  #
718
724
  # @example Response structure
@@ -787,7 +793,7 @@ module Aws::IoTWireless
787
793
  # description: "Description",
788
794
  # client_request_token: "ClientRequestToken",
789
795
  # lo_ra_wan: {
790
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
796
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1, AS923-2, AS923-3, AS923-4, EU433, CN470, CN779, RU864, KR920, IN865
791
797
  # },
792
798
  # firmware_update_image: "FirmwareUpdateImage", # required
793
799
  # firmware_update_role: "FirmwareUpdateRole", # required
@@ -850,7 +856,7 @@ module Aws::IoTWireless
850
856
  # description: "Description",
851
857
  # client_request_token: "ClientRequestToken",
852
858
  # lo_ra_wan: { # required
853
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
859
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1, AS923-2, AS923-3, AS923-4, EU433, CN470, CN779, RU864, KR920, IN865
854
860
  # dl_class: "ClassB", # accepts ClassB, ClassC
855
861
  # },
856
862
  # tags: [
@@ -978,6 +984,8 @@ module Aws::IoTWireless
978
984
  # add_gw_metadata: false,
979
985
  # dr_min: 1,
980
986
  # dr_max: 1,
987
+ # pr_allowed: false,
988
+ # ra_allowed: false,
981
989
  # },
982
990
  # tags: [
983
991
  # {
@@ -1035,6 +1043,10 @@ module Aws::IoTWireless
1035
1043
  # FPort values for the GNSS, stream, and ClockSync functions of the
1036
1044
  # positioning information.
1037
1045
  #
1046
+ # @option params [Types::SidewalkCreateWirelessDevice] :sidewalk
1047
+ # The device configuration information to use to create the Sidewalk
1048
+ # device.
1049
+ #
1038
1050
  # @return [Types::CreateWirelessDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1039
1051
  #
1040
1052
  # * {Types::CreateWirelessDeviceResponse#arn #arn} => String
@@ -1105,6 +1117,9 @@ module Aws::IoTWireless
1105
1117
  # },
1106
1118
  # ],
1107
1119
  # positioning: "Enabled", # accepts Enabled, Disabled
1120
+ # sidewalk: {
1121
+ # device_profile_id: "DeviceProfileId",
1122
+ # },
1108
1123
  # })
1109
1124
  #
1110
1125
  # @example Response structure
@@ -1166,6 +1181,7 @@ module Aws::IoTWireless
1166
1181
  # data_rate: 1,
1167
1182
  # frequencies: [1],
1168
1183
  # },
1184
+ # max_eirp: 1.0,
1169
1185
  # },
1170
1186
  # tags: [
1171
1187
  # {
@@ -1466,6 +1482,26 @@ module Aws::IoTWireless
1466
1482
  req.send_request(options)
1467
1483
  end
1468
1484
 
1485
+ # Delete an import task.
1486
+ #
1487
+ # @option params [required, String] :id
1488
+ # The unique identifier of the import task to be deleted.
1489
+ #
1490
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1491
+ #
1492
+ # @example Request syntax with placeholder values
1493
+ #
1494
+ # resp = client.delete_wireless_device_import_task({
1495
+ # id: "ImportTaskId", # required
1496
+ # })
1497
+ #
1498
+ # @overload delete_wireless_device_import_task(params = {})
1499
+ # @param [Hash] params ({})
1500
+ def delete_wireless_device_import_task(params = {}, options = {})
1501
+ req = build_request(:delete_wireless_device_import_task, params)
1502
+ req.send_request(options)
1503
+ end
1504
+
1469
1505
  # Deletes a wireless gateway.
1470
1506
  #
1471
1507
  # @option params [required, String] :id
@@ -1527,6 +1563,32 @@ module Aws::IoTWireless
1527
1563
  req.send_request(options)
1528
1564
  end
1529
1565
 
1566
+ # Deregister a wireless device from AWS IoT Wireless.
1567
+ #
1568
+ # @option params [required, String] :identifier
1569
+ # The identifier of the wireless device to deregister from AWS IoT
1570
+ # Wireless.
1571
+ #
1572
+ # @option params [String] :wireless_device_type
1573
+ # The type of wireless device to deregister from AWS IoT Wireless, which
1574
+ # can be `LoRaWAN` or `Sidewalk`.
1575
+ #
1576
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1577
+ #
1578
+ # @example Request syntax with placeholder values
1579
+ #
1580
+ # resp = client.deregister_wireless_device({
1581
+ # identifier: "Identifier", # required
1582
+ # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
1583
+ # })
1584
+ #
1585
+ # @overload deregister_wireless_device(params = {})
1586
+ # @param [Hash] params ({})
1587
+ def deregister_wireless_device(params = {}, options = {})
1588
+ req = build_request(:deregister_wireless_device, params)
1589
+ req.send_request(options)
1590
+ end
1591
+
1530
1592
  # Disassociates your AWS account from a partner account. If
1531
1593
  # `PartnerAccountId` and `PartnerType` are `null`, disassociates your
1532
1594
  # AWS account from all partner accounts.
@@ -1733,6 +1795,7 @@ module Aws::IoTWireless
1733
1795
  # * {Types::GetDeviceProfileResponse#name #name} => String
1734
1796
  # * {Types::GetDeviceProfileResponse#id #id} => String
1735
1797
  # * {Types::GetDeviceProfileResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANDeviceProfile
1798
+ # * {Types::GetDeviceProfileResponse#sidewalk #sidewalk} => Types::SidewalkGetDeviceProfile
1736
1799
  #
1737
1800
  # @example Request syntax with placeholder values
1738
1801
  #
@@ -1765,6 +1828,14 @@ module Aws::IoTWireless
1765
1828
  # resp.lo_ra_wan.rf_region #=> String
1766
1829
  # resp.lo_ra_wan.supports_join #=> Boolean
1767
1830
  # resp.lo_ra_wan.supports_32_bit_f_cnt #=> Boolean
1831
+ # resp.sidewalk.application_server_public_key #=> String
1832
+ # resp.sidewalk.qualification_status #=> Boolean
1833
+ # resp.sidewalk.dak_certificate_metadata #=> Array
1834
+ # resp.sidewalk.dak_certificate_metadata[0].certificate_id #=> String
1835
+ # resp.sidewalk.dak_certificate_metadata[0].max_allowed_signature #=> Integer
1836
+ # resp.sidewalk.dak_certificate_metadata[0].factory_support #=> Boolean
1837
+ # resp.sidewalk.dak_certificate_metadata[0].ap_id #=> String
1838
+ # resp.sidewalk.dak_certificate_metadata[0].device_type_id #=> String
1768
1839
  #
1769
1840
  # @overload get_device_profile(params = {})
1770
1841
  # @param [Hash] params ({})
@@ -1908,7 +1979,7 @@ module Aws::IoTWireless
1908
1979
  # resp.name #=> String
1909
1980
  # resp.description #=> String
1910
1981
  # resp.status #=> String
1911
- # resp.lo_ra_wan.rf_region #=> String, one of "EU868", "US915", "AU915", "AS923-1"
1982
+ # resp.lo_ra_wan.rf_region #=> String, one of "EU868", "US915", "AU915", "AS923-1", "AS923-2", "AS923-3", "AS923-4", "EU433", "CN470", "CN779", "RU864", "KR920", "IN865"
1912
1983
  # resp.lo_ra_wan.dl_class #=> String, one of "ClassB", "ClassC"
1913
1984
  # resp.lo_ra_wan.number_of_devices_requested #=> Integer
1914
1985
  # resp.lo_ra_wan.number_of_devices_in_group #=> Integer
@@ -1942,6 +2013,7 @@ module Aws::IoTWireless
1942
2013
  # resp.lo_ra_wan.dl_freq #=> Integer
1943
2014
  # resp.lo_ra_wan.session_start_time #=> Time
1944
2015
  # resp.lo_ra_wan.session_timeout #=> Integer
2016
+ # resp.lo_ra_wan.ping_slot_period #=> Integer
1945
2017
  #
1946
2018
  # @overload get_multicast_group_session(params = {})
1947
2019
  # @param [Hash] params ({})
@@ -2589,6 +2661,12 @@ module Aws::IoTWireless
2589
2661
  # resp.sidewalk.device_certificates #=> Array
2590
2662
  # resp.sidewalk.device_certificates[0].signing_alg #=> String, one of "Ed25519", "P256r1"
2591
2663
  # resp.sidewalk.device_certificates[0].value #=> String
2664
+ # resp.sidewalk.private_keys #=> Array
2665
+ # resp.sidewalk.private_keys[0].signing_alg #=> String, one of "Ed25519", "P256r1"
2666
+ # resp.sidewalk.private_keys[0].value #=> String
2667
+ # resp.sidewalk.device_profile_id #=> String
2668
+ # resp.sidewalk.certificate_id #=> String
2669
+ # resp.sidewalk.status #=> String, one of "PROVISIONED", "REGISTERED", "ACTIVATED", "UNKNOWN"
2592
2670
  # resp.positioning #=> String, one of "Enabled", "Disabled"
2593
2671
  #
2594
2672
  # @overload get_wireless_device(params = {})
@@ -2598,6 +2676,55 @@ module Aws::IoTWireless
2598
2676
  req.send_request(options)
2599
2677
  end
2600
2678
 
2679
+ # Get information about an import task and count of device onboarding
2680
+ # summary information for the import task.
2681
+ #
2682
+ # @option params [required, String] :id
2683
+ # The identifier of the import task for which information is requested.
2684
+ #
2685
+ # @return [Types::GetWirelessDeviceImportTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2686
+ #
2687
+ # * {Types::GetWirelessDeviceImportTaskResponse#id #id} => String
2688
+ # * {Types::GetWirelessDeviceImportTaskResponse#arn #arn} => String
2689
+ # * {Types::GetWirelessDeviceImportTaskResponse#destination_name #destination_name} => String
2690
+ # * {Types::GetWirelessDeviceImportTaskResponse#sidewalk #sidewalk} => Types::SidewalkGetStartImportInfo
2691
+ # * {Types::GetWirelessDeviceImportTaskResponse#creation_time #creation_time} => Time
2692
+ # * {Types::GetWirelessDeviceImportTaskResponse#status #status} => String
2693
+ # * {Types::GetWirelessDeviceImportTaskResponse#status_reason #status_reason} => String
2694
+ # * {Types::GetWirelessDeviceImportTaskResponse#initialized_imported_device_count #initialized_imported_device_count} => Integer
2695
+ # * {Types::GetWirelessDeviceImportTaskResponse#pending_imported_device_count #pending_imported_device_count} => Integer
2696
+ # * {Types::GetWirelessDeviceImportTaskResponse#onboarded_imported_device_count #onboarded_imported_device_count} => Integer
2697
+ # * {Types::GetWirelessDeviceImportTaskResponse#failed_imported_device_count #failed_imported_device_count} => Integer
2698
+ #
2699
+ # @example Request syntax with placeholder values
2700
+ #
2701
+ # resp = client.get_wireless_device_import_task({
2702
+ # id: "ImportTaskId", # required
2703
+ # })
2704
+ #
2705
+ # @example Response structure
2706
+ #
2707
+ # resp.id #=> String
2708
+ # resp.arn #=> String
2709
+ # resp.destination_name #=> String
2710
+ # resp.sidewalk.device_creation_file_list #=> Array
2711
+ # resp.sidewalk.device_creation_file_list[0] #=> String
2712
+ # resp.sidewalk.role #=> String
2713
+ # resp.creation_time #=> Time
2714
+ # resp.status #=> String, one of "INITIALIZING", "INITIALIZED", "PENDING", "COMPLETE", "FAILED", "DELETING"
2715
+ # resp.status_reason #=> String
2716
+ # resp.initialized_imported_device_count #=> Integer
2717
+ # resp.pending_imported_device_count #=> Integer
2718
+ # resp.onboarded_imported_device_count #=> Integer
2719
+ # resp.failed_imported_device_count #=> Integer
2720
+ #
2721
+ # @overload get_wireless_device_import_task(params = {})
2722
+ # @param [Hash] params ({})
2723
+ def get_wireless_device_import_task(params = {}, options = {})
2724
+ req = build_request(:get_wireless_device_import_task, params)
2725
+ req.send_request(options)
2726
+ end
2727
+
2601
2728
  # Gets operating information about a wireless device.
2602
2729
  #
2603
2730
  # @option params [required, String] :wireless_device_id
@@ -2683,6 +2810,7 @@ module Aws::IoTWireless
2683
2810
  # resp.lo_ra_wan.beaconing.data_rate #=> Integer
2684
2811
  # resp.lo_ra_wan.beaconing.frequencies #=> Array
2685
2812
  # resp.lo_ra_wan.beaconing.frequencies[0] #=> Integer
2813
+ # resp.lo_ra_wan.max_eirp #=> Float
2686
2814
  # resp.arn #=> String
2687
2815
  # resp.thing_name #=> String
2688
2816
  # resp.thing_arn #=> String
@@ -2909,6 +3037,10 @@ module Aws::IoTWireless
2909
3037
  # @option params [Integer] :max_results
2910
3038
  # The maximum number of results to return in this operation.
2911
3039
  #
3040
+ # @option params [String] :device_profile_type
3041
+ # A filter to list only device profiles that use this type, which can be
3042
+ # `LoRaWAN` or `Sidewalk`.
3043
+ #
2912
3044
  # @return [Types::ListDeviceProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2913
3045
  #
2914
3046
  # * {Types::ListDeviceProfilesResponse#next_token #next_token} => String
@@ -2921,6 +3053,7 @@ module Aws::IoTWireless
2921
3053
  # resp = client.list_device_profiles({
2922
3054
  # next_token: "NextToken",
2923
3055
  # max_results: 1,
3056
+ # device_profile_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
2924
3057
  # })
2925
3058
  #
2926
3059
  # @example Response structure
@@ -2938,6 +3071,56 @@ module Aws::IoTWireless
2938
3071
  req.send_request(options)
2939
3072
  end
2940
3073
 
3074
+ # List the Sidewalk devices in an import task and their onboarding
3075
+ # status.
3076
+ #
3077
+ # @option params [required, String] :id
3078
+ # The identifier of the import task for which wireless devices are
3079
+ # listed.
3080
+ #
3081
+ # @option params [Integer] :max_results
3082
+ # The maximum number of results to return in this operation.
3083
+ #
3084
+ # @option params [String] :next_token
3085
+ # To retrieve the next set of results, the `nextToken` value from a
3086
+ # previous response; otherwise `null` to receive the first set of
3087
+ # results.
3088
+ #
3089
+ # @option params [String] :status
3090
+ # The status of the devices in the import task.
3091
+ #
3092
+ # @return [Types::ListDevicesForWirelessDeviceImportTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3093
+ #
3094
+ # * {Types::ListDevicesForWirelessDeviceImportTaskResponse#next_token #next_token} => String
3095
+ # * {Types::ListDevicesForWirelessDeviceImportTaskResponse#destination_name #destination_name} => String
3096
+ # * {Types::ListDevicesForWirelessDeviceImportTaskResponse#imported_wireless_device_list #imported_wireless_device_list} => Array<Types::ImportedWirelessDevice>
3097
+ #
3098
+ # @example Request syntax with placeholder values
3099
+ #
3100
+ # resp = client.list_devices_for_wireless_device_import_task({
3101
+ # id: "ImportTaskId", # required
3102
+ # max_results: 1,
3103
+ # next_token: "NextToken",
3104
+ # status: "INITIALIZED", # accepts INITIALIZED, PENDING, ONBOARDED, FAILED
3105
+ # })
3106
+ #
3107
+ # @example Response structure
3108
+ #
3109
+ # resp.next_token #=> String
3110
+ # resp.destination_name #=> String
3111
+ # resp.imported_wireless_device_list #=> Array
3112
+ # resp.imported_wireless_device_list[0].sidewalk.sidewalk_manufacturing_sn #=> String
3113
+ # resp.imported_wireless_device_list[0].sidewalk.onboarding_status #=> String, one of "INITIALIZED", "PENDING", "ONBOARDED", "FAILED"
3114
+ # resp.imported_wireless_device_list[0].sidewalk.onboarding_status_reason #=> String
3115
+ # resp.imported_wireless_device_list[0].sidewalk.last_update_time #=> Time
3116
+ #
3117
+ # @overload list_devices_for_wireless_device_import_task(params = {})
3118
+ # @param [Hash] params ({})
3119
+ def list_devices_for_wireless_device_import_task(params = {}, options = {})
3120
+ req = build_request(:list_devices_for_wireless_device_import_task, params)
3121
+ req.send_request(options)
3122
+ end
3123
+
2941
3124
  # List event configurations where at least one event topic has been
2942
3125
  # enabled.
2943
3126
  #
@@ -3361,6 +3544,53 @@ module Aws::IoTWireless
3361
3544
  req.send_request(options)
3362
3545
  end
3363
3546
 
3547
+ # List wireless devices that have been added to an import task.
3548
+ #
3549
+ # @option params [Integer] :max_results
3550
+ # The maximum number of results to return in this operation.
3551
+ #
3552
+ # @option params [String] :next_token
3553
+ # To retrieve the next set of results, the `nextToken` value from a
3554
+ # previous response; otherwise `null` to receive the first set of
3555
+ # results.
3556
+ #
3557
+ # @return [Types::ListWirelessDeviceImportTasksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3558
+ #
3559
+ # * {Types::ListWirelessDeviceImportTasksResponse#next_token #next_token} => String
3560
+ # * {Types::ListWirelessDeviceImportTasksResponse#wireless_device_import_task_list #wireless_device_import_task_list} => Array<Types::WirelessDeviceImportTask>
3561
+ #
3562
+ # @example Request syntax with placeholder values
3563
+ #
3564
+ # resp = client.list_wireless_device_import_tasks({
3565
+ # max_results: 1,
3566
+ # next_token: "NextToken",
3567
+ # })
3568
+ #
3569
+ # @example Response structure
3570
+ #
3571
+ # resp.next_token #=> String
3572
+ # resp.wireless_device_import_task_list #=> Array
3573
+ # resp.wireless_device_import_task_list[0].id #=> String
3574
+ # resp.wireless_device_import_task_list[0].arn #=> String
3575
+ # resp.wireless_device_import_task_list[0].destination_name #=> String
3576
+ # resp.wireless_device_import_task_list[0].sidewalk.device_creation_file_list #=> Array
3577
+ # resp.wireless_device_import_task_list[0].sidewalk.device_creation_file_list[0] #=> String
3578
+ # resp.wireless_device_import_task_list[0].sidewalk.role #=> String
3579
+ # resp.wireless_device_import_task_list[0].creation_time #=> Time
3580
+ # resp.wireless_device_import_task_list[0].status #=> String, one of "INITIALIZING", "INITIALIZED", "PENDING", "COMPLETE", "FAILED", "DELETING"
3581
+ # resp.wireless_device_import_task_list[0].status_reason #=> String
3582
+ # resp.wireless_device_import_task_list[0].initialized_imported_device_count #=> Integer
3583
+ # resp.wireless_device_import_task_list[0].pending_imported_device_count #=> Integer
3584
+ # resp.wireless_device_import_task_list[0].onboarded_imported_device_count #=> Integer
3585
+ # resp.wireless_device_import_task_list[0].failed_imported_device_count #=> Integer
3586
+ #
3587
+ # @overload list_wireless_device_import_tasks(params = {})
3588
+ # @param [Hash] params ({})
3589
+ def list_wireless_device_import_tasks(params = {}, options = {})
3590
+ req = build_request(:list_wireless_device_import_tasks, params)
3591
+ req.send_request(options)
3592
+ end
3593
+
3364
3594
  # Lists the wireless devices registered to your AWS account.
3365
3595
  #
3366
3596
  # @option params [Integer] :max_results
@@ -3429,6 +3659,8 @@ module Aws::IoTWireless
3429
3659
  # resp.wireless_device_list[0].sidewalk.device_certificates #=> Array
3430
3660
  # resp.wireless_device_list[0].sidewalk.device_certificates[0].signing_alg #=> String, one of "Ed25519", "P256r1"
3431
3661
  # resp.wireless_device_list[0].sidewalk.device_certificates[0].value #=> String
3662
+ # resp.wireless_device_list[0].sidewalk.device_profile_id #=> String
3663
+ # resp.wireless_device_list[0].sidewalk.status #=> String, one of "PROVISIONED", "REGISTERED", "ACTIVATED", "UNKNOWN"
3432
3664
  # 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"
3433
3665
  # resp.wireless_device_list[0].multicast_device_status #=> String
3434
3666
  # resp.wireless_device_list[0].mc_group_id #=> Integer
@@ -3532,6 +3764,7 @@ module Aws::IoTWireless
3532
3764
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.data_rate #=> Integer
3533
3765
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies #=> Array
3534
3766
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies[0] #=> Integer
3767
+ # resp.wireless_gateway_list[0].lo_ra_wan.max_eirp #=> Float
3535
3768
  # resp.wireless_gateway_list[0].last_uplink_received_at #=> String
3536
3769
  #
3537
3770
  # @overload list_wireless_gateways(params = {})
@@ -3879,6 +4112,7 @@ module Aws::IoTWireless
3879
4112
  # dl_freq: 1,
3880
4113
  # session_start_time: Time.now,
3881
4114
  # session_timeout: 1,
4115
+ # ping_slot_period: 1,
3882
4116
  # },
3883
4117
  # })
3884
4118
  #
@@ -3889,6 +4123,127 @@ module Aws::IoTWireless
3889
4123
  req.send_request(options)
3890
4124
  end
3891
4125
 
4126
+ # Start import task for a single wireless device.
4127
+ #
4128
+ # @option params [required, String] :destination_name
4129
+ # The name of the Sidewalk destination that describes the IoT rule to
4130
+ # route messages from the device in the import task that will be
4131
+ # onboarded to AWS IoT Wireless.
4132
+ #
4133
+ # @option params [String] :client_request_token
4134
+ # Each resource must have a unique client request token. If you try to
4135
+ # create a new resource with the same token as a resource that already
4136
+ # exists, an exception occurs. If you omit this value, AWS SDKs will
4137
+ # automatically generate a unique client request.
4138
+ #
4139
+ # **A suitable default value is auto-generated.** You should normally
4140
+ # not need to pass this option.**
4141
+ #
4142
+ # @option params [String] :device_name
4143
+ # The name of the wireless device for which an import task is being
4144
+ # started.
4145
+ #
4146
+ # @option params [Array<Types::Tag>] :tags
4147
+ # The tag to attach to the specified resource. Tags are metadata that
4148
+ # you can use to manage a resource.
4149
+ #
4150
+ # @option params [required, Types::SidewalkSingleStartImportInfo] :sidewalk
4151
+ # The Sidewalk-related parameters for importing a single wireless
4152
+ # device.
4153
+ #
4154
+ # @return [Types::StartSingleWirelessDeviceImportTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4155
+ #
4156
+ # * {Types::StartSingleWirelessDeviceImportTaskResponse#id #id} => String
4157
+ # * {Types::StartSingleWirelessDeviceImportTaskResponse#arn #arn} => String
4158
+ #
4159
+ # @example Request syntax with placeholder values
4160
+ #
4161
+ # resp = client.start_single_wireless_device_import_task({
4162
+ # destination_name: "DestinationName", # required
4163
+ # client_request_token: "ClientRequestToken",
4164
+ # device_name: "DeviceName",
4165
+ # tags: [
4166
+ # {
4167
+ # key: "TagKey", # required
4168
+ # value: "TagValue", # required
4169
+ # },
4170
+ # ],
4171
+ # sidewalk: { # required
4172
+ # sidewalk_manufacturing_sn: "SidewalkManufacturingSn",
4173
+ # },
4174
+ # })
4175
+ #
4176
+ # @example Response structure
4177
+ #
4178
+ # resp.id #=> String
4179
+ # resp.arn #=> String
4180
+ #
4181
+ # @overload start_single_wireless_device_import_task(params = {})
4182
+ # @param [Hash] params ({})
4183
+ def start_single_wireless_device_import_task(params = {}, options = {})
4184
+ req = build_request(:start_single_wireless_device_import_task, params)
4185
+ req.send_request(options)
4186
+ end
4187
+
4188
+ # Start import task for provisioning Sidewalk devices in bulk using an
4189
+ # S3 CSV file.
4190
+ #
4191
+ # @option params [required, String] :destination_name
4192
+ # The name of the Sidewalk destination that describes the IoT rule to
4193
+ # route messages from the devices in the import task that are onboarded
4194
+ # to AWS IoT Wireless.
4195
+ #
4196
+ # @option params [String] :client_request_token
4197
+ # Each resource must have a unique client request token. If you try to
4198
+ # create a new resource with the same token as a resource that already
4199
+ # exists, an exception occurs. If you omit this value, AWS SDKs will
4200
+ # automatically generate a unique client request.
4201
+ #
4202
+ # **A suitable default value is auto-generated.** You should normally
4203
+ # not need to pass this option.**
4204
+ #
4205
+ # @option params [Array<Types::Tag>] :tags
4206
+ # The tag to attach to the specified resource. Tags are metadata that
4207
+ # you can use to manage a resource.
4208
+ #
4209
+ # @option params [required, Types::SidewalkStartImportInfo] :sidewalk
4210
+ # The Sidewalk-related parameters for importing wireless devices that
4211
+ # need to be provisioned in bulk.
4212
+ #
4213
+ # @return [Types::StartWirelessDeviceImportTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4214
+ #
4215
+ # * {Types::StartWirelessDeviceImportTaskResponse#id #id} => String
4216
+ # * {Types::StartWirelessDeviceImportTaskResponse#arn #arn} => String
4217
+ #
4218
+ # @example Request syntax with placeholder values
4219
+ #
4220
+ # resp = client.start_wireless_device_import_task({
4221
+ # destination_name: "DestinationName", # required
4222
+ # client_request_token: "ClientRequestToken",
4223
+ # tags: [
4224
+ # {
4225
+ # key: "TagKey", # required
4226
+ # value: "TagValue", # required
4227
+ # },
4228
+ # ],
4229
+ # sidewalk: { # required
4230
+ # device_creation_file: "DeviceCreationFile",
4231
+ # role: "Role",
4232
+ # },
4233
+ # })
4234
+ #
4235
+ # @example Response structure
4236
+ #
4237
+ # resp.id #=> String
4238
+ # resp.arn #=> String
4239
+ #
4240
+ # @overload start_wireless_device_import_task(params = {})
4241
+ # @param [Hash] params ({})
4242
+ def start_wireless_device_import_task(params = {}, options = {})
4243
+ req = build_request(:start_wireless_device_import_task, params)
4244
+ req.send_request(options)
4245
+ end
4246
+
3892
4247
  # Adds a tag to a resource.
3893
4248
  #
3894
4249
  # @option params [required, String] :resource_arn
@@ -4114,7 +4469,7 @@ module Aws::IoTWireless
4114
4469
  # name: "FuotaTaskName",
4115
4470
  # description: "Description",
4116
4471
  # lo_ra_wan: {
4117
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
4472
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1, AS923-2, AS923-3, AS923-4, EU433, CN470, CN779, RU864, KR920, IN865
4118
4473
  # },
4119
4474
  # firmware_update_image: "FirmwareUpdateImage",
4120
4475
  # firmware_update_role: "FirmwareUpdateRole",
@@ -4208,7 +4563,7 @@ module Aws::IoTWireless
4208
4563
  # name: "MulticastGroupName",
4209
4564
  # description: "Description",
4210
4565
  # lo_ra_wan: {
4211
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
4566
+ # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1, AS923-2, AS923-3, AS923-4, EU433, CN470, CN779, RU864, KR920, IN865
4212
4567
  # dl_class: "ClassB", # accepts ClassB, ClassC
4213
4568
  # },
4214
4569
  # })
@@ -4524,6 +4879,32 @@ module Aws::IoTWireless
4524
4879
  req.send_request(options)
4525
4880
  end
4526
4881
 
4882
+ # Update an import task to add more devices to the task.
4883
+ #
4884
+ # @option params [required, String] :id
4885
+ # The identifier of the import task to be updated.
4886
+ #
4887
+ # @option params [required, Types::SidewalkUpdateImportInfo] :sidewalk
4888
+ # The Sidewalk-related parameters of the import task to be updated.
4889
+ #
4890
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4891
+ #
4892
+ # @example Request syntax with placeholder values
4893
+ #
4894
+ # resp = client.update_wireless_device_import_task({
4895
+ # id: "ImportTaskId", # required
4896
+ # sidewalk: { # required
4897
+ # device_creation_file: "DeviceCreationFile",
4898
+ # },
4899
+ # })
4900
+ #
4901
+ # @overload update_wireless_device_import_task(params = {})
4902
+ # @param [Hash] params ({})
4903
+ def update_wireless_device_import_task(params = {}, options = {})
4904
+ req = build_request(:update_wireless_device_import_task, params)
4905
+ req.send_request(options)
4906
+ end
4907
+
4527
4908
  # Updates properties of a wireless gateway.
4528
4909
  #
4529
4910
  # @option params [required, String] :id
@@ -4542,6 +4923,9 @@ module Aws::IoTWireless
4542
4923
  # A list of NetId values that are used by LoRa gateways to filter the
4543
4924
  # uplink frames.
4544
4925
  #
4926
+ # @option params [Float] :max_eirp
4927
+ # The MaxEIRP value.
4928
+ #
4545
4929
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4546
4930
  #
4547
4931
  # @example Request syntax with placeholder values
@@ -4554,6 +4938,7 @@ module Aws::IoTWireless
4554
4938
  # ["JoinEui"],
4555
4939
  # ],
4556
4940
  # net_id_filters: ["NetId"],
4941
+ # max_eirp: 1.0,
4557
4942
  # })
4558
4943
  #
4559
4944
  # @overload update_wireless_gateway(params = {})
@@ -4576,7 +4961,7 @@ module Aws::IoTWireless
4576
4961
  params: params,
4577
4962
  config: config)
4578
4963
  context[:gem_name] = 'aws-sdk-iotwireless'
4579
- context[:gem_version] = '1.30.0'
4964
+ context[:gem_version] = '1.32.0'
4580
4965
  Seahorse::Client::Request.new(handlers, context)
4581
4966
  end
4582
4967