aws-sdk-iotwireless 1.31.0 → 1.32.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: a2a735bcfeebc6459ae15a86736477b0349d2cf5be4ab67e8e4c68e82a76fb8d
4
- data.tar.gz: 0ead8c224f44fcedf3ad621fcd8641817938a44737b4453ec00630ff86181bac
3
+ metadata.gz: 858ddf5d5a61fb916817402a0113fd74c19bf1f12b6be1273adf33cc3b9f578c
4
+ data.tar.gz: cd8efe1f99b93a667680cc3be8ab7d2115c39ded7331d094231ecb7e5ad7e947
5
5
  SHA512:
6
- metadata.gz: fe888ed05e2b88c09fe1bb833a6261add3ff0b4b7963d096712e889581e7998b103f072c3ebf69ce7359c92c260a7cd9f59b6e2adead1fa6bb5dc8140ad59376
7
- data.tar.gz: 2fbe152acc6ef2b9ae444a00ecda2e93e76012153faa1852eae78e7811e7e5657d77a30ee85fc134b792415ed2db96bc43d526a0a4896bf82f0253b28bd88473
6
+ metadata.gz: 9c7220660dc96ec5921b5acf58c0565a3ded299b54e1462ffba158215f8845b2886eb08db4eb9f3f853bbca77d099fdcfdb0550cdb9f7a06d410a1058fc4f04e
7
+ data.tar.gz: 43186e634cfde556d85310cef3ae8d1cafe0533007a3333d04a9cfb4ee8c46f2b7c501a5e1552b75ed3f3b1cdd401ed290990d1b31a9d083c8b794a1bd24a77c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2023-04-17)
5
+ ------------------
6
+
7
+ * Feature - Supports the new feature of LoRaWAN roaming, allows to configure MaxEirp for LoRaWAN gateway, and allows to configure PingSlotPeriod for LoRaWAN multicast group
8
+
4
9
  1.31.0 (2023-03-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.32.0
@@ -984,6 +984,8 @@ module Aws::IoTWireless
984
984
  # add_gw_metadata: false,
985
985
  # dr_min: 1,
986
986
  # dr_max: 1,
987
+ # pr_allowed: false,
988
+ # ra_allowed: false,
987
989
  # },
988
990
  # tags: [
989
991
  # {
@@ -1179,6 +1181,7 @@ module Aws::IoTWireless
1179
1181
  # data_rate: 1,
1180
1182
  # frequencies: [1],
1181
1183
  # },
1184
+ # max_eirp: 1.0,
1182
1185
  # },
1183
1186
  # tags: [
1184
1187
  # {
@@ -2010,6 +2013,7 @@ module Aws::IoTWireless
2010
2013
  # resp.lo_ra_wan.dl_freq #=> Integer
2011
2014
  # resp.lo_ra_wan.session_start_time #=> Time
2012
2015
  # resp.lo_ra_wan.session_timeout #=> Integer
2016
+ # resp.lo_ra_wan.ping_slot_period #=> Integer
2013
2017
  #
2014
2018
  # @overload get_multicast_group_session(params = {})
2015
2019
  # @param [Hash] params ({})
@@ -2806,6 +2810,7 @@ module Aws::IoTWireless
2806
2810
  # resp.lo_ra_wan.beaconing.data_rate #=> Integer
2807
2811
  # resp.lo_ra_wan.beaconing.frequencies #=> Array
2808
2812
  # resp.lo_ra_wan.beaconing.frequencies[0] #=> Integer
2813
+ # resp.lo_ra_wan.max_eirp #=> Float
2809
2814
  # resp.arn #=> String
2810
2815
  # resp.thing_name #=> String
2811
2816
  # resp.thing_arn #=> String
@@ -3759,6 +3764,7 @@ module Aws::IoTWireless
3759
3764
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.data_rate #=> Integer
3760
3765
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies #=> Array
3761
3766
  # resp.wireless_gateway_list[0].lo_ra_wan.beaconing.frequencies[0] #=> Integer
3767
+ # resp.wireless_gateway_list[0].lo_ra_wan.max_eirp #=> Float
3762
3768
  # resp.wireless_gateway_list[0].last_uplink_received_at #=> String
3763
3769
  #
3764
3770
  # @overload list_wireless_gateways(params = {})
@@ -4106,6 +4112,7 @@ module Aws::IoTWireless
4106
4112
  # dl_freq: 1,
4107
4113
  # session_start_time: Time.now,
4108
4114
  # session_timeout: 1,
4115
+ # ping_slot_period: 1,
4109
4116
  # },
4110
4117
  # })
4111
4118
  #
@@ -4916,6 +4923,9 @@ module Aws::IoTWireless
4916
4923
  # A list of NetId values that are used by LoRa gateways to filter the
4917
4924
  # uplink frames.
4918
4925
  #
4926
+ # @option params [Float] :max_eirp
4927
+ # The MaxEIRP value.
4928
+ #
4919
4929
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4920
4930
  #
4921
4931
  # @example Request syntax with placeholder values
@@ -4928,6 +4938,7 @@ module Aws::IoTWireless
4928
4938
  # ["JoinEui"],
4929
4939
  # ],
4930
4940
  # net_id_filters: ["NetId"],
4941
+ # max_eirp: 1.0,
4931
4942
  # })
4932
4943
  #
4933
4944
  # @overload update_wireless_gateway(params = {})
@@ -4950,7 +4961,7 @@ module Aws::IoTWireless
4950
4961
  params: params,
4951
4962
  config: config)
4952
4963
  context[:gem_name] = 'aws-sdk-iotwireless'
4953
- context[:gem_version] = '1.31.0'
4964
+ context[:gem_version] = '1.32.0'
4954
4965
  Seahorse::Client::Request.new(handlers, context)
4955
4966
  end
4956
4967
 
@@ -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')
@@ -1634,6 +1635,7 @@ module Aws::IoTWireless
1634
1635
  LoRaWANGateway.add_member(:net_id_filters, Shapes::ShapeRef.new(shape: NetIdFilters, location_name: "NetIdFilters"))
1635
1636
  LoRaWANGateway.add_member(:sub_bands, Shapes::ShapeRef.new(shape: SubBands, location_name: "SubBands"))
1636
1637
  LoRaWANGateway.add_member(:beaconing, Shapes::ShapeRef.new(shape: Beaconing, location_name: "Beaconing"))
1638
+ LoRaWANGateway.add_member(:max_eirp, Shapes::ShapeRef.new(shape: GatewayMaxEirp, location_name: "MaxEirp"))
1637
1639
  LoRaWANGateway.struct_class = Types::LoRaWANGateway
1638
1640
 
1639
1641
  LoRaWANGatewayCurrentVersion.add_member(:current_version, Shapes::ShapeRef.new(shape: LoRaWANGatewayVersion, location_name: "CurrentVersion"))
@@ -1698,6 +1700,7 @@ module Aws::IoTWireless
1698
1700
  LoRaWANMulticastSession.add_member(:dl_freq, Shapes::ShapeRef.new(shape: DlFreq, location_name: "DlFreq"))
1699
1701
  LoRaWANMulticastSession.add_member(:session_start_time, Shapes::ShapeRef.new(shape: SessionStartTimeTimestamp, location_name: "SessionStartTime"))
1700
1702
  LoRaWANMulticastSession.add_member(:session_timeout, Shapes::ShapeRef.new(shape: SessionTimeout, location_name: "SessionTimeout"))
1703
+ LoRaWANMulticastSession.add_member(:ping_slot_period, Shapes::ShapeRef.new(shape: PingSlotPeriod, location_name: "PingSlotPeriod"))
1701
1704
  LoRaWANMulticastSession.struct_class = Types::LoRaWANMulticastSession
1702
1705
 
1703
1706
  LoRaWANSendDataToDevice.add_member(:f_port, Shapes::ShapeRef.new(shape: FPort, location_name: "FPort"))
@@ -1707,6 +1710,8 @@ module Aws::IoTWireless
1707
1710
  LoRaWANServiceProfile.add_member(:add_gw_metadata, Shapes::ShapeRef.new(shape: AddGwMetadata, location_name: "AddGwMetadata"))
1708
1711
  LoRaWANServiceProfile.add_member(:dr_min, Shapes::ShapeRef.new(shape: DrMinBox, location_name: "DrMin"))
1709
1712
  LoRaWANServiceProfile.add_member(:dr_max, Shapes::ShapeRef.new(shape: DrMaxBox, location_name: "DrMax"))
1713
+ LoRaWANServiceProfile.add_member(:pr_allowed, Shapes::ShapeRef.new(shape: PrAllowed, location_name: "PrAllowed"))
1714
+ LoRaWANServiceProfile.add_member(:ra_allowed, Shapes::ShapeRef.new(shape: RaAllowed, location_name: "RaAllowed"))
1710
1715
  LoRaWANServiceProfile.struct_class = Types::LoRaWANServiceProfile
1711
1716
 
1712
1717
  LoRaWANStartFuotaTask.add_member(:start_time, Shapes::ShapeRef.new(shape: StartTime, location_name: "StartTime"))
@@ -2213,6 +2218,7 @@ module Aws::IoTWireless
2213
2218
  UpdateWirelessGatewayRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
2214
2219
  UpdateWirelessGatewayRequest.add_member(:join_eui_filters, Shapes::ShapeRef.new(shape: JoinEuiFilters, location_name: "JoinEuiFilters"))
2215
2220
  UpdateWirelessGatewayRequest.add_member(:net_id_filters, Shapes::ShapeRef.new(shape: NetIdFilters, location_name: "NetIdFilters"))
2221
+ UpdateWirelessGatewayRequest.add_member(:max_eirp, Shapes::ShapeRef.new(shape: GatewayMaxEirp, location_name: "MaxEirp"))
2216
2222
  UpdateWirelessGatewayRequest.struct_class = Types::UpdateWirelessGatewayRequest
2217
2223
 
2218
2224
  UpdateWirelessGatewayResponse.struct_class = Types::UpdateWirelessGatewayResponse
@@ -3952,13 +3952,18 @@ module Aws::IoTWireless
3952
3952
  # frequency parameters.
3953
3953
  # @return [Types::Beaconing]
3954
3954
  #
3955
+ # @!attribute [rw] max_eirp
3956
+ # The MaxEIRP value.
3957
+ # @return [Float]
3958
+ #
3955
3959
  class LoRaWANGateway < Struct.new(
3956
3960
  :gateway_eui,
3957
3961
  :rf_region,
3958
3962
  :join_eui_filters,
3959
3963
  :net_id_filters,
3960
3964
  :sub_bands,
3961
- :beaconing)
3965
+ :beaconing,
3966
+ :max_eirp)
3962
3967
  SENSITIVE = []
3963
3968
  include Aws::Structure
3964
3969
  end
@@ -4237,11 +4242,16 @@ module Aws::IoTWireless
4237
4242
  # How long before a multicast group session is to timeout.
4238
4243
  # @return [Integer]
4239
4244
  #
4245
+ # @!attribute [rw] ping_slot_period
4246
+ # The PingSlotPeriod value.
4247
+ # @return [Integer]
4248
+ #
4240
4249
  class LoRaWANMulticastSession < Struct.new(
4241
4250
  :dl_dr,
4242
4251
  :dl_freq,
4243
4252
  :session_start_time,
4244
- :session_timeout)
4253
+ :session_timeout,
4254
+ :ping_slot_period)
4245
4255
  SENSITIVE = []
4246
4256
  include Aws::Structure
4247
4257
  end
@@ -4279,10 +4289,22 @@ module Aws::IoTWireless
4279
4289
  # The DrMax value.
4280
4290
  # @return [Integer]
4281
4291
  #
4292
+ # @!attribute [rw] pr_allowed
4293
+ # The PRAllowed value that describes whether passive roaming is
4294
+ # allowed.
4295
+ # @return [Boolean]
4296
+ #
4297
+ # @!attribute [rw] ra_allowed
4298
+ # The RAAllowed value that describes whether roaming activation is
4299
+ # allowed.
4300
+ # @return [Boolean]
4301
+ #
4282
4302
  class LoRaWANServiceProfile < Struct.new(
4283
4303
  :add_gw_metadata,
4284
4304
  :dr_min,
4285
- :dr_max)
4305
+ :dr_max,
4306
+ :pr_allowed,
4307
+ :ra_allowed)
4286
4308
  SENSITIVE = []
4287
4309
  include Aws::Structure
4288
4310
  end
@@ -6264,12 +6286,17 @@ module Aws::IoTWireless
6264
6286
  # uplink frames.
6265
6287
  # @return [Array<String>]
6266
6288
  #
6289
+ # @!attribute [rw] max_eirp
6290
+ # The MaxEIRP value.
6291
+ # @return [Float]
6292
+ #
6267
6293
  class UpdateWirelessGatewayRequest < Struct.new(
6268
6294
  :id,
6269
6295
  :name,
6270
6296
  :description,
6271
6297
  :join_eui_filters,
6272
- :net_id_filters)
6298
+ :net_id_filters,
6299
+ :max_eirp)
6273
6300
  SENSITIVE = []
6274
6301
  include Aws::Structure
6275
6302
  end
@@ -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.32.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.32.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-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core