aws-sdk-iotwireless 1.23.0 → 1.26.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 +273 -9
- data/lib/aws-sdk-iotwireless/client_api.rb +233 -0
- data/lib/aws-sdk-iotwireless/types.rb +764 -45
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de2cd1030f6463f43e6039c63c9d0ce1abe0b87712fd3e5bdef30925a75ecc40
|
4
|
+
data.tar.gz: e07d5378e005db37fc7e0ddc1aa8dea81f43fe79c2c699f05c75fe976952034e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97dae7af4746b100d79f770cdd12e9b5d5df16e10fb75e519f9c4f9147b6167bd28f37c8db1254b4fc61ccef84f3f9519ba7b521fc8dd9e09a4d7d970da35591
|
7
|
+
data.tar.gz: 30a7e816ceac4805ac8246ec9b5490ddfb90e17be1188d7d810ca6a8de376a13a8db9807d9b8c1fce4acce619c06c88d7137d5dc2fa07dc7dac723f0af031d11
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.26.0 (2022-08-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release includes a new feature for the customers to enable the LoRa gateways to send out beacons for Class B devices and an option to select one or more gateways for Class C devices when sending the LoRaWAN downlink messages.
|
8
|
+
|
9
|
+
1.25.0 (2022-08-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS IoT Wireless release support for sidewalk data reliability.
|
13
|
+
|
14
|
+
1.24.0 (2022-07-07)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds 5 APIs: PutPositionConfiguration, GetPositionConfiguration, ListPositionConfigurations, UpdatePosition, GetPosition for the new Positioning Service feature which enables customers to configure solvers to calculate position of LoRaWAN devices, or specify position of LoRaWAN devices & gateways.
|
18
|
+
|
4
19
|
1.23.0 (2022-04-27)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.26.0
|
@@ -939,6 +939,8 @@ module Aws::IoTWireless
|
|
939
939
|
# name: "ServiceProfileName",
|
940
940
|
# lo_ra_wan: {
|
941
941
|
# add_gw_metadata: false,
|
942
|
+
# dr_min: 1,
|
943
|
+
# dr_max: 1,
|
942
944
|
# },
|
943
945
|
# tags: [
|
944
946
|
# {
|
@@ -1041,6 +1043,11 @@ module Aws::IoTWireless
|
|
1041
1043
|
# fuota: 1,
|
1042
1044
|
# multicast: 1,
|
1043
1045
|
# clock_sync: 1,
|
1046
|
+
# positioning: {
|
1047
|
+
# clock_sync: 1,
|
1048
|
+
# stream: 1,
|
1049
|
+
# gnss: 1,
|
1050
|
+
# },
|
1044
1051
|
# },
|
1045
1052
|
# },
|
1046
1053
|
# tags: [
|
@@ -1106,6 +1113,10 @@ module Aws::IoTWireless
|
|
1106
1113
|
# ],
|
1107
1114
|
# net_id_filters: ["NetId"],
|
1108
1115
|
# sub_bands: [1],
|
1116
|
+
# beaconing: {
|
1117
|
+
# data_rate: 1,
|
1118
|
+
# frequencies: [1],
|
1119
|
+
# },
|
1109
1120
|
# },
|
1110
1121
|
# tags: [
|
1111
1122
|
# {
|
@@ -1713,7 +1724,7 @@ module Aws::IoTWireless
|
|
1713
1724
|
req.send_request(options)
|
1714
1725
|
end
|
1715
1726
|
|
1716
|
-
# Get the event configuration
|
1727
|
+
# Get the event configuration based on resource types.
|
1717
1728
|
#
|
1718
1729
|
# @return [Types::GetEventConfigurationByResourceTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1719
1730
|
#
|
@@ -1721,6 +1732,7 @@ module Aws::IoTWireless
|
|
1721
1732
|
# * {Types::GetEventConfigurationByResourceTypesResponse#proximity #proximity} => Types::ProximityResourceTypeEventConfiguration
|
1722
1733
|
# * {Types::GetEventConfigurationByResourceTypesResponse#join #join} => Types::JoinResourceTypeEventConfiguration
|
1723
1734
|
# * {Types::GetEventConfigurationByResourceTypesResponse#connection_status #connection_status} => Types::ConnectionStatusResourceTypeEventConfiguration
|
1735
|
+
# * {Types::GetEventConfigurationByResourceTypesResponse#message_delivery_status #message_delivery_status} => Types::MessageDeliveryStatusResourceTypeEventConfiguration
|
1724
1736
|
#
|
1725
1737
|
# @example Response structure
|
1726
1738
|
#
|
@@ -1728,6 +1740,7 @@ module Aws::IoTWireless
|
|
1728
1740
|
# resp.proximity.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
1729
1741
|
# resp.join.lo_ra_wan.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
1730
1742
|
# resp.connection_status.lo_ra_wan.wireless_gateway_event_topic #=> String, one of "Enabled", "Disabled"
|
1743
|
+
# resp.message_delivery_status.sidewalk.wireless_device_event_topic #=> String, one of "Enabled", "Disabled"
|
1731
1744
|
#
|
1732
1745
|
# @overload get_event_configuration_by_resource_types(params = {})
|
1733
1746
|
# @param [Hash] params ({})
|
@@ -1956,6 +1969,85 @@ module Aws::IoTWireless
|
|
1956
1969
|
req.send_request(options)
|
1957
1970
|
end
|
1958
1971
|
|
1972
|
+
# Get the position information for a given resource.
|
1973
|
+
#
|
1974
|
+
# @option params [required, String] :resource_identifier
|
1975
|
+
# Resource identifier used to retrieve the position information.
|
1976
|
+
#
|
1977
|
+
# @option params [required, String] :resource_type
|
1978
|
+
# Resource type of the resource for which position information is
|
1979
|
+
# retrieved.
|
1980
|
+
#
|
1981
|
+
# @return [Types::GetPositionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1982
|
+
#
|
1983
|
+
# * {Types::GetPositionResponse#position #position} => Array<Float>
|
1984
|
+
# * {Types::GetPositionResponse#accuracy #accuracy} => Types::Accuracy
|
1985
|
+
# * {Types::GetPositionResponse#solver_type #solver_type} => String
|
1986
|
+
# * {Types::GetPositionResponse#solver_provider #solver_provider} => String
|
1987
|
+
# * {Types::GetPositionResponse#solver_version #solver_version} => String
|
1988
|
+
# * {Types::GetPositionResponse#timestamp #timestamp} => String
|
1989
|
+
#
|
1990
|
+
# @example Request syntax with placeholder values
|
1991
|
+
#
|
1992
|
+
# resp = client.get_position({
|
1993
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
1994
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
1995
|
+
# })
|
1996
|
+
#
|
1997
|
+
# @example Response structure
|
1998
|
+
#
|
1999
|
+
# resp.position #=> Array
|
2000
|
+
# resp.position[0] #=> Float
|
2001
|
+
# resp.accuracy.horizontal_accuracy #=> Float
|
2002
|
+
# resp.accuracy.vertical_accuracy #=> Float
|
2003
|
+
# resp.solver_type #=> String, one of "GNSS"
|
2004
|
+
# resp.solver_provider #=> String, one of "Semtech"
|
2005
|
+
# resp.solver_version #=> String
|
2006
|
+
# resp.timestamp #=> String
|
2007
|
+
#
|
2008
|
+
# @overload get_position(params = {})
|
2009
|
+
# @param [Hash] params ({})
|
2010
|
+
def get_position(params = {}, options = {})
|
2011
|
+
req = build_request(:get_position, params)
|
2012
|
+
req.send_request(options)
|
2013
|
+
end
|
2014
|
+
|
2015
|
+
# Get position configuration for a given resource.
|
2016
|
+
#
|
2017
|
+
# @option params [required, String] :resource_identifier
|
2018
|
+
# Resource identifier used in a position configuration.
|
2019
|
+
#
|
2020
|
+
# @option params [required, String] :resource_type
|
2021
|
+
# Resource type of the resource for which position configuration is
|
2022
|
+
# retrieved.
|
2023
|
+
#
|
2024
|
+
# @return [Types::GetPositionConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2025
|
+
#
|
2026
|
+
# * {Types::GetPositionConfigurationResponse#solvers #solvers} => Types::PositionSolverDetails
|
2027
|
+
# * {Types::GetPositionConfigurationResponse#destination #destination} => String
|
2028
|
+
#
|
2029
|
+
# @example Request syntax with placeholder values
|
2030
|
+
#
|
2031
|
+
# resp = client.get_position_configuration({
|
2032
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
2033
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
2034
|
+
# })
|
2035
|
+
#
|
2036
|
+
# @example Response structure
|
2037
|
+
#
|
2038
|
+
# resp.solvers.semtech_gnss.provider #=> String, one of "Semtech"
|
2039
|
+
# resp.solvers.semtech_gnss.type #=> String, one of "GNSS"
|
2040
|
+
# resp.solvers.semtech_gnss.status #=> String, one of "Enabled", "Disabled"
|
2041
|
+
# resp.solvers.semtech_gnss.fec #=> String, one of "ROSE", "NONE"
|
2042
|
+
# resp.destination #=> String
|
2043
|
+
#
|
2044
|
+
# @overload get_position_configuration(params = {})
|
2045
|
+
# @param [Hash] params ({})
|
2046
|
+
def get_position_configuration(params = {}, options = {})
|
2047
|
+
req = build_request(:get_position_configuration, params)
|
2048
|
+
req.send_request(options)
|
2049
|
+
end
|
2050
|
+
|
1959
2051
|
# Get the event configuration for a particular resource identifier.
|
1960
2052
|
#
|
1961
2053
|
# @option params [required, String] :identifier
|
@@ -1967,7 +2059,7 @@ module Aws::IoTWireless
|
|
1967
2059
|
#
|
1968
2060
|
# @option params [String] :partner_type
|
1969
2061
|
# Partner type of the resource if the identifier type is
|
1970
|
-
# PartnerAccountId
|
2062
|
+
# `PartnerAccountId`.
|
1971
2063
|
#
|
1972
2064
|
# @return [Types::GetResourceEventConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1973
2065
|
#
|
@@ -1975,6 +2067,7 @@ module Aws::IoTWireless
|
|
1975
2067
|
# * {Types::GetResourceEventConfigurationResponse#proximity #proximity} => Types::ProximityEventConfiguration
|
1976
2068
|
# * {Types::GetResourceEventConfigurationResponse#join #join} => Types::JoinEventConfiguration
|
1977
2069
|
# * {Types::GetResourceEventConfigurationResponse#connection_status #connection_status} => Types::ConnectionStatusEventConfiguration
|
2070
|
+
# * {Types::GetResourceEventConfigurationResponse#message_delivery_status #message_delivery_status} => Types::MessageDeliveryStatusEventConfiguration
|
1978
2071
|
#
|
1979
2072
|
# @example Request syntax with placeholder values
|
1980
2073
|
#
|
@@ -1994,6 +2087,8 @@ module Aws::IoTWireless
|
|
1994
2087
|
# resp.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
1995
2088
|
# resp.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
1996
2089
|
# resp.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2090
|
+
# resp.message_delivery_status.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2091
|
+
# resp.message_delivery_status.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
1997
2092
|
#
|
1998
2093
|
# @overload get_resource_event_configuration(params = {})
|
1999
2094
|
# @param [Hash] params ({})
|
@@ -2181,6 +2276,9 @@ module Aws::IoTWireless
|
|
2181
2276
|
# resp.lo_ra_wan.f_ports.fuota #=> Integer
|
2182
2277
|
# resp.lo_ra_wan.f_ports.multicast #=> Integer
|
2183
2278
|
# resp.lo_ra_wan.f_ports.clock_sync #=> Integer
|
2279
|
+
# resp.lo_ra_wan.f_ports.positioning.clock_sync #=> Integer
|
2280
|
+
# resp.lo_ra_wan.f_ports.positioning.stream #=> Integer
|
2281
|
+
# resp.lo_ra_wan.f_ports.positioning.gnss #=> Integer
|
2184
2282
|
# resp.sidewalk.amazon_id #=> String
|
2185
2283
|
# resp.sidewalk.sidewalk_id #=> String
|
2186
2284
|
# resp.sidewalk.sidewalk_manufacturing_sn #=> String
|
@@ -2277,6 +2375,9 @@ module Aws::IoTWireless
|
|
2277
2375
|
# resp.lo_ra_wan.net_id_filters[0] #=> String
|
2278
2376
|
# resp.lo_ra_wan.sub_bands #=> Array
|
2279
2377
|
# resp.lo_ra_wan.sub_bands[0] #=> Integer
|
2378
|
+
# resp.lo_ra_wan.beaconing.data_rate #=> Integer
|
2379
|
+
# resp.lo_ra_wan.beaconing.frequencies #=> Array
|
2380
|
+
# resp.lo_ra_wan.beaconing.frequencies[0] #=> Integer
|
2280
2381
|
# resp.arn #=> String
|
2281
2382
|
# resp.thing_name #=> String
|
2282
2383
|
# resp.thing_arn #=> String
|
@@ -2574,6 +2675,8 @@ module Aws::IoTWireless
|
|
2574
2675
|
# resp.event_configurations_list[0].events.join.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2575
2676
|
# resp.event_configurations_list[0].events.connection_status.lo_ra_wan.gateway_eui_event_topic #=> String, one of "Enabled", "Disabled"
|
2576
2677
|
# resp.event_configurations_list[0].events.connection_status.wireless_gateway_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2678
|
+
# resp.event_configurations_list[0].events.message_delivery_status.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2679
|
+
# resp.event_configurations_list[0].events.message_delivery_status.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
|
2577
2680
|
#
|
2578
2681
|
# @overload list_event_configurations(params = {})
|
2579
2682
|
# @param [Hash] params ({})
|
@@ -2776,6 +2879,54 @@ module Aws::IoTWireless
|
|
2776
2879
|
req.send_request(options)
|
2777
2880
|
end
|
2778
2881
|
|
2882
|
+
# List position configurations for a given resource, such as positioning
|
2883
|
+
# solvers.
|
2884
|
+
#
|
2885
|
+
# @option params [String] :resource_type
|
2886
|
+
# Resource type for which position configurations are listed.
|
2887
|
+
#
|
2888
|
+
# @option params [Integer] :max_results
|
2889
|
+
# The maximum number of results to return in this operation.
|
2890
|
+
#
|
2891
|
+
# @option params [String] :next_token
|
2892
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2893
|
+
# previous response; otherwise **null** to receive the first set of
|
2894
|
+
# results.
|
2895
|
+
#
|
2896
|
+
# @return [Types::ListPositionConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2897
|
+
#
|
2898
|
+
# * {Types::ListPositionConfigurationsResponse#position_configuration_list #position_configuration_list} => Array<Types::PositionConfigurationItem>
|
2899
|
+
# * {Types::ListPositionConfigurationsResponse#next_token #next_token} => String
|
2900
|
+
#
|
2901
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2902
|
+
#
|
2903
|
+
# @example Request syntax with placeholder values
|
2904
|
+
#
|
2905
|
+
# resp = client.list_position_configurations({
|
2906
|
+
# resource_type: "WirelessDevice", # accepts WirelessDevice, WirelessGateway
|
2907
|
+
# max_results: 1,
|
2908
|
+
# next_token: "NextToken",
|
2909
|
+
# })
|
2910
|
+
#
|
2911
|
+
# @example Response structure
|
2912
|
+
#
|
2913
|
+
# resp.position_configuration_list #=> Array
|
2914
|
+
# resp.position_configuration_list[0].resource_identifier #=> String
|
2915
|
+
# resp.position_configuration_list[0].resource_type #=> String, one of "WirelessDevice", "WirelessGateway"
|
2916
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.provider #=> String, one of "Semtech"
|
2917
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.type #=> String, one of "GNSS"
|
2918
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.status #=> String, one of "Enabled", "Disabled"
|
2919
|
+
# resp.position_configuration_list[0].solvers.semtech_gnss.fec #=> String, one of "ROSE", "NONE"
|
2920
|
+
# resp.position_configuration_list[0].destination #=> String
|
2921
|
+
# resp.next_token #=> String
|
2922
|
+
#
|
2923
|
+
# @overload list_position_configurations(params = {})
|
2924
|
+
# @param [Hash] params ({})
|
2925
|
+
def list_position_configurations(params = {}, options = {})
|
2926
|
+
req = build_request(:list_position_configurations, params)
|
2927
|
+
req.send_request(options)
|
2928
|
+
end
|
2929
|
+
|
2779
2930
|
# List queued messages in the downlink queue.
|
2780
2931
|
#
|
2781
2932
|
# @option params [required, String] :id
|
@@ -2817,6 +2968,11 @@ module Aws::IoTWireless
|
|
2817
2968
|
# resp.downlink_queue_messages_list[0].transmit_mode #=> Integer
|
2818
2969
|
# resp.downlink_queue_messages_list[0].received_at #=> String
|
2819
2970
|
# resp.downlink_queue_messages_list[0].lo_ra_wan.f_port #=> Integer
|
2971
|
+
# resp.downlink_queue_messages_list[0].lo_ra_wan.participating_gateways.downlink_mode #=> String, one of "SEQUENTIAL", "CONCURRENT", "USING_UPLINK_GATEWAY"
|
2972
|
+
# resp.downlink_queue_messages_list[0].lo_ra_wan.participating_gateways.gateway_list #=> Array
|
2973
|
+
# resp.downlink_queue_messages_list[0].lo_ra_wan.participating_gateways.gateway_list[0].gateway_id #=> String
|
2974
|
+
# resp.downlink_queue_messages_list[0].lo_ra_wan.participating_gateways.gateway_list[0].downlink_frequency #=> Integer
|
2975
|
+
# resp.downlink_queue_messages_list[0].lo_ra_wan.participating_gateways.transmission_interval #=> Integer
|
2820
2976
|
#
|
2821
2977
|
# @overload list_queued_messages(params = {})
|
2822
2978
|
# @param [Hash] params ({})
|
@@ -3060,6 +3216,9 @@ module Aws::IoTWireless
|
|
3060
3216
|
# resp.wireless_gateway_list[0].lo_ra_wan.net_id_filters[0] #=> String
|
3061
3217
|
# resp.wireless_gateway_list[0].lo_ra_wan.sub_bands #=> Array
|
3062
3218
|
# resp.wireless_gateway_list[0].lo_ra_wan.sub_bands[0] #=> Integer
|
3219
|
+
# resp.wireless_gateway_list[0].lo_ra_wan.beaconing.data_rate #=> Integer
|
3220
|
+
# resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies #=> Array
|
3221
|
+
# resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies[0] #=> Integer
|
3063
3222
|
# resp.wireless_gateway_list[0].last_uplink_received_at #=> String
|
3064
3223
|
#
|
3065
3224
|
# @overload list_wireless_gateways(params = {})
|
@@ -3069,6 +3228,47 @@ module Aws::IoTWireless
|
|
3069
3228
|
req.send_request(options)
|
3070
3229
|
end
|
3071
3230
|
|
3231
|
+
# Put position configuration for a given resource.
|
3232
|
+
#
|
3233
|
+
# @option params [required, String] :resource_identifier
|
3234
|
+
# Resource identifier used to update the position configuration.
|
3235
|
+
#
|
3236
|
+
# @option params [required, String] :resource_type
|
3237
|
+
# Resource type of the resource for which you want to update the
|
3238
|
+
# position configuration.
|
3239
|
+
#
|
3240
|
+
# @option params [Types::PositionSolverConfigurations] :solvers
|
3241
|
+
# The positioning solvers used to update the position configuration of
|
3242
|
+
# the resource.
|
3243
|
+
#
|
3244
|
+
# @option params [String] :destination
|
3245
|
+
# The position data destination that describes the AWS IoT rule that
|
3246
|
+
# processes the device's position data for use by AWS IoT Core for
|
3247
|
+
# LoRaWAN.
|
3248
|
+
#
|
3249
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3250
|
+
#
|
3251
|
+
# @example Request syntax with placeholder values
|
3252
|
+
#
|
3253
|
+
# resp = client.put_position_configuration({
|
3254
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
3255
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
3256
|
+
# solvers: {
|
3257
|
+
# semtech_gnss: {
|
3258
|
+
# status: "Enabled", # required, accepts Enabled, Disabled
|
3259
|
+
# fec: "ROSE", # required, accepts ROSE, NONE
|
3260
|
+
# },
|
3261
|
+
# },
|
3262
|
+
# destination: "DestinationName",
|
3263
|
+
# })
|
3264
|
+
#
|
3265
|
+
# @overload put_position_configuration(params = {})
|
3266
|
+
# @param [Hash] params ({})
|
3267
|
+
def put_position_configuration(params = {}, options = {})
|
3268
|
+
req = build_request(:put_position_configuration, params)
|
3269
|
+
req.send_request(options)
|
3270
|
+
end
|
3271
|
+
|
3072
3272
|
# Sets the log-level override for a resource-ID and resource-type. This
|
3073
3273
|
# option can be specified for a wireless gateway or a wireless device. A
|
3074
3274
|
# limit of 200 log level override can be set per account.
|
@@ -3211,10 +3411,21 @@ module Aws::IoTWireless
|
|
3211
3411
|
# wireless_metadata: {
|
3212
3412
|
# lo_ra_wan: {
|
3213
3413
|
# f_port: 1,
|
3414
|
+
# participating_gateways: {
|
3415
|
+
# downlink_mode: "SEQUENTIAL", # required, accepts SEQUENTIAL, CONCURRENT, USING_UPLINK_GATEWAY
|
3416
|
+
# gateway_list: [ # required
|
3417
|
+
# {
|
3418
|
+
# gateway_id: "WirelessGatewayId", # required
|
3419
|
+
# downlink_frequency: 1, # required
|
3420
|
+
# },
|
3421
|
+
# ],
|
3422
|
+
# transmission_interval: 1, # required
|
3423
|
+
# },
|
3214
3424
|
# },
|
3215
3425
|
# sidewalk: {
|
3216
3426
|
# seq: 1,
|
3217
3427
|
# message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
|
3428
|
+
# ack_mode_retry_duration_secs: 1,
|
3218
3429
|
# },
|
3219
3430
|
# },
|
3220
3431
|
# })
|
@@ -3474,7 +3685,7 @@ module Aws::IoTWireless
|
|
3474
3685
|
req.send_request(options)
|
3475
3686
|
end
|
3476
3687
|
|
3477
|
-
# Update the event configuration
|
3688
|
+
# Update the event configuration based on resource types.
|
3478
3689
|
#
|
3479
3690
|
# @option params [Types::DeviceRegistrationStateResourceTypeEventConfiguration] :device_registration_state
|
3480
3691
|
# Device registration state resource type event configuration object for
|
@@ -3492,6 +3703,10 @@ module Aws::IoTWireless
|
|
3492
3703
|
# Connection status resource type event configuration object for
|
3493
3704
|
# enabling and disabling wireless gateway topic.
|
3494
3705
|
#
|
3706
|
+
# @option params [Types::MessageDeliveryStatusResourceTypeEventConfiguration] :message_delivery_status
|
3707
|
+
# Message delivery status resource type event configuration object for
|
3708
|
+
# enabling and disabling wireless device topic.
|
3709
|
+
#
|
3495
3710
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3496
3711
|
#
|
3497
3712
|
# @example Request syntax with placeholder values
|
@@ -3517,6 +3732,11 @@ module Aws::IoTWireless
|
|
3517
3732
|
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
3518
3733
|
# },
|
3519
3734
|
# },
|
3735
|
+
# message_delivery_status: {
|
3736
|
+
# sidewalk: {
|
3737
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
3738
|
+
# },
|
3739
|
+
# },
|
3520
3740
|
# })
|
3521
3741
|
#
|
3522
3742
|
# @overload update_event_configuration_by_resource_types(params = {})
|
@@ -3744,6 +3964,34 @@ module Aws::IoTWireless
|
|
3744
3964
|
req.send_request(options)
|
3745
3965
|
end
|
3746
3966
|
|
3967
|
+
# Update the position information of a resource.
|
3968
|
+
#
|
3969
|
+
# @option params [required, String] :resource_identifier
|
3970
|
+
# Resource identifier of the resource for which position is updated.
|
3971
|
+
#
|
3972
|
+
# @option params [required, String] :resource_type
|
3973
|
+
# Resource type of the resource for which position is updated.
|
3974
|
+
#
|
3975
|
+
# @option params [required, Array<Float>] :position
|
3976
|
+
# The position information of the resource.
|
3977
|
+
#
|
3978
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3979
|
+
#
|
3980
|
+
# @example Request syntax with placeholder values
|
3981
|
+
#
|
3982
|
+
# resp = client.update_position({
|
3983
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
3984
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
3985
|
+
# position: [1.0], # required
|
3986
|
+
# })
|
3987
|
+
#
|
3988
|
+
# @overload update_position(params = {})
|
3989
|
+
# @param [Hash] params ({})
|
3990
|
+
def update_position(params = {}, options = {})
|
3991
|
+
req = build_request(:update_position, params)
|
3992
|
+
req.send_request(options)
|
3993
|
+
end
|
3994
|
+
|
3747
3995
|
# Update the event configuration for a particular resource identifier.
|
3748
3996
|
#
|
3749
3997
|
# @option params [required, String] :identifier
|
@@ -3755,19 +4003,22 @@ module Aws::IoTWireless
|
|
3755
4003
|
#
|
3756
4004
|
# @option params [String] :partner_type
|
3757
4005
|
# Partner type of the resource if the identifier type is
|
3758
|
-
# PartnerAccountId
|
4006
|
+
# `PartnerAccountId`
|
3759
4007
|
#
|
3760
4008
|
# @option params [Types::DeviceRegistrationStateEventConfiguration] :device_registration_state
|
3761
|
-
# Event configuration for the device registration state event
|
4009
|
+
# Event configuration for the device registration state event.
|
3762
4010
|
#
|
3763
4011
|
# @option params [Types::ProximityEventConfiguration] :proximity
|
3764
|
-
# Event configuration for the
|
4012
|
+
# Event configuration for the proximity event.
|
3765
4013
|
#
|
3766
4014
|
# @option params [Types::JoinEventConfiguration] :join
|
3767
|
-
# Event configuration for the join event
|
4015
|
+
# Event configuration for the join event.
|
3768
4016
|
#
|
3769
4017
|
# @option params [Types::ConnectionStatusEventConfiguration] :connection_status
|
3770
|
-
# Event configuration for the connection status event
|
4018
|
+
# Event configuration for the connection status event.
|
4019
|
+
#
|
4020
|
+
# @option params [Types::MessageDeliveryStatusEventConfiguration] :message_delivery_status
|
4021
|
+
# Event configuration for the message delivery status event.
|
3771
4022
|
#
|
3772
4023
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3773
4024
|
#
|
@@ -3801,6 +4052,12 @@ module Aws::IoTWireless
|
|
3801
4052
|
# },
|
3802
4053
|
# wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3803
4054
|
# },
|
4055
|
+
# message_delivery_status: {
|
4056
|
+
# sidewalk: {
|
4057
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4058
|
+
# },
|
4059
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4060
|
+
# },
|
3804
4061
|
# })
|
3805
4062
|
#
|
3806
4063
|
# @overload update_resource_event_configuration(params = {})
|
@@ -3845,6 +4102,13 @@ module Aws::IoTWireless
|
|
3845
4102
|
# abp_v1_0_x: {
|
3846
4103
|
# f_cnt_start: 1,
|
3847
4104
|
# },
|
4105
|
+
# f_ports: {
|
4106
|
+
# positioning: {
|
4107
|
+
# clock_sync: 1,
|
4108
|
+
# stream: 1,
|
4109
|
+
# gnss: 1,
|
4110
|
+
# },
|
4111
|
+
# },
|
3848
4112
|
# },
|
3849
4113
|
# })
|
3850
4114
|
#
|
@@ -3907,7 +4171,7 @@ module Aws::IoTWireless
|
|
3907
4171
|
params: params,
|
3908
4172
|
config: config)
|
3909
4173
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
3910
|
-
context[:gem_version] = '1.
|
4174
|
+
context[:gem_version] = '1.26.0'
|
3911
4175
|
Seahorse::Client::Request.new(handlers, context)
|
3912
4176
|
end
|
3913
4177
|
|