aws-sdk-iotwireless 1.31.0 → 1.33.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: a2a735bcfeebc6459ae15a86736477b0349d2cf5be4ab67e8e4c68e82a76fb8d
4
- data.tar.gz: 0ead8c224f44fcedf3ad621fcd8641817938a44737b4453ec00630ff86181bac
3
+ metadata.gz: 0c73f6fe0c0c5fccf54e48023a66c727c65cd81c93b0af945784acd1a149293a
4
+ data.tar.gz: 787e663cb72397991d5a2f0c0555a2cb713081b97e363d29ad86bcdfa412c301
5
5
  SHA512:
6
- metadata.gz: fe888ed05e2b88c09fe1bb833a6261add3ff0b4b7963d096712e889581e7998b103f072c3ebf69ce7359c92c260a7cd9f59b6e2adead1fa6bb5dc8140ad59376
7
- data.tar.gz: 2fbe152acc6ef2b9ae444a00ecda2e93e76012153faa1852eae78e7811e7e5657d77a30ee85fc134b792415ed2db96bc43d526a0a4896bf82f0253b28bd88473
6
+ metadata.gz: 8859fdce30d9be91400a5783ae3314c7a6e7fb96ac3ecda4d6e9510da1e6d5502ed91e4e389b65a3d8d381a4aefcfe3b2c16d07fd770b0e56cc312b936b27002
7
+ data.tar.gz: fb94423838b2c5ed3031cfb98edc5628a787bc4a6051cce65f80280b408a978f89a50621fe74091a6c280f05953aaabf3947328b18811d7dee527074ec432a05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.32.0 (2023-04-17)
10
+ ------------------
11
+
12
+ * Feature - Supports the new feature of LoRaWAN roaming, allows to configure MaxEirp for LoRaWAN gateway, and allows to configure PingSlotPeriod for LoRaWAN multicast group
13
+
4
14
  1.31.0 (2023-03-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.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
@@ -984,6 +995,8 @@ module Aws::IoTWireless
984
995
  # add_gw_metadata: false,
985
996
  # dr_min: 1,
986
997
  # dr_max: 1,
998
+ # pr_allowed: false,
999
+ # ra_allowed: false,
987
1000
  # },
988
1001
  # tags: [
989
1002
  # {
@@ -1179,6 +1192,7 @@ module Aws::IoTWireless
1179
1192
  # data_rate: 1,
1180
1193
  # frequencies: [1],
1181
1194
  # },
1195
+ # max_eirp: 1.0,
1182
1196
  # },
1183
1197
  # tags: [
1184
1198
  # {
@@ -2010,6 +2024,7 @@ module Aws::IoTWireless
2010
2024
  # resp.lo_ra_wan.dl_freq #=> Integer
2011
2025
  # resp.lo_ra_wan.session_start_time #=> Time
2012
2026
  # resp.lo_ra_wan.session_timeout #=> Integer
2027
+ # resp.lo_ra_wan.ping_slot_period #=> Integer
2013
2028
  #
2014
2029
  # @overload get_multicast_group_session(params = {})
2015
2030
  # @param [Hash] params ({})
@@ -2031,6 +2046,7 @@ module Aws::IoTWireless
2031
2046
  # * {Types::GetNetworkAnalyzerConfigurationResponse#description #description} => String
2032
2047
  # * {Types::GetNetworkAnalyzerConfigurationResponse#arn #arn} => String
2033
2048
  # * {Types::GetNetworkAnalyzerConfigurationResponse#name #name} => String
2049
+ # * {Types::GetNetworkAnalyzerConfigurationResponse#multicast_groups #multicast_groups} => Array&lt;String&gt;
2034
2050
  #
2035
2051
  # @example Request syntax with placeholder values
2036
2052
  #
@@ -2042,6 +2058,7 @@ module Aws::IoTWireless
2042
2058
  #
2043
2059
  # resp.trace_content.wireless_device_frame_info #=> String, one of "ENABLED", "DISABLED"
2044
2060
  # resp.trace_content.log_level #=> String, one of "INFO", "ERROR", "DISABLED"
2061
+ # resp.trace_content.multicast_frame_info #=> String, one of "ENABLED", "DISABLED"
2045
2062
  # resp.wireless_devices #=> Array
2046
2063
  # resp.wireless_devices[0] #=> String
2047
2064
  # resp.wireless_gateways #=> Array
@@ -2049,6 +2066,8 @@ module Aws::IoTWireless
2049
2066
  # resp.description #=> String
2050
2067
  # resp.arn #=> String
2051
2068
  # resp.name #=> String
2069
+ # resp.multicast_groups #=> Array
2070
+ # resp.multicast_groups[0] #=> String
2052
2071
  #
2053
2072
  # @overload get_network_analyzer_configuration(params = {})
2054
2073
  # @param [Hash] params ({})
@@ -2806,6 +2825,7 @@ module Aws::IoTWireless
2806
2825
  # resp.lo_ra_wan.beaconing.data_rate #=> Integer
2807
2826
  # resp.lo_ra_wan.beaconing.frequencies #=> Array
2808
2827
  # resp.lo_ra_wan.beaconing.frequencies[0] #=> Integer
2828
+ # resp.lo_ra_wan.max_eirp #=> Float
2809
2829
  # resp.arn #=> String
2810
2830
  # resp.thing_name #=> String
2811
2831
  # resp.thing_arn #=> String
@@ -3759,6 +3779,7 @@ module Aws::IoTWireless
3759
3779
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.data_rate #=> Integer
3760
3780
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies #=> Array
3761
3781
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies[0] #=> Integer
3782
+ # resp.wireless_gateway_list[0].lo_ra_wan.max_eirp #=> Float
3762
3783
  # resp.wireless_gateway_list[0].last_uplink_received_at #=> String
3763
3784
  #
3764
3785
  # @overload list_wireless_gateways(params = {})
@@ -4106,6 +4127,7 @@ module Aws::IoTWireless
4106
4127
  # dl_freq: 1,
4107
4128
  # session_start_time: Time.now,
4108
4129
  # session_timeout: 1,
4130
+ # ping_slot_period: 1,
4109
4131
  # },
4110
4132
  # })
4111
4133
  #
@@ -4437,21 +4459,25 @@ module Aws::IoTWireless
4437
4459
  # The firmware update role that is to be used with a FUOTA task.
4438
4460
  #
4439
4461
  # @option params [Integer] :redundancy_percent
4440
- # The percentage of added redundant fragments. For example, if firmware
4441
- # file is 100 bytes and fragment size is 10 bytes, with
4442
- # `RedundancyPercent` set to 50(%), the final number of encoded
4443
- # 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.
4444
4466
  #
4445
4467
  # @option params [Integer] :fragment_size_bytes
4446
- # The size of each fragment in bytes. Currently only supported in fuota
4447
- # tasks with multicast groups.
4468
+ # The size of each fragment in bytes. This parameter is supported only
4469
+ # for FUOTA tasks with multicast groups.
4448
4470
  #
4449
4471
  # @option params [Integer] :fragment_interval_ms
4450
- # The interval of sending fragments in milliseconds. Currently the
4451
- # interval will be rounded to the nearest second. Note that this
4452
- # interval only controls the timing when the cloud sends the fragments
4453
- # down. The actual delay of receiving fragments at device side depends
4454
- # 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>
4455
4481
  #
4456
4482
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4457
4483
  #
@@ -4599,6 +4625,16 @@ module Aws::IoTWireless
4599
4625
  # @option params [String] :description
4600
4626
  # The description of the new resource.
4601
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
+ #
4602
4638
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4603
4639
  #
4604
4640
  # @example Request syntax with placeholder values
@@ -4608,12 +4644,15 @@ module Aws::IoTWireless
4608
4644
  # trace_content: {
4609
4645
  # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
4610
4646
  # log_level: "INFO", # accepts INFO, ERROR, DISABLED
4647
+ # multicast_frame_info: "ENABLED", # accepts ENABLED, DISABLED
4611
4648
  # },
4612
4649
  # wireless_devices_to_add: ["WirelessDeviceId"],
4613
4650
  # wireless_devices_to_remove: ["WirelessDeviceId"],
4614
4651
  # wireless_gateways_to_add: ["WirelessGatewayId"],
4615
4652
  # wireless_gateways_to_remove: ["WirelessGatewayId"],
4616
4653
  # description: "Description",
4654
+ # multicast_groups_to_add: ["MulticastGroupId"],
4655
+ # multicast_groups_to_remove: ["MulticastGroupId"],
4617
4656
  # })
4618
4657
  #
4619
4658
  # @overload update_network_analyzer_configuration(params = {})
@@ -4916,6 +4955,9 @@ module Aws::IoTWireless
4916
4955
  # A list of NetId values that are used by LoRa gateways to filter the
4917
4956
  # uplink frames.
4918
4957
  #
4958
+ # @option params [Float] :max_eirp
4959
+ # The MaxEIRP value.
4960
+ #
4919
4961
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4920
4962
  #
4921
4963
  # @example Request syntax with placeholder values
@@ -4928,6 +4970,7 @@ module Aws::IoTWireless
4928
4970
  # ["JoinEui"],
4929
4971
  # ],
4930
4972
  # net_id_filters: ["NetId"],
4973
+ # max_eirp: 1.0,
4931
4974
  # })
4932
4975
  #
4933
4976
  # @overload update_wireless_gateway(params = {})
@@ -4950,7 +4993,7 @@ module Aws::IoTWireless
4950
4993
  params: params,
4951
4994
  config: config)
4952
4995
  context[:gem_name] = 'aws-sdk-iotwireless'
4953
- context[:gem_version] = '1.31.0'
4996
+ context[:gem_version] = '1.33.0'
4954
4997
  Seahorse::Client::Request.new(handlers, context)
4955
4998
  end
4956
4999
 
@@ -218,6 +218,7 @@ module Aws::IoTWireless
218
218
  GatewayEui = Shapes::StringShape.new(name: 'GatewayEui')
219
219
  GatewayList = Shapes::ListShape.new(name: 'GatewayList')
220
220
  GatewayListItem = Shapes::StructureShape.new(name: 'GatewayListItem')
221
+ GatewayMaxEirp = Shapes::FloatShape.new(name: 'GatewayMaxEirp')
221
222
  GenAppKey = Shapes::StringShape.new(name: 'GenAppKey')
222
223
  GeoJsonPayload = Shapes::BlobShape.new(name: 'GeoJsonPayload')
223
224
  GeranCid = Shapes::IntegerShape.new(name: 'GeranCid')
@@ -390,6 +391,7 @@ module Aws::IoTWireless
390
391
  MinGwDiversity = Shapes::IntegerShape.new(name: 'MinGwDiversity')
391
392
  Model = Shapes::StringShape.new(name: 'Model')
392
393
  MulticastDeviceStatus = Shapes::StringShape.new(name: 'MulticastDeviceStatus')
394
+ MulticastFrameInfo = Shapes::StringShape.new(name: 'MulticastFrameInfo')
393
395
  MulticastGroup = Shapes::StructureShape.new(name: 'MulticastGroup')
394
396
  MulticastGroupArn = Shapes::StringShape.new(name: 'MulticastGroupArn')
395
397
  MulticastGroupByFuotaTask = Shapes::StructureShape.new(name: 'MulticastGroupByFuotaTask')
@@ -407,6 +409,7 @@ module Aws::IoTWireless
407
409
  NetworkAnalyzerConfigurationList = Shapes::ListShape.new(name: 'NetworkAnalyzerConfigurationList')
408
410
  NetworkAnalyzerConfigurationName = Shapes::StringShape.new(name: 'NetworkAnalyzerConfigurationName')
409
411
  NetworkAnalyzerConfigurations = Shapes::StructureShape.new(name: 'NetworkAnalyzerConfigurations')
412
+ NetworkAnalyzerMulticastGroupList = Shapes::ListShape.new(name: 'NetworkAnalyzerMulticastGroupList')
410
413
  NetworkId = Shapes::IntegerShape.new(name: 'NetworkId')
411
414
  NextToken = Shapes::StringShape.new(name: 'NextToken')
412
415
  NumberOfDevicesInGroup = Shapes::IntegerShape.new(name: 'NumberOfDevicesInGroup')
@@ -849,6 +852,7 @@ module Aws::IoTWireless
849
852
  CreateNetworkAnalyzerConfigurationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
850
853
  CreateNetworkAnalyzerConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
851
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"))
852
856
  CreateNetworkAnalyzerConfigurationRequest.struct_class = Types::CreateNetworkAnalyzerConfigurationRequest
853
857
 
854
858
  CreateNetworkAnalyzerConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationArn, location_name: "Arn"))
@@ -1180,6 +1184,7 @@ module Aws::IoTWireless
1180
1184
  GetNetworkAnalyzerConfigurationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
1181
1185
  GetNetworkAnalyzerConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationArn, location_name: "Arn"))
1182
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"))
1183
1188
  GetNetworkAnalyzerConfigurationResponse.struct_class = Types::GetNetworkAnalyzerConfigurationResponse
1184
1189
 
1185
1190
  GetPartnerAccountRequest.add_member(:partner_account_id, Shapes::ShapeRef.new(shape: PartnerAccountId, required: true, location: "uri", location_name: "PartnerAccountId"))
@@ -1634,6 +1639,7 @@ module Aws::IoTWireless
1634
1639
  LoRaWANGateway.add_member(:net_id_filters, Shapes::ShapeRef.new(shape: NetIdFilters, location_name: "NetIdFilters"))
1635
1640
  LoRaWANGateway.add_member(:sub_bands, Shapes::ShapeRef.new(shape: SubBands, location_name: "SubBands"))
1636
1641
  LoRaWANGateway.add_member(:beaconing, Shapes::ShapeRef.new(shape: Beaconing, location_name: "Beaconing"))
1642
+ LoRaWANGateway.add_member(:max_eirp, Shapes::ShapeRef.new(shape: GatewayMaxEirp, location_name: "MaxEirp"))
1637
1643
  LoRaWANGateway.struct_class = Types::LoRaWANGateway
1638
1644
 
1639
1645
  LoRaWANGatewayCurrentVersion.add_member(:current_version, Shapes::ShapeRef.new(shape: LoRaWANGatewayVersion, location_name: "CurrentVersion"))
@@ -1698,6 +1704,7 @@ module Aws::IoTWireless
1698
1704
  LoRaWANMulticastSession.add_member(:dl_freq, Shapes::ShapeRef.new(shape: DlFreq, location_name: "DlFreq"))
1699
1705
  LoRaWANMulticastSession.add_member(:session_start_time, Shapes::ShapeRef.new(shape: SessionStartTimeTimestamp, location_name: "SessionStartTime"))
1700
1706
  LoRaWANMulticastSession.add_member(:session_timeout, Shapes::ShapeRef.new(shape: SessionTimeout, location_name: "SessionTimeout"))
1707
+ LoRaWANMulticastSession.add_member(:ping_slot_period, Shapes::ShapeRef.new(shape: PingSlotPeriod, location_name: "PingSlotPeriod"))
1701
1708
  LoRaWANMulticastSession.struct_class = Types::LoRaWANMulticastSession
1702
1709
 
1703
1710
  LoRaWANSendDataToDevice.add_member(:f_port, Shapes::ShapeRef.new(shape: FPort, location_name: "FPort"))
@@ -1707,6 +1714,8 @@ module Aws::IoTWireless
1707
1714
  LoRaWANServiceProfile.add_member(:add_gw_metadata, Shapes::ShapeRef.new(shape: AddGwMetadata, location_name: "AddGwMetadata"))
1708
1715
  LoRaWANServiceProfile.add_member(:dr_min, Shapes::ShapeRef.new(shape: DrMinBox, location_name: "DrMin"))
1709
1716
  LoRaWANServiceProfile.add_member(:dr_max, Shapes::ShapeRef.new(shape: DrMaxBox, location_name: "DrMax"))
1717
+ LoRaWANServiceProfile.add_member(:pr_allowed, Shapes::ShapeRef.new(shape: PrAllowed, location_name: "PrAllowed"))
1718
+ LoRaWANServiceProfile.add_member(:ra_allowed, Shapes::ShapeRef.new(shape: RaAllowed, location_name: "RaAllowed"))
1710
1719
  LoRaWANServiceProfile.struct_class = Types::LoRaWANServiceProfile
1711
1720
 
1712
1721
  LoRaWANStartFuotaTask.add_member(:start_time, Shapes::ShapeRef.new(shape: StartTime, location_name: "StartTime"))
@@ -1786,6 +1795,8 @@ module Aws::IoTWireless
1786
1795
  NetworkAnalyzerConfigurations.add_member(:name, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationName, location_name: "Name"))
1787
1796
  NetworkAnalyzerConfigurations.struct_class = Types::NetworkAnalyzerConfigurations
1788
1797
 
1798
+ NetworkAnalyzerMulticastGroupList.member = Shapes::ShapeRef.new(shape: MulticastGroupId)
1799
+
1789
1800
  OtaaV1_0_x.add_member(:app_key, Shapes::ShapeRef.new(shape: AppKey, location_name: "AppKey"))
1790
1801
  OtaaV1_0_x.add_member(:app_eui, Shapes::ShapeRef.new(shape: AppEui, location_name: "AppEui"))
1791
1802
  OtaaV1_0_x.add_member(:gen_app_key, Shapes::ShapeRef.new(shape: GenAppKey, location_name: "GenAppKey"))
@@ -2082,6 +2093,7 @@ module Aws::IoTWireless
2082
2093
 
2083
2094
  TraceContent.add_member(:wireless_device_frame_info, Shapes::ShapeRef.new(shape: WirelessDeviceFrameInfo, location_name: "WirelessDeviceFrameInfo"))
2084
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"))
2085
2097
  TraceContent.struct_class = Types::TraceContent
2086
2098
 
2087
2099
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "resourceArn"))
@@ -2153,6 +2165,8 @@ module Aws::IoTWireless
2153
2165
  UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_add, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToAdd"))
2154
2166
  UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_remove, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToRemove"))
2155
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"))
2156
2170
  UpdateNetworkAnalyzerConfigurationRequest.struct_class = Types::UpdateNetworkAnalyzerConfigurationRequest
2157
2171
 
2158
2172
  UpdateNetworkAnalyzerConfigurationResponse.struct_class = Types::UpdateNetworkAnalyzerConfigurationResponse
@@ -2213,6 +2227,7 @@ module Aws::IoTWireless
2213
2227
  UpdateWirelessGatewayRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
2214
2228
  UpdateWirelessGatewayRequest.add_member(:join_eui_filters, Shapes::ShapeRef.new(shape: JoinEuiFilters, location_name: "JoinEuiFilters"))
2215
2229
  UpdateWirelessGatewayRequest.add_member(:net_id_filters, Shapes::ShapeRef.new(shape: NetIdFilters, location_name: "NetIdFilters"))
2230
+ UpdateWirelessGatewayRequest.add_member(:max_eirp, Shapes::ShapeRef.new(shape: GatewayMaxEirp, location_name: "MaxEirp"))
2216
2231
  UpdateWirelessGatewayRequest.struct_class = Types::UpdateWirelessGatewayRequest
2217
2232
 
2218
2233
  UpdateWirelessGatewayResponse.struct_class = Types::UpdateWirelessGatewayResponse
@@ -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
@@ -3952,13 +3987,18 @@ module Aws::IoTWireless
3952
3987
  # frequency parameters.
3953
3988
  # @return [Types::Beaconing]
3954
3989
  #
3990
+ # @!attribute [rw] max_eirp
3991
+ # The MaxEIRP value.
3992
+ # @return [Float]
3993
+ #
3955
3994
  class LoRaWANGateway < Struct.new(
3956
3995
  :gateway_eui,
3957
3996
  :rf_region,
3958
3997
  :join_eui_filters,
3959
3998
  :net_id_filters,
3960
3999
  :sub_bands,
3961
- :beaconing)
4000
+ :beaconing,
4001
+ :max_eirp)
3962
4002
  SENSITIVE = []
3963
4003
  include Aws::Structure
3964
4004
  end
@@ -4237,11 +4277,16 @@ module Aws::IoTWireless
4237
4277
  # How long before a multicast group session is to timeout.
4238
4278
  # @return [Integer]
4239
4279
  #
4280
+ # @!attribute [rw] ping_slot_period
4281
+ # The PingSlotPeriod value.
4282
+ # @return [Integer]
4283
+ #
4240
4284
  class LoRaWANMulticastSession < Struct.new(
4241
4285
  :dl_dr,
4242
4286
  :dl_freq,
4243
4287
  :session_start_time,
4244
- :session_timeout)
4288
+ :session_timeout,
4289
+ :ping_slot_period)
4245
4290
  SENSITIVE = []
4246
4291
  include Aws::Structure
4247
4292
  end
@@ -4279,10 +4324,22 @@ module Aws::IoTWireless
4279
4324
  # The DrMax value.
4280
4325
  # @return [Integer]
4281
4326
  #
4327
+ # @!attribute [rw] pr_allowed
4328
+ # The PRAllowed value that describes whether passive roaming is
4329
+ # allowed.
4330
+ # @return [Boolean]
4331
+ #
4332
+ # @!attribute [rw] ra_allowed
4333
+ # The RAAllowed value that describes whether roaming activation is
4334
+ # allowed.
4335
+ # @return [Boolean]
4336
+ #
4282
4337
  class LoRaWANServiceProfile < Struct.new(
4283
4338
  :add_gw_metadata,
4284
4339
  :dr_min,
4285
- :dr_max)
4340
+ :dr_max,
4341
+ :pr_allowed,
4342
+ :ra_allowed)
4286
4343
  SENSITIVE = []
4287
4344
  include Aws::Structure
4288
4345
  end
@@ -5765,9 +5822,16 @@ module Aws::IoTWireless
5765
5822
  # information, or to `INFO` for more detailed logs.
5766
5823
  # @return [String]
5767
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
+ #
5768
5831
  class TraceContent < Struct.new(
5769
5832
  :wireless_device_frame_info,
5770
- :log_level)
5833
+ :log_level,
5834
+ :multicast_frame_info)
5771
5835
  SENSITIVE = []
5772
5836
  include Aws::Structure
5773
5837
  end
@@ -5926,23 +5990,28 @@ module Aws::IoTWireless
5926
5990
  # @return [String]
5927
5991
  #
5928
5992
  # @!attribute [rw] redundancy_percent
5929
- # The percentage of added redundant fragments. For example, if
5930
- # firmware file is 100 bytes and fragment size is 10 bytes, with
5931
- # `RedundancyPercent` set to 50(%), the final number of encoded
5932
- # 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.
5933
5998
  # @return [Integer]
5934
5999
  #
5935
6000
  # @!attribute [rw] fragment_size_bytes
5936
- # The size of each fragment in bytes. Currently only supported in
5937
- # 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.
5938
6003
  # @return [Integer]
5939
6004
  #
5940
6005
  # @!attribute [rw] fragment_interval_ms
5941
- # The interval of sending fragments in milliseconds. Currently the
5942
- # interval will be rounded to the nearest second. Note that this
5943
- # interval only controls the timing when the cloud sends the fragments
5944
- # down. The actual delay of receiving fragments at device side depends
5945
- # 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>
5946
6015
  # @return [Integer]
5947
6016
  #
5948
6017
  class UpdateFuotaTaskRequest < Struct.new(
@@ -6049,6 +6118,18 @@ module Aws::IoTWireless
6049
6118
  # The description of the new resource.
6050
6119
  # @return [String]
6051
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
+ #
6052
6133
  class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
6053
6134
  :configuration_name,
6054
6135
  :trace_content,
@@ -6056,7 +6137,9 @@ module Aws::IoTWireless
6056
6137
  :wireless_devices_to_remove,
6057
6138
  :wireless_gateways_to_add,
6058
6139
  :wireless_gateways_to_remove,
6059
- :description)
6140
+ :description,
6141
+ :multicast_groups_to_add,
6142
+ :multicast_groups_to_remove)
6060
6143
  SENSITIVE = []
6061
6144
  include Aws::Structure
6062
6145
  end
@@ -6264,12 +6347,17 @@ module Aws::IoTWireless
6264
6347
  # uplink frames.
6265
6348
  # @return [Array<String>]
6266
6349
  #
6350
+ # @!attribute [rw] max_eirp
6351
+ # The MaxEIRP value.
6352
+ # @return [Float]
6353
+ #
6267
6354
  class UpdateWirelessGatewayRequest < Struct.new(
6268
6355
  :id,
6269
6356
  :name,
6270
6357
  :description,
6271
6358
  :join_eui_filters,
6272
- :net_id_filters)
6359
+ :net_id_filters,
6360
+ :max_eirp)
6273
6361
  SENSITIVE = []
6274
6362
  include Aws::Structure
6275
6363
  end
@@ -6592,6 +6680,10 @@ module Aws::IoTWireless
6592
6680
  #
6593
6681
  # @!attribute [rw] last_uplink_received_at
6594
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>
6595
6687
  # @return [String]
6596
6688
  #
6597
6689
  # @!attribute [rw] lo_ra_wan
@@ -6703,6 +6795,10 @@ module Aws::IoTWireless
6703
6795
  #
6704
6796
  # @!attribute [rw] last_uplink_received_at
6705
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>
6706
6802
  # @return [String]
6707
6803
  #
6708
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.31.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.31.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-03-27 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