aws-sdk-iotwireless 1.82.0 → 1.84.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9bbc1cfc4a3cee3b6dcc6372d3640d810006c96499ec2bce3062e7660ffbe512
4
- data.tar.gz: f954705c4e520eaab8314a9b83e44c9f032ab1a5b53c0b1df658e1b8ae9c6369
3
+ metadata.gz: 8827e01afca8ed7ead9ff6339cfa9558624aa7f16d8dee5ed650b1e4f60edec3
4
+ data.tar.gz: 46b3b4dcb3fa5610564ba5a058cada75a5c8576aa5ebce4af00505ac6c85a257
5
5
  SHA512:
6
- metadata.gz: 4786f1fa77b5831d3234fbae52455fc9119a488e3a1dec5cdb3dee4fbbedeb6b6d1eb27428f5ac28ee56d73e184a6c0981f84d748e16f197012303beaf658d7a
7
- data.tar.gz: e7ac4dd6ada8a3c1d4b909aff35d7db3dca515c6575f5df979af19cc8e9f8504a373d62fb240926c828d965b89f411864142dde65d1f4fc422d2cb029111d4bc
6
+ metadata.gz: a70f048a40d5888db2efbda8e3b316c9d0eca6a33e805d7890daffc2e6fc2a7e88d04ebb7276de7d0adf8e55d6d2094548a8142120bfcdb9c3d2c1f17d825b9d
7
+ data.tar.gz: ef57ea981db70241328ecd42ba29c22d89695e3690914b36570fd4499cc87848f563745aa7d11d93198cf1709de5e7198d4c2b1c62d60b218177a113032c4b65
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2026-04-22)
5
+ ------------------
6
+
7
+ * Feature - Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs.
8
+
9
+ 1.83.0 (2026-03-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.82.0 (2026-01-16)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.84.0
@@ -2584,6 +2584,10 @@ module Aws::IoTWireless
2584
2584
  # not specified, the time at which the request was received will be
2585
2585
  # used.
2586
2586
  #
2587
+ # @option params [Types::AdvancedConfiguration] :advanced_configuration
2588
+ # Optional configuration to customize position estimates. If not
2589
+ # provided, defaults are applied.
2590
+ #
2587
2591
  # @return [Types::GetPositionEstimateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2588
2592
  #
2589
2593
  # * {Types::GetPositionEstimateResponse#geo_json_payload #geo_json_payload} => IO
@@ -2731,6 +2735,11 @@ module Aws::IoTWireless
2731
2735
  # use_2_d_solver: false,
2732
2736
  # },
2733
2737
  # timestamp: Time.now,
2738
+ # advanced_configuration: {
2739
+ # wi_fi_cellular: {
2740
+ # confidence_percent: 1,
2741
+ # },
2742
+ # },
2734
2743
  # })
2735
2744
  #
2736
2745
  # @example Response structure
@@ -5465,7 +5474,7 @@ module Aws::IoTWireless
5465
5474
  tracer: tracer
5466
5475
  )
5467
5476
  context[:gem_name] = 'aws-sdk-iotwireless'
5468
- context[:gem_version] = '1.82.0'
5477
+ context[:gem_version] = '1.84.0'
5469
5478
  Seahorse::Client::Request.new(handlers, context)
5470
5479
  end
5471
5480
 
@@ -21,6 +21,7 @@ module Aws::IoTWireless
21
21
  Accuracy = Shapes::StructureShape.new(name: 'Accuracy')
22
22
  AckModeRetryDurationSecs = Shapes::IntegerShape.new(name: 'AckModeRetryDurationSecs')
23
23
  AddGwMetadata = Shapes::BooleanShape.new(name: 'AddGwMetadata')
24
+ AdvancedConfiguration = Shapes::StructureShape.new(name: 'AdvancedConfiguration')
24
25
  AggregationPeriod = Shapes::StringShape.new(name: 'AggregationPeriod')
25
26
  AmazonId = Shapes::StringShape.new(name: 'AmazonId')
26
27
  AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
@@ -78,6 +79,7 @@ module Aws::IoTWireless
78
79
  ClassBTimeout = Shapes::IntegerShape.new(name: 'ClassBTimeout')
79
80
  ClassCTimeout = Shapes::IntegerShape.new(name: 'ClassCTimeout')
80
81
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
82
+ ConfidencePercent = Shapes::IntegerShape.new(name: 'ConfidencePercent')
81
83
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
82
84
  ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
83
85
  ConnectionStatusEventConfiguration = Shapes::StructureShape.new(name: 'ConnectionStatusEventConfiguration')
@@ -681,6 +683,7 @@ module Aws::IoTWireless
681
683
  WcdmaObj = Shapes::StructureShape.new(name: 'WcdmaObj')
682
684
  WiFiAccessPoint = Shapes::StructureShape.new(name: 'WiFiAccessPoint')
683
685
  WiFiAccessPoints = Shapes::ListShape.new(name: 'WiFiAccessPoints')
686
+ WiFiCellular = Shapes::StructureShape.new(name: 'WiFiCellular')
684
687
  WirelessDeviceArn = Shapes::StringShape.new(name: 'WirelessDeviceArn')
685
688
  WirelessDeviceEvent = Shapes::StringShape.new(name: 'WirelessDeviceEvent')
686
689
  WirelessDeviceEventLogOption = Shapes::StructureShape.new(name: 'WirelessDeviceEventLogOption')
@@ -737,6 +740,9 @@ module Aws::IoTWireless
737
740
  Accuracy.add_member(:vertical_accuracy, Shapes::ShapeRef.new(shape: VerticalAccuracy, location_name: "VerticalAccuracy"))
738
741
  Accuracy.struct_class = Types::Accuracy
739
742
 
743
+ AdvancedConfiguration.add_member(:wi_fi_cellular, Shapes::ShapeRef.new(shape: WiFiCellular, location_name: "WiFiCellular"))
744
+ AdvancedConfiguration.struct_class = Types::AdvancedConfiguration
745
+
740
746
  ApplicationConfig.add_member(:f_port, Shapes::ShapeRef.new(shape: FPort, location_name: "FPort"))
741
747
  ApplicationConfig.add_member(:type, Shapes::ShapeRef.new(shape: ApplicationConfigType, location_name: "Type"))
742
748
  ApplicationConfig.add_member(:destination_name, Shapes::ShapeRef.new(shape: DestinationName, location_name: "DestinationName"))
@@ -1300,6 +1306,7 @@ module Aws::IoTWireless
1300
1306
  GetPositionEstimateRequest.add_member(:ip, Shapes::ShapeRef.new(shape: Ip, location_name: "Ip"))
1301
1307
  GetPositionEstimateRequest.add_member(:gnss, Shapes::ShapeRef.new(shape: Gnss, location_name: "Gnss"))
1302
1308
  GetPositionEstimateRequest.add_member(:timestamp, Shapes::ShapeRef.new(shape: CreationDate, location_name: "Timestamp"))
1309
+ GetPositionEstimateRequest.add_member(:advanced_configuration, Shapes::ShapeRef.new(shape: AdvancedConfiguration, location_name: "AdvancedConfiguration"))
1303
1310
  GetPositionEstimateRequest.struct_class = Types::GetPositionEstimateRequest
1304
1311
 
1305
1312
  GetPositionEstimateResponse.add_member(:geo_json_payload, Shapes::ShapeRef.new(shape: GeoJsonPayload, location_name: "GeoJsonPayload"))
@@ -2463,6 +2470,9 @@ module Aws::IoTWireless
2463
2470
 
2464
2471
  WiFiAccessPoints.member = Shapes::ShapeRef.new(shape: WiFiAccessPoint)
2465
2472
 
2473
+ WiFiCellular.add_member(:confidence_percent, Shapes::ShapeRef.new(shape: ConfidencePercent, location_name: "ConfidencePercent"))
2474
+ WiFiCellular.struct_class = Types::WiFiCellular
2475
+
2466
2476
  WirelessDeviceEventLogOption.add_member(:event, Shapes::ShapeRef.new(shape: WirelessDeviceEvent, required: true, location_name: "Event"))
2467
2477
  WirelessDeviceEventLogOption.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "LogLevel"))
2468
2478
  WirelessDeviceEventLogOption.struct_class = Types::WirelessDeviceEventLogOption
@@ -90,6 +90,19 @@ module Aws::IoTWireless
90
90
  include Aws::Structure
91
91
  end
92
92
 
93
+ # Optional configuration to customize location estimates.
94
+ #
95
+ # @!attribute [rw] wi_fi_cellular
96
+ # Configuration for WiFi and cellular-based payloads for location
97
+ # estimates.
98
+ # @return [Types::WiFiCellular]
99
+ #
100
+ class AdvancedConfiguration < Struct.new(
101
+ :wi_fi_cellular)
102
+ SENSITIVE = []
103
+ include Aws::Structure
104
+ end
105
+
93
106
  # LoRaWAN application configuration, which can be used to perform
94
107
  # geolocation.
95
108
  #
@@ -2354,12 +2367,18 @@ module Aws::IoTWireless
2354
2367
  # used.
2355
2368
  # @return [Time]
2356
2369
  #
2370
+ # @!attribute [rw] advanced_configuration
2371
+ # Optional configuration to customize position estimates. If not
2372
+ # provided, defaults are applied.
2373
+ # @return [Types::AdvancedConfiguration]
2374
+ #
2357
2375
  class GetPositionEstimateRequest < Struct.new(
2358
2376
  :wi_fi_access_points,
2359
2377
  :cell_towers,
2360
2378
  :ip,
2361
2379
  :gnss,
2362
- :timestamp)
2380
+ :timestamp,
2381
+ :advanced_configuration)
2363
2382
  SENSITIVE = []
2364
2383
  include Aws::Structure
2365
2384
  end
@@ -7230,6 +7249,20 @@ module Aws::IoTWireless
7230
7249
  include Aws::Structure
7231
7250
  end
7232
7251
 
7252
+ # Configuration for WiFi and cellular location payloads.
7253
+ #
7254
+ # @!attribute [rw] confidence_percent
7255
+ # Confidence level for WiFi and cellular position estimates, expressed
7256
+ # as a percentage. Valid range: 50–99 inclusive. Defaults to 68 if not
7257
+ # specified.
7258
+ # @return [Integer]
7259
+ #
7260
+ class WiFiCellular < Struct.new(
7261
+ :confidence_percent)
7262
+ SENSITIVE = []
7263
+ include Aws::Structure
7264
+ end
7265
+
7233
7266
  # The log options for a wireless device event and can be used to set log
7234
7267
  # levels for a specific wireless device event.
7235
7268
  #
@@ -54,7 +54,7 @@ module Aws::IoTWireless
54
54
  autoload :EndpointProvider, 'aws-sdk-iotwireless/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-iotwireless/endpoints'
56
56
 
57
- GEM_VERSION = '1.82.0'
57
+ GEM_VERSION = '1.84.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1028,7 +1028,12 @@ module Aws
1028
1028
  assist_altitude: ::Float?,
1029
1029
  use_2_d_solver: bool?
1030
1030
  },
1031
- ?timestamp: ::Time
1031
+ ?timestamp: ::Time,
1032
+ ?advanced_configuration: {
1033
+ wi_fi_cellular: {
1034
+ confidence_percent: ::Integer?
1035
+ }?
1036
+ }
1032
1037
  ) ?{ (*untyped) -> void } -> _GetPositionEstimateResponseSuccess
1033
1038
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetPositionEstimateResponseSuccess
1034
1039
 
data/sig/types.rbs CHANGED
@@ -33,6 +33,11 @@ module Aws::IoTWireless
33
33
  SENSITIVE: []
34
34
  end
35
35
 
36
+ class AdvancedConfiguration
37
+ attr_accessor wi_fi_cellular: Types::WiFiCellular
38
+ SENSITIVE: []
39
+ end
40
+
36
41
  class ApplicationConfig
37
42
  attr_accessor f_port: ::Integer
38
43
  attr_accessor type: ("SemtechGeolocation")
@@ -778,6 +783,7 @@ module Aws::IoTWireless
778
783
  attr_accessor ip: Types::Ip
779
784
  attr_accessor gnss: Types::Gnss
780
785
  attr_accessor timestamp: ::Time
786
+ attr_accessor advanced_configuration: Types::AdvancedConfiguration
781
787
  SENSITIVE: []
782
788
  end
783
789
 
@@ -2298,6 +2304,11 @@ module Aws::IoTWireless
2298
2304
  SENSITIVE: []
2299
2305
  end
2300
2306
 
2307
+ class WiFiCellular
2308
+ attr_accessor confidence_percent: ::Integer
2309
+ SENSITIVE: []
2310
+ end
2311
+
2301
2312
  class WirelessDeviceEventLogOption
2302
2313
  attr_accessor event: ("Join" | "Rejoin" | "Uplink_Data" | "Downlink_Data" | "Registration")
2303
2314
  attr_accessor log_level: ("INFO" | "ERROR" | "DISABLED")
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.82.0
4
+ version: 1.84.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.241.4
21
+ version: 3.244.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.241.4
31
+ version: 3.244.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement