aws-sdk-iotwireless 1.91.0 → 1.93.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +22 -4
- data/lib/aws-sdk-iotwireless/client_api.rb +17 -0
- data/lib/aws-sdk-iotwireless/types.rb +93 -10
- data/lib/aws-sdk-iotwireless.rb +1 -1
- data/sig/client.rbs +12 -0
- data/sig/types.rbs +16 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71172af112eac5e993489e606a85e75f2abf12b3de434ec801a44b2e6e90e543
|
|
4
|
+
data.tar.gz: 060e4b440225ab426c549044fb7ba61c030eb11baea8f8fa809e15d8b7c388c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50f3729611128fb42e0ce023a4534bc6c10f9dc27b28a0a703ea72f1f7bb64f60aee5693d20c9a92f89bd4fb06fd171be04c55f468f065f153c710538ff9374d
|
|
7
|
+
data.tar.gz: 232b4607091737d354fdb6633915eae79d20de54291c7b487da830aceb8d74caec8a6fe7b7f8ceabc93e9e140f78bf83925d418219f631b6e1fa4f882b23256f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.93.0 (2026-09-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds Multi-frame GNSS support to the AWS IoT Core Device Location GetPositionEstimate API. The new GnssMultiFrame measurement type improves location accuracy by combining multiple GNSS signal captures (2, 4, 8, 16, or 32) from the same device to estimate its position.
|
|
8
|
+
|
|
9
|
+
1.92.0 (2026-09-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.91.0 (2026-09-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.93.0
|
|
@@ -2580,7 +2580,14 @@ module Aws::IoTWireless
|
|
|
2580
2580
|
# @option params [Types::Gnss] :gnss
|
|
2581
2581
|
# Retrieves an estimated device position by resolving the global
|
|
2582
2582
|
# navigation satellite system (GNSS) scan data. The position is resolved
|
|
2583
|
-
# using the GNSS solver powered by LoRa Cloud.
|
|
2583
|
+
# using the GNSS solver powered by LoRa Cloud. This field is mutually
|
|
2584
|
+
# exclusive with the GnssMultiFrame field.
|
|
2585
|
+
#
|
|
2586
|
+
# @option params [Types::GnssMultiFrame] :gnss_multi_frame
|
|
2587
|
+
# Retrieves an estimated device position by resolving multiple global
|
|
2588
|
+
# navigation satellite system (GNSS) scan captures. The position is
|
|
2589
|
+
# resolved using the multi-frame GNSS solver powered by LoRa Cloud. This
|
|
2590
|
+
# field is mutually exclusive with the Gnss field.
|
|
2584
2591
|
#
|
|
2585
2592
|
# @option params [Time,DateTime,Date,Integer,String] :timestamp
|
|
2586
2593
|
# Optional information that specifies the time when the position
|
|
@@ -2589,8 +2596,7 @@ module Aws::IoTWireless
|
|
|
2589
2596
|
# used.
|
|
2590
2597
|
#
|
|
2591
2598
|
# @option params [Types::AdvancedConfiguration] :advanced_configuration
|
|
2592
|
-
# Optional configuration
|
|
2593
|
-
# provided, defaults are applied.
|
|
2599
|
+
# Optional configuration for customizing position measurement data.
|
|
2594
2600
|
#
|
|
2595
2601
|
# @return [Types::GetPositionEstimateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2596
2602
|
#
|
|
@@ -2738,6 +2744,18 @@ module Aws::IoTWireless
|
|
|
2738
2744
|
# assist_altitude: 1.0,
|
|
2739
2745
|
# use_2_d_solver: false,
|
|
2740
2746
|
# },
|
|
2747
|
+
# gnss_multi_frame: {
|
|
2748
|
+
# captures: [ # required
|
|
2749
|
+
# {
|
|
2750
|
+
# payload: "GnssNav", # required
|
|
2751
|
+
# capture_time: 1.0,
|
|
2752
|
+
# },
|
|
2753
|
+
# ],
|
|
2754
|
+
# capture_time_accuracy: 1.0,
|
|
2755
|
+
# assist_position: [1.0],
|
|
2756
|
+
# assist_altitude: 1.0,
|
|
2757
|
+
# use_2_d_solver: false,
|
|
2758
|
+
# },
|
|
2741
2759
|
# timestamp: Time.now,
|
|
2742
2760
|
# advanced_configuration: {
|
|
2743
2761
|
# wi_fi_cellular: {
|
|
@@ -5482,7 +5500,7 @@ module Aws::IoTWireless
|
|
|
5482
5500
|
tracer: tracer
|
|
5483
5501
|
)
|
|
5484
5502
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
|
5485
|
-
context[:gem_version] = '1.
|
|
5503
|
+
context[:gem_version] = '1.93.0'
|
|
5486
5504
|
Seahorse::Client::Request.new(handlers, context)
|
|
5487
5505
|
end
|
|
5488
5506
|
|
|
@@ -299,6 +299,9 @@ module Aws::IoTWireless
|
|
|
299
299
|
GetWirelessGatewayTaskResponse = Shapes::StructureShape.new(name: 'GetWirelessGatewayTaskResponse')
|
|
300
300
|
GlobalIdentity = Shapes::StructureShape.new(name: 'GlobalIdentity')
|
|
301
301
|
Gnss = Shapes::StructureShape.new(name: 'Gnss')
|
|
302
|
+
GnssCapture = Shapes::StructureShape.new(name: 'GnssCapture')
|
|
303
|
+
GnssCaptures = Shapes::ListShape.new(name: 'GnssCaptures')
|
|
304
|
+
GnssMultiFrame = Shapes::StructureShape.new(name: 'GnssMultiFrame')
|
|
302
305
|
GnssNav = Shapes::StringShape.new(name: 'GnssNav')
|
|
303
306
|
GsmList = Shapes::ListShape.new(name: 'GsmList')
|
|
304
307
|
GsmLocalId = Shapes::StructureShape.new(name: 'GsmLocalId')
|
|
@@ -1310,6 +1313,7 @@ module Aws::IoTWireless
|
|
|
1310
1313
|
GetPositionEstimateRequest.add_member(:cell_towers, Shapes::ShapeRef.new(shape: CellTowers, location_name: "CellTowers"))
|
|
1311
1314
|
GetPositionEstimateRequest.add_member(:ip, Shapes::ShapeRef.new(shape: Ip, location_name: "Ip"))
|
|
1312
1315
|
GetPositionEstimateRequest.add_member(:gnss, Shapes::ShapeRef.new(shape: Gnss, location_name: "Gnss"))
|
|
1316
|
+
GetPositionEstimateRequest.add_member(:gnss_multi_frame, Shapes::ShapeRef.new(shape: GnssMultiFrame, location_name: "GnssMultiFrame"))
|
|
1313
1317
|
GetPositionEstimateRequest.add_member(:timestamp, Shapes::ShapeRef.new(shape: CreationDate, location_name: "Timestamp"))
|
|
1314
1318
|
GetPositionEstimateRequest.add_member(:advanced_configuration, Shapes::ShapeRef.new(shape: AdvancedConfiguration, location_name: "AdvancedConfiguration"))
|
|
1315
1319
|
GetPositionEstimateRequest.struct_class = Types::GetPositionEstimateRequest
|
|
@@ -1484,6 +1488,19 @@ module Aws::IoTWireless
|
|
|
1484
1488
|
Gnss.add_member(:use_2_d_solver, Shapes::ShapeRef.new(shape: Use2DSolver, location_name: "Use2DSolver"))
|
|
1485
1489
|
Gnss.struct_class = Types::Gnss
|
|
1486
1490
|
|
|
1491
|
+
GnssCapture.add_member(:payload, Shapes::ShapeRef.new(shape: GnssNav, required: true, location_name: "Payload"))
|
|
1492
|
+
GnssCapture.add_member(:capture_time, Shapes::ShapeRef.new(shape: GPST, location_name: "CaptureTime"))
|
|
1493
|
+
GnssCapture.struct_class = Types::GnssCapture
|
|
1494
|
+
|
|
1495
|
+
GnssCaptures.member = Shapes::ShapeRef.new(shape: GnssCapture)
|
|
1496
|
+
|
|
1497
|
+
GnssMultiFrame.add_member(:captures, Shapes::ShapeRef.new(shape: GnssCaptures, required: true, location_name: "Captures"))
|
|
1498
|
+
GnssMultiFrame.add_member(:capture_time_accuracy, Shapes::ShapeRef.new(shape: CaptureTimeAccuracy, location_name: "CaptureTimeAccuracy"))
|
|
1499
|
+
GnssMultiFrame.add_member(:assist_position, Shapes::ShapeRef.new(shape: AssistPosition, location_name: "AssistPosition"))
|
|
1500
|
+
GnssMultiFrame.add_member(:assist_altitude, Shapes::ShapeRef.new(shape: Coordinate, location_name: "AssistAltitude"))
|
|
1501
|
+
GnssMultiFrame.add_member(:use_2_d_solver, Shapes::ShapeRef.new(shape: Use2DSolver, location_name: "Use2DSolver"))
|
|
1502
|
+
GnssMultiFrame.struct_class = Types::GnssMultiFrame
|
|
1503
|
+
|
|
1487
1504
|
GsmList.member = Shapes::ShapeRef.new(shape: GsmObj)
|
|
1488
1505
|
|
|
1489
1506
|
GsmLocalId.add_member(:bsic, Shapes::ShapeRef.new(shape: BSIC, required: true, location_name: "Bsic"))
|
|
@@ -90,11 +90,13 @@ module Aws::IoTWireless
|
|
|
90
90
|
include Aws::Structure
|
|
91
91
|
end
|
|
92
92
|
|
|
93
|
-
# Optional configuration
|
|
93
|
+
# Optional configuration for customizing position estimates, including
|
|
94
|
+
# parameters that affect the accuracy and uncertainty of WiFi and
|
|
95
|
+
# cellular-based location estimates.
|
|
94
96
|
#
|
|
95
97
|
# @!attribute [rw] wi_fi_cellular
|
|
96
|
-
# Configuration for WiFi and cellular-based
|
|
97
|
-
#
|
|
98
|
+
# Configuration for WiFi and cellular-based location estimate payloads
|
|
99
|
+
# resolved by HERE's solvers.
|
|
98
100
|
# @return [Types::WiFiCellular]
|
|
99
101
|
#
|
|
100
102
|
class AdvancedConfiguration < Struct.new(
|
|
@@ -2374,9 +2376,17 @@ module Aws::IoTWireless
|
|
|
2374
2376
|
# @!attribute [rw] gnss
|
|
2375
2377
|
# Retrieves an estimated device position by resolving the global
|
|
2376
2378
|
# navigation satellite system (GNSS) scan data. The position is
|
|
2377
|
-
# resolved using the GNSS solver powered by LoRa Cloud.
|
|
2379
|
+
# resolved using the GNSS solver powered by LoRa Cloud. This field is
|
|
2380
|
+
# mutually exclusive with the GnssMultiFrame field.
|
|
2378
2381
|
# @return [Types::Gnss]
|
|
2379
2382
|
#
|
|
2383
|
+
# @!attribute [rw] gnss_multi_frame
|
|
2384
|
+
# Retrieves an estimated device position by resolving multiple global
|
|
2385
|
+
# navigation satellite system (GNSS) scan captures. The position is
|
|
2386
|
+
# resolved using the multi-frame GNSS solver powered by LoRa Cloud.
|
|
2387
|
+
# This field is mutually exclusive with the Gnss field.
|
|
2388
|
+
# @return [Types::GnssMultiFrame]
|
|
2389
|
+
#
|
|
2380
2390
|
# @!attribute [rw] timestamp
|
|
2381
2391
|
# Optional information that specifies the time when the position
|
|
2382
2392
|
# information will be resolved. It uses the Unix timestamp format. If
|
|
@@ -2385,8 +2395,7 @@ module Aws::IoTWireless
|
|
|
2385
2395
|
# @return [Time]
|
|
2386
2396
|
#
|
|
2387
2397
|
# @!attribute [rw] advanced_configuration
|
|
2388
|
-
# Optional configuration
|
|
2389
|
-
# provided, defaults are applied.
|
|
2398
|
+
# Optional configuration for customizing position measurement data.
|
|
2390
2399
|
# @return [Types::AdvancedConfiguration]
|
|
2391
2400
|
#
|
|
2392
2401
|
class GetPositionEstimateRequest < Struct.new(
|
|
@@ -2394,6 +2403,7 @@ module Aws::IoTWireless
|
|
|
2394
2403
|
:cell_towers,
|
|
2395
2404
|
:ip,
|
|
2396
2405
|
:gnss,
|
|
2406
|
+
:gnss_multi_frame,
|
|
2397
2407
|
:timestamp,
|
|
2398
2408
|
:advanced_configuration)
|
|
2399
2409
|
SENSITIVE = []
|
|
@@ -3142,6 +3152,71 @@ module Aws::IoTWireless
|
|
|
3142
3152
|
include Aws::Structure
|
|
3143
3153
|
end
|
|
3144
3154
|
|
|
3155
|
+
# A single GNSS scan capture containing the scan payload and optional
|
|
3156
|
+
# capture time.
|
|
3157
|
+
#
|
|
3158
|
+
# @!attribute [rw] payload
|
|
3159
|
+
# Payload that contains the GNSS scan result, or NAV message, in
|
|
3160
|
+
# hexadecimal notation.
|
|
3161
|
+
# @return [String]
|
|
3162
|
+
#
|
|
3163
|
+
# @!attribute [rw] capture_time
|
|
3164
|
+
# Optional parameter that gives an estimate of the time when the GNSS
|
|
3165
|
+
# scan information is taken, in seconds GPS time (GPST). If capture
|
|
3166
|
+
# time is not specified, the local server time is used.
|
|
3167
|
+
# @return [Float]
|
|
3168
|
+
#
|
|
3169
|
+
class GnssCapture < Struct.new(
|
|
3170
|
+
:payload,
|
|
3171
|
+
:capture_time)
|
|
3172
|
+
SENSITIVE = []
|
|
3173
|
+
include Aws::Structure
|
|
3174
|
+
end
|
|
3175
|
+
|
|
3176
|
+
# Global navigation satellite system (GNSS) multi-frame object used for
|
|
3177
|
+
# positioning. Contains multiple GNSS scan captures that are combined by
|
|
3178
|
+
# the solver.
|
|
3179
|
+
#
|
|
3180
|
+
# @!attribute [rw] captures
|
|
3181
|
+
# List of GNSS scan captures. Each capture contains a payload from a
|
|
3182
|
+
# single GNSS scan. The number of captures must be 2, 4, 8, 16, or 32.
|
|
3183
|
+
# @return [Array<Types::GnssCapture>]
|
|
3184
|
+
#
|
|
3185
|
+
# @!attribute [rw] capture_time_accuracy
|
|
3186
|
+
# Optional value that gives the capture time estimate accuracy, in
|
|
3187
|
+
# seconds. If capture time accuracy is not specified, default value of
|
|
3188
|
+
# 300 is used.
|
|
3189
|
+
# @return [Float]
|
|
3190
|
+
#
|
|
3191
|
+
# @!attribute [rw] assist_position
|
|
3192
|
+
# Optional assistance position information, specified using latitude
|
|
3193
|
+
# and longitude values in degrees. The coordinates are inside the
|
|
3194
|
+
# WGS84 reference frame.
|
|
3195
|
+
# @return [Array<Float>]
|
|
3196
|
+
#
|
|
3197
|
+
# @!attribute [rw] assist_altitude
|
|
3198
|
+
# Optional assistance altitude, which is the altitude of the device at
|
|
3199
|
+
# capture time, specified in meters above the WGS84 reference
|
|
3200
|
+
# ellipsoid. This parameter is required when Use2DSolver is enabled.
|
|
3201
|
+
# @return [Float]
|
|
3202
|
+
#
|
|
3203
|
+
# @!attribute [rw] use_2_d_solver
|
|
3204
|
+
# Optional parameter that forces 2D solve, which modifies the
|
|
3205
|
+
# positioning algorithm to a 2D solution problem. When this parameter
|
|
3206
|
+
# is specified, the assistance altitude should have an accuracy of at
|
|
3207
|
+
# least 10 meters.
|
|
3208
|
+
# @return [Boolean]
|
|
3209
|
+
#
|
|
3210
|
+
class GnssMultiFrame < Struct.new(
|
|
3211
|
+
:captures,
|
|
3212
|
+
:capture_time_accuracy,
|
|
3213
|
+
:assist_position,
|
|
3214
|
+
:assist_altitude,
|
|
3215
|
+
:use_2_d_solver)
|
|
3216
|
+
SENSITIVE = []
|
|
3217
|
+
include Aws::Structure
|
|
3218
|
+
end
|
|
3219
|
+
|
|
3145
3220
|
# GSM local ID information, which corresponds to the local
|
|
3146
3221
|
# identification parameters of a GSM cell.
|
|
3147
3222
|
#
|
|
@@ -7276,12 +7351,20 @@ module Aws::IoTWireless
|
|
|
7276
7351
|
include Aws::Structure
|
|
7277
7352
|
end
|
|
7278
7353
|
|
|
7279
|
-
# Configuration for WiFi and cellular location payloads.
|
|
7354
|
+
# Configuration for WiFi and cellular location payloads. Contains the
|
|
7355
|
+
# confidence level that determines the size of the uncertainty radius in
|
|
7356
|
+
# the position estimate.
|
|
7280
7357
|
#
|
|
7281
7358
|
# @!attribute [rw] confidence_percent
|
|
7282
|
-
#
|
|
7283
|
-
# as a percentage.
|
|
7284
|
-
#
|
|
7359
|
+
# The confidence level for WiFi and cellular position estimates,
|
|
7360
|
+
# expressed as a percentage. This value determines the size of the
|
|
7361
|
+
# confidence area or uncertainty radius for the estimated position. A
|
|
7362
|
+
# higher confidence level produces a larger uncertainty radius, while
|
|
7363
|
+
# a lower confidence level produces a smaller, more precise radius.
|
|
7364
|
+
#
|
|
7365
|
+
# Valid range: 50 to 99 inclusive. If not specified, the default value
|
|
7366
|
+
# of 68 is used, which corresponds to approximately one standard
|
|
7367
|
+
# deviation of the normal distribution.
|
|
7285
7368
|
# @return [Integer]
|
|
7286
7369
|
#
|
|
7287
7370
|
class WiFiCellular < Struct.new(
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1021,6 +1021,18 @@ module Aws
|
|
|
1021
1021
|
assist_altitude: ::Float?,
|
|
1022
1022
|
use_2_d_solver: bool?
|
|
1023
1023
|
},
|
|
1024
|
+
?gnss_multi_frame: {
|
|
1025
|
+
captures: Array[
|
|
1026
|
+
{
|
|
1027
|
+
payload: ::String,
|
|
1028
|
+
capture_time: ::Float?
|
|
1029
|
+
}
|
|
1030
|
+
],
|
|
1031
|
+
capture_time_accuracy: ::Float?,
|
|
1032
|
+
assist_position: Array[::Float]?,
|
|
1033
|
+
assist_altitude: ::Float?,
|
|
1034
|
+
use_2_d_solver: bool?
|
|
1035
|
+
},
|
|
1024
1036
|
?timestamp: ::Time,
|
|
1025
1037
|
?advanced_configuration: {
|
|
1026
1038
|
wi_fi_cellular: {
|
data/sig/types.rbs
CHANGED
|
@@ -788,6 +788,7 @@ module Aws::IoTWireless
|
|
|
788
788
|
attr_accessor cell_towers: Types::CellTowers
|
|
789
789
|
attr_accessor ip: Types::Ip
|
|
790
790
|
attr_accessor gnss: Types::Gnss
|
|
791
|
+
attr_accessor gnss_multi_frame: Types::GnssMultiFrame
|
|
791
792
|
attr_accessor timestamp: ::Time
|
|
792
793
|
attr_accessor advanced_configuration: Types::AdvancedConfiguration
|
|
793
794
|
SENSITIVE: []
|
|
@@ -1025,6 +1026,21 @@ module Aws::IoTWireless
|
|
|
1025
1026
|
SENSITIVE: []
|
|
1026
1027
|
end
|
|
1027
1028
|
|
|
1029
|
+
class GnssCapture
|
|
1030
|
+
attr_accessor payload: ::String
|
|
1031
|
+
attr_accessor capture_time: ::Float
|
|
1032
|
+
SENSITIVE: []
|
|
1033
|
+
end
|
|
1034
|
+
|
|
1035
|
+
class GnssMultiFrame
|
|
1036
|
+
attr_accessor captures: ::Array[Types::GnssCapture]
|
|
1037
|
+
attr_accessor capture_time_accuracy: ::Float
|
|
1038
|
+
attr_accessor assist_position: ::Array[::Float]
|
|
1039
|
+
attr_accessor assist_altitude: ::Float
|
|
1040
|
+
attr_accessor use_2_d_solver: bool
|
|
1041
|
+
SENSITIVE: []
|
|
1042
|
+
end
|
|
1043
|
+
|
|
1028
1044
|
class GsmLocalId
|
|
1029
1045
|
attr_accessor bsic: ::Integer
|
|
1030
1046
|
attr_accessor bcch: ::Integer
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-iotwireless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.93.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.256.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.256.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|