aws-sdk-iotwireless 1.22.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +584 -28
- data/lib/aws-sdk-iotwireless/client_api.rb +444 -0
- data/lib/aws-sdk-iotwireless/types.rb +1455 -88
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +2 -2
@@ -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
|
@@ -868,6 +939,8 @@ module Aws::IoTWireless
|
|
868
939
|
# name: "ServiceProfileName",
|
869
940
|
# lo_ra_wan: {
|
870
941
|
# add_gw_metadata: false,
|
942
|
+
# dr_min: 1,
|
943
|
+
# dr_max: 1,
|
871
944
|
# },
|
872
945
|
# tags: [
|
873
946
|
# {
|
@@ -956,6 +1029,7 @@ module Aws::IoTWireless
|
|
956
1029
|
# nwk_s_enc_key: "NwkSEncKey",
|
957
1030
|
# app_s_key: "AppSKey",
|
958
1031
|
# },
|
1032
|
+
# f_cnt_start: 1,
|
959
1033
|
# },
|
960
1034
|
# abp_v1_0_x: {
|
961
1035
|
# dev_addr: "DevAddr",
|
@@ -963,11 +1037,17 @@ module Aws::IoTWireless
|
|
963
1037
|
# nwk_s_key: "NwkSKey",
|
964
1038
|
# app_s_key: "AppSKey",
|
965
1039
|
# },
|
1040
|
+
# f_cnt_start: 1,
|
966
1041
|
# },
|
967
1042
|
# f_ports: {
|
968
1043
|
# fuota: 1,
|
969
1044
|
# multicast: 1,
|
970
1045
|
# clock_sync: 1,
|
1046
|
+
# positioning: {
|
1047
|
+
# clock_sync: 1,
|
1048
|
+
# stream: 1,
|
1049
|
+
# gnss: 1,
|
1050
|
+
# },
|
971
1051
|
# },
|
972
1052
|
# },
|
973
1053
|
# tags: [
|
@@ -1242,18 +1322,39 @@ module Aws::IoTWireless
|
|
1242
1322
|
req.send_request(options)
|
1243
1323
|
end
|
1244
1324
|
|
1245
|
-
#
|
1325
|
+
# Deletes a network analyzer configuration.
|
1326
|
+
#
|
1327
|
+
# @option params [required, String] :configuration_name
|
1328
|
+
# Name of the network analyzer configuration.
|
1329
|
+
#
|
1330
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1331
|
+
#
|
1332
|
+
# @example Request syntax with placeholder values
|
1333
|
+
#
|
1334
|
+
# resp = client.delete_network_analyzer_configuration({
|
1335
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
1336
|
+
# })
|
1337
|
+
#
|
1338
|
+
# @overload delete_network_analyzer_configuration(params = {})
|
1339
|
+
# @param [Hash] params ({})
|
1340
|
+
def delete_network_analyzer_configuration(params = {}, options = {})
|
1341
|
+
req = build_request(:delete_network_analyzer_configuration, params)
|
1342
|
+
req.send_request(options)
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
# Remove queued messages from the downlink queue.
|
1246
1346
|
#
|
1247
1347
|
# @option params [required, String] :id
|
1248
|
-
#
|
1348
|
+
# The ID of a given wireless device for which downlink messages will be
|
1349
|
+
# deleted.
|
1249
1350
|
#
|
1250
1351
|
# @option params [required, String] :message_id
|
1251
|
-
#
|
1252
|
-
#
|
1253
|
-
# deleted
|
1352
|
+
# If message ID is `"*"`, it cleares the entire downlink queue for a
|
1353
|
+
# given device, specified by the wireless device ID. Otherwise, the
|
1354
|
+
# downlink message with the specified message ID will be deleted.
|
1254
1355
|
#
|
1255
1356
|
# @option params [String] :wireless_device_type
|
1256
|
-
# The wireless device type,
|
1357
|
+
# The wireless device type, which can be either Sidewalk or LoRaWAN.
|
1257
1358
|
#
|
1258
1359
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1259
1360
|
#
|
@@ -1619,6 +1720,31 @@ module Aws::IoTWireless
|
|
1619
1720
|
req.send_request(options)
|
1620
1721
|
end
|
1621
1722
|
|
1723
|
+
# Get the event configuration based on resource types.
|
1724
|
+
#
|
1725
|
+
# @return [Types::GetEventConfigurationByResourceTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1726
|
+
#
|
1727
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#device_registration_state #device_registration_state} => Types::DeviceRegistrationStateResourceTypeEventConfiguration
|
1728
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#proximity #proximity} => Types::ProximityResourceTypeEventConfiguration
|
1729
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#join #join} => Types::JoinResourceTypeEventConfiguration
|
1730
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#connection_status #connection_status} => Types::ConnectionStatusResourceTypeEventConfiguration
|
1731
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#message_delivery_status #message_delivery_status} => Types::MessageDeliveryStatusResourceTypeEventConfiguration
|
1732
|
+
#
|
1733
|
+
# @example Response structure
|
1734
|
+
#
|
1735
|
+
# resp.device_registration_state.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
1736
|
+
# resp.proximity.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
1737
|
+
# resp.join.lo_ra_wan.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
1738
|
+
# resp.connection_status.lo_ra_wan.wireless_gateway_event_topic #=> String, one of "Enabled", "Disabled"
|
1739
|
+
# resp.message_delivery_status.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
1740
|
+
#
|
1741
|
+
# @overload get_event_configuration_by_resource_types(params = {})
|
1742
|
+
# @param [Hash] params ({})
|
1743
|
+
def get_event_configuration_by_resource_types(params = {}, options = {})
|
1744
|
+
req = build_request(:get_event_configuration_by_resource_types, params)
|
1745
|
+
req.send_request(options)
|
1746
|
+
end
|
1747
|
+
|
1622
1748
|
# Gets information about a FUOTA task.
|
1623
1749
|
#
|
1624
1750
|
# @option params [required, String] :id
|
@@ -1765,16 +1891,19 @@ module Aws::IoTWireless
|
|
1765
1891
|
req.send_request(options)
|
1766
1892
|
end
|
1767
1893
|
|
1768
|
-
# Get
|
1894
|
+
# Get network analyzer configuration.
|
1769
1895
|
#
|
1770
1896
|
# @option params [required, String] :configuration_name
|
1771
|
-
#
|
1897
|
+
# Name of the network analyzer configuration.
|
1772
1898
|
#
|
1773
1899
|
# @return [Types::GetNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1774
1900
|
#
|
1775
1901
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#trace_content #trace_content} => Types::TraceContent
|
1776
1902
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_devices #wireless_devices} => Array<String>
|
1777
1903
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_gateways #wireless_gateways} => Array<String>
|
1904
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#description #description} => String
|
1905
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#arn #arn} => String
|
1906
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#name #name} => String
|
1778
1907
|
#
|
1779
1908
|
# @example Request syntax with placeholder values
|
1780
1909
|
#
|
@@ -1790,6 +1919,9 @@ module Aws::IoTWireless
|
|
1790
1919
|
# resp.wireless_devices[0] #=> String
|
1791
1920
|
# resp.wireless_gateways #=> Array
|
1792
1921
|
# resp.wireless_gateways[0] #=> String
|
1922
|
+
# resp.description #=> String
|
1923
|
+
# resp.arn #=> String
|
1924
|
+
# resp.name #=> String
|
1793
1925
|
#
|
1794
1926
|
# @overload get_network_analyzer_configuration(params = {})
|
1795
1927
|
# @param [Hash] params ({})
|
@@ -1833,6 +1965,85 @@ module Aws::IoTWireless
|
|
1833
1965
|
req.send_request(options)
|
1834
1966
|
end
|
1835
1967
|
|
1968
|
+
# Get the position information for a given resource.
|
1969
|
+
#
|
1970
|
+
# @option params [required, String] :resource_identifier
|
1971
|
+
# Resource identifier used to retrieve the position information.
|
1972
|
+
#
|
1973
|
+
# @option params [required, String] :resource_type
|
1974
|
+
# Resource type of the resource for which position information is
|
1975
|
+
# retrieved.
|
1976
|
+
#
|
1977
|
+
# @return [Types::GetPositionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1978
|
+
#
|
1979
|
+
# * {Types::GetPositionResponse#position #position} => Array<Float>
|
1980
|
+
# * {Types::GetPositionResponse#accuracy #accuracy} => Types::Accuracy
|
1981
|
+
# * {Types::GetPositionResponse#solver_type #solver_type} => String
|
1982
|
+
# * {Types::GetPositionResponse#solver_provider #solver_provider} => String
|
1983
|
+
# * {Types::GetPositionResponse#solver_version #solver_version} => String
|
1984
|
+
# * {Types::GetPositionResponse#timestamp #timestamp} => String
|
1985
|
+
#
|
1986
|
+
# @example Request syntax with placeholder values
|
1987
|
+
#
|
1988
|
+
# resp = client.get_position({
|
1989
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
1990
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
1991
|
+
# })
|
1992
|
+
#
|
1993
|
+
# @example Response structure
|
1994
|
+
#
|
1995
|
+
# resp.position #=> Array
|
1996
|
+
# resp.position[0] #=> Float
|
1997
|
+
# resp.accuracy.horizontal_accuracy #=> Float
|
1998
|
+
# resp.accuracy.vertical_accuracy #=> Float
|
1999
|
+
# resp.solver_type #=> String, one of "GNSS"
|
2000
|
+
# resp.solver_provider #=> String, one of "Semtech"
|
2001
|
+
# resp.solver_version #=> String
|
2002
|
+
# resp.timestamp #=> String
|
2003
|
+
#
|
2004
|
+
# @overload get_position(params = {})
|
2005
|
+
# @param [Hash] params ({})
|
2006
|
+
def get_position(params = {}, options = {})
|
2007
|
+
req = build_request(:get_position, params)
|
2008
|
+
req.send_request(options)
|
2009
|
+
end
|
2010
|
+
|
2011
|
+
# Get position configuration for a given resource.
|
2012
|
+
#
|
2013
|
+
# @option params [required, String] :resource_identifier
|
2014
|
+
# Resource identifier used in a position configuration.
|
2015
|
+
#
|
2016
|
+
# @option params [required, String] :resource_type
|
2017
|
+
# Resource type of the resource for which position configuration is
|
2018
|
+
# retrieved.
|
2019
|
+
#
|
2020
|
+
# @return [Types::GetPositionConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2021
|
+
#
|
2022
|
+
# * {Types::GetPositionConfigurationResponse#solvers #solvers} => Types::PositionSolverDetails
|
2023
|
+
# * {Types::GetPositionConfigurationResponse#destination #destination} => String
|
2024
|
+
#
|
2025
|
+
# @example Request syntax with placeholder values
|
2026
|
+
#
|
2027
|
+
# resp = client.get_position_configuration({
|
2028
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
2029
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
2030
|
+
# })
|
2031
|
+
#
|
2032
|
+
# @example Response structure
|
2033
|
+
#
|
2034
|
+
# resp.solvers.semtech_gnss.provider #=> String, one of "Semtech"
|
2035
|
+
# resp.solvers.semtech_gnss.type #=> String, one of "GNSS"
|
2036
|
+
# resp.solvers.semtech_gnss.status #=> String, one of "Enabled", "Disabled"
|
2037
|
+
# resp.solvers.semtech_gnss.fec #=> String, one of "ROSE", "NONE"
|
2038
|
+
# resp.destination #=> String
|
2039
|
+
#
|
2040
|
+
# @overload get_position_configuration(params = {})
|
2041
|
+
# @param [Hash] params ({})
|
2042
|
+
def get_position_configuration(params = {}, options = {})
|
2043
|
+
req = build_request(:get_position_configuration, params)
|
2044
|
+
req.send_request(options)
|
2045
|
+
end
|
2046
|
+
|
1836
2047
|
# Get the event configuration for a particular resource identifier.
|
1837
2048
|
#
|
1838
2049
|
# @option params [required, String] :identifier
|
@@ -1844,25 +2055,36 @@ module Aws::IoTWireless
|
|
1844
2055
|
#
|
1845
2056
|
# @option params [String] :partner_type
|
1846
2057
|
# Partner type of the resource if the identifier type is
|
1847
|
-
# PartnerAccountId
|
2058
|
+
# `PartnerAccountId`.
|
1848
2059
|
#
|
1849
2060
|
# @return [Types::GetResourceEventConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1850
2061
|
#
|
1851
2062
|
# * {Types::GetResourceEventConfigurationResponse#device_registration_state #device_registration_state} => Types::DeviceRegistrationStateEventConfiguration
|
1852
2063
|
# * {Types::GetResourceEventConfigurationResponse#proximity #proximity} => Types::ProximityEventConfiguration
|
2064
|
+
# * {Types::GetResourceEventConfigurationResponse#join #join} => Types::JoinEventConfiguration
|
2065
|
+
# * {Types::GetResourceEventConfigurationResponse#connection_status #connection_status} => Types::ConnectionStatusEventConfiguration
|
2066
|
+
# * {Types::GetResourceEventConfigurationResponse#message_delivery_status #message_delivery_status} => Types::MessageDeliveryStatusEventConfiguration
|
1853
2067
|
#
|
1854
2068
|
# @example Request syntax with placeholder values
|
1855
2069
|
#
|
1856
2070
|
# resp = client.get_resource_event_configuration({
|
1857
2071
|
# identifier: "Identifier", # required
|
1858
|
-
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
2072
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
1859
2073
|
# partner_type: "Sidewalk", # accepts Sidewalk
|
1860
2074
|
# })
|
1861
2075
|
#
|
1862
2076
|
# @example Response structure
|
1863
2077
|
#
|
1864
2078
|
# resp.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2079
|
+
# resp.device_registration_state.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
1865
2080
|
# resp.proximity.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2081
|
+
# resp.proximity.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2082
|
+
# resp.join.lo_ra_wan.dev_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
2083
|
+
# resp.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2084
|
+
# resp.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
2085
|
+
# resp.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2086
|
+
# resp.message_delivery_status.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2087
|
+
# resp.message_delivery_status.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
1866
2088
|
#
|
1867
2089
|
# @overload get_resource_event_configuration(params = {})
|
1868
2090
|
# @param [Hash] params ({})
|
@@ -1912,7 +2134,8 @@ module Aws::IoTWireless
|
|
1912
2134
|
# @option params [String] :service_type
|
1913
2135
|
# The service type for which to get endpoint information about. Can be
|
1914
2136
|
# `CUPS` for the Configuration and Update Server endpoint, or `LNS` for
|
1915
|
-
# the LoRaWAN Network Server endpoint
|
2137
|
+
# the LoRaWAN Network Server endpoint or `CLAIM` for the global
|
2138
|
+
# endpoint.
|
1916
2139
|
#
|
1917
2140
|
# @return [Types::GetServiceEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1918
2141
|
#
|
@@ -2041,12 +2264,17 @@ module Aws::IoTWireless
|
|
2041
2264
|
# resp.lo_ra_wan.abp_v1_1.session_keys.s_nwk_s_int_key #=> String
|
2042
2265
|
# resp.lo_ra_wan.abp_v1_1.session_keys.nwk_s_enc_key #=> String
|
2043
2266
|
# resp.lo_ra_wan.abp_v1_1.session_keys.app_s_key #=> String
|
2267
|
+
# resp.lo_ra_wan.abp_v1_1.f_cnt_start #=> Integer
|
2044
2268
|
# resp.lo_ra_wan.abp_v1_0_x.dev_addr #=> String
|
2045
2269
|
# resp.lo_ra_wan.abp_v1_0_x.session_keys.nwk_s_key #=> String
|
2046
2270
|
# resp.lo_ra_wan.abp_v1_0_x.session_keys.app_s_key #=> String
|
2271
|
+
# resp.lo_ra_wan.abp_v1_0_x.f_cnt_start #=> Integer
|
2047
2272
|
# resp.lo_ra_wan.f_ports.fuota #=> Integer
|
2048
2273
|
# resp.lo_ra_wan.f_ports.multicast #=> Integer
|
2049
2274
|
# resp.lo_ra_wan.f_ports.clock_sync #=> Integer
|
2275
|
+
# resp.lo_ra_wan.f_ports.positioning.clock_sync #=> Integer
|
2276
|
+
# resp.lo_ra_wan.f_ports.positioning.stream #=> Integer
|
2277
|
+
# resp.lo_ra_wan.f_ports.positioning.gnss #=> Integer
|
2050
2278
|
# resp.sidewalk.amazon_id #=> String
|
2051
2279
|
# resp.sidewalk.sidewalk_id #=> String
|
2052
2280
|
# resp.sidewalk.sidewalk_manufacturing_sn #=> String
|
@@ -2398,6 +2626,58 @@ module Aws::IoTWireless
|
|
2398
2626
|
req.send_request(options)
|
2399
2627
|
end
|
2400
2628
|
|
2629
|
+
# List event configurations where at least one event topic has been
|
2630
|
+
# enabled.
|
2631
|
+
#
|
2632
|
+
# @option params [required, String] :resource_type
|
2633
|
+
# Resource type to filter event configurations.
|
2634
|
+
#
|
2635
|
+
# @option params [Integer] :max_results
|
2636
|
+
# The maximum number of results to return in this operation.
|
2637
|
+
#
|
2638
|
+
# @option params [String] :next_token
|
2639
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2640
|
+
# previous response; otherwise **null** to receive the first set of
|
2641
|
+
# results.
|
2642
|
+
#
|
2643
|
+
# @return [Types::ListEventConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2644
|
+
#
|
2645
|
+
# * {Types::ListEventConfigurationsResponse#next_token #next_token} => String
|
2646
|
+
# * {Types::ListEventConfigurationsResponse#event_configurations_list #event_configurations_list} => Array<Types::EventConfigurationItem>
|
2647
|
+
#
|
2648
|
+
# @example Request syntax with placeholder values
|
2649
|
+
#
|
2650
|
+
# resp = client.list_event_configurations({
|
2651
|
+
# resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
|
2652
|
+
# max_results: 1,
|
2653
|
+
# next_token: "NextToken",
|
2654
|
+
# })
|
2655
|
+
#
|
2656
|
+
# @example Response structure
|
2657
|
+
#
|
2658
|
+
# resp.next_token #=> String
|
2659
|
+
# resp.event_configurations_list #=> Array
|
2660
|
+
# resp.event_configurations_list[0].identifier #=> String
|
2661
|
+
# resp.event_configurations_list[0].identifier_type #=> String, one of "PartnerAccountId", "DevEui", "GatewayEui", "WirelessDeviceId", "WirelessGatewayId"
|
2662
|
+
# resp.event_configurations_list[0].partner_type #=> String, one of "Sidewalk"
|
2663
|
+
# resp.event_configurations_list[0].events.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2664
|
+
# resp.event_configurations_list[0].events.device_registration_state.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2665
|
+
# resp.event_configurations_list[0].events.proximity.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2666
|
+
# resp.event_configurations_list[0].events.proximity.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2667
|
+
# resp.event_configurations_list[0].events.join.lo_ra_wan.dev_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
2668
|
+
# resp.event_configurations_list[0].events.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2669
|
+
# resp.event_configurations_list[0].events.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
2670
|
+
# resp.event_configurations_list[0].events.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2671
|
+
# resp.event_configurations_list[0].events.message_delivery_status.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2672
|
+
# resp.event_configurations_list[0].events.message_delivery_status.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2673
|
+
#
|
2674
|
+
# @overload list_event_configurations(params = {})
|
2675
|
+
# @param [Hash] params ({})
|
2676
|
+
def list_event_configurations(params = {}, options = {})
|
2677
|
+
req = build_request(:list_event_configurations, params)
|
2678
|
+
req.send_request(options)
|
2679
|
+
end
|
2680
|
+
|
2401
2681
|
# Lists the FUOTA tasks registered to your AWS account.
|
2402
2682
|
#
|
2403
2683
|
# @option params [String] :next_token
|
@@ -2517,6 +2797,44 @@ module Aws::IoTWireless
|
|
2517
2797
|
req.send_request(options)
|
2518
2798
|
end
|
2519
2799
|
|
2800
|
+
# Lists the network analyzer configurations.
|
2801
|
+
#
|
2802
|
+
# @option params [Integer] :max_results
|
2803
|
+
# The maximum number of results to return in this operation.
|
2804
|
+
#
|
2805
|
+
# @option params [String] :next_token
|
2806
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2807
|
+
# previous response; otherwise **null** to receive the first set of
|
2808
|
+
# results.
|
2809
|
+
#
|
2810
|
+
# @return [Types::ListNetworkAnalyzerConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2811
|
+
#
|
2812
|
+
# * {Types::ListNetworkAnalyzerConfigurationsResponse#next_token #next_token} => String
|
2813
|
+
# * {Types::ListNetworkAnalyzerConfigurationsResponse#network_analyzer_configuration_list #network_analyzer_configuration_list} => Array<Types::NetworkAnalyzerConfigurations>
|
2814
|
+
#
|
2815
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2816
|
+
#
|
2817
|
+
# @example Request syntax with placeholder values
|
2818
|
+
#
|
2819
|
+
# resp = client.list_network_analyzer_configurations({
|
2820
|
+
# max_results: 1,
|
2821
|
+
# next_token: "NextToken",
|
2822
|
+
# })
|
2823
|
+
#
|
2824
|
+
# @example Response structure
|
2825
|
+
#
|
2826
|
+
# resp.next_token #=> String
|
2827
|
+
# resp.network_analyzer_configuration_list #=> Array
|
2828
|
+
# resp.network_analyzer_configuration_list[0].arn #=> String
|
2829
|
+
# resp.network_analyzer_configuration_list[0].name #=> String
|
2830
|
+
#
|
2831
|
+
# @overload list_network_analyzer_configurations(params = {})
|
2832
|
+
# @param [Hash] params ({})
|
2833
|
+
def list_network_analyzer_configurations(params = {}, options = {})
|
2834
|
+
req = build_request(:list_network_analyzer_configurations, params)
|
2835
|
+
req.send_request(options)
|
2836
|
+
end
|
2837
|
+
|
2520
2838
|
# Lists the partner accounts associated with your AWS account.
|
2521
2839
|
#
|
2522
2840
|
# @option params [String] :next_token
|
@@ -2554,10 +2872,59 @@ module Aws::IoTWireless
|
|
2554
2872
|
req.send_request(options)
|
2555
2873
|
end
|
2556
2874
|
|
2557
|
-
#
|
2875
|
+
# List position configurations for a given resource, such as positioning
|
2876
|
+
# solvers.
|
2877
|
+
#
|
2878
|
+
# @option params [String] :resource_type
|
2879
|
+
# Resource type for which position configurations are listed.
|
2880
|
+
#
|
2881
|
+
# @option params [Integer] :max_results
|
2882
|
+
# The maximum number of results to return in this operation.
|
2883
|
+
#
|
2884
|
+
# @option params [String] :next_token
|
2885
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2886
|
+
# previous response; otherwise **null** to receive the first set of
|
2887
|
+
# results.
|
2888
|
+
#
|
2889
|
+
# @return [Types::ListPositionConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2890
|
+
#
|
2891
|
+
# * {Types::ListPositionConfigurationsResponse#position_configuration_list #position_configuration_list} => Array<Types::PositionConfigurationItem>
|
2892
|
+
# * {Types::ListPositionConfigurationsResponse#next_token #next_token} => String
|
2893
|
+
#
|
2894
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2895
|
+
#
|
2896
|
+
# @example Request syntax with placeholder values
|
2897
|
+
#
|
2898
|
+
# resp = client.list_position_configurations({
|
2899
|
+
# resource_type: "WirelessDevice", # accepts WirelessDevice, WirelessGateway
|
2900
|
+
# max_results: 1,
|
2901
|
+
# next_token: "NextToken",
|
2902
|
+
# })
|
2903
|
+
#
|
2904
|
+
# @example Response structure
|
2905
|
+
#
|
2906
|
+
# resp.position_configuration_list #=> Array
|
2907
|
+
# resp.position_configuration_list[0].resource_identifier #=> String
|
2908
|
+
# resp.position_configuration_list[0].resource_type #=> String, one of "WirelessDevice", "WirelessGateway"
|
2909
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.provider #=> String, one of "Semtech"
|
2910
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.type #=> String, one of "GNSS"
|
2911
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.status #=> String, one of "Enabled", "Disabled"
|
2912
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.fec #=> String, one of "ROSE", "NONE"
|
2913
|
+
# resp.position_configuration_list[0].destination #=> String
|
2914
|
+
# resp.next_token #=> String
|
2915
|
+
#
|
2916
|
+
# @overload list_position_configurations(params = {})
|
2917
|
+
# @param [Hash] params ({})
|
2918
|
+
def list_position_configurations(params = {}, options = {})
|
2919
|
+
req = build_request(:list_position_configurations, params)
|
2920
|
+
req.send_request(options)
|
2921
|
+
end
|
2922
|
+
|
2923
|
+
# List queued messages in the downlink queue.
|
2558
2924
|
#
|
2559
2925
|
# @option params [required, String] :id
|
2560
|
-
#
|
2926
|
+
# The ID of a given wireless device which the downlink message packets
|
2927
|
+
# are being sent.
|
2561
2928
|
#
|
2562
2929
|
# @option params [String] :next_token
|
2563
2930
|
# To retrieve the next set of results, the `nextToken` value from a
|
@@ -2568,7 +2935,7 @@ module Aws::IoTWireless
|
|
2568
2935
|
# The maximum number of results to return in this operation.
|
2569
2936
|
#
|
2570
2937
|
# @option params [String] :wireless_device_type
|
2571
|
-
# The wireless device type,
|
2938
|
+
# The wireless device type, whic can be either Sidewalk or LoRaWAN.
|
2572
2939
|
#
|
2573
2940
|
# @return [Types::ListQueuedMessagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2574
2941
|
#
|
@@ -2846,6 +3213,47 @@ module Aws::IoTWireless
|
|
2846
3213
|
req.send_request(options)
|
2847
3214
|
end
|
2848
3215
|
|
3216
|
+
# Put position configuration for a given resource.
|
3217
|
+
#
|
3218
|
+
# @option params [required, String] :resource_identifier
|
3219
|
+
# Resource identifier used to update the position configuration.
|
3220
|
+
#
|
3221
|
+
# @option params [required, String] :resource_type
|
3222
|
+
# Resource type of the resource for which you want to update the
|
3223
|
+
# position configuration.
|
3224
|
+
#
|
3225
|
+
# @option params [Types::PositionSolverConfigurations] :solvers
|
3226
|
+
# The positioning solvers used to update the position configuration of
|
3227
|
+
# the resource.
|
3228
|
+
#
|
3229
|
+
# @option params [String] :destination
|
3230
|
+
# The position data destination that describes the AWS IoT rule that
|
3231
|
+
# processes the device's position data for use by AWS IoT Core for
|
3232
|
+
# LoRaWAN.
|
3233
|
+
#
|
3234
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3235
|
+
#
|
3236
|
+
# @example Request syntax with placeholder values
|
3237
|
+
#
|
3238
|
+
# resp = client.put_position_configuration({
|
3239
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
3240
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
3241
|
+
# solvers: {
|
3242
|
+
# semtech_gnss: {
|
3243
|
+
# status: "Enabled", # required, accepts Enabled, Disabled
|
3244
|
+
# fec: "ROSE", # required, accepts ROSE, NONE
|
3245
|
+
# },
|
3246
|
+
# },
|
3247
|
+
# destination: "DestinationName",
|
3248
|
+
# })
|
3249
|
+
#
|
3250
|
+
# @overload put_position_configuration(params = {})
|
3251
|
+
# @param [Hash] params ({})
|
3252
|
+
def put_position_configuration(params = {}, options = {})
|
3253
|
+
req = build_request(:put_position_configuration, params)
|
3254
|
+
req.send_request(options)
|
3255
|
+
end
|
3256
|
+
|
2849
3257
|
# Sets the log-level override for a resource-ID and resource-type. This
|
2850
3258
|
# option can be specified for a wireless gateway or a wireless device. A
|
2851
3259
|
# limit of 200 log level override can be set per account.
|
@@ -2860,7 +3268,9 @@ module Aws::IoTWireless
|
|
2860
3268
|
# `WirelessGateway`.
|
2861
3269
|
#
|
2862
3270
|
# @option params [required, String] :log_level
|
2863
|
-
# The log level for a log message.
|
3271
|
+
# The log level for a log message. The log levels can be disabled, or
|
3272
|
+
# set to `ERROR` to display less verbose logs containing only error
|
3273
|
+
# information, or to `INFO` for more detailed logs.
|
2864
3274
|
#
|
2865
3275
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2866
3276
|
#
|
@@ -2990,6 +3400,7 @@ module Aws::IoTWireless
|
|
2990
3400
|
# sidewalk: {
|
2991
3401
|
# seq: 1,
|
2992
3402
|
# message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
|
3403
|
+
# ack_mode_retry_duration_secs: 1,
|
2993
3404
|
# },
|
2994
3405
|
# },
|
2995
3406
|
# })
|
@@ -3249,6 +3660,67 @@ module Aws::IoTWireless
|
|
3249
3660
|
req.send_request(options)
|
3250
3661
|
end
|
3251
3662
|
|
3663
|
+
# Update the event configuration based on resource types.
|
3664
|
+
#
|
3665
|
+
# @option params [Types::DeviceRegistrationStateResourceTypeEventConfiguration] :device_registration_state
|
3666
|
+
# Device registration state resource type event configuration object for
|
3667
|
+
# enabling and disabling wireless gateway topic.
|
3668
|
+
#
|
3669
|
+
# @option params [Types::ProximityResourceTypeEventConfiguration] :proximity
|
3670
|
+
# Proximity resource type event configuration object for enabling and
|
3671
|
+
# disabling wireless gateway topic.
|
3672
|
+
#
|
3673
|
+
# @option params [Types::JoinResourceTypeEventConfiguration] :join
|
3674
|
+
# Join resource type event configuration object for enabling and
|
3675
|
+
# disabling wireless device topic.
|
3676
|
+
#
|
3677
|
+
# @option params [Types::ConnectionStatusResourceTypeEventConfiguration] :connection_status
|
3678
|
+
# Connection status resource type event configuration object for
|
3679
|
+
# enabling and disabling wireless gateway topic.
|
3680
|
+
#
|
3681
|
+
# @option params [Types::MessageDeliveryStatusResourceTypeEventConfiguration] :message_delivery_status
|
3682
|
+
# Message delivery status resource type event configuration object for
|
3683
|
+
# enabling and disabling wireless device topic.
|
3684
|
+
#
|
3685
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3686
|
+
#
|
3687
|
+
# @example Request syntax with placeholder values
|
3688
|
+
#
|
3689
|
+
# resp = client.update_event_configuration_by_resource_types({
|
3690
|
+
# device_registration_state: {
|
3691
|
+
# sidewalk: {
|
3692
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
3693
|
+
# },
|
3694
|
+
# },
|
3695
|
+
# proximity: {
|
3696
|
+
# sidewalk: {
|
3697
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
3698
|
+
# },
|
3699
|
+
# },
|
3700
|
+
# join: {
|
3701
|
+
# lo_ra_wan: {
|
3702
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
3703
|
+
# },
|
3704
|
+
# },
|
3705
|
+
# connection_status: {
|
3706
|
+
# lo_ra_wan: {
|
3707
|
+
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
3708
|
+
# },
|
3709
|
+
# },
|
3710
|
+
# message_delivery_status: {
|
3711
|
+
# sidewalk: {
|
3712
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
3713
|
+
# },
|
3714
|
+
# },
|
3715
|
+
# })
|
3716
|
+
#
|
3717
|
+
# @overload update_event_configuration_by_resource_types(params = {})
|
3718
|
+
# @param [Hash] params ({})
|
3719
|
+
def update_event_configuration_by_resource_types(params = {}, options = {})
|
3720
|
+
req = build_request(:update_event_configuration_by_resource_types, params)
|
3721
|
+
req.send_request(options)
|
3722
|
+
end
|
3723
|
+
|
3252
3724
|
# Updates properties of a FUOTA task.
|
3253
3725
|
#
|
3254
3726
|
# @option params [required, String] :id
|
@@ -3298,7 +3770,9 @@ module Aws::IoTWireless
|
|
3298
3770
|
# CloudWatch.
|
3299
3771
|
#
|
3300
3772
|
# @option params [String] :default_log_level
|
3301
|
-
# The log level for a log message.
|
3773
|
+
# The log level for a log message. The log levels can be disabled, or
|
3774
|
+
# set to `ERROR` to display less verbose logs containing only error
|
3775
|
+
# information, or to `INFO` for more detailed logs.
|
3302
3776
|
#
|
3303
3777
|
# @option params [Array<Types::WirelessDeviceLogOption>] :wireless_device_log_options
|
3304
3778
|
# The list of wireless device log options.
|
@@ -3380,25 +3854,36 @@ module Aws::IoTWireless
|
|
3380
3854
|
req.send_request(options)
|
3381
3855
|
end
|
3382
3856
|
|
3383
|
-
# Update
|
3857
|
+
# Update network analyzer configuration.
|
3384
3858
|
#
|
3385
3859
|
# @option params [required, String] :configuration_name
|
3386
|
-
#
|
3860
|
+
# Name of the network analyzer configuration.
|
3387
3861
|
#
|
3388
3862
|
# @option params [Types::TraceContent] :trace_content
|
3389
|
-
# Trace
|
3863
|
+
# Trace content for your wireless gateway and wireless device resources.
|
3390
3864
|
#
|
3391
3865
|
# @option params [Array<String>] :wireless_devices_to_add
|
3392
|
-
#
|
3866
|
+
# Wireless device resources to add to the network analyzer
|
3867
|
+
# configuration. Provide the `WirelessDeviceId` of the resource to add
|
3868
|
+
# in the input array.
|
3393
3869
|
#
|
3394
3870
|
# @option params [Array<String>] :wireless_devices_to_remove
|
3395
|
-
#
|
3871
|
+
# Wireless device resources to remove from the network analyzer
|
3872
|
+
# configuration. Provide the `WirelessDeviceId` of the resources to
|
3873
|
+
# remove in the input array.
|
3396
3874
|
#
|
3397
3875
|
# @option params [Array<String>] :wireless_gateways_to_add
|
3398
|
-
#
|
3876
|
+
# Wireless gateway resources to add to the network analyzer
|
3877
|
+
# configuration. Provide the `WirelessGatewayId` of the resource to add
|
3878
|
+
# in the input array.
|
3399
3879
|
#
|
3400
3880
|
# @option params [Array<String>] :wireless_gateways_to_remove
|
3401
|
-
#
|
3881
|
+
# Wireless gateway resources to remove from the network analyzer
|
3882
|
+
# configuration. Provide the `WirelessGatewayId` of the resources to
|
3883
|
+
# remove in the input array.
|
3884
|
+
#
|
3885
|
+
# @option params [String] :description
|
3886
|
+
# The description of the new resource.
|
3402
3887
|
#
|
3403
3888
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3404
3889
|
#
|
@@ -3414,6 +3899,7 @@ module Aws::IoTWireless
|
|
3414
3899
|
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
3415
3900
|
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
3416
3901
|
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
3902
|
+
# description: "Description",
|
3417
3903
|
# })
|
3418
3904
|
#
|
3419
3905
|
# @overload update_network_analyzer_configuration(params = {})
|
@@ -3453,6 +3939,34 @@ module Aws::IoTWireless
|
|
3453
3939
|
req.send_request(options)
|
3454
3940
|
end
|
3455
3941
|
|
3942
|
+
# Update the position information of a resource.
|
3943
|
+
#
|
3944
|
+
# @option params [required, String] :resource_identifier
|
3945
|
+
# Resource identifier of the resource for which position is updated.
|
3946
|
+
#
|
3947
|
+
# @option params [required, String] :resource_type
|
3948
|
+
# Resource type of the resource for which position is updated.
|
3949
|
+
#
|
3950
|
+
# @option params [required, Array<Float>] :position
|
3951
|
+
# The position information of the resource.
|
3952
|
+
#
|
3953
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3954
|
+
#
|
3955
|
+
# @example Request syntax with placeholder values
|
3956
|
+
#
|
3957
|
+
# resp = client.update_position({
|
3958
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
3959
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
3960
|
+
# position: [1.0], # required
|
3961
|
+
# })
|
3962
|
+
#
|
3963
|
+
# @overload update_position(params = {})
|
3964
|
+
# @param [Hash] params ({})
|
3965
|
+
def update_position(params = {}, options = {})
|
3966
|
+
req = build_request(:update_position, params)
|
3967
|
+
req.send_request(options)
|
3968
|
+
end
|
3969
|
+
|
3456
3970
|
# Update the event configuration for a particular resource identifier.
|
3457
3971
|
#
|
3458
3972
|
# @option params [required, String] :identifier
|
@@ -3464,13 +3978,22 @@ module Aws::IoTWireless
|
|
3464
3978
|
#
|
3465
3979
|
# @option params [String] :partner_type
|
3466
3980
|
# Partner type of the resource if the identifier type is
|
3467
|
-
# PartnerAccountId
|
3981
|
+
# `PartnerAccountId`
|
3468
3982
|
#
|
3469
3983
|
# @option params [Types::DeviceRegistrationStateEventConfiguration] :device_registration_state
|
3470
|
-
# Event configuration for the device registration state event
|
3984
|
+
# Event configuration for the device registration state event.
|
3471
3985
|
#
|
3472
3986
|
# @option params [Types::ProximityEventConfiguration] :proximity
|
3473
|
-
# Event configuration for the
|
3987
|
+
# Event configuration for the proximity event.
|
3988
|
+
#
|
3989
|
+
# @option params [Types::JoinEventConfiguration] :join
|
3990
|
+
# Event configuration for the join event.
|
3991
|
+
#
|
3992
|
+
# @option params [Types::ConnectionStatusEventConfiguration] :connection_status
|
3993
|
+
# Event configuration for the connection status event.
|
3994
|
+
#
|
3995
|
+
# @option params [Types::MessageDeliveryStatusEventConfiguration] :message_delivery_status
|
3996
|
+
# Event configuration for the message delivery status event.
|
3474
3997
|
#
|
3475
3998
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3476
3999
|
#
|
@@ -3478,17 +4001,37 @@ module Aws::IoTWireless
|
|
3478
4001
|
#
|
3479
4002
|
# resp = client.update_resource_event_configuration({
|
3480
4003
|
# identifier: "Identifier", # required
|
3481
|
-
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
4004
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
3482
4005
|
# partner_type: "Sidewalk", # accepts Sidewalk
|
3483
4006
|
# device_registration_state: {
|
3484
4007
|
# sidewalk: {
|
3485
4008
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3486
4009
|
# },
|
4010
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3487
4011
|
# },
|
3488
4012
|
# proximity: {
|
3489
4013
|
# sidewalk: {
|
3490
4014
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3491
4015
|
# },
|
4016
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4017
|
+
# },
|
4018
|
+
# join: {
|
4019
|
+
# lo_ra_wan: {
|
4020
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
4021
|
+
# },
|
4022
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4023
|
+
# },
|
4024
|
+
# connection_status: {
|
4025
|
+
# lo_ra_wan: {
|
4026
|
+
# gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
4027
|
+
# },
|
4028
|
+
# wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4029
|
+
# },
|
4030
|
+
# message_delivery_status: {
|
4031
|
+
# sidewalk: {
|
4032
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4033
|
+
# },
|
4034
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3492
4035
|
# },
|
3493
4036
|
# })
|
3494
4037
|
#
|
@@ -3528,6 +4071,19 @@ module Aws::IoTWireless
|
|
3528
4071
|
# lo_ra_wan: {
|
3529
4072
|
# device_profile_id: "DeviceProfileId",
|
3530
4073
|
# service_profile_id: "ServiceProfileId",
|
4074
|
+
# abp_v1_1: {
|
4075
|
+
# f_cnt_start: 1,
|
4076
|
+
# },
|
4077
|
+
# abp_v1_0_x: {
|
4078
|
+
# f_cnt_start: 1,
|
4079
|
+
# },
|
4080
|
+
# f_ports: {
|
4081
|
+
# positioning: {
|
4082
|
+
# clock_sync: 1,
|
4083
|
+
# stream: 1,
|
4084
|
+
# gnss: 1,
|
4085
|
+
# },
|
4086
|
+
# },
|
3531
4087
|
# },
|
3532
4088
|
# })
|
3533
4089
|
#
|
@@ -3590,7 +4146,7 @@ module Aws::IoTWireless
|
|
3590
4146
|
params: params,
|
3591
4147
|
config: config)
|
3592
4148
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
3593
|
-
context[:gem_version] = '1.
|
4149
|
+
context[:gem_version] = '1.25.0'
|
3594
4150
|
Seahorse::Client::Request.new(handlers, context)
|
3595
4151
|
end
|
3596
4152
|
|