aws-sdk-iotwireless 1.69.0 → 1.71.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 +27 -9
- data/lib/aws-sdk-iotwireless/client_api.rb +12 -0
- data/lib/aws-sdk-iotwireless/types.rb +58 -2
- data/lib/aws-sdk-iotwireless.rb +1 -1
- data/sig/client.rbs +6 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +8 -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: af79d563df1db6d999e931705fa6f835191e367615f0cf3809b35a3197254110
|
4
|
+
data.tar.gz: cb03ef3a15e94f0344bcbb1d26bb0648dac9239ca95f3e4683354f1b727bd54e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b01e43fde74c76ae15fc6fbd23fe0537da14d9d41f06ea897a354f0c6a992e272fc836dd0e2213d9ffefdb5d4661660960eabc275b8325d3f2d2dc5d8a251fba
|
7
|
+
data.tar.gz: 0d872d57a9429913dd6559d052aeda69b243bc9598b7fae7f4151020462491eb99e4d920fd74bd37327609a3378b9d31ac1f33ec856635956e562ae99be34b1b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.71.0 (2025-07-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added TxPowerIndexMin, TxPowerIndexMax, NbTransMin and NbTransMax params to ServiceProfile.
|
8
|
+
|
9
|
+
1.70.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.69.0 (2025-07-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.0
|
@@ -95,7 +95,7 @@ module Aws::IoTWireless
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::IoTWireless
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::IoTWireless
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::IoTWireless
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::IoTWireless
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1180,6 +1190,10 @@ module Aws::IoTWireless
|
|
1180
1190
|
# dr_max: 1,
|
1181
1191
|
# pr_allowed: false,
|
1182
1192
|
# ra_allowed: false,
|
1193
|
+
# tx_power_index_min: 1,
|
1194
|
+
# tx_power_index_max: 1,
|
1195
|
+
# nb_trans_min: 1,
|
1196
|
+
# nb_trans_max: 1,
|
1183
1197
|
# },
|
1184
1198
|
# tags: [
|
1185
1199
|
# {
|
@@ -2925,6 +2939,10 @@ module Aws::IoTWireless
|
|
2925
2939
|
# resp.lo_ra_wan.nwk_geo_loc #=> Boolean
|
2926
2940
|
# resp.lo_ra_wan.target_per #=> Integer
|
2927
2941
|
# resp.lo_ra_wan.min_gw_diversity #=> Integer
|
2942
|
+
# resp.lo_ra_wan.tx_power_index_min #=> Integer
|
2943
|
+
# resp.lo_ra_wan.tx_power_index_max #=> Integer
|
2944
|
+
# resp.lo_ra_wan.nb_trans_min #=> Integer
|
2945
|
+
# resp.lo_ra_wan.nb_trans_max #=> Integer
|
2928
2946
|
#
|
2929
2947
|
# @overload get_service_profile(params = {})
|
2930
2948
|
# @param [Hash] params ({})
|
@@ -5408,7 +5426,7 @@ module Aws::IoTWireless
|
|
5408
5426
|
tracer: tracer
|
5409
5427
|
)
|
5410
5428
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
5411
|
-
context[:gem_version] = '1.
|
5429
|
+
context[:gem_version] = '1.71.0'
|
5412
5430
|
Seahorse::Client::Request.new(handlers, context)
|
5413
5431
|
end
|
5414
5432
|
|
@@ -439,6 +439,8 @@ module Aws::IoTWireless
|
|
439
439
|
MulticastGroupStatus = Shapes::StringShape.new(name: 'MulticastGroupStatus')
|
440
440
|
MulticastWirelessMetadata = Shapes::StructureShape.new(name: 'MulticastWirelessMetadata')
|
441
441
|
NRCapable = Shapes::BooleanShape.new(name: 'NRCapable')
|
442
|
+
NbTransMax = Shapes::IntegerShape.new(name: 'NbTransMax')
|
443
|
+
NbTransMin = Shapes::IntegerShape.new(name: 'NbTransMin')
|
442
444
|
NetId = Shapes::StringShape.new(name: 'NetId')
|
443
445
|
NetIdFilters = Shapes::ListShape.new(name: 'NetIdFilters')
|
444
446
|
NetworkAnalyzerConfigurationArn = Shapes::StringShape.new(name: 'NetworkAnalyzerConfigurationArn')
|
@@ -621,6 +623,8 @@ module Aws::IoTWireless
|
|
621
623
|
TransmissionInterval = Shapes::IntegerShape.new(name: 'TransmissionInterval')
|
622
624
|
TransmissionIntervalMulticast = Shapes::IntegerShape.new(name: 'TransmissionIntervalMulticast')
|
623
625
|
TransmitMode = Shapes::IntegerShape.new(name: 'TransmitMode')
|
626
|
+
TxPowerIndexMax = Shapes::IntegerShape.new(name: 'TxPowerIndexMax')
|
627
|
+
TxPowerIndexMin = Shapes::IntegerShape.new(name: 'TxPowerIndexMin')
|
624
628
|
UARFCN = Shapes::IntegerShape.new(name: 'UARFCN')
|
625
629
|
UARFCNDL = Shapes::IntegerShape.new(name: 'UARFCNDL')
|
626
630
|
UlBucketSize = Shapes::IntegerShape.new(name: 'UlBucketSize')
|
@@ -1762,6 +1766,10 @@ module Aws::IoTWireless
|
|
1762
1766
|
LoRaWANGetServiceProfileInfo.add_member(:nwk_geo_loc, Shapes::ShapeRef.new(shape: NwkGeoLoc, location_name: "NwkGeoLoc"))
|
1763
1767
|
LoRaWANGetServiceProfileInfo.add_member(:target_per, Shapes::ShapeRef.new(shape: TargetPer, location_name: "TargetPer"))
|
1764
1768
|
LoRaWANGetServiceProfileInfo.add_member(:min_gw_diversity, Shapes::ShapeRef.new(shape: MinGwDiversity, location_name: "MinGwDiversity"))
|
1769
|
+
LoRaWANGetServiceProfileInfo.add_member(:tx_power_index_min, Shapes::ShapeRef.new(shape: TxPowerIndexMin, location_name: "TxPowerIndexMin"))
|
1770
|
+
LoRaWANGetServiceProfileInfo.add_member(:tx_power_index_max, Shapes::ShapeRef.new(shape: TxPowerIndexMax, location_name: "TxPowerIndexMax"))
|
1771
|
+
LoRaWANGetServiceProfileInfo.add_member(:nb_trans_min, Shapes::ShapeRef.new(shape: NbTransMin, location_name: "NbTransMin"))
|
1772
|
+
LoRaWANGetServiceProfileInfo.add_member(:nb_trans_max, Shapes::ShapeRef.new(shape: NbTransMax, location_name: "NbTransMax"))
|
1765
1773
|
LoRaWANGetServiceProfileInfo.struct_class = Types::LoRaWANGetServiceProfileInfo
|
1766
1774
|
|
1767
1775
|
LoRaWANJoinEventNotificationConfigurations.add_member(:dev_eui_event_topic, Shapes::ShapeRef.new(shape: EventNotificationTopicStatus, location_name: "DevEuiEventTopic"))
|
@@ -1814,6 +1822,10 @@ module Aws::IoTWireless
|
|
1814
1822
|
LoRaWANServiceProfile.add_member(:dr_max, Shapes::ShapeRef.new(shape: DrMaxBox, location_name: "DrMax"))
|
1815
1823
|
LoRaWANServiceProfile.add_member(:pr_allowed, Shapes::ShapeRef.new(shape: PrAllowed, location_name: "PrAllowed"))
|
1816
1824
|
LoRaWANServiceProfile.add_member(:ra_allowed, Shapes::ShapeRef.new(shape: RaAllowed, location_name: "RaAllowed"))
|
1825
|
+
LoRaWANServiceProfile.add_member(:tx_power_index_min, Shapes::ShapeRef.new(shape: TxPowerIndexMin, location_name: "TxPowerIndexMin"))
|
1826
|
+
LoRaWANServiceProfile.add_member(:tx_power_index_max, Shapes::ShapeRef.new(shape: TxPowerIndexMax, location_name: "TxPowerIndexMax"))
|
1827
|
+
LoRaWANServiceProfile.add_member(:nb_trans_min, Shapes::ShapeRef.new(shape: NbTransMin, location_name: "NbTransMin"))
|
1828
|
+
LoRaWANServiceProfile.add_member(:nb_trans_max, Shapes::ShapeRef.new(shape: NbTransMax, location_name: "NbTransMax"))
|
1817
1829
|
LoRaWANServiceProfile.struct_class = Types::LoRaWANServiceProfile
|
1818
1830
|
|
1819
1831
|
LoRaWANStartFuotaTask.add_member(:start_time, Shapes::ShapeRef.new(shape: StartTime, location_name: "StartTime"))
|
@@ -4373,6 +4373,30 @@ module Aws::IoTWireless
|
|
4373
4373
|
# The MinGwDiversity value.
|
4374
4374
|
# @return [Integer]
|
4375
4375
|
#
|
4376
|
+
# @!attribute [rw] tx_power_index_min
|
4377
|
+
# The Transmit Power Index minimum value.
|
4378
|
+
#
|
4379
|
+
# Default: `0`
|
4380
|
+
# @return [Integer]
|
4381
|
+
#
|
4382
|
+
# @!attribute [rw] tx_power_index_max
|
4383
|
+
# The Transmit Power Index maximum value.
|
4384
|
+
#
|
4385
|
+
# Default: `15`
|
4386
|
+
# @return [Integer]
|
4387
|
+
#
|
4388
|
+
# @!attribute [rw] nb_trans_min
|
4389
|
+
# The minimum number of transmissions.
|
4390
|
+
#
|
4391
|
+
# Default: `0`
|
4392
|
+
# @return [Integer]
|
4393
|
+
#
|
4394
|
+
# @!attribute [rw] nb_trans_max
|
4395
|
+
# The maximum number of transmissions.
|
4396
|
+
#
|
4397
|
+
# Default: `3`
|
4398
|
+
# @return [Integer]
|
4399
|
+
#
|
4376
4400
|
class LoRaWANGetServiceProfileInfo < Struct.new(
|
4377
4401
|
:ul_rate,
|
4378
4402
|
:ul_bucket_size,
|
@@ -4392,7 +4416,11 @@ module Aws::IoTWireless
|
|
4392
4416
|
:ra_allowed,
|
4393
4417
|
:nwk_geo_loc,
|
4394
4418
|
:target_per,
|
4395
|
-
:min_gw_diversity
|
4419
|
+
:min_gw_diversity,
|
4420
|
+
:tx_power_index_min,
|
4421
|
+
:tx_power_index_max,
|
4422
|
+
:nb_trans_min,
|
4423
|
+
:nb_trans_max)
|
4396
4424
|
SENSITIVE = []
|
4397
4425
|
include Aws::Structure
|
4398
4426
|
end
|
@@ -4628,12 +4656,40 @@ module Aws::IoTWireless
|
|
4628
4656
|
# allowed.
|
4629
4657
|
# @return [Boolean]
|
4630
4658
|
#
|
4659
|
+
# @!attribute [rw] tx_power_index_min
|
4660
|
+
# The Transmit Power Index minimum.
|
4661
|
+
#
|
4662
|
+
# Default: `0`
|
4663
|
+
# @return [Integer]
|
4664
|
+
#
|
4665
|
+
# @!attribute [rw] tx_power_index_max
|
4666
|
+
# The Transmit Power Index maximum.
|
4667
|
+
#
|
4668
|
+
# Default: `15`
|
4669
|
+
# @return [Integer]
|
4670
|
+
#
|
4671
|
+
# @!attribute [rw] nb_trans_min
|
4672
|
+
# The minimum number of transmissions.
|
4673
|
+
#
|
4674
|
+
# Default: `0`
|
4675
|
+
# @return [Integer]
|
4676
|
+
#
|
4677
|
+
# @!attribute [rw] nb_trans_max
|
4678
|
+
# The maximum number of transmissions.
|
4679
|
+
#
|
4680
|
+
# Default: `3`
|
4681
|
+
# @return [Integer]
|
4682
|
+
#
|
4631
4683
|
class LoRaWANServiceProfile < Struct.new(
|
4632
4684
|
:add_gw_metadata,
|
4633
4685
|
:dr_min,
|
4634
4686
|
:dr_max,
|
4635
4687
|
:pr_allowed,
|
4636
|
-
:ra_allowed
|
4688
|
+
:ra_allowed,
|
4689
|
+
:tx_power_index_min,
|
4690
|
+
:tx_power_index_max,
|
4691
|
+
:nb_trans_min,
|
4692
|
+
:nb_trans_max)
|
4637
4693
|
SENSITIVE = []
|
4638
4694
|
include Aws::Structure
|
4639
4695
|
end
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -326,7 +327,11 @@ module Aws
|
|
326
327
|
dr_min: ::Integer?,
|
327
328
|
dr_max: ::Integer?,
|
328
329
|
pr_allowed: bool?,
|
329
|
-
ra_allowed: bool
|
330
|
+
ra_allowed: bool?,
|
331
|
+
tx_power_index_min: ::Integer?,
|
332
|
+
tx_power_index_max: ::Integer?,
|
333
|
+
nb_trans_min: ::Integer?,
|
334
|
+
nb_trans_max: ::Integer?
|
330
335
|
},
|
331
336
|
?tags: Array[
|
332
337
|
{
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -1407,6 +1407,10 @@ module Aws::IoTWireless
|
|
1407
1407
|
attr_accessor nwk_geo_loc: bool
|
1408
1408
|
attr_accessor target_per: ::Integer
|
1409
1409
|
attr_accessor min_gw_diversity: ::Integer
|
1410
|
+
attr_accessor tx_power_index_min: ::Integer
|
1411
|
+
attr_accessor tx_power_index_max: ::Integer
|
1412
|
+
attr_accessor nb_trans_min: ::Integer
|
1413
|
+
attr_accessor nb_trans_max: ::Integer
|
1410
1414
|
SENSITIVE: []
|
1411
1415
|
end
|
1412
1416
|
|
@@ -1477,6 +1481,10 @@ module Aws::IoTWireless
|
|
1477
1481
|
attr_accessor dr_max: ::Integer
|
1478
1482
|
attr_accessor pr_allowed: bool
|
1479
1483
|
attr_accessor ra_allowed: bool
|
1484
|
+
attr_accessor tx_power_index_min: ::Integer
|
1485
|
+
attr_accessor tx_power_index_max: ::Integer
|
1486
|
+
attr_accessor nb_trans_min: ::Integer
|
1487
|
+
attr_accessor nb_trans_max: ::Integer
|
1480
1488
|
SENSITIVE: []
|
1481
1489
|
end
|
1482
1490
|
|
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.71.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.227.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.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|