aws-sdk-iotwireless 1.22.0 → 1.23.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f5d3ddc71b0818beab7622179d040a0c05c319357cb78b3a75d75d8390114a3
4
- data.tar.gz: 7a4396126ecd1e6e5d69305761d701e297d67fdc32653ef1183c75f2a9a087ee
3
+ metadata.gz: 8883b8a8de1ae4ef97ea55d9392aed92b25f08b878c418e78672665dbe03f0de
4
+ data.tar.gz: 4f31738649dc5a4422b4ce4b44070b9e7742bc0c844da80c6495f93ae75a486f
5
5
  SHA512:
6
- metadata.gz: 1290a9dd82b48914b4bad46088cadeb611a4986ffa853d6e76dfaa4431a2038dca8d8bb2ef35785bab3916f038baf11254d0c00442bbcbc9f0e34bb3f082260c
7
- data.tar.gz: 760ce1ae5bb4f8a5fbd00fe15f3d5a26ba285693345f27be6153f39db02fc1ddcbe2f1d4d0ea7db7ebc9bdee62e897dd80ddba9dd395fae3d8e38468665d9c72
6
+ metadata.gz: 605999cadccf95349325fd9e06452914ca00cc20e4fcc1cb95d886f9d22bebc1745f452bbf501ca7171e8e95bde392b25f774c7b295975b1a8e4055f7de0a87a
7
+ data.tar.gz: 12d5525eacac6749dad871e2bac96523085c5fcb76544a05c641651d38c4483666711f4096ce8e18d6c3789f1edf0ada4f69f7d5332e9953163ec143bd556829
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2022-04-27)
5
+ ------------------
6
+
7
+ * Feature - Add list support for event configurations, allow to get and update event configurations by resource type, support LoRaWAN events; Make NetworkAnalyzerConfiguration as a resource, add List, Create, Delete API support; Add FCntStart attribute support for ABP WirelessDevice.
8
+
4
9
  1.22.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -836,6 +836,77 @@ module Aws::IoTWireless
836
836
  req.send_request(options)
837
837
  end
838
838
 
839
+ # Creates a new network analyzer configuration.
840
+ #
841
+ # @option params [required, String] :name
842
+ # Name of the network analyzer configuration.
843
+ #
844
+ # @option params [Types::TraceContent] :trace_content
845
+ # Trace content for your wireless gateway and wireless device resources.
846
+ #
847
+ # @option params [Array<String>] :wireless_devices
848
+ # Wireless device resources to add to the network analyzer
849
+ # configuration. Provide the `WirelessDeviceId` of the resource to add
850
+ # in the input array.
851
+ #
852
+ # @option params [Array<String>] :wireless_gateways
853
+ # Wireless gateway resources to add to the network analyzer
854
+ # configuration. Provide the `WirelessGatewayId` of the resource to add
855
+ # in the input array.
856
+ #
857
+ # @option params [String] :description
858
+ # The description of the new resource.
859
+ #
860
+ # @option params [Array<Types::Tag>] :tags
861
+ # The tag to attach to the specified resource. Tags are metadata that
862
+ # you can use to manage a resource.
863
+ #
864
+ # @option params [String] :client_request_token
865
+ # Each resource must have a unique client request token. If you try to
866
+ # create a new resource with the same token as a resource that already
867
+ # exists, an exception occurs. If you omit this value, AWS SDKs will
868
+ # automatically generate a unique client request.
869
+ #
870
+ # **A suitable default value is auto-generated.** You should normally
871
+ # not need to pass this option.**
872
+ #
873
+ # @return [Types::CreateNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
874
+ #
875
+ # * {Types::CreateNetworkAnalyzerConfigurationResponse#arn #arn} => String
876
+ # * {Types::CreateNetworkAnalyzerConfigurationResponse#name #name} => String
877
+ #
878
+ # @example Request syntax with placeholder values
879
+ #
880
+ # resp = client.create_network_analyzer_configuration({
881
+ # name: "NetworkAnalyzerConfigurationName", # required
882
+ # trace_content: {
883
+ # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
884
+ # log_level: "INFO", # accepts INFO, ERROR, DISABLED
885
+ # },
886
+ # wireless_devices: ["WirelessDeviceId"],
887
+ # wireless_gateways: ["WirelessGatewayId"],
888
+ # description: "Description",
889
+ # tags: [
890
+ # {
891
+ # key: "TagKey", # required
892
+ # value: "TagValue", # required
893
+ # },
894
+ # ],
895
+ # client_request_token: "ClientRequestToken",
896
+ # })
897
+ #
898
+ # @example Response structure
899
+ #
900
+ # resp.arn #=> String
901
+ # resp.name #=> String
902
+ #
903
+ # @overload create_network_analyzer_configuration(params = {})
904
+ # @param [Hash] params ({})
905
+ def create_network_analyzer_configuration(params = {}, options = {})
906
+ req = build_request(:create_network_analyzer_configuration, params)
907
+ req.send_request(options)
908
+ end
909
+
839
910
  # Creates a new service profile.
840
911
  #
841
912
  # @option params [String] :name
@@ -956,6 +1027,7 @@ module Aws::IoTWireless
956
1027
  # nwk_s_enc_key: "NwkSEncKey",
957
1028
  # app_s_key: "AppSKey",
958
1029
  # },
1030
+ # f_cnt_start: 1,
959
1031
  # },
960
1032
  # abp_v1_0_x: {
961
1033
  # dev_addr: "DevAddr",
@@ -963,6 +1035,7 @@ module Aws::IoTWireless
963
1035
  # nwk_s_key: "NwkSKey",
964
1036
  # app_s_key: "AppSKey",
965
1037
  # },
1038
+ # f_cnt_start: 1,
966
1039
  # },
967
1040
  # f_ports: {
968
1041
  # fuota: 1,
@@ -1242,18 +1315,39 @@ module Aws::IoTWireless
1242
1315
  req.send_request(options)
1243
1316
  end
1244
1317
 
1245
- # The operation to delete queued messages.
1318
+ # Deletes a network analyzer configuration.
1319
+ #
1320
+ # @option params [required, String] :configuration_name
1321
+ # Name of the network analyzer configuration.
1322
+ #
1323
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1324
+ #
1325
+ # @example Request syntax with placeholder values
1326
+ #
1327
+ # resp = client.delete_network_analyzer_configuration({
1328
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
1329
+ # })
1330
+ #
1331
+ # @overload delete_network_analyzer_configuration(params = {})
1332
+ # @param [Hash] params ({})
1333
+ def delete_network_analyzer_configuration(params = {}, options = {})
1334
+ req = build_request(:delete_network_analyzer_configuration, params)
1335
+ req.send_request(options)
1336
+ end
1337
+
1338
+ # Remove queued messages from the downlink queue.
1246
1339
  #
1247
1340
  # @option params [required, String] :id
1248
- # Id of a given wireless device which messages will be deleted
1341
+ # The ID of a given wireless device for which downlink messages will be
1342
+ # deleted.
1249
1343
  #
1250
1344
  # @option params [required, String] :message_id
1251
- # if messageID=="*", the queue for a particular wireless deviceId
1252
- # will be purged, otherwise, the specific message with messageId will be
1253
- # deleted
1345
+ # If message ID is `"*"`, it cleares the entire downlink queue for a
1346
+ # given device, specified by the wireless device ID. Otherwise, the
1347
+ # downlink message with the specified message ID will be deleted.
1254
1348
  #
1255
1349
  # @option params [String] :wireless_device_type
1256
- # The wireless device type, it is either Sidewalk or LoRaWAN.
1350
+ # The wireless device type, which can be either Sidewalk or LoRaWAN.
1257
1351
  #
1258
1352
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1259
1353
  #
@@ -1619,6 +1713,29 @@ module Aws::IoTWireless
1619
1713
  req.send_request(options)
1620
1714
  end
1621
1715
 
1716
+ # Get the event configuration by resource types.
1717
+ #
1718
+ # @return [Types::GetEventConfigurationByResourceTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1719
+ #
1720
+ # * {Types::GetEventConfigurationByResourceTypesResponse#device_registration_state #device_registration_state} => Types::DeviceRegistrationStateResourceTypeEventConfiguration
1721
+ # * {Types::GetEventConfigurationByResourceTypesResponse#proximity #proximity} => Types::ProximityResourceTypeEventConfiguration
1722
+ # * {Types::GetEventConfigurationByResourceTypesResponse#join #join} => Types::JoinResourceTypeEventConfiguration
1723
+ # * {Types::GetEventConfigurationByResourceTypesResponse#connection_status #connection_status} => Types::ConnectionStatusResourceTypeEventConfiguration
1724
+ #
1725
+ # @example Response structure
1726
+ #
1727
+ # resp.device_registration_state.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
1728
+ # resp.proximity.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
1729
+ # resp.join.lo_ra_wan.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
1730
+ # resp.connection_status.lo_ra_wan.wireless_gateway_event_topic #=> String, one of "Enabled", "Disabled"
1731
+ #
1732
+ # @overload get_event_configuration_by_resource_types(params = {})
1733
+ # @param [Hash] params ({})
1734
+ def get_event_configuration_by_resource_types(params = {}, options = {})
1735
+ req = build_request(:get_event_configuration_by_resource_types, params)
1736
+ req.send_request(options)
1737
+ end
1738
+
1622
1739
  # Gets information about a FUOTA task.
1623
1740
  #
1624
1741
  # @option params [required, String] :id
@@ -1765,16 +1882,19 @@ module Aws::IoTWireless
1765
1882
  req.send_request(options)
1766
1883
  end
1767
1884
 
1768
- # Get NetworkAnalyzer configuration.
1885
+ # Get network analyzer configuration.
1769
1886
  #
1770
1887
  # @option params [required, String] :configuration_name
1771
- # NetworkAnalyzer configuration name.
1888
+ # Name of the network analyzer configuration.
1772
1889
  #
1773
1890
  # @return [Types::GetNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1774
1891
  #
1775
1892
  # * {Types::GetNetworkAnalyzerConfigurationResponse#trace_content #trace_content} => Types::TraceContent
1776
1893
  # * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_devices #wireless_devices} => Array&lt;String&gt;
1777
1894
  # * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_gateways #wireless_gateways} => Array&lt;String&gt;
1895
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#description #description} => String
1896
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#arn #arn} => String
1897
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#name #name} => String
1778
1898
  #
1779
1899
  # @example Request syntax with placeholder values
1780
1900
  #
@@ -1790,6 +1910,9 @@ module Aws::IoTWireless
1790
1910
  # resp.wireless_devices[0] #=> String
1791
1911
  # resp.wireless_gateways #=> Array
1792
1912
  # resp.wireless_gateways[0] #=> String
1913
+ # resp.description #=> String
1914
+ # resp.arn #=> String
1915
+ # resp.name #=> String
1793
1916
  #
1794
1917
  # @overload get_network_analyzer_configuration(params = {})
1795
1918
  # @param [Hash] params ({})
@@ -1850,19 +1973,27 @@ module Aws::IoTWireless
1850
1973
  #
1851
1974
  # * {Types::GetResourceEventConfigurationResponse#device_registration_state #device_registration_state} => Types::DeviceRegistrationStateEventConfiguration
1852
1975
  # * {Types::GetResourceEventConfigurationResponse#proximity #proximity} => Types::ProximityEventConfiguration
1976
+ # * {Types::GetResourceEventConfigurationResponse#join #join} => Types::JoinEventConfiguration
1977
+ # * {Types::GetResourceEventConfigurationResponse#connection_status #connection_status} => Types::ConnectionStatusEventConfiguration
1853
1978
  #
1854
1979
  # @example Request syntax with placeholder values
1855
1980
  #
1856
1981
  # resp = client.get_resource_event_configuration({
1857
1982
  # identifier: "Identifier", # required
1858
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
1983
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
1859
1984
  # partner_type: "Sidewalk", # accepts Sidewalk
1860
1985
  # })
1861
1986
  #
1862
1987
  # @example Response structure
1863
1988
  #
1864
1989
  # resp.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
1990
+ # resp.device_registration_state.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
1865
1991
  # resp.proximity.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
1992
+ # resp.proximity.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
1993
+ # resp.join.lo_ra_wan.dev_eui_event_topic #=> String, one of "Enabled", "Disabled"
1994
+ # resp.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
1995
+ # resp.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
1996
+ # resp.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
1866
1997
  #
1867
1998
  # @overload get_resource_event_configuration(params = {})
1868
1999
  # @param [Hash] params ({})
@@ -1912,7 +2043,8 @@ module Aws::IoTWireless
1912
2043
  # @option params [String] :service_type
1913
2044
  # The service type for which to get endpoint information about. Can be
1914
2045
  # `CUPS` for the Configuration and Update Server endpoint, or `LNS` for
1915
- # the LoRaWAN Network Server endpoint.
2046
+ # the LoRaWAN Network Server endpoint or `CLAIM` for the global
2047
+ # endpoint.
1916
2048
  #
1917
2049
  # @return [Types::GetServiceEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1918
2050
  #
@@ -2041,9 +2173,11 @@ module Aws::IoTWireless
2041
2173
  # resp.lo_ra_wan.abp_v1_1.session_keys.s_nwk_s_int_key #=> String
2042
2174
  # resp.lo_ra_wan.abp_v1_1.session_keys.nwk_s_enc_key #=> String
2043
2175
  # resp.lo_ra_wan.abp_v1_1.session_keys.app_s_key #=> String
2176
+ # resp.lo_ra_wan.abp_v1_1.f_cnt_start #=> Integer
2044
2177
  # resp.lo_ra_wan.abp_v1_0_x.dev_addr #=> String
2045
2178
  # resp.lo_ra_wan.abp_v1_0_x.session_keys.nwk_s_key #=> String
2046
2179
  # resp.lo_ra_wan.abp_v1_0_x.session_keys.app_s_key #=> String
2180
+ # resp.lo_ra_wan.abp_v1_0_x.f_cnt_start #=> Integer
2047
2181
  # resp.lo_ra_wan.f_ports.fuota #=> Integer
2048
2182
  # resp.lo_ra_wan.f_ports.multicast #=> Integer
2049
2183
  # resp.lo_ra_wan.f_ports.clock_sync #=> Integer
@@ -2398,6 +2532,56 @@ module Aws::IoTWireless
2398
2532
  req.send_request(options)
2399
2533
  end
2400
2534
 
2535
+ # List event configurations where at least one event topic has been
2536
+ # enabled.
2537
+ #
2538
+ # @option params [required, String] :resource_type
2539
+ # Resource type to filter event configurations.
2540
+ #
2541
+ # @option params [Integer] :max_results
2542
+ # The maximum number of results to return in this operation.
2543
+ #
2544
+ # @option params [String] :next_token
2545
+ # To retrieve the next set of results, the `nextToken` value from a
2546
+ # previous response; otherwise **null** to receive the first set of
2547
+ # results.
2548
+ #
2549
+ # @return [Types::ListEventConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2550
+ #
2551
+ # * {Types::ListEventConfigurationsResponse#next_token #next_token} => String
2552
+ # * {Types::ListEventConfigurationsResponse#event_configurations_list #event_configurations_list} => Array&lt;Types::EventConfigurationItem&gt;
2553
+ #
2554
+ # @example Request syntax with placeholder values
2555
+ #
2556
+ # resp = client.list_event_configurations({
2557
+ # resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
2558
+ # max_results: 1,
2559
+ # next_token: "NextToken",
2560
+ # })
2561
+ #
2562
+ # @example Response structure
2563
+ #
2564
+ # resp.next_token #=> String
2565
+ # resp.event_configurations_list #=> Array
2566
+ # resp.event_configurations_list[0].identifier #=> String
2567
+ # resp.event_configurations_list[0].identifier_type #=> String, one of "PartnerAccountId", "DevEui", "GatewayEui", "WirelessDeviceId", "WirelessGatewayId"
2568
+ # resp.event_configurations_list[0].partner_type #=> String, one of "Sidewalk"
2569
+ # resp.event_configurations_list[0].events.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
2570
+ # resp.event_configurations_list[0].events.device_registration_state.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
2571
+ # resp.event_configurations_list[0].events.proximity.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
2572
+ # resp.event_configurations_list[0].events.proximity.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
2573
+ # resp.event_configurations_list[0].events.join.lo_ra_wan.dev_eui_event_topic #=> String, one of "Enabled", "Disabled"
2574
+ # resp.event_configurations_list[0].events.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
2575
+ # resp.event_configurations_list[0].events.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
2576
+ # resp.event_configurations_list[0].events.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
2577
+ #
2578
+ # @overload list_event_configurations(params = {})
2579
+ # @param [Hash] params ({})
2580
+ def list_event_configurations(params = {}, options = {})
2581
+ req = build_request(:list_event_configurations, params)
2582
+ req.send_request(options)
2583
+ end
2584
+
2401
2585
  # Lists the FUOTA tasks registered to your AWS account.
2402
2586
  #
2403
2587
  # @option params [String] :next_token
@@ -2517,6 +2701,44 @@ module Aws::IoTWireless
2517
2701
  req.send_request(options)
2518
2702
  end
2519
2703
 
2704
+ # Lists the network analyzer configurations.
2705
+ #
2706
+ # @option params [Integer] :max_results
2707
+ # The maximum number of results to return in this operation.
2708
+ #
2709
+ # @option params [String] :next_token
2710
+ # To retrieve the next set of results, the `nextToken` value from a
2711
+ # previous response; otherwise **null** to receive the first set of
2712
+ # results.
2713
+ #
2714
+ # @return [Types::ListNetworkAnalyzerConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2715
+ #
2716
+ # * {Types::ListNetworkAnalyzerConfigurationsResponse#next_token #next_token} => String
2717
+ # * {Types::ListNetworkAnalyzerConfigurationsResponse#network_analyzer_configuration_list #network_analyzer_configuration_list} => Array&lt;Types::NetworkAnalyzerConfigurations&gt;
2718
+ #
2719
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2720
+ #
2721
+ # @example Request syntax with placeholder values
2722
+ #
2723
+ # resp = client.list_network_analyzer_configurations({
2724
+ # max_results: 1,
2725
+ # next_token: "NextToken",
2726
+ # })
2727
+ #
2728
+ # @example Response structure
2729
+ #
2730
+ # resp.next_token #=> String
2731
+ # resp.network_analyzer_configuration_list #=> Array
2732
+ # resp.network_analyzer_configuration_list[0].arn #=> String
2733
+ # resp.network_analyzer_configuration_list[0].name #=> String
2734
+ #
2735
+ # @overload list_network_analyzer_configurations(params = {})
2736
+ # @param [Hash] params ({})
2737
+ def list_network_analyzer_configurations(params = {}, options = {})
2738
+ req = build_request(:list_network_analyzer_configurations, params)
2739
+ req.send_request(options)
2740
+ end
2741
+
2520
2742
  # Lists the partner accounts associated with your AWS account.
2521
2743
  #
2522
2744
  # @option params [String] :next_token
@@ -2554,10 +2776,11 @@ module Aws::IoTWireless
2554
2776
  req.send_request(options)
2555
2777
  end
2556
2778
 
2557
- # The operation to list queued messages.
2779
+ # List queued messages in the downlink queue.
2558
2780
  #
2559
2781
  # @option params [required, String] :id
2560
- # Id of a given wireless device which the downlink packets are targeted
2782
+ # The ID of a given wireless device which the downlink message packets
2783
+ # are being sent.
2561
2784
  #
2562
2785
  # @option params [String] :next_token
2563
2786
  # To retrieve the next set of results, the `nextToken` value from a
@@ -2568,7 +2791,7 @@ module Aws::IoTWireless
2568
2791
  # The maximum number of results to return in this operation.
2569
2792
  #
2570
2793
  # @option params [String] :wireless_device_type
2571
- # The wireless device type, it is either Sidewalk or LoRaWAN.
2794
+ # The wireless device type, whic can be either Sidewalk or LoRaWAN.
2572
2795
  #
2573
2796
  # @return [Types::ListQueuedMessagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2574
2797
  #
@@ -2860,7 +3083,9 @@ module Aws::IoTWireless
2860
3083
  # `WirelessGateway`.
2861
3084
  #
2862
3085
  # @option params [required, String] :log_level
2863
- # The log level for a log message.
3086
+ # The log level for a log message. The log levels can be disabled, or
3087
+ # set to `ERROR` to display less verbose logs containing only error
3088
+ # information, or to `INFO` for more detailed logs.
2864
3089
  #
2865
3090
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2866
3091
  #
@@ -3249,6 +3474,58 @@ module Aws::IoTWireless
3249
3474
  req.send_request(options)
3250
3475
  end
3251
3476
 
3477
+ # Update the event configuration by resource types.
3478
+ #
3479
+ # @option params [Types::DeviceRegistrationStateResourceTypeEventConfiguration] :device_registration_state
3480
+ # Device registration state resource type event configuration object for
3481
+ # enabling and disabling wireless gateway topic.
3482
+ #
3483
+ # @option params [Types::ProximityResourceTypeEventConfiguration] :proximity
3484
+ # Proximity resource type event configuration object for enabling and
3485
+ # disabling wireless gateway topic.
3486
+ #
3487
+ # @option params [Types::JoinResourceTypeEventConfiguration] :join
3488
+ # Join resource type event configuration object for enabling and
3489
+ # disabling wireless device topic.
3490
+ #
3491
+ # @option params [Types::ConnectionStatusResourceTypeEventConfiguration] :connection_status
3492
+ # Connection status resource type event configuration object for
3493
+ # enabling and disabling wireless gateway topic.
3494
+ #
3495
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3496
+ #
3497
+ # @example Request syntax with placeholder values
3498
+ #
3499
+ # resp = client.update_event_configuration_by_resource_types({
3500
+ # device_registration_state: {
3501
+ # sidewalk: {
3502
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
3503
+ # },
3504
+ # },
3505
+ # proximity: {
3506
+ # sidewalk: {
3507
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
3508
+ # },
3509
+ # },
3510
+ # join: {
3511
+ # lo_ra_wan: {
3512
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
3513
+ # },
3514
+ # },
3515
+ # connection_status: {
3516
+ # lo_ra_wan: {
3517
+ # wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
3518
+ # },
3519
+ # },
3520
+ # })
3521
+ #
3522
+ # @overload update_event_configuration_by_resource_types(params = {})
3523
+ # @param [Hash] params ({})
3524
+ def update_event_configuration_by_resource_types(params = {}, options = {})
3525
+ req = build_request(:update_event_configuration_by_resource_types, params)
3526
+ req.send_request(options)
3527
+ end
3528
+
3252
3529
  # Updates properties of a FUOTA task.
3253
3530
  #
3254
3531
  # @option params [required, String] :id
@@ -3298,7 +3575,9 @@ module Aws::IoTWireless
3298
3575
  # CloudWatch.
3299
3576
  #
3300
3577
  # @option params [String] :default_log_level
3301
- # The log level for a log message.
3578
+ # The log level for a log message. The log levels can be disabled, or
3579
+ # set to `ERROR` to display less verbose logs containing only error
3580
+ # information, or to `INFO` for more detailed logs.
3302
3581
  #
3303
3582
  # @option params [Array<Types::WirelessDeviceLogOption>] :wireless_device_log_options
3304
3583
  # The list of wireless device log options.
@@ -3380,25 +3659,36 @@ module Aws::IoTWireless
3380
3659
  req.send_request(options)
3381
3660
  end
3382
3661
 
3383
- # Update NetworkAnalyzer configuration.
3662
+ # Update network analyzer configuration.
3384
3663
  #
3385
3664
  # @option params [required, String] :configuration_name
3386
- # NetworkAnalyzer configuration name.
3665
+ # Name of the network analyzer configuration.
3387
3666
  #
3388
3667
  # @option params [Types::TraceContent] :trace_content
3389
- # Trace Content for resources.
3668
+ # Trace content for your wireless gateway and wireless device resources.
3390
3669
  #
3391
3670
  # @option params [Array<String>] :wireless_devices_to_add
3392
- # WirelessDevices to add into NetworkAnalyzerConfiguration.
3671
+ # Wireless device resources to add to the network analyzer
3672
+ # configuration. Provide the `WirelessDeviceId` of the resource to add
3673
+ # in the input array.
3393
3674
  #
3394
3675
  # @option params [Array<String>] :wireless_devices_to_remove
3395
- # WirelessDevices to remove from NetworkAnalyzerConfiguration.
3676
+ # Wireless device resources to remove from the network analyzer
3677
+ # configuration. Provide the `WirelessDeviceId` of the resources to
3678
+ # remove in the input array.
3396
3679
  #
3397
3680
  # @option params [Array<String>] :wireless_gateways_to_add
3398
- # WirelessGateways to add into NetworkAnalyzerConfiguration.
3681
+ # Wireless gateway resources to add to the network analyzer
3682
+ # configuration. Provide the `WirelessGatewayId` of the resource to add
3683
+ # in the input array.
3399
3684
  #
3400
3685
  # @option params [Array<String>] :wireless_gateways_to_remove
3401
- # WirelessGateways to remove from NetworkAnalyzerConfiguration.
3686
+ # Wireless gateway resources to remove from the network analyzer
3687
+ # configuration. Provide the `WirelessGatewayId` of the resources to
3688
+ # remove in the input array.
3689
+ #
3690
+ # @option params [String] :description
3691
+ # The description of the new resource.
3402
3692
  #
3403
3693
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3404
3694
  #
@@ -3414,6 +3704,7 @@ module Aws::IoTWireless
3414
3704
  # wireless_devices_to_remove: ["WirelessDeviceId"],
3415
3705
  # wireless_gateways_to_add: ["WirelessGatewayId"],
3416
3706
  # wireless_gateways_to_remove: ["WirelessGatewayId"],
3707
+ # description: "Description",
3417
3708
  # })
3418
3709
  #
3419
3710
  # @overload update_network_analyzer_configuration(params = {})
@@ -3472,23 +3763,43 @@ module Aws::IoTWireless
3472
3763
  # @option params [Types::ProximityEventConfiguration] :proximity
3473
3764
  # Event configuration for the Proximity event
3474
3765
  #
3766
+ # @option params [Types::JoinEventConfiguration] :join
3767
+ # Event configuration for the join event
3768
+ #
3769
+ # @option params [Types::ConnectionStatusEventConfiguration] :connection_status
3770
+ # Event configuration for the connection status event
3771
+ #
3475
3772
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3476
3773
  #
3477
3774
  # @example Request syntax with placeholder values
3478
3775
  #
3479
3776
  # resp = client.update_resource_event_configuration({
3480
3777
  # identifier: "Identifier", # required
3481
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
3778
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
3482
3779
  # partner_type: "Sidewalk", # accepts Sidewalk
3483
3780
  # device_registration_state: {
3484
3781
  # sidewalk: {
3485
3782
  # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
3486
3783
  # },
3784
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
3487
3785
  # },
3488
3786
  # proximity: {
3489
3787
  # sidewalk: {
3490
3788
  # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
3491
3789
  # },
3790
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
3791
+ # },
3792
+ # join: {
3793
+ # lo_ra_wan: {
3794
+ # dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
3795
+ # },
3796
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
3797
+ # },
3798
+ # connection_status: {
3799
+ # lo_ra_wan: {
3800
+ # gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
3801
+ # },
3802
+ # wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
3492
3803
  # },
3493
3804
  # })
3494
3805
  #
@@ -3528,6 +3839,12 @@ module Aws::IoTWireless
3528
3839
  # lo_ra_wan: {
3529
3840
  # device_profile_id: "DeviceProfileId",
3530
3841
  # service_profile_id: "ServiceProfileId",
3842
+ # abp_v1_1: {
3843
+ # f_cnt_start: 1,
3844
+ # },
3845
+ # abp_v1_0_x: {
3846
+ # f_cnt_start: 1,
3847
+ # },
3531
3848
  # },
3532
3849
  # })
3533
3850
  #
@@ -3590,7 +3907,7 @@ module Aws::IoTWireless
3590
3907
  params: params,
3591
3908
  config: config)
3592
3909
  context[:gem_name] = 'aws-sdk-iotwireless'
3593
- context[:gem_version] = '1.22.0'
3910
+ context[:gem_version] = '1.23.0'
3594
3911
  Seahorse::Client::Request.new(handlers, context)
3595
3912
  end
3596
3913