aws-sdk-iotwireless 1.7.0 → 1.8.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: 325ea63aa0c03b400b18e2a2a2c13a232e9e50ab1b698e7c8f281d8acb681d42
4
- data.tar.gz: 36f6c0afa5edc47572c95374579decb81d6bf9b2eb8bfb8f06a4b2bfb02daff9
3
+ metadata.gz: b63a5670ad67485a4f3fd0711ecea943144bfefb539ee392c3fdfed825d86cd2
4
+ data.tar.gz: 1658739d51df31133a4c9c72aba6fbb98337b547ba663be27085ce7307b11107
5
5
  SHA512:
6
- metadata.gz: 6c458308f39a4a11424cfe103aa42cfb58cd9a68ed03f943516f37a08f89f53f87a42a6b1a10c7c036e5ce3f69bf71fa23854196298ee3ba0dd1baf818a65d90
7
- data.tar.gz: cb4c8c8375c73765a993311d76b7731d29a662136584c20382a5fa214e1a234e1ec831cf9283eded3d8553c78e7cea1472ca751bf810522170452fc95530f836
6
+ metadata.gz: d7a74b6e71f1b6378679fef8ddc38f3f7707f4e02ef64b2897d1feb47850743fc7f2d410b5a36ac8344448c3141b61cc145d04e3a378601f4612863224ba1f5f
7
+ data.tar.gz: c7c73b08aa306aa9caacf3032ceef7bb1529ac17701cc0a1da102153afe8c78d9607d28d503dad470c62235814de2f1a18e54b4ab79bf2677797c79fcf993a6d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2021-04-26)
5
+ ------------------
6
+
7
+ * Feature - Add a new optional field MessageType to support Sidewalk devices in SendDataToWirelessDevice API
8
+
4
9
  1.7.0 (2021-03-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.8.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.7.0'
51
+ GEM_VERSION = '1.8.0'
52
52
 
53
53
  end
@@ -2033,6 +2033,7 @@ module Aws::IoTWireless
2033
2033
  # },
2034
2034
  # sidewalk: {
2035
2035
  # seq: 1,
2036
+ # message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
2036
2037
  # },
2037
2038
  # },
2038
2039
  # })
@@ -2275,7 +2276,7 @@ module Aws::IoTWireless
2275
2276
  params: params,
2276
2277
  config: config)
2277
2278
  context[:gem_name] = 'aws-sdk-iotwireless'
2278
- context[:gem_version] = '1.7.0'
2279
+ context[:gem_version] = '1.8.0'
2279
2280
  Seahorse::Client::Request.new(handlers, context)
2280
2281
  end
2281
2282
 
@@ -180,6 +180,7 @@ module Aws::IoTWireless
180
180
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
181
181
  Message = Shapes::StringShape.new(name: 'Message')
182
182
  MessageId = Shapes::StringShape.new(name: 'MessageId')
183
+ MessageType = Shapes::StringShape.new(name: 'MessageType')
183
184
  MinGwDiversity = Shapes::IntegerShape.new(name: 'MinGwDiversity')
184
185
  Model = Shapes::StringShape.new(name: 'Model')
185
186
  NextToken = Shapes::StringShape.new(name: 'NextToken')
@@ -859,6 +860,7 @@ module Aws::IoTWireless
859
860
  SidewalkListDevice.struct_class = Types::SidewalkListDevice
860
861
 
861
862
  SidewalkSendDataToDevice.add_member(:seq, Shapes::ShapeRef.new(shape: Seq, location_name: "Seq"))
863
+ SidewalkSendDataToDevice.add_member(:message_type, Shapes::ShapeRef.new(shape: MessageType, location_name: "MessageType"))
862
864
  SidewalkSendDataToDevice.struct_class = Types::SidewalkSendDataToDevice
863
865
 
864
866
  SidewalkUpdateAccount.add_member(:app_server_private_key, Shapes::ShapeRef.new(shape: AppServerPrivateKey, location_name: "AppServerPrivateKey"))
@@ -2674,6 +2674,7 @@ module Aws::IoTWireless
2674
2674
  # },
2675
2675
  # sidewalk: {
2676
2676
  # seq: 1,
2677
+ # message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
2677
2678
  # },
2678
2679
  # },
2679
2680
  # }
@@ -2929,14 +2930,20 @@ module Aws::IoTWireless
2929
2930
  #
2930
2931
  # {
2931
2932
  # seq: 1,
2933
+ # message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
2932
2934
  # }
2933
2935
  #
2934
2936
  # @!attribute [rw] seq
2935
2937
  # The sequence number.
2936
2938
  # @return [Integer]
2937
2939
  #
2940
+ # @!attribute [rw] message_type
2941
+ # Sidewalk device message type.
2942
+ # @return [String]
2943
+ #
2938
2944
  class SidewalkSendDataToDevice < Struct.new(
2939
- :seq)
2945
+ :seq,
2946
+ :message_type)
2940
2947
  SENSITIVE = []
2941
2948
  include Aws::Structure
2942
2949
  end
@@ -3420,6 +3427,7 @@ module Aws::IoTWireless
3420
3427
  # },
3421
3428
  # sidewalk: {
3422
3429
  # seq: 1,
3430
+ # message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
3423
3431
  # },
3424
3432
  # }
3425
3433
  #
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.7.0
4
+ version: 1.8.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-03-31 00:00:00.000000000 Z
11
+ date: 2021-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - AWS IoT Wireless