aws-sdk-iotwireless 1.32.0 → 1.34.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 +60 -23
- data/lib/aws-sdk-iotwireless/client_api.rb +9 -0
- data/lib/aws-sdk-iotwireless/types.rb +106 -37
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 611b5084afab1613a7234f4e815ab5bbdbc3419c6a728c7dae9fe710b8b37b1f
|
4
|
+
data.tar.gz: 03e82f14d292e62f09640eaebd1893d7c806eb626ea2fbc871a0a483639268ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e263e5ff23b1d1d4d9354a5b34f7d4391a8790a3c08c47beeb8cd29cec23583cba69ed7ace4cf91a4391561979478f1397bb1dfc0b3f4c6d127d470a836b401
|
7
|
+
data.tar.gz: 8b445d0231853ee4a8ccaa55f8c2f44b1d87ef0b3b91438ec51a5bb3757f3bded7e5fd99401da98c95f3ee9c9ed1e791ce941456db2c62b8b0e78df530d5ef70
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.34.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.33.0 (2023-05-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add Multicast Group support in Network Analyzer Configuration.
|
13
|
+
|
4
14
|
1.32.0 (2023-04-17)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.34.0
|
@@ -275,6 +275,11 @@ module Aws::IoTWireless
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -765,21 +770,25 @@ module Aws::IoTWireless
|
|
765
770
|
# you can use to manage a resource.
|
766
771
|
#
|
767
772
|
# @option params [Integer] :redundancy_percent
|
768
|
-
# The percentage of added redundant
|
769
|
-
#
|
770
|
-
# `RedundancyPercent` set to 50(%), the final
|
771
|
-
# fragments is (100 / 10) + (100 / 10 * 50%) = 15.
|
773
|
+
# The percentage of the added fragments that are redundant. For example,
|
774
|
+
# if the size of the firmware image file is 100 bytes and the fragment
|
775
|
+
# size is 10 bytes, with `RedundancyPercent` set to 50(%), the final
|
776
|
+
# number of encoded fragments is (100 / 10) + (100 / 10 * 50%) = 15.
|
772
777
|
#
|
773
778
|
# @option params [Integer] :fragment_size_bytes
|
774
|
-
# The size of each fragment in bytes.
|
775
|
-
# tasks with multicast groups.
|
779
|
+
# The size of each fragment in bytes. This parameter is supported only
|
780
|
+
# for FUOTA tasks with multicast groups.
|
776
781
|
#
|
777
782
|
# @option params [Integer] :fragment_interval_ms
|
778
|
-
# The interval
|
779
|
-
#
|
780
|
-
#
|
781
|
-
#
|
782
|
-
#
|
783
|
+
# The interval for sending fragments in milliseconds, rounded to the
|
784
|
+
# nearest second.
|
785
|
+
#
|
786
|
+
# <note markdown="1"> This interval only determines the timing for when the Cloud sends down
|
787
|
+
# the fragments to yor device. There can be a delay for when your device
|
788
|
+
# will receive these fragments. This delay depends on the device's
|
789
|
+
# class and the communication delay with the cloud.
|
790
|
+
#
|
791
|
+
# </note>
|
783
792
|
#
|
784
793
|
# @return [Types::CreateFuotaTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
785
794
|
#
|
@@ -913,6 +922,11 @@ module Aws::IoTWireless
|
|
913
922
|
# **A suitable default value is auto-generated.** You should normally
|
914
923
|
# not need to pass this option.**
|
915
924
|
#
|
925
|
+
# @option params [Array<String>] :multicast_groups
|
926
|
+
# Multicast Group resources to add to the network analyzer
|
927
|
+
# configruation. Provide the `MulticastGroupId` of the resource to add
|
928
|
+
# in the input array.
|
929
|
+
#
|
916
930
|
# @return [Types::CreateNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
917
931
|
#
|
918
932
|
# * {Types::CreateNetworkAnalyzerConfigurationResponse#arn #arn} => String
|
@@ -925,6 +939,7 @@ module Aws::IoTWireless
|
|
925
939
|
# trace_content: {
|
926
940
|
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
927
941
|
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
942
|
+
# multicast_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
928
943
|
# },
|
929
944
|
# wireless_devices: ["WirelessDeviceId"],
|
930
945
|
# wireless_gateways: ["WirelessGatewayId"],
|
@@ -936,6 +951,7 @@ module Aws::IoTWireless
|
|
936
951
|
# },
|
937
952
|
# ],
|
938
953
|
# client_request_token: "ClientRequestToken",
|
954
|
+
# multicast_groups: ["MulticastGroupId"],
|
939
955
|
# })
|
940
956
|
#
|
941
957
|
# @example Response structure
|
@@ -2035,6 +2051,7 @@ module Aws::IoTWireless
|
|
2035
2051
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#description #description} => String
|
2036
2052
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#arn #arn} => String
|
2037
2053
|
# * {Types::GetNetworkAnalyzerConfigurationResponse#name #name} => String
|
2054
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#multicast_groups #multicast_groups} => Array<String>
|
2038
2055
|
#
|
2039
2056
|
# @example Request syntax with placeholder values
|
2040
2057
|
#
|
@@ -2046,6 +2063,7 @@ module Aws::IoTWireless
|
|
2046
2063
|
#
|
2047
2064
|
# resp.trace_content.wireless_device_frame_info #=> String, one of "ENABLED", "DISABLED"
|
2048
2065
|
# resp.trace_content.log_level #=> String, one of "INFO", "ERROR", "DISABLED"
|
2066
|
+
# resp.trace_content.multicast_frame_info #=> String, one of "ENABLED", "DISABLED"
|
2049
2067
|
# resp.wireless_devices #=> Array
|
2050
2068
|
# resp.wireless_devices[0] #=> String
|
2051
2069
|
# resp.wireless_gateways #=> Array
|
@@ -2053,6 +2071,8 @@ module Aws::IoTWireless
|
|
2053
2071
|
# resp.description #=> String
|
2054
2072
|
# resp.arn #=> String
|
2055
2073
|
# resp.name #=> String
|
2074
|
+
# resp.multicast_groups #=> Array
|
2075
|
+
# resp.multicast_groups[0] #=> String
|
2056
2076
|
#
|
2057
2077
|
# @overload get_network_analyzer_configuration(params = {})
|
2058
2078
|
# @param [Hash] params ({})
|
@@ -4444,21 +4464,25 @@ module Aws::IoTWireless
|
|
4444
4464
|
# The firmware update role that is to be used with a FUOTA task.
|
4445
4465
|
#
|
4446
4466
|
# @option params [Integer] :redundancy_percent
|
4447
|
-
# The percentage of added redundant
|
4448
|
-
#
|
4449
|
-
# `RedundancyPercent` set to 50(%), the final
|
4450
|
-
# fragments is (100 / 10) + (100 / 10 * 50%) = 15.
|
4467
|
+
# The percentage of the added fragments that are redundant. For example,
|
4468
|
+
# if the size of the firmware image file is 100 bytes and the fragment
|
4469
|
+
# size is 10 bytes, with `RedundancyPercent` set to 50(%), the final
|
4470
|
+
# number of encoded fragments is (100 / 10) + (100 / 10 * 50%) = 15.
|
4451
4471
|
#
|
4452
4472
|
# @option params [Integer] :fragment_size_bytes
|
4453
|
-
# The size of each fragment in bytes.
|
4454
|
-
# tasks with multicast groups.
|
4473
|
+
# The size of each fragment in bytes. This parameter is supported only
|
4474
|
+
# for FUOTA tasks with multicast groups.
|
4455
4475
|
#
|
4456
4476
|
# @option params [Integer] :fragment_interval_ms
|
4457
|
-
# The interval
|
4458
|
-
#
|
4459
|
-
#
|
4460
|
-
#
|
4461
|
-
#
|
4477
|
+
# The interval for sending fragments in milliseconds, rounded to the
|
4478
|
+
# nearest second.
|
4479
|
+
#
|
4480
|
+
# <note markdown="1"> This interval only determines the timing for when the Cloud sends down
|
4481
|
+
# the fragments to yor device. There can be a delay for when your device
|
4482
|
+
# will receive these fragments. This delay depends on the device's
|
4483
|
+
# class and the communication delay with the cloud.
|
4484
|
+
#
|
4485
|
+
# </note>
|
4462
4486
|
#
|
4463
4487
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4464
4488
|
#
|
@@ -4606,6 +4630,16 @@ module Aws::IoTWireless
|
|
4606
4630
|
# @option params [String] :description
|
4607
4631
|
# The description of the new resource.
|
4608
4632
|
#
|
4633
|
+
# @option params [Array<String>] :multicast_groups_to_add
|
4634
|
+
# Multicast group resources to add to the network analyzer
|
4635
|
+
# configuration. Provide the `MulticastGroupId` of the resource to add
|
4636
|
+
# in the input array.
|
4637
|
+
#
|
4638
|
+
# @option params [Array<String>] :multicast_groups_to_remove
|
4639
|
+
# Multicast group resources to remove from the network analyzer
|
4640
|
+
# configuration. Provide the `MulticastGroupId` of the resource to
|
4641
|
+
# remove in the input array.
|
4642
|
+
#
|
4609
4643
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4610
4644
|
#
|
4611
4645
|
# @example Request syntax with placeholder values
|
@@ -4615,12 +4649,15 @@ module Aws::IoTWireless
|
|
4615
4649
|
# trace_content: {
|
4616
4650
|
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
4617
4651
|
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
4652
|
+
# multicast_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
4618
4653
|
# },
|
4619
4654
|
# wireless_devices_to_add: ["WirelessDeviceId"],
|
4620
4655
|
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
4621
4656
|
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
4622
4657
|
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
4623
4658
|
# description: "Description",
|
4659
|
+
# multicast_groups_to_add: ["MulticastGroupId"],
|
4660
|
+
# multicast_groups_to_remove: ["MulticastGroupId"],
|
4624
4661
|
# })
|
4625
4662
|
#
|
4626
4663
|
# @overload update_network_analyzer_configuration(params = {})
|
@@ -4961,7 +4998,7 @@ module Aws::IoTWireless
|
|
4961
4998
|
params: params,
|
4962
4999
|
config: config)
|
4963
5000
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
4964
|
-
context[:gem_version] = '1.
|
5001
|
+
context[:gem_version] = '1.34.0'
|
4965
5002
|
Seahorse::Client::Request.new(handlers, context)
|
4966
5003
|
end
|
4967
5004
|
|
@@ -391,6 +391,7 @@ module Aws::IoTWireless
|
|
391
391
|
MinGwDiversity = Shapes::IntegerShape.new(name: 'MinGwDiversity')
|
392
392
|
Model = Shapes::StringShape.new(name: 'Model')
|
393
393
|
MulticastDeviceStatus = Shapes::StringShape.new(name: 'MulticastDeviceStatus')
|
394
|
+
MulticastFrameInfo = Shapes::StringShape.new(name: 'MulticastFrameInfo')
|
394
395
|
MulticastGroup = Shapes::StructureShape.new(name: 'MulticastGroup')
|
395
396
|
MulticastGroupArn = Shapes::StringShape.new(name: 'MulticastGroupArn')
|
396
397
|
MulticastGroupByFuotaTask = Shapes::StructureShape.new(name: 'MulticastGroupByFuotaTask')
|
@@ -408,6 +409,7 @@ module Aws::IoTWireless
|
|
408
409
|
NetworkAnalyzerConfigurationList = Shapes::ListShape.new(name: 'NetworkAnalyzerConfigurationList')
|
409
410
|
NetworkAnalyzerConfigurationName = Shapes::StringShape.new(name: 'NetworkAnalyzerConfigurationName')
|
410
411
|
NetworkAnalyzerConfigurations = Shapes::StructureShape.new(name: 'NetworkAnalyzerConfigurations')
|
412
|
+
NetworkAnalyzerMulticastGroupList = Shapes::ListShape.new(name: 'NetworkAnalyzerMulticastGroupList')
|
411
413
|
NetworkId = Shapes::IntegerShape.new(name: 'NetworkId')
|
412
414
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
413
415
|
NumberOfDevicesInGroup = Shapes::IntegerShape.new(name: 'NumberOfDevicesInGroup')
|
@@ -850,6 +852,7 @@ module Aws::IoTWireless
|
|
850
852
|
CreateNetworkAnalyzerConfigurationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
851
853
|
CreateNetworkAnalyzerConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
852
854
|
CreateNetworkAnalyzerConfigurationRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
855
|
+
CreateNetworkAnalyzerConfigurationRequest.add_member(:multicast_groups, Shapes::ShapeRef.new(shape: NetworkAnalyzerMulticastGroupList, location_name: "MulticastGroups"))
|
853
856
|
CreateNetworkAnalyzerConfigurationRequest.struct_class = Types::CreateNetworkAnalyzerConfigurationRequest
|
854
857
|
|
855
858
|
CreateNetworkAnalyzerConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationArn, location_name: "Arn"))
|
@@ -1181,6 +1184,7 @@ module Aws::IoTWireless
|
|
1181
1184
|
GetNetworkAnalyzerConfigurationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
1182
1185
|
GetNetworkAnalyzerConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationArn, location_name: "Arn"))
|
1183
1186
|
GetNetworkAnalyzerConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationName, location_name: "Name"))
|
1187
|
+
GetNetworkAnalyzerConfigurationResponse.add_member(:multicast_groups, Shapes::ShapeRef.new(shape: NetworkAnalyzerMulticastGroupList, location_name: "MulticastGroups"))
|
1184
1188
|
GetNetworkAnalyzerConfigurationResponse.struct_class = Types::GetNetworkAnalyzerConfigurationResponse
|
1185
1189
|
|
1186
1190
|
GetPartnerAccountRequest.add_member(:partner_account_id, Shapes::ShapeRef.new(shape: PartnerAccountId, required: true, location: "uri", location_name: "PartnerAccountId"))
|
@@ -1791,6 +1795,8 @@ module Aws::IoTWireless
|
|
1791
1795
|
NetworkAnalyzerConfigurations.add_member(:name, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationName, location_name: "Name"))
|
1792
1796
|
NetworkAnalyzerConfigurations.struct_class = Types::NetworkAnalyzerConfigurations
|
1793
1797
|
|
1798
|
+
NetworkAnalyzerMulticastGroupList.member = Shapes::ShapeRef.new(shape: MulticastGroupId)
|
1799
|
+
|
1794
1800
|
OtaaV1_0_x.add_member(:app_key, Shapes::ShapeRef.new(shape: AppKey, location_name: "AppKey"))
|
1795
1801
|
OtaaV1_0_x.add_member(:app_eui, Shapes::ShapeRef.new(shape: AppEui, location_name: "AppEui"))
|
1796
1802
|
OtaaV1_0_x.add_member(:gen_app_key, Shapes::ShapeRef.new(shape: GenAppKey, location_name: "GenAppKey"))
|
@@ -2087,6 +2093,7 @@ module Aws::IoTWireless
|
|
2087
2093
|
|
2088
2094
|
TraceContent.add_member(:wireless_device_frame_info, Shapes::ShapeRef.new(shape: WirelessDeviceFrameInfo, location_name: "WirelessDeviceFrameInfo"))
|
2089
2095
|
TraceContent.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "LogLevel"))
|
2096
|
+
TraceContent.add_member(:multicast_frame_info, Shapes::ShapeRef.new(shape: MulticastFrameInfo, location_name: "MulticastFrameInfo"))
|
2090
2097
|
TraceContent.struct_class = Types::TraceContent
|
2091
2098
|
|
2092
2099
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "resourceArn"))
|
@@ -2158,6 +2165,8 @@ module Aws::IoTWireless
|
|
2158
2165
|
UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_add, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToAdd"))
|
2159
2166
|
UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_remove, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToRemove"))
|
2160
2167
|
UpdateNetworkAnalyzerConfigurationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2168
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:multicast_groups_to_add, Shapes::ShapeRef.new(shape: NetworkAnalyzerMulticastGroupList, location_name: "MulticastGroupsToAdd"))
|
2169
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:multicast_groups_to_remove, Shapes::ShapeRef.new(shape: NetworkAnalyzerMulticastGroupList, location_name: "MulticastGroupsToRemove"))
|
2161
2170
|
UpdateNetworkAnalyzerConfigurationRequest.struct_class = Types::UpdateNetworkAnalyzerConfigurationRequest
|
2162
2171
|
|
2163
2172
|
UpdateNetworkAnalyzerConfigurationResponse.struct_class = Types::UpdateNetworkAnalyzerConfigurationResponse
|
@@ -655,23 +655,28 @@ module Aws::IoTWireless
|
|
655
655
|
# @return [Array<Types::Tag>]
|
656
656
|
#
|
657
657
|
# @!attribute [rw] redundancy_percent
|
658
|
-
# The percentage of added redundant
|
659
|
-
#
|
660
|
-
# `RedundancyPercent` set to 50(%),
|
661
|
-
# fragments is (100 / 10) + (100 / 10 *
|
658
|
+
# The percentage of the added fragments that are redundant. For
|
659
|
+
# example, if the size of the firmware image file is 100 bytes and the
|
660
|
+
# fragment size is 10 bytes, with `RedundancyPercent` set to 50(%),
|
661
|
+
# the final number of encoded fragments is (100 / 10) + (100 / 10 *
|
662
|
+
# 50%) = 15.
|
662
663
|
# @return [Integer]
|
663
664
|
#
|
664
665
|
# @!attribute [rw] fragment_size_bytes
|
665
|
-
# The size of each fragment in bytes.
|
666
|
-
#
|
666
|
+
# The size of each fragment in bytes. This parameter is supported only
|
667
|
+
# for FUOTA tasks with multicast groups.
|
667
668
|
# @return [Integer]
|
668
669
|
#
|
669
670
|
# @!attribute [rw] fragment_interval_ms
|
670
|
-
# The interval
|
671
|
-
#
|
672
|
-
#
|
673
|
-
#
|
674
|
-
#
|
671
|
+
# The interval for sending fragments in milliseconds, rounded to the
|
672
|
+
# nearest second.
|
673
|
+
#
|
674
|
+
# <note markdown="1"> This interval only determines the timing for when the Cloud sends
|
675
|
+
# down the fragments to yor device. There can be a delay for when your
|
676
|
+
# device will receive these fragments. This delay depends on the
|
677
|
+
# device's class and the communication delay with the cloud.
|
678
|
+
#
|
679
|
+
# </note>
|
675
680
|
# @return [Integer]
|
676
681
|
#
|
677
682
|
class CreateFuotaTaskRequest < Struct.new(
|
@@ -796,6 +801,12 @@ module Aws::IoTWireless
|
|
796
801
|
# not need to pass this option.
|
797
802
|
# @return [String]
|
798
803
|
#
|
804
|
+
# @!attribute [rw] multicast_groups
|
805
|
+
# Multicast Group resources to add to the network analyzer
|
806
|
+
# configruation. Provide the `MulticastGroupId` of the resource to add
|
807
|
+
# in the input array.
|
808
|
+
# @return [Array<String>]
|
809
|
+
#
|
799
810
|
class CreateNetworkAnalyzerConfigurationRequest < Struct.new(
|
800
811
|
:name,
|
801
812
|
:trace_content,
|
@@ -803,7 +814,8 @@ module Aws::IoTWireless
|
|
803
814
|
:wireless_gateways,
|
804
815
|
:description,
|
805
816
|
:tags,
|
806
|
-
:client_request_token
|
817
|
+
:client_request_token,
|
818
|
+
:multicast_groups)
|
807
819
|
SENSITIVE = []
|
808
820
|
include Aws::Structure
|
809
821
|
end
|
@@ -1831,23 +1843,28 @@ module Aws::IoTWireless
|
|
1831
1843
|
# @return [Time]
|
1832
1844
|
#
|
1833
1845
|
# @!attribute [rw] redundancy_percent
|
1834
|
-
# The percentage of added redundant
|
1835
|
-
#
|
1836
|
-
# `RedundancyPercent` set to 50(%),
|
1837
|
-
# fragments is (100 / 10) + (100 / 10 *
|
1846
|
+
# The percentage of the added fragments that are redundant. For
|
1847
|
+
# example, if the size of the firmware image file is 100 bytes and the
|
1848
|
+
# fragment size is 10 bytes, with `RedundancyPercent` set to 50(%),
|
1849
|
+
# the final number of encoded fragments is (100 / 10) + (100 / 10 *
|
1850
|
+
# 50%) = 15.
|
1838
1851
|
# @return [Integer]
|
1839
1852
|
#
|
1840
1853
|
# @!attribute [rw] fragment_size_bytes
|
1841
|
-
# The size of each fragment in bytes.
|
1842
|
-
#
|
1854
|
+
# The size of each fragment in bytes. This parameter is supported only
|
1855
|
+
# for FUOTA tasks with multicast groups.
|
1843
1856
|
# @return [Integer]
|
1844
1857
|
#
|
1845
1858
|
# @!attribute [rw] fragment_interval_ms
|
1846
|
-
# The interval
|
1847
|
-
#
|
1848
|
-
#
|
1849
|
-
#
|
1850
|
-
#
|
1859
|
+
# The interval for sending fragments in milliseconds, rounded to the
|
1860
|
+
# nearest second.
|
1861
|
+
#
|
1862
|
+
# <note markdown="1"> This interval only determines the timing for when the Cloud sends
|
1863
|
+
# down the fragments to yor device. There can be a delay for when your
|
1864
|
+
# device will receive these fragments. This delay depends on the
|
1865
|
+
# device's class and the communication delay with the cloud.
|
1866
|
+
#
|
1867
|
+
# </note>
|
1851
1868
|
# @return [Integer]
|
1852
1869
|
#
|
1853
1870
|
class GetFuotaTaskResponse < Struct.new(
|
@@ -2001,13 +2018,19 @@ module Aws::IoTWireless
|
|
2001
2018
|
# Name of the network analyzer configuration.
|
2002
2019
|
# @return [String]
|
2003
2020
|
#
|
2021
|
+
# @!attribute [rw] multicast_groups
|
2022
|
+
# List of multicast group resources that have been added to the
|
2023
|
+
# network analyzer configuration.
|
2024
|
+
# @return [Array<String>]
|
2025
|
+
#
|
2004
2026
|
class GetNetworkAnalyzerConfigurationResponse < Struct.new(
|
2005
2027
|
:trace_content,
|
2006
2028
|
:wireless_devices,
|
2007
2029
|
:wireless_gateways,
|
2008
2030
|
:description,
|
2009
2031
|
:arn,
|
2010
|
-
:name
|
2032
|
+
:name,
|
2033
|
+
:multicast_groups)
|
2011
2034
|
SENSITIVE = []
|
2012
2035
|
include Aws::Structure
|
2013
2036
|
end
|
@@ -2543,6 +2566,10 @@ module Aws::IoTWireless
|
|
2543
2566
|
#
|
2544
2567
|
# @!attribute [rw] last_uplink_received_at
|
2545
2568
|
# The date and time when the most recent uplink was received.
|
2569
|
+
#
|
2570
|
+
# <note markdown="1"> This value is only valid for 3 months.
|
2571
|
+
#
|
2572
|
+
# </note>
|
2546
2573
|
# @return [String]
|
2547
2574
|
#
|
2548
2575
|
# @!attribute [rw] lo_ra_wan
|
@@ -2680,6 +2707,10 @@ module Aws::IoTWireless
|
|
2680
2707
|
#
|
2681
2708
|
# @!attribute [rw] last_uplink_received_at
|
2682
2709
|
# The date and time when the most recent uplink was received.
|
2710
|
+
#
|
2711
|
+
# <note markdown="1"> This value is only valid for 3 months.
|
2712
|
+
#
|
2713
|
+
# </note>
|
2683
2714
|
# @return [String]
|
2684
2715
|
#
|
2685
2716
|
# @!attribute [rw] connection_status
|
@@ -2751,6 +2782,10 @@ module Aws::IoTWireless
|
|
2751
2782
|
#
|
2752
2783
|
# @!attribute [rw] last_uplink_received_at
|
2753
2784
|
# The date and time when the most recent uplink was received.
|
2785
|
+
#
|
2786
|
+
# <note markdown="1"> This value is only valid for 3 months.
|
2787
|
+
#
|
2788
|
+
# </note>
|
2754
2789
|
# @return [String]
|
2755
2790
|
#
|
2756
2791
|
# @!attribute [rw] task_created_at
|
@@ -5787,9 +5822,16 @@ module Aws::IoTWireless
|
|
5787
5822
|
# information, or to `INFO` for more detailed logs.
|
5788
5823
|
# @return [String]
|
5789
5824
|
#
|
5825
|
+
# @!attribute [rw] multicast_frame_info
|
5826
|
+
# `FrameInfo` of your multicast group resources for the trace content.
|
5827
|
+
# Use FrameInfo to debug the multicast communication between your
|
5828
|
+
# LoRaWAN end devices and the network server.
|
5829
|
+
# @return [String]
|
5830
|
+
#
|
5790
5831
|
class TraceContent < Struct.new(
|
5791
5832
|
:wireless_device_frame_info,
|
5792
|
-
:log_level
|
5833
|
+
:log_level,
|
5834
|
+
:multicast_frame_info)
|
5793
5835
|
SENSITIVE = []
|
5794
5836
|
include Aws::Structure
|
5795
5837
|
end
|
@@ -5948,23 +5990,28 @@ module Aws::IoTWireless
|
|
5948
5990
|
# @return [String]
|
5949
5991
|
#
|
5950
5992
|
# @!attribute [rw] redundancy_percent
|
5951
|
-
# The percentage of added redundant
|
5952
|
-
#
|
5953
|
-
# `RedundancyPercent` set to 50(%),
|
5954
|
-
# fragments is (100 / 10) + (100 / 10 *
|
5993
|
+
# The percentage of the added fragments that are redundant. For
|
5994
|
+
# example, if the size of the firmware image file is 100 bytes and the
|
5995
|
+
# fragment size is 10 bytes, with `RedundancyPercent` set to 50(%),
|
5996
|
+
# the final number of encoded fragments is (100 / 10) + (100 / 10 *
|
5997
|
+
# 50%) = 15.
|
5955
5998
|
# @return [Integer]
|
5956
5999
|
#
|
5957
6000
|
# @!attribute [rw] fragment_size_bytes
|
5958
|
-
# The size of each fragment in bytes.
|
5959
|
-
#
|
6001
|
+
# The size of each fragment in bytes. This parameter is supported only
|
6002
|
+
# for FUOTA tasks with multicast groups.
|
5960
6003
|
# @return [Integer]
|
5961
6004
|
#
|
5962
6005
|
# @!attribute [rw] fragment_interval_ms
|
5963
|
-
# The interval
|
5964
|
-
#
|
5965
|
-
#
|
5966
|
-
#
|
5967
|
-
#
|
6006
|
+
# The interval for sending fragments in milliseconds, rounded to the
|
6007
|
+
# nearest second.
|
6008
|
+
#
|
6009
|
+
# <note markdown="1"> This interval only determines the timing for when the Cloud sends
|
6010
|
+
# down the fragments to yor device. There can be a delay for when your
|
6011
|
+
# device will receive these fragments. This delay depends on the
|
6012
|
+
# device's class and the communication delay with the cloud.
|
6013
|
+
#
|
6014
|
+
# </note>
|
5968
6015
|
# @return [Integer]
|
5969
6016
|
#
|
5970
6017
|
class UpdateFuotaTaskRequest < Struct.new(
|
@@ -6071,6 +6118,18 @@ module Aws::IoTWireless
|
|
6071
6118
|
# The description of the new resource.
|
6072
6119
|
# @return [String]
|
6073
6120
|
#
|
6121
|
+
# @!attribute [rw] multicast_groups_to_add
|
6122
|
+
# Multicast group resources to add to the network analyzer
|
6123
|
+
# configuration. Provide the `MulticastGroupId` of the resource to add
|
6124
|
+
# in the input array.
|
6125
|
+
# @return [Array<String>]
|
6126
|
+
#
|
6127
|
+
# @!attribute [rw] multicast_groups_to_remove
|
6128
|
+
# Multicast group resources to remove from the network analyzer
|
6129
|
+
# configuration. Provide the `MulticastGroupId` of the resource to
|
6130
|
+
# remove in the input array.
|
6131
|
+
# @return [Array<String>]
|
6132
|
+
#
|
6074
6133
|
class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
|
6075
6134
|
:configuration_name,
|
6076
6135
|
:trace_content,
|
@@ -6078,7 +6137,9 @@ module Aws::IoTWireless
|
|
6078
6137
|
:wireless_devices_to_remove,
|
6079
6138
|
:wireless_gateways_to_add,
|
6080
6139
|
:wireless_gateways_to_remove,
|
6081
|
-
:description
|
6140
|
+
:description,
|
6141
|
+
:multicast_groups_to_add,
|
6142
|
+
:multicast_groups_to_remove)
|
6082
6143
|
SENSITIVE = []
|
6083
6144
|
include Aws::Structure
|
6084
6145
|
end
|
@@ -6619,6 +6680,10 @@ module Aws::IoTWireless
|
|
6619
6680
|
#
|
6620
6681
|
# @!attribute [rw] last_uplink_received_at
|
6621
6682
|
# The date and time when the most recent uplink was received.
|
6683
|
+
#
|
6684
|
+
# <note markdown="1"> Theis value is only valid for 3 months.
|
6685
|
+
#
|
6686
|
+
# </note>
|
6622
6687
|
# @return [String]
|
6623
6688
|
#
|
6624
6689
|
# @!attribute [rw] lo_ra_wan
|
@@ -6730,6 +6795,10 @@ module Aws::IoTWireless
|
|
6730
6795
|
#
|
6731
6796
|
# @!attribute [rw] last_uplink_received_at
|
6732
6797
|
# The date and time when the most recent uplink was received.
|
6798
|
+
#
|
6799
|
+
# <note markdown="1"> This value is only valid for 3 months.
|
6800
|
+
#
|
6801
|
+
# </note>
|
6733
6802
|
# @return [String]
|
6734
6803
|
#
|
6735
6804
|
class WirelessGatewayStatistics < Struct.new(
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.174.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|