aws-sdk-iotwireless 1.88.0 → 1.89.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +11 -1
- data/lib/aws-sdk-iotwireless/client_api.rb +7 -0
- data/lib/aws-sdk-iotwireless/types.rb +29 -2
- data/lib/aws-sdk-iotwireless.rb +1 -1
- data/sig/params.rbs +4 -0
- data/sig/types.rbs +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a27f5168baa0ce3e8ceba4b3b00fd18c213000a3f6333d75aea53d37062c201
|
|
4
|
+
data.tar.gz: cd9d9c030f489cb7e9321fc25232b4873b7cd49351b5fd6f8050948e930b9e39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44c9ec719c667ae16d2c378ea2c9c763f1823ac5a7ca7b4eb2a3612cfa3c43c61dcbd04986d74774fe5eb250b21507fc15fe2815634f2242d96a4a33d544d3d4
|
|
7
|
+
data.tar.gz: 07f7483904ff53a1b215134e75c91a55c196665d4f8aae27f40acb2ef97a6b70ebb2c4aa3e1d0db638e1816d9de000319226ec8214e1229569b1f582945b213e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.89.0 (2026-07-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Default session downlink transmission parameters have been added to the existing Multicast Group APIs. Explicit transmission parameters are no longer required when starting a multicast session during the FUOTA procedure.
|
|
8
|
+
|
|
4
9
|
1.88.0 (2026-05-22)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.89.0
|
|
@@ -1027,6 +1027,10 @@ module Aws::IoTWireless
|
|
|
1027
1027
|
# gateway_list: ["WirelessGatewayId"],
|
|
1028
1028
|
# transmission_interval: 1,
|
|
1029
1029
|
# },
|
|
1030
|
+
# default_session_parameters: {
|
|
1031
|
+
# dl_dr: 1,
|
|
1032
|
+
# dl_freq: 1,
|
|
1033
|
+
# },
|
|
1030
1034
|
# },
|
|
1031
1035
|
# tags: [
|
|
1032
1036
|
# {
|
|
@@ -2341,6 +2345,8 @@ module Aws::IoTWireless
|
|
|
2341
2345
|
# resp.lo_ra_wan.participating_gateways.gateway_list #=> Array
|
|
2342
2346
|
# resp.lo_ra_wan.participating_gateways.gateway_list[0] #=> String
|
|
2343
2347
|
# resp.lo_ra_wan.participating_gateways.transmission_interval #=> Integer
|
|
2348
|
+
# resp.lo_ra_wan.default_session_parameters.dl_dr #=> Integer
|
|
2349
|
+
# resp.lo_ra_wan.default_session_parameters.dl_freq #=> Integer
|
|
2344
2350
|
# resp.created_at #=> Time
|
|
2345
2351
|
#
|
|
2346
2352
|
# @overload get_multicast_group(params = {})
|
|
@@ -5041,6 +5047,10 @@ module Aws::IoTWireless
|
|
|
5041
5047
|
# gateway_list: ["WirelessGatewayId"],
|
|
5042
5048
|
# transmission_interval: 1,
|
|
5043
5049
|
# },
|
|
5050
|
+
# default_session_parameters: {
|
|
5051
|
+
# dl_dr: 1,
|
|
5052
|
+
# dl_freq: 1,
|
|
5053
|
+
# },
|
|
5044
5054
|
# },
|
|
5045
5055
|
# })
|
|
5046
5056
|
#
|
|
@@ -5472,7 +5482,7 @@ module Aws::IoTWireless
|
|
|
5472
5482
|
tracer: tracer
|
|
5473
5483
|
)
|
|
5474
5484
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
|
5475
|
-
context[:gem_version] = '1.
|
|
5485
|
+
context[:gem_version] = '1.89.0'
|
|
5476
5486
|
Seahorse::Client::Request.new(handlers, context)
|
|
5477
5487
|
end
|
|
5478
5488
|
|
|
@@ -112,6 +112,7 @@ module Aws::IoTWireless
|
|
|
112
112
|
DakCertificateId = Shapes::StringShape.new(name: 'DakCertificateId')
|
|
113
113
|
DakCertificateMetadata = Shapes::StructureShape.new(name: 'DakCertificateMetadata')
|
|
114
114
|
DakCertificateMetadataList = Shapes::ListShape.new(name: 'DakCertificateMetadataList')
|
|
115
|
+
DefaultSessionParametersMulticast = Shapes::StructureShape.new(name: 'DefaultSessionParametersMulticast')
|
|
115
116
|
DeleteDestinationRequest = Shapes::StructureShape.new(name: 'DeleteDestinationRequest')
|
|
116
117
|
DeleteDestinationResponse = Shapes::StructureShape.new(name: 'DeleteDestinationResponse')
|
|
117
118
|
DeleteDeviceProfileRequest = Shapes::StructureShape.new(name: 'DeleteDeviceProfileRequest')
|
|
@@ -987,6 +988,10 @@ module Aws::IoTWireless
|
|
|
987
988
|
|
|
988
989
|
DakCertificateMetadataList.member = Shapes::ShapeRef.new(shape: DakCertificateMetadata)
|
|
989
990
|
|
|
991
|
+
DefaultSessionParametersMulticast.add_member(:dl_dr, Shapes::ShapeRef.new(shape: DlDr, location_name: "DlDr"))
|
|
992
|
+
DefaultSessionParametersMulticast.add_member(:dl_freq, Shapes::ShapeRef.new(shape: DlFreq, location_name: "DlFreq"))
|
|
993
|
+
DefaultSessionParametersMulticast.struct_class = Types::DefaultSessionParametersMulticast
|
|
994
|
+
|
|
990
995
|
DeleteDestinationRequest.add_member(:name, Shapes::ShapeRef.new(shape: DestinationName, required: true, location: "uri", location_name: "Name"))
|
|
991
996
|
DeleteDestinationRequest.struct_class = Types::DeleteDestinationRequest
|
|
992
997
|
|
|
@@ -1797,6 +1802,7 @@ module Aws::IoTWireless
|
|
|
1797
1802
|
LoRaWANMulticast.add_member(:rf_region, Shapes::ShapeRef.new(shape: SupportedRfRegion, location_name: "RfRegion"))
|
|
1798
1803
|
LoRaWANMulticast.add_member(:dl_class, Shapes::ShapeRef.new(shape: DlClass, location_name: "DlClass"))
|
|
1799
1804
|
LoRaWANMulticast.add_member(:participating_gateways, Shapes::ShapeRef.new(shape: ParticipatingGatewaysMulticast, location_name: "ParticipatingGateways"))
|
|
1805
|
+
LoRaWANMulticast.add_member(:default_session_parameters, Shapes::ShapeRef.new(shape: DefaultSessionParametersMulticast, location_name: "DefaultSessionParameters"))
|
|
1800
1806
|
LoRaWANMulticast.struct_class = Types::LoRaWANMulticast
|
|
1801
1807
|
|
|
1802
1808
|
LoRaWANMulticastGet.add_member(:rf_region, Shapes::ShapeRef.new(shape: SupportedRfRegion, location_name: "RfRegion"))
|
|
@@ -1804,6 +1810,7 @@ module Aws::IoTWireless
|
|
|
1804
1810
|
LoRaWANMulticastGet.add_member(:number_of_devices_requested, Shapes::ShapeRef.new(shape: NumberOfDevicesRequested, location_name: "NumberOfDevicesRequested"))
|
|
1805
1811
|
LoRaWANMulticastGet.add_member(:number_of_devices_in_group, Shapes::ShapeRef.new(shape: NumberOfDevicesInGroup, location_name: "NumberOfDevicesInGroup"))
|
|
1806
1812
|
LoRaWANMulticastGet.add_member(:participating_gateways, Shapes::ShapeRef.new(shape: ParticipatingGatewaysMulticast, location_name: "ParticipatingGateways"))
|
|
1813
|
+
LoRaWANMulticastGet.add_member(:default_session_parameters, Shapes::ShapeRef.new(shape: DefaultSessionParametersMulticast, location_name: "DefaultSessionParameters"))
|
|
1807
1814
|
LoRaWANMulticastGet.struct_class = Types::LoRaWANMulticastGet
|
|
1808
1815
|
|
|
1809
1816
|
LoRaWANMulticastMetadata.add_member(:f_port, Shapes::ShapeRef.new(shape: FPort, location_name: "FPort"))
|
|
@@ -1255,6 +1255,23 @@ module Aws::IoTWireless
|
|
|
1255
1255
|
include Aws::Structure
|
|
1256
1256
|
end
|
|
1257
1257
|
|
|
1258
|
+
# The default session parameters for the multicast group.
|
|
1259
|
+
#
|
|
1260
|
+
# @!attribute [rw] dl_dr
|
|
1261
|
+
# Downlink data rate.
|
|
1262
|
+
# @return [Integer]
|
|
1263
|
+
#
|
|
1264
|
+
# @!attribute [rw] dl_freq
|
|
1265
|
+
# Downlink frequency.
|
|
1266
|
+
# @return [Integer]
|
|
1267
|
+
#
|
|
1268
|
+
class DefaultSessionParametersMulticast < Struct.new(
|
|
1269
|
+
:dl_dr,
|
|
1270
|
+
:dl_freq)
|
|
1271
|
+
SENSITIVE = []
|
|
1272
|
+
include Aws::Structure
|
|
1273
|
+
end
|
|
1274
|
+
|
|
1258
1275
|
# @!attribute [rw] name
|
|
1259
1276
|
# The name of the resource to delete.
|
|
1260
1277
|
# @return [String]
|
|
@@ -4515,10 +4532,15 @@ module Aws::IoTWireless
|
|
|
4515
4532
|
# interval between each message.
|
|
4516
4533
|
# @return [Types::ParticipatingGatewaysMulticast]
|
|
4517
4534
|
#
|
|
4535
|
+
# @!attribute [rw] default_session_parameters
|
|
4536
|
+
# The default session parameters for the multicast group.
|
|
4537
|
+
# @return [Types::DefaultSessionParametersMulticast]
|
|
4538
|
+
#
|
|
4518
4539
|
class LoRaWANMulticast < Struct.new(
|
|
4519
4540
|
:rf_region,
|
|
4520
4541
|
:dl_class,
|
|
4521
|
-
:participating_gateways
|
|
4542
|
+
:participating_gateways,
|
|
4543
|
+
:default_session_parameters)
|
|
4522
4544
|
SENSITIVE = []
|
|
4523
4545
|
include Aws::Structure
|
|
4524
4546
|
end
|
|
@@ -4550,12 +4572,17 @@ module Aws::IoTWireless
|
|
|
4550
4572
|
# interval between each message.
|
|
4551
4573
|
# @return [Types::ParticipatingGatewaysMulticast]
|
|
4552
4574
|
#
|
|
4575
|
+
# @!attribute [rw] default_session_parameters
|
|
4576
|
+
# The default session parameters for the multicast group.
|
|
4577
|
+
# @return [Types::DefaultSessionParametersMulticast]
|
|
4578
|
+
#
|
|
4553
4579
|
class LoRaWANMulticastGet < Struct.new(
|
|
4554
4580
|
:rf_region,
|
|
4555
4581
|
:dl_class,
|
|
4556
4582
|
:number_of_devices_requested,
|
|
4557
4583
|
:number_of_devices_in_group,
|
|
4558
|
-
:participating_gateways
|
|
4584
|
+
:participating_gateways,
|
|
4585
|
+
:default_session_parameters)
|
|
4559
4586
|
SENSITIVE = []
|
|
4560
4587
|
include Aws::Structure
|
|
4561
4588
|
end
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
data/sig/params.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -358,6 +358,12 @@ module Aws::IoTWireless
|
|
|
358
358
|
SENSITIVE: []
|
|
359
359
|
end
|
|
360
360
|
|
|
361
|
+
class DefaultSessionParametersMulticast
|
|
362
|
+
attr_accessor dl_dr: ::Integer
|
|
363
|
+
attr_accessor dl_freq: ::Integer
|
|
364
|
+
SENSITIVE: []
|
|
365
|
+
end
|
|
366
|
+
|
|
361
367
|
class DeleteDestinationRequest
|
|
362
368
|
attr_accessor name: ::String
|
|
363
369
|
SENSITIVE: []
|
|
@@ -1442,6 +1448,7 @@ module Aws::IoTWireless
|
|
|
1442
1448
|
attr_accessor rf_region: ("EU868" | "US915" | "AU915" | "AS923-1" | "AS923-2" | "AS923-3" | "AS923-4" | "EU433" | "CN470" | "CN779" | "RU864" | "KR920" | "IN865")
|
|
1443
1449
|
attr_accessor dl_class: ("ClassB" | "ClassC")
|
|
1444
1450
|
attr_accessor participating_gateways: Types::ParticipatingGatewaysMulticast
|
|
1451
|
+
attr_accessor default_session_parameters: Types::DefaultSessionParametersMulticast
|
|
1445
1452
|
SENSITIVE: []
|
|
1446
1453
|
end
|
|
1447
1454
|
|
|
@@ -1451,6 +1458,7 @@ module Aws::IoTWireless
|
|
|
1451
1458
|
attr_accessor number_of_devices_requested: ::Integer
|
|
1452
1459
|
attr_accessor number_of_devices_in_group: ::Integer
|
|
1453
1460
|
attr_accessor participating_gateways: Types::ParticipatingGatewaysMulticast
|
|
1461
|
+
attr_accessor default_session_parameters: Types::DefaultSessionParametersMulticast
|
|
1454
1462
|
SENSITIVE: []
|
|
1455
1463
|
end
|
|
1456
1464
|
|