aws-sdk-iotwireless 1.8.0 → 1.9.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: b63a5670ad67485a4f3fd0711ecea943144bfefb539ee392c3fdfed825d86cd2
4
- data.tar.gz: 1658739d51df31133a4c9c72aba6fbb98337b547ba663be27085ce7307b11107
3
+ metadata.gz: a7257643922c37472c8710619506c5a980819265dd4073e3e74ec7df5545a960
4
+ data.tar.gz: eb1955947fbc08de9862cb84eb07fb2040f3548d4a5682cb04b78e2b7eeb8283
5
5
  SHA512:
6
- metadata.gz: d7a74b6e71f1b6378679fef8ddc38f3f7707f4e02ef64b2897d1feb47850743fc7f2d410b5a36ac8344448c3141b61cc145d04e3a378601f4612863224ba1f5f
7
- data.tar.gz: c7c73b08aa306aa9caacf3032ceef7bb1529ac17701cc0a1da102153afe8c78d9607d28d503dad470c62235814de2f1a18e54b4ab79bf2677797c79fcf993a6d
6
+ metadata.gz: b93b109d9c788cbc3a136edeb7b7309ff45ada3fcf58abf71e7e5d829fb6ddeff14d0439d31b7862dd1379f036807e419743f7e19c5fcb29dd0efd427d214a15
7
+ data.tar.gz: 1b901b8b3ff9865044a7f4a65e6dd75e45f5166f1128ac5788a0287f772f5bf6f91d077bbd15818d6b66d9c93012bcce30cae590c50ea7b45f36920f503ae68a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2021-05-10)
5
+ ------------------
6
+
7
+ * Feature - Add three new optional fields to support filtering and configurable sub-band in WirelessGateway APIs. The filtering is for all the RF region supported. The sub-band configuration is only applicable to LoRa gateways of US915 or AU915 RF region.
8
+
4
9
  1.8.0 (2021-04-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-iotwireless/customizations'
48
48
  # @!group service
49
49
  module Aws::IoTWireless
50
50
 
51
- GEM_VERSION = '1.8.0'
51
+ GEM_VERSION = '1.9.0'
52
52
 
53
53
  end
@@ -780,6 +780,11 @@ module Aws::IoTWireless
780
780
  # lo_ra_wan: { # required
781
781
  # gateway_eui: "GatewayEui",
782
782
  # rf_region: "RfRegion",
783
+ # join_eui_filters: [
784
+ # ["JoinEui"],
785
+ # ],
786
+ # net_id_filters: ["NetId"],
787
+ # sub_bands: [1],
783
788
  # },
784
789
  # tags: [
785
790
  # {
@@ -1484,6 +1489,13 @@ module Aws::IoTWireless
1484
1489
  # resp.description #=> String
1485
1490
  # resp.lo_ra_wan.gateway_eui #=> String
1486
1491
  # resp.lo_ra_wan.rf_region #=> String
1492
+ # resp.lo_ra_wan.join_eui_filters #=> Array
1493
+ # resp.lo_ra_wan.join_eui_filters[0] #=> Array
1494
+ # resp.lo_ra_wan.join_eui_filters[0][0] #=> String
1495
+ # resp.lo_ra_wan.net_id_filters #=> Array
1496
+ # resp.lo_ra_wan.net_id_filters[0] #=> String
1497
+ # resp.lo_ra_wan.sub_bands #=> Array
1498
+ # resp.lo_ra_wan.sub_bands[0] #=> Integer
1487
1499
  # resp.arn #=> String
1488
1500
  # resp.thing_name #=> String
1489
1501
  # resp.thing_arn #=> String
@@ -1993,6 +2005,13 @@ module Aws::IoTWireless
1993
2005
  # resp.wireless_gateway_list[0].description #=> String
1994
2006
  # resp.wireless_gateway_list[0].lo_ra_wan.gateway_eui #=> String
1995
2007
  # resp.wireless_gateway_list[0].lo_ra_wan.rf_region #=> String
2008
+ # resp.wireless_gateway_list[0].lo_ra_wan.join_eui_filters #=> Array
2009
+ # resp.wireless_gateway_list[0].lo_ra_wan.join_eui_filters[0] #=> Array
2010
+ # resp.wireless_gateway_list[0].lo_ra_wan.join_eui_filters[0][0] #=> String
2011
+ # resp.wireless_gateway_list[0].lo_ra_wan.net_id_filters #=> Array
2012
+ # resp.wireless_gateway_list[0].lo_ra_wan.net_id_filters[0] #=> String
2013
+ # resp.wireless_gateway_list[0].lo_ra_wan.sub_bands #=> Array
2014
+ # resp.wireless_gateway_list[0].lo_ra_wan.sub_bands[0] #=> Integer
1996
2015
  # resp.wireless_gateway_list[0].last_uplink_received_at #=> String
1997
2016
  #
1998
2017
  # @overload list_wireless_gateways(params = {})
@@ -2246,6 +2265,13 @@ module Aws::IoTWireless
2246
2265
  # @option params [String] :description
2247
2266
  # A new description of the resource.
2248
2267
  #
2268
+ # @option params [Array<Array>] :join_eui_filters
2269
+ # A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.
2270
+ #
2271
+ # @option params [Array<String>] :net_id_filters
2272
+ # A list of NetId values that are used by LoRa gateways to filter the
2273
+ # uplink frames.
2274
+ #
2249
2275
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2250
2276
  #
2251
2277
  # @example Request syntax with placeholder values
@@ -2254,6 +2280,10 @@ module Aws::IoTWireless
2254
2280
  # id: "WirelessGatewayId", # required
2255
2281
  # name: "WirelessGatewayName",
2256
2282
  # description: "Description",
2283
+ # join_eui_filters: [
2284
+ # ["JoinEui"],
2285
+ # ],
2286
+ # net_id_filters: ["NetId"],
2257
2287
  # })
2258
2288
  #
2259
2289
  # @overload update_wireless_gateway(params = {})
@@ -2276,7 +2306,7 @@ module Aws::IoTWireless
2276
2306
  params: params,
2277
2307
  config: config)
2278
2308
  context[:gem_name] = 'aws-sdk-iotwireless'
2279
- context[:gem_version] = '1.8.0'
2309
+ context[:gem_version] = '1.9.0'
2280
2310
  Seahorse::Client::Request.new(handlers, context)
2281
2311
  end
2282
2312
 
@@ -143,6 +143,8 @@ module Aws::IoTWireless
143
143
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
144
144
  IotCertificateId = Shapes::StringShape.new(name: 'IotCertificateId')
145
145
  JoinEui = Shapes::StringShape.new(name: 'JoinEui')
146
+ JoinEuiFilters = Shapes::ListShape.new(name: 'JoinEuiFilters')
147
+ JoinEuiRange = Shapes::ListShape.new(name: 'JoinEuiRange')
146
148
  ListDestinationsRequest = Shapes::StructureShape.new(name: 'ListDestinationsRequest')
147
149
  ListDestinationsResponse = Shapes::StructureShape.new(name: 'ListDestinationsResponse')
148
150
  ListDeviceProfilesRequest = Shapes::StructureShape.new(name: 'ListDeviceProfilesRequest')
@@ -183,6 +185,8 @@ module Aws::IoTWireless
183
185
  MessageType = Shapes::StringShape.new(name: 'MessageType')
184
186
  MinGwDiversity = Shapes::IntegerShape.new(name: 'MinGwDiversity')
185
187
  Model = Shapes::StringShape.new(name: 'Model')
188
+ NetId = Shapes::StringShape.new(name: 'NetId')
189
+ NetIdFilters = Shapes::ListShape.new(name: 'NetIdFilters')
186
190
  NextToken = Shapes::StringShape.new(name: 'NextToken')
187
191
  NwkGeoLoc = Shapes::BooleanShape.new(name: 'NwkGeoLoc')
188
192
  NwkKey = Shapes::StringShape.new(name: 'NwkKey')
@@ -237,6 +241,8 @@ module Aws::IoTWireless
237
241
  SidewalkUpdateAccount = Shapes::StructureShape.new(name: 'SidewalkUpdateAccount')
238
242
  SigningAlg = Shapes::StringShape.new(name: 'SigningAlg')
239
243
  Station = Shapes::StringShape.new(name: 'Station')
244
+ SubBand = Shapes::IntegerShape.new(name: 'SubBand')
245
+ SubBands = Shapes::ListShape.new(name: 'SubBands')
240
246
  Supports32BitFCnt = Shapes::BooleanShape.new(name: 'Supports32BitFCnt')
241
247
  SupportsClassB = Shapes::BooleanShape.new(name: 'SupportsClassB')
242
248
  SupportsClassC = Shapes::BooleanShape.new(name: 'SupportsClassC')
@@ -623,6 +629,10 @@ module Aws::IoTWireless
623
629
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
624
630
  InternalServerException.struct_class = Types::InternalServerException
625
631
 
632
+ JoinEuiFilters.member = Shapes::ShapeRef.new(shape: JoinEuiRange)
633
+
634
+ JoinEuiRange.member = Shapes::ShapeRef.new(shape: JoinEui)
635
+
626
636
  ListDestinationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
627
637
  ListDestinationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
628
638
  ListDestinationsRequest.struct_class = Types::ListDestinationsRequest
@@ -730,6 +740,9 @@ module Aws::IoTWireless
730
740
 
731
741
  LoRaWANGateway.add_member(:gateway_eui, Shapes::ShapeRef.new(shape: GatewayEui, location_name: "GatewayEui"))
732
742
  LoRaWANGateway.add_member(:rf_region, Shapes::ShapeRef.new(shape: RfRegion, location_name: "RfRegion"))
743
+ LoRaWANGateway.add_member(:join_eui_filters, Shapes::ShapeRef.new(shape: JoinEuiFilters, location_name: "JoinEuiFilters"))
744
+ LoRaWANGateway.add_member(:net_id_filters, Shapes::ShapeRef.new(shape: NetIdFilters, location_name: "NetIdFilters"))
745
+ LoRaWANGateway.add_member(:sub_bands, Shapes::ShapeRef.new(shape: SubBands, location_name: "SubBands"))
733
746
  LoRaWANGateway.struct_class = Types::LoRaWANGateway
734
747
 
735
748
  LoRaWANGatewayCurrentVersion.add_member(:current_version, Shapes::ShapeRef.new(shape: LoRaWANGatewayVersion, location_name: "CurrentVersion"))
@@ -791,6 +804,8 @@ module Aws::IoTWireless
791
804
  LoRaWANUpdateGatewayTaskEntry.add_member(:update_version, Shapes::ShapeRef.new(shape: LoRaWANGatewayVersion, location_name: "UpdateVersion"))
792
805
  LoRaWANUpdateGatewayTaskEntry.struct_class = Types::LoRaWANUpdateGatewayTaskEntry
793
806
 
807
+ NetIdFilters.member = Shapes::ShapeRef.new(shape: NetId)
808
+
794
809
  OtaaV1_0_x.add_member(:app_key, Shapes::ShapeRef.new(shape: AppKey, location_name: "AppKey"))
795
810
  OtaaV1_0_x.add_member(:app_eui, Shapes::ShapeRef.new(shape: AppEui, location_name: "AppEui"))
796
811
  OtaaV1_0_x.struct_class = Types::OtaaV1_0_x
@@ -866,6 +881,8 @@ module Aws::IoTWireless
866
881
  SidewalkUpdateAccount.add_member(:app_server_private_key, Shapes::ShapeRef.new(shape: AppServerPrivateKey, location_name: "AppServerPrivateKey"))
867
882
  SidewalkUpdateAccount.struct_class = Types::SidewalkUpdateAccount
868
883
 
884
+ SubBands.member = Shapes::ShapeRef.new(shape: SubBand)
885
+
869
886
  Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
870
887
  Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
871
888
  Tag.struct_class = Types::Tag
@@ -927,6 +944,8 @@ module Aws::IoTWireless
927
944
  UpdateWirelessGatewayRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayId, required: true, location: "uri", location_name: "Id"))
928
945
  UpdateWirelessGatewayRequest.add_member(:name, Shapes::ShapeRef.new(shape: WirelessGatewayName, location_name: "Name"))
929
946
  UpdateWirelessGatewayRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
947
+ UpdateWirelessGatewayRequest.add_member(:join_eui_filters, Shapes::ShapeRef.new(shape: JoinEuiFilters, location_name: "JoinEuiFilters"))
948
+ UpdateWirelessGatewayRequest.add_member(:net_id_filters, Shapes::ShapeRef.new(shape: NetIdFilters, location_name: "NetIdFilters"))
930
949
  UpdateWirelessGatewayRequest.struct_class = Types::UpdateWirelessGatewayRequest
931
950
 
932
951
  UpdateWirelessGatewayResponse.struct_class = Types::UpdateWirelessGatewayResponse
@@ -245,9 +245,11 @@ module Aws::IoTWireless
245
245
  # @return [String]
246
246
  #
247
247
  # @!attribute [rw] resource_id
248
+ # Id of the resource in the conflicting operation.
248
249
  # @return [String]
249
250
  #
250
251
  # @!attribute [rw] resource_type
252
+ # Type of the resource in the conflicting operation.
251
253
  # @return [String]
252
254
  #
253
255
  class ConflictException < Struct.new(
@@ -604,6 +606,11 @@ module Aws::IoTWireless
604
606
  # lo_ra_wan: { # required
605
607
  # gateway_eui: "GatewayEui",
606
608
  # rf_region: "RfRegion",
609
+ # join_eui_filters: [
610
+ # ["JoinEui"],
611
+ # ],
612
+ # net_id_filters: ["NetId"],
613
+ # sub_bands: [1],
607
614
  # },
608
615
  # tags: [
609
616
  # {
@@ -2262,6 +2269,11 @@ module Aws::IoTWireless
2262
2269
  # {
2263
2270
  # gateway_eui: "GatewayEui",
2264
2271
  # rf_region: "RfRegion",
2272
+ # join_eui_filters: [
2273
+ # ["JoinEui"],
2274
+ # ],
2275
+ # net_id_filters: ["NetId"],
2276
+ # sub_bands: [1],
2265
2277
  # }
2266
2278
  #
2267
2279
  # @!attribute [rw] gateway_eui
@@ -2272,9 +2284,26 @@ module Aws::IoTWireless
2272
2284
  # The frequency band (RFRegion) value.
2273
2285
  # @return [String]
2274
2286
  #
2287
+ # @!attribute [rw] join_eui_filters
2288
+ # A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.
2289
+ # @return [Array<Array<String>>]
2290
+ #
2291
+ # @!attribute [rw] net_id_filters
2292
+ # A list of NetId values that are used by LoRa gateways to filter the
2293
+ # uplink frames.
2294
+ # @return [Array<String>]
2295
+ #
2296
+ # @!attribute [rw] sub_bands
2297
+ # A list of integer indicating which sub bands are supported by LoRa
2298
+ # gateway.
2299
+ # @return [Array<Integer>]
2300
+ #
2275
2301
  class LoRaWANGateway < Struct.new(
2276
2302
  :gateway_eui,
2277
- :rf_region)
2303
+ :rf_region,
2304
+ :join_eui_filters,
2305
+ :net_id_filters,
2306
+ :sub_bands)
2278
2307
  SENSITIVE = []
2279
2308
  include Aws::Structure
2280
2309
  end
@@ -2648,9 +2677,11 @@ module Aws::IoTWireless
2648
2677
  # @return [String]
2649
2678
  #
2650
2679
  # @!attribute [rw] resource_id
2680
+ # Id of the not found resource.
2651
2681
  # @return [String]
2652
2682
  #
2653
2683
  # @!attribute [rw] resource_type
2684
+ # Type of the font found resource.
2654
2685
  # @return [String]
2655
2686
  #
2656
2687
  class ResourceNotFoundException < Struct.new(
@@ -3068,6 +3099,7 @@ module Aws::IoTWireless
3068
3099
  # @return [String]
3069
3100
  #
3070
3101
  # @!attribute [rw] resource_name
3102
+ # Name of the resource that exceeds maximum number of tags allowed.
3071
3103
  # @return [String]
3072
3104
  #
3073
3105
  class TooManyTagsException < Struct.new(
@@ -3231,6 +3263,10 @@ module Aws::IoTWireless
3231
3263
  # id: "WirelessGatewayId", # required
3232
3264
  # name: "WirelessGatewayName",
3233
3265
  # description: "Description",
3266
+ # join_eui_filters: [
3267
+ # ["JoinEui"],
3268
+ # ],
3269
+ # net_id_filters: ["NetId"],
3234
3270
  # }
3235
3271
  #
3236
3272
  # @!attribute [rw] id
@@ -3245,10 +3281,21 @@ module Aws::IoTWireless
3245
3281
  # A new description of the resource.
3246
3282
  # @return [String]
3247
3283
  #
3284
+ # @!attribute [rw] join_eui_filters
3285
+ # A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.
3286
+ # @return [Array<Array<String>>]
3287
+ #
3288
+ # @!attribute [rw] net_id_filters
3289
+ # A list of NetId values that are used by LoRa gateways to filter the
3290
+ # uplink frames.
3291
+ # @return [Array<String>]
3292
+ #
3248
3293
  class UpdateWirelessGatewayRequest < Struct.new(
3249
3294
  :id,
3250
3295
  :name,
3251
- :description)
3296
+ :description,
3297
+ :join_eui_filters,
3298
+ :net_id_filters)
3252
3299
  SENSITIVE = []
3253
3300
  include Aws::Structure
3254
3301
  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.8.0
4
+ version: 1.9.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: 2021-04-26 00:00:00.000000000 Z
11
+ date: 2021-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core