aws-sdk-iotwireless 1.21.0 → 1.24.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 +558 -28
- data/lib/aws-sdk-iotwireless/client_api.rb +424 -0
- data/lib/aws-sdk-iotwireless/types.rb +1338 -86
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +4 -4
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
@@ -75,6 +76,7 @@ module Aws::IoTWireless
|
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
@@ -834,6 +836,77 @@ module Aws::IoTWireless
|
|
|
834
836
|
req.send_request(options)
|
|
835
837
|
end
|
|
836
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
|
+
|
|
837
910
|
# Creates a new service profile.
|
|
838
911
|
#
|
|
839
912
|
# @option params [String] :name
|
|
@@ -954,6 +1027,7 @@ module Aws::IoTWireless
|
|
|
954
1027
|
# nwk_s_enc_key: "NwkSEncKey",
|
|
955
1028
|
# app_s_key: "AppSKey",
|
|
956
1029
|
# },
|
|
1030
|
+
# f_cnt_start: 1,
|
|
957
1031
|
# },
|
|
958
1032
|
# abp_v1_0_x: {
|
|
959
1033
|
# dev_addr: "DevAddr",
|
|
@@ -961,11 +1035,17 @@ module Aws::IoTWireless
|
|
|
961
1035
|
# nwk_s_key: "NwkSKey",
|
|
962
1036
|
# app_s_key: "AppSKey",
|
|
963
1037
|
# },
|
|
1038
|
+
# f_cnt_start: 1,
|
|
964
1039
|
# },
|
|
965
1040
|
# f_ports: {
|
|
966
1041
|
# fuota: 1,
|
|
967
1042
|
# multicast: 1,
|
|
968
1043
|
# clock_sync: 1,
|
|
1044
|
+
# positioning: {
|
|
1045
|
+
# clock_sync: 1,
|
|
1046
|
+
# stream: 1,
|
|
1047
|
+
# gnss: 1,
|
|
1048
|
+
# },
|
|
969
1049
|
# },
|
|
970
1050
|
# },
|
|
971
1051
|
# tags: [
|
|
@@ -1240,18 +1320,39 @@ module Aws::IoTWireless
|
|
|
1240
1320
|
req.send_request(options)
|
|
1241
1321
|
end
|
|
1242
1322
|
|
|
1243
|
-
#
|
|
1323
|
+
# Deletes a network analyzer configuration.
|
|
1324
|
+
#
|
|
1325
|
+
# @option params [required, String] :configuration_name
|
|
1326
|
+
# Name of the network analyzer configuration.
|
|
1327
|
+
#
|
|
1328
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1329
|
+
#
|
|
1330
|
+
# @example Request syntax with placeholder values
|
|
1331
|
+
#
|
|
1332
|
+
# resp = client.delete_network_analyzer_configuration({
|
|
1333
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
|
1334
|
+
# })
|
|
1335
|
+
#
|
|
1336
|
+
# @overload delete_network_analyzer_configuration(params = {})
|
|
1337
|
+
# @param [Hash] params ({})
|
|
1338
|
+
def delete_network_analyzer_configuration(params = {}, options = {})
|
|
1339
|
+
req = build_request(:delete_network_analyzer_configuration, params)
|
|
1340
|
+
req.send_request(options)
|
|
1341
|
+
end
|
|
1342
|
+
|
|
1343
|
+
# Remove queued messages from the downlink queue.
|
|
1244
1344
|
#
|
|
1245
1345
|
# @option params [required, String] :id
|
|
1246
|
-
#
|
|
1346
|
+
# The ID of a given wireless device for which downlink messages will be
|
|
1347
|
+
# deleted.
|
|
1247
1348
|
#
|
|
1248
1349
|
# @option params [required, String] :message_id
|
|
1249
|
-
#
|
|
1250
|
-
#
|
|
1251
|
-
# deleted
|
|
1350
|
+
# If message ID is `"*"`, it cleares the entire downlink queue for a
|
|
1351
|
+
# given device, specified by the wireless device ID. Otherwise, the
|
|
1352
|
+
# downlink message with the specified message ID will be deleted.
|
|
1252
1353
|
#
|
|
1253
1354
|
# @option params [String] :wireless_device_type
|
|
1254
|
-
# The wireless device type,
|
|
1355
|
+
# The wireless device type, which can be either Sidewalk or LoRaWAN.
|
|
1255
1356
|
#
|
|
1256
1357
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1257
1358
|
#
|
|
@@ -1617,6 +1718,29 @@ module Aws::IoTWireless
|
|
|
1617
1718
|
req.send_request(options)
|
|
1618
1719
|
end
|
|
1619
1720
|
|
|
1721
|
+
# Get the event configuration based on resource types.
|
|
1722
|
+
#
|
|
1723
|
+
# @return [Types::GetEventConfigurationByResourceTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1724
|
+
#
|
|
1725
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#device_registration_state #device_registration_state} => Types::DeviceRegistrationStateResourceTypeEventConfiguration
|
|
1726
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#proximity #proximity} => Types::ProximityResourceTypeEventConfiguration
|
|
1727
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#join #join} => Types::JoinResourceTypeEventConfiguration
|
|
1728
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#connection_status #connection_status} => Types::ConnectionStatusResourceTypeEventConfiguration
|
|
1729
|
+
#
|
|
1730
|
+
# @example Response structure
|
|
1731
|
+
#
|
|
1732
|
+
# resp.device_registration_state.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
|
1733
|
+
# resp.proximity.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
|
1734
|
+
# resp.join.lo_ra_wan.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
|
1735
|
+
# resp.connection_status.lo_ra_wan.wireless_gateway_event_topic #=> String, one of "Enabled", "Disabled"
|
|
1736
|
+
#
|
|
1737
|
+
# @overload get_event_configuration_by_resource_types(params = {})
|
|
1738
|
+
# @param [Hash] params ({})
|
|
1739
|
+
def get_event_configuration_by_resource_types(params = {}, options = {})
|
|
1740
|
+
req = build_request(:get_event_configuration_by_resource_types, params)
|
|
1741
|
+
req.send_request(options)
|
|
1742
|
+
end
|
|
1743
|
+
|
|
1620
1744
|
# Gets information about a FUOTA task.
|
|
1621
1745
|
#
|
|
1622
1746
|
# @option params [required, String] :id
|
|
@@ -1763,16 +1887,19 @@ module Aws::IoTWireless
|
|
|
1763
1887
|
req.send_request(options)
|
|
1764
1888
|
end
|
|
1765
1889
|
|
|
1766
|
-
# Get
|
|
1890
|
+
# Get network analyzer configuration.
|
|
1767
1891
|
#
|
|
1768
1892
|
# @option params [required, String] :configuration_name
|
|
1769
|
-
#
|
|
1893
|
+
# Name of the network analyzer configuration.
|
|
1770
1894
|
#
|
|
1771
1895
|
# @return [Types::GetNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1772
1896
|
#
|
|
1773
1897
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#trace_content #trace_content} => Types::TraceContent
|
|
1774
1898
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_devices #wireless_devices} => Array<String>
|
|
1775
1899
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_gateways #wireless_gateways} => Array<String>
|
|
1900
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#description #description} => String
|
|
1901
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#arn #arn} => String
|
|
1902
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#name #name} => String
|
|
1776
1903
|
#
|
|
1777
1904
|
# @example Request syntax with placeholder values
|
|
1778
1905
|
#
|
|
@@ -1788,6 +1915,9 @@ module Aws::IoTWireless
|
|
|
1788
1915
|
# resp.wireless_devices[0] #=> String
|
|
1789
1916
|
# resp.wireless_gateways #=> Array
|
|
1790
1917
|
# resp.wireless_gateways[0] #=> String
|
|
1918
|
+
# resp.description #=> String
|
|
1919
|
+
# resp.arn #=> String
|
|
1920
|
+
# resp.name #=> String
|
|
1791
1921
|
#
|
|
1792
1922
|
# @overload get_network_analyzer_configuration(params = {})
|
|
1793
1923
|
# @param [Hash] params ({})
|
|
@@ -1831,6 +1961,85 @@ module Aws::IoTWireless
|
|
|
1831
1961
|
req.send_request(options)
|
|
1832
1962
|
end
|
|
1833
1963
|
|
|
1964
|
+
# Get the position information for a given resource.
|
|
1965
|
+
#
|
|
1966
|
+
# @option params [required, String] :resource_identifier
|
|
1967
|
+
# Resource identifier used to retrieve the position information.
|
|
1968
|
+
#
|
|
1969
|
+
# @option params [required, String] :resource_type
|
|
1970
|
+
# Resource type of the resource for which position information is
|
|
1971
|
+
# retrieved.
|
|
1972
|
+
#
|
|
1973
|
+
# @return [Types::GetPositionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1974
|
+
#
|
|
1975
|
+
# * {Types::GetPositionResponse#position #position} => Array<Float>
|
|
1976
|
+
# * {Types::GetPositionResponse#accuracy #accuracy} => Types::Accuracy
|
|
1977
|
+
# * {Types::GetPositionResponse#solver_type #solver_type} => String
|
|
1978
|
+
# * {Types::GetPositionResponse#solver_provider #solver_provider} => String
|
|
1979
|
+
# * {Types::GetPositionResponse#solver_version #solver_version} => String
|
|
1980
|
+
# * {Types::GetPositionResponse#timestamp #timestamp} => String
|
|
1981
|
+
#
|
|
1982
|
+
# @example Request syntax with placeholder values
|
|
1983
|
+
#
|
|
1984
|
+
# resp = client.get_position({
|
|
1985
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
|
1986
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
|
1987
|
+
# })
|
|
1988
|
+
#
|
|
1989
|
+
# @example Response structure
|
|
1990
|
+
#
|
|
1991
|
+
# resp.position #=> Array
|
|
1992
|
+
# resp.position[0] #=> Float
|
|
1993
|
+
# resp.accuracy.horizontal_accuracy #=> Float
|
|
1994
|
+
# resp.accuracy.vertical_accuracy #=> Float
|
|
1995
|
+
# resp.solver_type #=> String, one of "GNSS"
|
|
1996
|
+
# resp.solver_provider #=> String, one of "Semtech"
|
|
1997
|
+
# resp.solver_version #=> String
|
|
1998
|
+
# resp.timestamp #=> String
|
|
1999
|
+
#
|
|
2000
|
+
# @overload get_position(params = {})
|
|
2001
|
+
# @param [Hash] params ({})
|
|
2002
|
+
def get_position(params = {}, options = {})
|
|
2003
|
+
req = build_request(:get_position, params)
|
|
2004
|
+
req.send_request(options)
|
|
2005
|
+
end
|
|
2006
|
+
|
|
2007
|
+
# Get position configuration for a given resource.
|
|
2008
|
+
#
|
|
2009
|
+
# @option params [required, String] :resource_identifier
|
|
2010
|
+
# Resource identifier used in a position configuration.
|
|
2011
|
+
#
|
|
2012
|
+
# @option params [required, String] :resource_type
|
|
2013
|
+
# Resource type of the resource for which position configuration is
|
|
2014
|
+
# retrieved.
|
|
2015
|
+
#
|
|
2016
|
+
# @return [Types::GetPositionConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2017
|
+
#
|
|
2018
|
+
# * {Types::GetPositionConfigurationResponse#solvers #solvers} => Types::PositionSolverDetails
|
|
2019
|
+
# * {Types::GetPositionConfigurationResponse#destination #destination} => String
|
|
2020
|
+
#
|
|
2021
|
+
# @example Request syntax with placeholder values
|
|
2022
|
+
#
|
|
2023
|
+
# resp = client.get_position_configuration({
|
|
2024
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
|
2025
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
|
2026
|
+
# })
|
|
2027
|
+
#
|
|
2028
|
+
# @example Response structure
|
|
2029
|
+
#
|
|
2030
|
+
# resp.solvers.semtech_gnss.provider #=> String, one of "Semtech"
|
|
2031
|
+
# resp.solvers.semtech_gnss.type #=> String, one of "GNSS"
|
|
2032
|
+
# resp.solvers.semtech_gnss.status #=> String, one of "Enabled", "Disabled"
|
|
2033
|
+
# resp.solvers.semtech_gnss.fec #=> String, one of "ROSE", "NONE"
|
|
2034
|
+
# resp.destination #=> String
|
|
2035
|
+
#
|
|
2036
|
+
# @overload get_position_configuration(params = {})
|
|
2037
|
+
# @param [Hash] params ({})
|
|
2038
|
+
def get_position_configuration(params = {}, options = {})
|
|
2039
|
+
req = build_request(:get_position_configuration, params)
|
|
2040
|
+
req.send_request(options)
|
|
2041
|
+
end
|
|
2042
|
+
|
|
1834
2043
|
# Get the event configuration for a particular resource identifier.
|
|
1835
2044
|
#
|
|
1836
2045
|
# @option params [required, String] :identifier
|
|
@@ -1842,25 +2051,33 @@ module Aws::IoTWireless
|
|
|
1842
2051
|
#
|
|
1843
2052
|
# @option params [String] :partner_type
|
|
1844
2053
|
# Partner type of the resource if the identifier type is
|
|
1845
|
-
# PartnerAccountId
|
|
2054
|
+
# `PartnerAccountId`.
|
|
1846
2055
|
#
|
|
1847
2056
|
# @return [Types::GetResourceEventConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1848
2057
|
#
|
|
1849
2058
|
# * {Types::GetResourceEventConfigurationResponse#device_registration_state #device_registration_state} => Types::DeviceRegistrationStateEventConfiguration
|
|
1850
2059
|
# * {Types::GetResourceEventConfigurationResponse#proximity #proximity} => Types::ProximityEventConfiguration
|
|
2060
|
+
# * {Types::GetResourceEventConfigurationResponse#join #join} => Types::JoinEventConfiguration
|
|
2061
|
+
# * {Types::GetResourceEventConfigurationResponse#connection_status #connection_status} => Types::ConnectionStatusEventConfiguration
|
|
1851
2062
|
#
|
|
1852
2063
|
# @example Request syntax with placeholder values
|
|
1853
2064
|
#
|
|
1854
2065
|
# resp = client.get_resource_event_configuration({
|
|
1855
2066
|
# identifier: "Identifier", # required
|
|
1856
|
-
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
|
2067
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
|
1857
2068
|
# partner_type: "Sidewalk", # accepts Sidewalk
|
|
1858
2069
|
# })
|
|
1859
2070
|
#
|
|
1860
2071
|
# @example Response structure
|
|
1861
2072
|
#
|
|
1862
2073
|
# resp.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2074
|
+
# resp.device_registration_state.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
1863
2075
|
# resp.proximity.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2076
|
+
# resp.proximity.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2077
|
+
# resp.join.lo_ra_wan.dev_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2078
|
+
# resp.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2079
|
+
# resp.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2080
|
+
# resp.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
1864
2081
|
#
|
|
1865
2082
|
# @overload get_resource_event_configuration(params = {})
|
|
1866
2083
|
# @param [Hash] params ({})
|
|
@@ -1910,7 +2127,8 @@ module Aws::IoTWireless
|
|
|
1910
2127
|
# @option params [String] :service_type
|
|
1911
2128
|
# The service type for which to get endpoint information about. Can be
|
|
1912
2129
|
# `CUPS` for the Configuration and Update Server endpoint, or `LNS` for
|
|
1913
|
-
# the LoRaWAN Network Server endpoint
|
|
2130
|
+
# the LoRaWAN Network Server endpoint or `CLAIM` for the global
|
|
2131
|
+
# endpoint.
|
|
1914
2132
|
#
|
|
1915
2133
|
# @return [Types::GetServiceEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1916
2134
|
#
|
|
@@ -2039,12 +2257,17 @@ module Aws::IoTWireless
|
|
|
2039
2257
|
# resp.lo_ra_wan.abp_v1_1.session_keys.s_nwk_s_int_key #=> String
|
|
2040
2258
|
# resp.lo_ra_wan.abp_v1_1.session_keys.nwk_s_enc_key #=> String
|
|
2041
2259
|
# resp.lo_ra_wan.abp_v1_1.session_keys.app_s_key #=> String
|
|
2260
|
+
# resp.lo_ra_wan.abp_v1_1.f_cnt_start #=> Integer
|
|
2042
2261
|
# resp.lo_ra_wan.abp_v1_0_x.dev_addr #=> String
|
|
2043
2262
|
# resp.lo_ra_wan.abp_v1_0_x.session_keys.nwk_s_key #=> String
|
|
2044
2263
|
# resp.lo_ra_wan.abp_v1_0_x.session_keys.app_s_key #=> String
|
|
2264
|
+
# resp.lo_ra_wan.abp_v1_0_x.f_cnt_start #=> Integer
|
|
2045
2265
|
# resp.lo_ra_wan.f_ports.fuota #=> Integer
|
|
2046
2266
|
# resp.lo_ra_wan.f_ports.multicast #=> Integer
|
|
2047
2267
|
# resp.lo_ra_wan.f_ports.clock_sync #=> Integer
|
|
2268
|
+
# resp.lo_ra_wan.f_ports.positioning.clock_sync #=> Integer
|
|
2269
|
+
# resp.lo_ra_wan.f_ports.positioning.stream #=> Integer
|
|
2270
|
+
# resp.lo_ra_wan.f_ports.positioning.gnss #=> Integer
|
|
2048
2271
|
# resp.sidewalk.amazon_id #=> String
|
|
2049
2272
|
# resp.sidewalk.sidewalk_id #=> String
|
|
2050
2273
|
# resp.sidewalk.sidewalk_manufacturing_sn #=> String
|
|
@@ -2396,6 +2619,56 @@ module Aws::IoTWireless
|
|
|
2396
2619
|
req.send_request(options)
|
|
2397
2620
|
end
|
|
2398
2621
|
|
|
2622
|
+
# List event configurations where at least one event topic has been
|
|
2623
|
+
# enabled.
|
|
2624
|
+
#
|
|
2625
|
+
# @option params [required, String] :resource_type
|
|
2626
|
+
# Resource type to filter event configurations.
|
|
2627
|
+
#
|
|
2628
|
+
# @option params [Integer] :max_results
|
|
2629
|
+
# The maximum number of results to return in this operation.
|
|
2630
|
+
#
|
|
2631
|
+
# @option params [String] :next_token
|
|
2632
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
|
2633
|
+
# previous response; otherwise **null** to receive the first set of
|
|
2634
|
+
# results.
|
|
2635
|
+
#
|
|
2636
|
+
# @return [Types::ListEventConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2637
|
+
#
|
|
2638
|
+
# * {Types::ListEventConfigurationsResponse#next_token #next_token} => String
|
|
2639
|
+
# * {Types::ListEventConfigurationsResponse#event_configurations_list #event_configurations_list} => Array<Types::EventConfigurationItem>
|
|
2640
|
+
#
|
|
2641
|
+
# @example Request syntax with placeholder values
|
|
2642
|
+
#
|
|
2643
|
+
# resp = client.list_event_configurations({
|
|
2644
|
+
# resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
|
|
2645
|
+
# max_results: 1,
|
|
2646
|
+
# next_token: "NextToken",
|
|
2647
|
+
# })
|
|
2648
|
+
#
|
|
2649
|
+
# @example Response structure
|
|
2650
|
+
#
|
|
2651
|
+
# resp.next_token #=> String
|
|
2652
|
+
# resp.event_configurations_list #=> Array
|
|
2653
|
+
# resp.event_configurations_list[0].identifier #=> String
|
|
2654
|
+
# resp.event_configurations_list[0].identifier_type #=> String, one of "PartnerAccountId", "DevEui", "GatewayEui", "WirelessDeviceId", "WirelessGatewayId"
|
|
2655
|
+
# resp.event_configurations_list[0].partner_type #=> String, one of "Sidewalk"
|
|
2656
|
+
# resp.event_configurations_list[0].events.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2657
|
+
# resp.event_configurations_list[0].events.device_registration_state.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2658
|
+
# resp.event_configurations_list[0].events.proximity.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2659
|
+
# resp.event_configurations_list[0].events.proximity.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2660
|
+
# resp.event_configurations_list[0].events.join.lo_ra_wan.dev_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2661
|
+
# resp.event_configurations_list[0].events.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2662
|
+
# resp.event_configurations_list[0].events.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2663
|
+
# resp.event_configurations_list[0].events.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
|
|
2664
|
+
#
|
|
2665
|
+
# @overload list_event_configurations(params = {})
|
|
2666
|
+
# @param [Hash] params ({})
|
|
2667
|
+
def list_event_configurations(params = {}, options = {})
|
|
2668
|
+
req = build_request(:list_event_configurations, params)
|
|
2669
|
+
req.send_request(options)
|
|
2670
|
+
end
|
|
2671
|
+
|
|
2399
2672
|
# Lists the FUOTA tasks registered to your AWS account.
|
|
2400
2673
|
#
|
|
2401
2674
|
# @option params [String] :next_token
|
|
@@ -2515,6 +2788,44 @@ module Aws::IoTWireless
|
|
|
2515
2788
|
req.send_request(options)
|
|
2516
2789
|
end
|
|
2517
2790
|
|
|
2791
|
+
# Lists the network analyzer configurations.
|
|
2792
|
+
#
|
|
2793
|
+
# @option params [Integer] :max_results
|
|
2794
|
+
# The maximum number of results to return in this operation.
|
|
2795
|
+
#
|
|
2796
|
+
# @option params [String] :next_token
|
|
2797
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
|
2798
|
+
# previous response; otherwise **null** to receive the first set of
|
|
2799
|
+
# results.
|
|
2800
|
+
#
|
|
2801
|
+
# @return [Types::ListNetworkAnalyzerConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2802
|
+
#
|
|
2803
|
+
# * {Types::ListNetworkAnalyzerConfigurationsResponse#next_token #next_token} => String
|
|
2804
|
+
# * {Types::ListNetworkAnalyzerConfigurationsResponse#network_analyzer_configuration_list #network_analyzer_configuration_list} => Array<Types::NetworkAnalyzerConfigurations>
|
|
2805
|
+
#
|
|
2806
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
2807
|
+
#
|
|
2808
|
+
# @example Request syntax with placeholder values
|
|
2809
|
+
#
|
|
2810
|
+
# resp = client.list_network_analyzer_configurations({
|
|
2811
|
+
# max_results: 1,
|
|
2812
|
+
# next_token: "NextToken",
|
|
2813
|
+
# })
|
|
2814
|
+
#
|
|
2815
|
+
# @example Response structure
|
|
2816
|
+
#
|
|
2817
|
+
# resp.next_token #=> String
|
|
2818
|
+
# resp.network_analyzer_configuration_list #=> Array
|
|
2819
|
+
# resp.network_analyzer_configuration_list[0].arn #=> String
|
|
2820
|
+
# resp.network_analyzer_configuration_list[0].name #=> String
|
|
2821
|
+
#
|
|
2822
|
+
# @overload list_network_analyzer_configurations(params = {})
|
|
2823
|
+
# @param [Hash] params ({})
|
|
2824
|
+
def list_network_analyzer_configurations(params = {}, options = {})
|
|
2825
|
+
req = build_request(:list_network_analyzer_configurations, params)
|
|
2826
|
+
req.send_request(options)
|
|
2827
|
+
end
|
|
2828
|
+
|
|
2518
2829
|
# Lists the partner accounts associated with your AWS account.
|
|
2519
2830
|
#
|
|
2520
2831
|
# @option params [String] :next_token
|
|
@@ -2552,10 +2863,59 @@ module Aws::IoTWireless
|
|
|
2552
2863
|
req.send_request(options)
|
|
2553
2864
|
end
|
|
2554
2865
|
|
|
2555
|
-
#
|
|
2866
|
+
# List position configurations for a given resource, such as positioning
|
|
2867
|
+
# solvers.
|
|
2868
|
+
#
|
|
2869
|
+
# @option params [String] :resource_type
|
|
2870
|
+
# Resource type for which position configurations are listed.
|
|
2871
|
+
#
|
|
2872
|
+
# @option params [Integer] :max_results
|
|
2873
|
+
# The maximum number of results to return in this operation.
|
|
2874
|
+
#
|
|
2875
|
+
# @option params [String] :next_token
|
|
2876
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
|
2877
|
+
# previous response; otherwise **null** to receive the first set of
|
|
2878
|
+
# results.
|
|
2879
|
+
#
|
|
2880
|
+
# @return [Types::ListPositionConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2881
|
+
#
|
|
2882
|
+
# * {Types::ListPositionConfigurationsResponse#position_configuration_list #position_configuration_list} => Array<Types::PositionConfigurationItem>
|
|
2883
|
+
# * {Types::ListPositionConfigurationsResponse#next_token #next_token} => String
|
|
2884
|
+
#
|
|
2885
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
2886
|
+
#
|
|
2887
|
+
# @example Request syntax with placeholder values
|
|
2888
|
+
#
|
|
2889
|
+
# resp = client.list_position_configurations({
|
|
2890
|
+
# resource_type: "WirelessDevice", # accepts WirelessDevice, WirelessGateway
|
|
2891
|
+
# max_results: 1,
|
|
2892
|
+
# next_token: "NextToken",
|
|
2893
|
+
# })
|
|
2894
|
+
#
|
|
2895
|
+
# @example Response structure
|
|
2896
|
+
#
|
|
2897
|
+
# resp.position_configuration_list #=> Array
|
|
2898
|
+
# resp.position_configuration_list[0].resource_identifier #=> String
|
|
2899
|
+
# resp.position_configuration_list[0].resource_type #=> String, one of "WirelessDevice", "WirelessGateway"
|
|
2900
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.provider #=> String, one of "Semtech"
|
|
2901
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.type #=> String, one of "GNSS"
|
|
2902
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.status #=> String, one of "Enabled", "Disabled"
|
|
2903
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.fec #=> String, one of "ROSE", "NONE"
|
|
2904
|
+
# resp.position_configuration_list[0].destination #=> String
|
|
2905
|
+
# resp.next_token #=> String
|
|
2906
|
+
#
|
|
2907
|
+
# @overload list_position_configurations(params = {})
|
|
2908
|
+
# @param [Hash] params ({})
|
|
2909
|
+
def list_position_configurations(params = {}, options = {})
|
|
2910
|
+
req = build_request(:list_position_configurations, params)
|
|
2911
|
+
req.send_request(options)
|
|
2912
|
+
end
|
|
2913
|
+
|
|
2914
|
+
# List queued messages in the downlink queue.
|
|
2556
2915
|
#
|
|
2557
2916
|
# @option params [required, String] :id
|
|
2558
|
-
#
|
|
2917
|
+
# The ID of a given wireless device which the downlink message packets
|
|
2918
|
+
# are being sent.
|
|
2559
2919
|
#
|
|
2560
2920
|
# @option params [String] :next_token
|
|
2561
2921
|
# To retrieve the next set of results, the `nextToken` value from a
|
|
@@ -2566,7 +2926,7 @@ module Aws::IoTWireless
|
|
|
2566
2926
|
# The maximum number of results to return in this operation.
|
|
2567
2927
|
#
|
|
2568
2928
|
# @option params [String] :wireless_device_type
|
|
2569
|
-
# The wireless device type,
|
|
2929
|
+
# The wireless device type, whic can be either Sidewalk or LoRaWAN.
|
|
2570
2930
|
#
|
|
2571
2931
|
# @return [Types::ListQueuedMessagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2572
2932
|
#
|
|
@@ -2844,6 +3204,47 @@ module Aws::IoTWireless
|
|
|
2844
3204
|
req.send_request(options)
|
|
2845
3205
|
end
|
|
2846
3206
|
|
|
3207
|
+
# Put position configuration for a given resource.
|
|
3208
|
+
#
|
|
3209
|
+
# @option params [required, String] :resource_identifier
|
|
3210
|
+
# Resource identifier used to update the position configuration.
|
|
3211
|
+
#
|
|
3212
|
+
# @option params [required, String] :resource_type
|
|
3213
|
+
# Resource type of the resource for which you want to update the
|
|
3214
|
+
# position configuration.
|
|
3215
|
+
#
|
|
3216
|
+
# @option params [Types::PositionSolverConfigurations] :solvers
|
|
3217
|
+
# The positioning solvers used to update the position configuration of
|
|
3218
|
+
# the resource.
|
|
3219
|
+
#
|
|
3220
|
+
# @option params [String] :destination
|
|
3221
|
+
# The position data destination that describes the AWS IoT rule that
|
|
3222
|
+
# processes the device's position data for use by AWS IoT Core for
|
|
3223
|
+
# LoRaWAN.
|
|
3224
|
+
#
|
|
3225
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3226
|
+
#
|
|
3227
|
+
# @example Request syntax with placeholder values
|
|
3228
|
+
#
|
|
3229
|
+
# resp = client.put_position_configuration({
|
|
3230
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
|
3231
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
|
3232
|
+
# solvers: {
|
|
3233
|
+
# semtech_gnss: {
|
|
3234
|
+
# status: "Enabled", # required, accepts Enabled, Disabled
|
|
3235
|
+
# fec: "ROSE", # required, accepts ROSE, NONE
|
|
3236
|
+
# },
|
|
3237
|
+
# },
|
|
3238
|
+
# destination: "DestinationName",
|
|
3239
|
+
# })
|
|
3240
|
+
#
|
|
3241
|
+
# @overload put_position_configuration(params = {})
|
|
3242
|
+
# @param [Hash] params ({})
|
|
3243
|
+
def put_position_configuration(params = {}, options = {})
|
|
3244
|
+
req = build_request(:put_position_configuration, params)
|
|
3245
|
+
req.send_request(options)
|
|
3246
|
+
end
|
|
3247
|
+
|
|
2847
3248
|
# Sets the log-level override for a resource-ID and resource-type. This
|
|
2848
3249
|
# option can be specified for a wireless gateway or a wireless device. A
|
|
2849
3250
|
# limit of 200 log level override can be set per account.
|
|
@@ -2858,7 +3259,9 @@ module Aws::IoTWireless
|
|
|
2858
3259
|
# `WirelessGateway`.
|
|
2859
3260
|
#
|
|
2860
3261
|
# @option params [required, String] :log_level
|
|
2861
|
-
# The log level for a log message.
|
|
3262
|
+
# The log level for a log message. The log levels can be disabled, or
|
|
3263
|
+
# set to `ERROR` to display less verbose logs containing only error
|
|
3264
|
+
# information, or to `INFO` for more detailed logs.
|
|
2862
3265
|
#
|
|
2863
3266
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2864
3267
|
#
|
|
@@ -3247,6 +3650,58 @@ module Aws::IoTWireless
|
|
|
3247
3650
|
req.send_request(options)
|
|
3248
3651
|
end
|
|
3249
3652
|
|
|
3653
|
+
# Update the event configuration based on resource types.
|
|
3654
|
+
#
|
|
3655
|
+
# @option params [Types::DeviceRegistrationStateResourceTypeEventConfiguration] :device_registration_state
|
|
3656
|
+
# Device registration state resource type event configuration object for
|
|
3657
|
+
# enabling and disabling wireless gateway topic.
|
|
3658
|
+
#
|
|
3659
|
+
# @option params [Types::ProximityResourceTypeEventConfiguration] :proximity
|
|
3660
|
+
# Proximity resource type event configuration object for enabling and
|
|
3661
|
+
# disabling wireless gateway topic.
|
|
3662
|
+
#
|
|
3663
|
+
# @option params [Types::JoinResourceTypeEventConfiguration] :join
|
|
3664
|
+
# Join resource type event configuration object for enabling and
|
|
3665
|
+
# disabling wireless device topic.
|
|
3666
|
+
#
|
|
3667
|
+
# @option params [Types::ConnectionStatusResourceTypeEventConfiguration] :connection_status
|
|
3668
|
+
# Connection status resource type event configuration object for
|
|
3669
|
+
# enabling and disabling wireless gateway topic.
|
|
3670
|
+
#
|
|
3671
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3672
|
+
#
|
|
3673
|
+
# @example Request syntax with placeholder values
|
|
3674
|
+
#
|
|
3675
|
+
# resp = client.update_event_configuration_by_resource_types({
|
|
3676
|
+
# device_registration_state: {
|
|
3677
|
+
# sidewalk: {
|
|
3678
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3679
|
+
# },
|
|
3680
|
+
# },
|
|
3681
|
+
# proximity: {
|
|
3682
|
+
# sidewalk: {
|
|
3683
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3684
|
+
# },
|
|
3685
|
+
# },
|
|
3686
|
+
# join: {
|
|
3687
|
+
# lo_ra_wan: {
|
|
3688
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3689
|
+
# },
|
|
3690
|
+
# },
|
|
3691
|
+
# connection_status: {
|
|
3692
|
+
# lo_ra_wan: {
|
|
3693
|
+
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3694
|
+
# },
|
|
3695
|
+
# },
|
|
3696
|
+
# })
|
|
3697
|
+
#
|
|
3698
|
+
# @overload update_event_configuration_by_resource_types(params = {})
|
|
3699
|
+
# @param [Hash] params ({})
|
|
3700
|
+
def update_event_configuration_by_resource_types(params = {}, options = {})
|
|
3701
|
+
req = build_request(:update_event_configuration_by_resource_types, params)
|
|
3702
|
+
req.send_request(options)
|
|
3703
|
+
end
|
|
3704
|
+
|
|
3250
3705
|
# Updates properties of a FUOTA task.
|
|
3251
3706
|
#
|
|
3252
3707
|
# @option params [required, String] :id
|
|
@@ -3296,7 +3751,9 @@ module Aws::IoTWireless
|
|
|
3296
3751
|
# CloudWatch.
|
|
3297
3752
|
#
|
|
3298
3753
|
# @option params [String] :default_log_level
|
|
3299
|
-
# The log level for a log message.
|
|
3754
|
+
# The log level for a log message. The log levels can be disabled, or
|
|
3755
|
+
# set to `ERROR` to display less verbose logs containing only error
|
|
3756
|
+
# information, or to `INFO` for more detailed logs.
|
|
3300
3757
|
#
|
|
3301
3758
|
# @option params [Array<Types::WirelessDeviceLogOption>] :wireless_device_log_options
|
|
3302
3759
|
# The list of wireless device log options.
|
|
@@ -3378,25 +3835,36 @@ module Aws::IoTWireless
|
|
|
3378
3835
|
req.send_request(options)
|
|
3379
3836
|
end
|
|
3380
3837
|
|
|
3381
|
-
# Update
|
|
3838
|
+
# Update network analyzer configuration.
|
|
3382
3839
|
#
|
|
3383
3840
|
# @option params [required, String] :configuration_name
|
|
3384
|
-
#
|
|
3841
|
+
# Name of the network analyzer configuration.
|
|
3385
3842
|
#
|
|
3386
3843
|
# @option params [Types::TraceContent] :trace_content
|
|
3387
|
-
# Trace
|
|
3844
|
+
# Trace content for your wireless gateway and wireless device resources.
|
|
3388
3845
|
#
|
|
3389
3846
|
# @option params [Array<String>] :wireless_devices_to_add
|
|
3390
|
-
#
|
|
3847
|
+
# Wireless device resources to add to the network analyzer
|
|
3848
|
+
# configuration. Provide the `WirelessDeviceId` of the resource to add
|
|
3849
|
+
# in the input array.
|
|
3391
3850
|
#
|
|
3392
3851
|
# @option params [Array<String>] :wireless_devices_to_remove
|
|
3393
|
-
#
|
|
3852
|
+
# Wireless device resources to remove from the network analyzer
|
|
3853
|
+
# configuration. Provide the `WirelessDeviceId` of the resources to
|
|
3854
|
+
# remove in the input array.
|
|
3394
3855
|
#
|
|
3395
3856
|
# @option params [Array<String>] :wireless_gateways_to_add
|
|
3396
|
-
#
|
|
3857
|
+
# Wireless gateway resources to add to the network analyzer
|
|
3858
|
+
# configuration. Provide the `WirelessGatewayId` of the resource to add
|
|
3859
|
+
# in the input array.
|
|
3397
3860
|
#
|
|
3398
3861
|
# @option params [Array<String>] :wireless_gateways_to_remove
|
|
3399
|
-
#
|
|
3862
|
+
# Wireless gateway resources to remove from the network analyzer
|
|
3863
|
+
# configuration. Provide the `WirelessGatewayId` of the resources to
|
|
3864
|
+
# remove in the input array.
|
|
3865
|
+
#
|
|
3866
|
+
# @option params [String] :description
|
|
3867
|
+
# The description of the new resource.
|
|
3400
3868
|
#
|
|
3401
3869
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3402
3870
|
#
|
|
@@ -3412,6 +3880,7 @@ module Aws::IoTWireless
|
|
|
3412
3880
|
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
|
3413
3881
|
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
|
3414
3882
|
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
|
3883
|
+
# description: "Description",
|
|
3415
3884
|
# })
|
|
3416
3885
|
#
|
|
3417
3886
|
# @overload update_network_analyzer_configuration(params = {})
|
|
@@ -3451,6 +3920,34 @@ module Aws::IoTWireless
|
|
|
3451
3920
|
req.send_request(options)
|
|
3452
3921
|
end
|
|
3453
3922
|
|
|
3923
|
+
# Update the position information of a resource.
|
|
3924
|
+
#
|
|
3925
|
+
# @option params [required, String] :resource_identifier
|
|
3926
|
+
# Resource identifier of the resource for which position is updated.
|
|
3927
|
+
#
|
|
3928
|
+
# @option params [required, String] :resource_type
|
|
3929
|
+
# Resource type of the resource for which position is updated.
|
|
3930
|
+
#
|
|
3931
|
+
# @option params [required, Array<Float>] :position
|
|
3932
|
+
# The position information of the resource.
|
|
3933
|
+
#
|
|
3934
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3935
|
+
#
|
|
3936
|
+
# @example Request syntax with placeholder values
|
|
3937
|
+
#
|
|
3938
|
+
# resp = client.update_position({
|
|
3939
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
|
3940
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
|
3941
|
+
# position: [1.0], # required
|
|
3942
|
+
# })
|
|
3943
|
+
#
|
|
3944
|
+
# @overload update_position(params = {})
|
|
3945
|
+
# @param [Hash] params ({})
|
|
3946
|
+
def update_position(params = {}, options = {})
|
|
3947
|
+
req = build_request(:update_position, params)
|
|
3948
|
+
req.send_request(options)
|
|
3949
|
+
end
|
|
3950
|
+
|
|
3454
3951
|
# Update the event configuration for a particular resource identifier.
|
|
3455
3952
|
#
|
|
3456
3953
|
# @option params [required, String] :identifier
|
|
@@ -3462,13 +3959,19 @@ module Aws::IoTWireless
|
|
|
3462
3959
|
#
|
|
3463
3960
|
# @option params [String] :partner_type
|
|
3464
3961
|
# Partner type of the resource if the identifier type is
|
|
3465
|
-
# PartnerAccountId
|
|
3962
|
+
# `PartnerAccountId`
|
|
3466
3963
|
#
|
|
3467
3964
|
# @option params [Types::DeviceRegistrationStateEventConfiguration] :device_registration_state
|
|
3468
|
-
# Event configuration for the device registration state event
|
|
3965
|
+
# Event configuration for the device registration state event.
|
|
3469
3966
|
#
|
|
3470
3967
|
# @option params [Types::ProximityEventConfiguration] :proximity
|
|
3471
|
-
# Event configuration for the
|
|
3968
|
+
# Event configuration for the proximity event.
|
|
3969
|
+
#
|
|
3970
|
+
# @option params [Types::JoinEventConfiguration] :join
|
|
3971
|
+
# Event configuration for the join event.
|
|
3972
|
+
#
|
|
3973
|
+
# @option params [Types::ConnectionStatusEventConfiguration] :connection_status
|
|
3974
|
+
# Event configuration for the connection status event.
|
|
3472
3975
|
#
|
|
3473
3976
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3474
3977
|
#
|
|
@@ -3476,17 +3979,31 @@ module Aws::IoTWireless
|
|
|
3476
3979
|
#
|
|
3477
3980
|
# resp = client.update_resource_event_configuration({
|
|
3478
3981
|
# identifier: "Identifier", # required
|
|
3479
|
-
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
|
3982
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
|
3480
3983
|
# partner_type: "Sidewalk", # accepts Sidewalk
|
|
3481
3984
|
# device_registration_state: {
|
|
3482
3985
|
# sidewalk: {
|
|
3483
3986
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3484
3987
|
# },
|
|
3988
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3485
3989
|
# },
|
|
3486
3990
|
# proximity: {
|
|
3487
3991
|
# sidewalk: {
|
|
3488
3992
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3489
3993
|
# },
|
|
3994
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3995
|
+
# },
|
|
3996
|
+
# join: {
|
|
3997
|
+
# lo_ra_wan: {
|
|
3998
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3999
|
+
# },
|
|
4000
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
4001
|
+
# },
|
|
4002
|
+
# connection_status: {
|
|
4003
|
+
# lo_ra_wan: {
|
|
4004
|
+
# gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
4005
|
+
# },
|
|
4006
|
+
# wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
|
3490
4007
|
# },
|
|
3491
4008
|
# })
|
|
3492
4009
|
#
|
|
@@ -3526,6 +4043,19 @@ module Aws::IoTWireless
|
|
|
3526
4043
|
# lo_ra_wan: {
|
|
3527
4044
|
# device_profile_id: "DeviceProfileId",
|
|
3528
4045
|
# service_profile_id: "ServiceProfileId",
|
|
4046
|
+
# abp_v1_1: {
|
|
4047
|
+
# f_cnt_start: 1,
|
|
4048
|
+
# },
|
|
4049
|
+
# abp_v1_0_x: {
|
|
4050
|
+
# f_cnt_start: 1,
|
|
4051
|
+
# },
|
|
4052
|
+
# f_ports: {
|
|
4053
|
+
# positioning: {
|
|
4054
|
+
# clock_sync: 1,
|
|
4055
|
+
# stream: 1,
|
|
4056
|
+
# gnss: 1,
|
|
4057
|
+
# },
|
|
4058
|
+
# },
|
|
3529
4059
|
# },
|
|
3530
4060
|
# })
|
|
3531
4061
|
#
|
|
@@ -3588,7 +4118,7 @@ module Aws::IoTWireless
|
|
|
3588
4118
|
params: params,
|
|
3589
4119
|
config: config)
|
|
3590
4120
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
|
3591
|
-
context[:gem_version] = '1.
|
|
4121
|
+
context[:gem_version] = '1.24.0'
|
|
3592
4122
|
Seahorse::Client::Request.new(handlers, context)
|
|
3593
4123
|
end
|
|
3594
4124
|
|