aws-sdk-iotwireless 1.32.0 → 1.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 858ddf5d5a61fb916817402a0113fd74c19bf1f12b6be1273adf33cc3b9f578c
4
- data.tar.gz: cd8efe1f99b93a667680cc3be8ab7d2115c39ded7331d094231ecb7e5ad7e947
3
+ metadata.gz: 0c73f6fe0c0c5fccf54e48023a66c727c65cd81c93b0af945784acd1a149293a
4
+ data.tar.gz: 787e663cb72397991d5a2f0c0555a2cb713081b97e363d29ad86bcdfa412c301
5
5
  SHA512:
6
- metadata.gz: 9c7220660dc96ec5921b5acf58c0565a3ded299b54e1462ffba158215f8845b2886eb08db4eb9f3f853bbca77d099fdcfdb0550cdb9f7a06d410a1058fc4f04e
7
- data.tar.gz: 43186e634cfde556d85310cef3ae8d1cafe0533007a3333d04a9cfb4ee8c46f2b7c501a5e1552b75ed3f3b1cdd401ed290990d1b31a9d083c8b794a1bd24a77c
6
+ metadata.gz: 8859fdce30d9be91400a5783ae3314c7a6e7fb96ac3ecda4d6e9510da1e6d5502ed91e4e389b65a3d8d381a4aefcfe3b2c16d07fd770b0e56cc312b936b27002
7
+ data.tar.gz: fb94423838b2c5ed3031cfb98edc5628a787bc4a6051cce65f80280b408a978f89a50621fe74091a6c280f05953aaabf3947328b18811d7dee527074ec432a05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2023-05-26)
5
+ ------------------
6
+
7
+ * Feature - Add Multicast Group support in Network Analyzer Configuration.
8
+
4
9
  1.32.0 (2023-04-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.33.0
@@ -765,21 +765,25 @@ module Aws::IoTWireless
765
765
  # you can use to manage a resource.
766
766
  #
767
767
  # @option params [Integer] :redundancy_percent
768
- # The percentage of added redundant fragments. For example, if firmware
769
- # file is 100 bytes and fragment size is 10 bytes, with
770
- # `RedundancyPercent` set to 50(%), the final number of encoded
771
- # fragments is (100 / 10) + (100 / 10 * 50%) = 15.
768
+ # The percentage of the added fragments that are redundant. For example,
769
+ # if the size of the firmware image file is 100 bytes and the fragment
770
+ # size is 10 bytes, with `RedundancyPercent` set to 50(%), the final
771
+ # number of encoded fragments is (100 / 10) + (100 / 10 * 50%) = 15.
772
772
  #
773
773
  # @option params [Integer] :fragment_size_bytes
774
- # The size of each fragment in bytes. Currently only supported in fuota
775
- # tasks with multicast groups.
774
+ # The size of each fragment in bytes. This parameter is supported only
775
+ # for FUOTA tasks with multicast groups.
776
776
  #
777
777
  # @option params [Integer] :fragment_interval_ms
778
- # The interval of sending fragments in milliseconds. Currently the
779
- # interval will be rounded to the nearest second. Note that this
780
- # interval only controls the timing when the cloud sends the fragments
781
- # down. The actual delay of receiving fragments at device side depends
782
- # on the device's class and the communication delay with the cloud.
778
+ # The interval for sending fragments in milliseconds, rounded to the
779
+ # nearest second.
780
+ #
781
+ # <note markdown="1"> This interval only determines the timing for when the Cloud sends down
782
+ # the fragments to yor device. There can be a delay for when your device
783
+ # will receive these fragments. This delay depends on the device's
784
+ # class and the communication delay with the cloud.
785
+ #
786
+ # </note>
783
787
  #
784
788
  # @return [Types::CreateFuotaTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
785
789
  #
@@ -913,6 +917,11 @@ module Aws::IoTWireless
913
917
  # **A suitable default value is auto-generated.** You should normally
914
918
  # not need to pass this option.**
915
919
  #
920
+ # @option params [Array<String>] :multicast_groups
921
+ # Multicast Group resources to add to the network analyzer
922
+ # configruation. Provide the `MulticastGroupId` of the resource to add
923
+ # in the input array.
924
+ #
916
925
  # @return [Types::CreateNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
917
926
  #
918
927
  # * {Types::CreateNetworkAnalyzerConfigurationResponse#arn #arn} => String
@@ -925,6 +934,7 @@ module Aws::IoTWireless
925
934
  # trace_content: {
926
935
  # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
927
936
  # log_level: "INFO", # accepts INFO, ERROR, DISABLED
937
+ # multicast_frame_info: "ENABLED", # accepts ENABLED, DISABLED
928
938
  # },
929
939
  # wireless_devices: ["WirelessDeviceId"],
930
940
  # wireless_gateways: ["WirelessGatewayId"],
@@ -936,6 +946,7 @@ module Aws::IoTWireless
936
946
  # },
937
947
  # ],
938
948
  # client_request_token: "ClientRequestToken",
949
+ # multicast_groups: ["MulticastGroupId"],
939
950
  # })
940
951
  #
941
952
  # @example Response structure
@@ -2035,6 +2046,7 @@ module Aws::IoTWireless
2035
2046
  # * {Types::GetNetworkAnalyzerConfigurationResponse#description #description} => String
2036
2047
  # * {Types::GetNetworkAnalyzerConfigurationResponse#arn #arn} => String
2037
2048
  # * {Types::GetNetworkAnalyzerConfigurationResponse#name #name} => String
2049
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#multicast_groups #multicast_groups} => Array&lt;String&gt;
2038
2050
  #
2039
2051
  # @example Request syntax with placeholder values
2040
2052
  #
@@ -2046,6 +2058,7 @@ module Aws::IoTWireless
2046
2058
  #
2047
2059
  # resp.trace_content.wireless_device_frame_info #=> String, one of "ENABLED", "DISABLED"
2048
2060
  # resp.trace_content.log_level #=> String, one of "INFO", "ERROR", "DISABLED"
2061
+ # resp.trace_content.multicast_frame_info #=> String, one of "ENABLED", "DISABLED"
2049
2062
  # resp.wireless_devices #=> Array
2050
2063
  # resp.wireless_devices[0] #=> String
2051
2064
  # resp.wireless_gateways #=> Array
@@ -2053,6 +2066,8 @@ module Aws::IoTWireless
2053
2066
  # resp.description #=> String
2054
2067
  # resp.arn #=> String
2055
2068
  # resp.name #=> String
2069
+ # resp.multicast_groups #=> Array
2070
+ # resp.multicast_groups[0] #=> String
2056
2071
  #
2057
2072
  # @overload get_network_analyzer_configuration(params = {})
2058
2073
  # @param [Hash] params ({})
@@ -4444,21 +4459,25 @@ module Aws::IoTWireless
4444
4459
  # The firmware update role that is to be used with a FUOTA task.
4445
4460
  #
4446
4461
  # @option params [Integer] :redundancy_percent
4447
- # The percentage of added redundant fragments. For example, if firmware
4448
- # file is 100 bytes and fragment size is 10 bytes, with
4449
- # `RedundancyPercent` set to 50(%), the final number of encoded
4450
- # fragments is (100 / 10) + (100 / 10 * 50%) = 15.
4462
+ # The percentage of the added fragments that are redundant. For example,
4463
+ # if the size of the firmware image file is 100 bytes and the fragment
4464
+ # size is 10 bytes, with `RedundancyPercent` set to 50(%), the final
4465
+ # number of encoded fragments is (100 / 10) + (100 / 10 * 50%) = 15.
4451
4466
  #
4452
4467
  # @option params [Integer] :fragment_size_bytes
4453
- # The size of each fragment in bytes. Currently only supported in fuota
4454
- # tasks with multicast groups.
4468
+ # The size of each fragment in bytes. This parameter is supported only
4469
+ # for FUOTA tasks with multicast groups.
4455
4470
  #
4456
4471
  # @option params [Integer] :fragment_interval_ms
4457
- # The interval of sending fragments in milliseconds. Currently the
4458
- # interval will be rounded to the nearest second. Note that this
4459
- # interval only controls the timing when the cloud sends the fragments
4460
- # down. The actual delay of receiving fragments at device side depends
4461
- # on the device's class and the communication delay with the cloud.
4472
+ # The interval for sending fragments in milliseconds, rounded to the
4473
+ # nearest second.
4474
+ #
4475
+ # <note markdown="1"> This interval only determines the timing for when the Cloud sends down
4476
+ # the fragments to yor device. There can be a delay for when your device
4477
+ # will receive these fragments. This delay depends on the device's
4478
+ # class and the communication delay with the cloud.
4479
+ #
4480
+ # </note>
4462
4481
  #
4463
4482
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4464
4483
  #
@@ -4606,6 +4625,16 @@ module Aws::IoTWireless
4606
4625
  # @option params [String] :description
4607
4626
  # The description of the new resource.
4608
4627
  #
4628
+ # @option params [Array<String>] :multicast_groups_to_add
4629
+ # Multicast group resources to add to the network analyzer
4630
+ # configuration. Provide the `MulticastGroupId` of the resource to add
4631
+ # in the input array.
4632
+ #
4633
+ # @option params [Array<String>] :multicast_groups_to_remove
4634
+ # Multicast group resources to remove from the network analyzer
4635
+ # configuration. Provide the `MulticastGroupId` of the resource to
4636
+ # remove in the input array.
4637
+ #
4609
4638
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4610
4639
  #
4611
4640
  # @example Request syntax with placeholder values
@@ -4615,12 +4644,15 @@ module Aws::IoTWireless
4615
4644
  # trace_content: {
4616
4645
  # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
4617
4646
  # log_level: "INFO", # accepts INFO, ERROR, DISABLED
4647
+ # multicast_frame_info: "ENABLED", # accepts ENABLED, DISABLED
4618
4648
  # },
4619
4649
  # wireless_devices_to_add: ["WirelessDeviceId"],
4620
4650
  # wireless_devices_to_remove: ["WirelessDeviceId"],
4621
4651
  # wireless_gateways_to_add: ["WirelessGatewayId"],
4622
4652
  # wireless_gateways_to_remove: ["WirelessGatewayId"],
4623
4653
  # description: "Description",
4654
+ # multicast_groups_to_add: ["MulticastGroupId"],
4655
+ # multicast_groups_to_remove: ["MulticastGroupId"],
4624
4656
  # })
4625
4657
  #
4626
4658
  # @overload update_network_analyzer_configuration(params = {})
@@ -4961,7 +4993,7 @@ module Aws::IoTWireless
4961
4993
  params: params,
4962
4994
  config: config)
4963
4995
  context[:gem_name] = 'aws-sdk-iotwireless'
4964
- context[:gem_version] = '1.32.0'
4996
+ context[:gem_version] = '1.33.0'
4965
4997
  Seahorse::Client::Request.new(handlers, context)
4966
4998
  end
4967
4999
 
@@ -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 fragments. For example, if
659
- # firmware file is 100 bytes and fragment size is 10 bytes, with
660
- # `RedundancyPercent` set to 50(%), the final number of encoded
661
- # fragments is (100 / 10) + (100 / 10 * 50%) = 15.
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. Currently only supported in
666
- # fuota tasks with multicast groups.
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 of sending fragments in milliseconds. Currently the
671
- # interval will be rounded to the nearest second. Note that this
672
- # interval only controls the timing when the cloud sends the fragments
673
- # down. The actual delay of receiving fragments at device side depends
674
- # on the device's class and the communication delay with the cloud.
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 fragments. For example, if
1835
- # firmware file is 100 bytes and fragment size is 10 bytes, with
1836
- # `RedundancyPercent` set to 50(%), the final number of encoded
1837
- # fragments is (100 / 10) + (100 / 10 * 50%) = 15.
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. Currently only supported in
1842
- # fuota tasks with multicast groups.
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 of sending fragments in milliseconds. Currently the
1847
- # interval will be rounded to the nearest second. Note that this
1848
- # interval only controls the timing when the cloud sends the fragments
1849
- # down. The actual delay of receiving fragments at device side depends
1850
- # on the device's class and the communication delay with the cloud.
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 fragments. For example, if
5952
- # firmware file is 100 bytes and fragment size is 10 bytes, with
5953
- # `RedundancyPercent` set to 50(%), the final number of encoded
5954
- # fragments is (100 / 10) + (100 / 10 * 50%) = 15.
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. Currently only supported in
5959
- # fuota tasks with multicast groups.
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 of sending fragments in milliseconds. Currently the
5964
- # interval will be rounded to the nearest second. Note that this
5965
- # interval only controls the timing when the cloud sends the fragments
5966
- # down. The actual delay of receiving fragments at device side depends
5967
- # on the device's class and the communication delay with the cloud.
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(
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iotwireless/customizations'
52
52
  # @!group service
53
53
  module Aws::IoTWireless
54
54
 
55
- GEM_VERSION = '1.32.0'
55
+ GEM_VERSION = '1.33.0'
56
56
 
57
57
  end
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.32.0
4
+ version: 1.33.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-04-17 00:00:00.000000000 Z
11
+ date: 2023-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core