aws-sdk-iotwireless 1.2.0 → 1.7.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 +4 -4
- data/CHANGELOG.md +43 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-iotwireless.rb +2 -2
- data/lib/aws-sdk-iotwireless/client.rb +67 -10
- data/lib/aws-sdk-iotwireless/client_api.rb +46 -1
- data/lib/aws-sdk-iotwireless/errors.rb +1 -1
- data/lib/aws-sdk-iotwireless/resource.rb +1 -1
- data/lib/aws-sdk-iotwireless/types.rb +181 -24
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 325ea63aa0c03b400b18e2a2a2c13a232e9e50ab1b698e7c8f281d8acb681d42
|
|
4
|
+
data.tar.gz: 36f6c0afa5edc47572c95374579decb81d6bf9b2eb8bfb8f06a4b2bfb02daff9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c458308f39a4a11424cfe103aa42cfb58cd9a68ed03f943516f37a08f89f53f87a42a6b1a10c7c036e5ce3f69bf71fa23854196298ee3ba0dd1baf818a65d90
|
|
7
|
+
data.tar.gz: cb4c8c8375c73765a993311d76b7731d29a662136584c20382a5fa214e1a234e1ec831cf9283eded3d8553c78e7cea1472ca751bf810522170452fc95530f836
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Unreleased Changes
|
|
2
|
+
------------------
|
|
3
|
+
|
|
4
|
+
1.7.0 (2021-03-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add Sidewalk support to APIs: GetWirelessDevice, ListWirelessDevices, GetWirelessDeviceStatistics. Add Gateway connection status in GetWirelessGatewayStatistics API.
|
|
8
|
+
|
|
9
|
+
1.6.0 (2021-03-26)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Support tag-on-create for WirelessDevice.
|
|
13
|
+
|
|
14
|
+
1.5.0 (2021-03-10)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.4.0 (2021-03-09)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Add max value to Seq in SendDataToWirelessDevice API"
|
|
23
|
+
|
|
24
|
+
1.3.0 (2021-03-02)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Add ARN & Tags for PartnerAccount related APIs and WirelessGatewayTaskDefinition related APIs
|
|
28
|
+
|
|
29
|
+
1.2.0 (2021-02-02)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* Feature - Add enum value MqttTopic for Destination ExpressionType, add LoRaWANNetworkServerCertificateId for GetWirelessGatewayCertificate API
|
|
33
|
+
|
|
34
|
+
1.1.0 (2020-12-22)
|
|
35
|
+
------------------
|
|
36
|
+
|
|
37
|
+
* Feature - Adding the ability to use Fingerprint in GetPartnerAccount and ListPartnerAccounts API responses to protect sensitive customer account information.
|
|
38
|
+
|
|
39
|
+
1.0.0 (2020-12-15)
|
|
40
|
+
------------------
|
|
41
|
+
|
|
42
|
+
* Feature - Initial release of `aws-sdk-iotwireless`.
|
|
43
|
+
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.7.0
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -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.
|
|
51
|
+
GEM_VERSION = '1.7.0'
|
|
52
52
|
|
|
53
53
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -341,9 +341,14 @@ module Aws::IoTWireless
|
|
|
341
341
|
# **A suitable default value is auto-generated.** You should normally
|
|
342
342
|
# not need to pass this option.**
|
|
343
343
|
#
|
|
344
|
+
# @option params [Array<Types::Tag>] :tags
|
|
345
|
+
# The tags to attach to the specified resource. Tags are metadata that
|
|
346
|
+
# you can use to manage a resource.
|
|
347
|
+
#
|
|
344
348
|
# @return [Types::AssociateAwsAccountWithPartnerAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
345
349
|
#
|
|
346
350
|
# * {Types::AssociateAwsAccountWithPartnerAccountResponse#sidewalk #sidewalk} => Types::SidewalkAccountInfo
|
|
351
|
+
# * {Types::AssociateAwsAccountWithPartnerAccountResponse#arn #arn} => String
|
|
347
352
|
#
|
|
348
353
|
# @example Request syntax with placeholder values
|
|
349
354
|
#
|
|
@@ -353,12 +358,19 @@ module Aws::IoTWireless
|
|
|
353
358
|
# app_server_private_key: "AppServerPrivateKey",
|
|
354
359
|
# },
|
|
355
360
|
# client_request_token: "ClientRequestToken",
|
|
361
|
+
# tags: [
|
|
362
|
+
# {
|
|
363
|
+
# key: "TagKey", # required
|
|
364
|
+
# value: "TagValue", # required
|
|
365
|
+
# },
|
|
366
|
+
# ],
|
|
356
367
|
# })
|
|
357
368
|
#
|
|
358
369
|
# @example Response structure
|
|
359
370
|
#
|
|
360
371
|
# resp.sidewalk.amazon_id #=> String
|
|
361
372
|
# resp.sidewalk.app_server_private_key #=> String
|
|
373
|
+
# resp.arn #=> String
|
|
362
374
|
#
|
|
363
375
|
# @overload associate_aws_account_with_partner_account(params = {})
|
|
364
376
|
# @param [Hash] params ({})
|
|
@@ -464,8 +476,8 @@ module Aws::IoTWireless
|
|
|
464
476
|
# The ARN of the IAM Role that authorizes the destination.
|
|
465
477
|
#
|
|
466
478
|
# @option params [Array<Types::Tag>] :tags
|
|
467
|
-
# The tags to attach to the new destination. Tags are metadata that
|
|
468
|
-
#
|
|
479
|
+
# The tags to attach to the new destination. Tags are metadata that you
|
|
480
|
+
# can use to manage a resource.
|
|
469
481
|
#
|
|
470
482
|
# @option params [String] :client_request_token
|
|
471
483
|
# Each resource must have a unique client request token. If you try to
|
|
@@ -519,8 +531,8 @@ module Aws::IoTWireless
|
|
|
519
531
|
# The device profile information to use to create the device profile.
|
|
520
532
|
#
|
|
521
533
|
# @option params [Array<Types::Tag>] :tags
|
|
522
|
-
# The tags to attach to the new device profile Tags are metadata that
|
|
523
|
-
# can
|
|
534
|
+
# The tags to attach to the new device profile. Tags are metadata that
|
|
535
|
+
# you can use to manage a resource.
|
|
524
536
|
#
|
|
525
537
|
# @option params [String] :client_request_token
|
|
526
538
|
# Each resource must have a unique client request token. If you try to
|
|
@@ -592,7 +604,7 @@ module Aws::IoTWireless
|
|
|
592
604
|
#
|
|
593
605
|
# @option params [Array<Types::Tag>] :tags
|
|
594
606
|
# The tags to attach to the new service profile. Tags are metadata that
|
|
595
|
-
# can
|
|
607
|
+
# you can use to manage a resource.
|
|
596
608
|
#
|
|
597
609
|
# @option params [String] :client_request_token
|
|
598
610
|
# Each resource must have a unique client request token. If you try to
|
|
@@ -663,6 +675,10 @@ module Aws::IoTWireless
|
|
|
663
675
|
# The device configuration information to use to create the wireless
|
|
664
676
|
# device.
|
|
665
677
|
#
|
|
678
|
+
# @option params [Array<Types::Tag>] :tags
|
|
679
|
+
# The tags to attach to the new wireless device. Tags are metadata that
|
|
680
|
+
# you can use to manage a resource.
|
|
681
|
+
#
|
|
666
682
|
# @return [Types::CreateWirelessDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
667
683
|
#
|
|
668
684
|
# * {Types::CreateWirelessDeviceResponse#arn #arn} => String
|
|
@@ -706,6 +722,12 @@ module Aws::IoTWireless
|
|
|
706
722
|
# },
|
|
707
723
|
# },
|
|
708
724
|
# },
|
|
725
|
+
# tags: [
|
|
726
|
+
# {
|
|
727
|
+
# key: "TagKey", # required
|
|
728
|
+
# value: "TagValue", # required
|
|
729
|
+
# },
|
|
730
|
+
# ],
|
|
709
731
|
# })
|
|
710
732
|
#
|
|
711
733
|
# @example Response structure
|
|
@@ -734,7 +756,7 @@ module Aws::IoTWireless
|
|
|
734
756
|
#
|
|
735
757
|
# @option params [Array<Types::Tag>] :tags
|
|
736
758
|
# The tags to attach to the new wireless gateway. Tags are metadata that
|
|
737
|
-
# can
|
|
759
|
+
# you can use to manage a resource.
|
|
738
760
|
#
|
|
739
761
|
# @option params [String] :client_request_token
|
|
740
762
|
# Each resource must have a unique client request token. If you try to
|
|
@@ -834,9 +856,14 @@ module Aws::IoTWireless
|
|
|
834
856
|
# **A suitable default value is auto-generated.** You should normally
|
|
835
857
|
# not need to pass this option.**
|
|
836
858
|
#
|
|
859
|
+
# @option params [Array<Types::Tag>] :tags
|
|
860
|
+
# The tags to attach to the specified resource. Tags are metadata that
|
|
861
|
+
# you can use to manage a resource.
|
|
862
|
+
#
|
|
837
863
|
# @return [Types::CreateWirelessGatewayTaskDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
838
864
|
#
|
|
839
865
|
# * {Types::CreateWirelessGatewayTaskDefinitionResponse#id #id} => String
|
|
866
|
+
# * {Types::CreateWirelessGatewayTaskDefinitionResponse#arn #arn} => String
|
|
840
867
|
#
|
|
841
868
|
# @example Request syntax with placeholder values
|
|
842
869
|
#
|
|
@@ -862,11 +889,18 @@ module Aws::IoTWireless
|
|
|
862
889
|
# },
|
|
863
890
|
# },
|
|
864
891
|
# client_request_token: "ClientRequestToken",
|
|
892
|
+
# tags: [
|
|
893
|
+
# {
|
|
894
|
+
# key: "TagKey", # required
|
|
895
|
+
# value: "TagValue", # required
|
|
896
|
+
# },
|
|
897
|
+
# ],
|
|
865
898
|
# })
|
|
866
899
|
#
|
|
867
900
|
# @example Response structure
|
|
868
901
|
#
|
|
869
902
|
# resp.id #=> String
|
|
903
|
+
# resp.arn #=> String
|
|
870
904
|
#
|
|
871
905
|
# @overload create_wireless_gateway_task_definition(params = {})
|
|
872
906
|
# @param [Hash] params ({})
|
|
@@ -1215,6 +1249,7 @@ module Aws::IoTWireless
|
|
|
1215
1249
|
#
|
|
1216
1250
|
# resp.sidewalk.amazon_id #=> String
|
|
1217
1251
|
# resp.sidewalk.fingerprint #=> String
|
|
1252
|
+
# resp.sidewalk.arn #=> String
|
|
1218
1253
|
# resp.account_linked #=> Boolean
|
|
1219
1254
|
#
|
|
1220
1255
|
# @overload get_partner_account(params = {})
|
|
@@ -1326,6 +1361,7 @@ module Aws::IoTWireless
|
|
|
1326
1361
|
# * {Types::GetWirelessDeviceResponse#thing_name #thing_name} => String
|
|
1327
1362
|
# * {Types::GetWirelessDeviceResponse#thing_arn #thing_arn} => String
|
|
1328
1363
|
# * {Types::GetWirelessDeviceResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANDevice
|
|
1364
|
+
# * {Types::GetWirelessDeviceResponse#sidewalk #sidewalk} => Types::SidewalkDevice
|
|
1329
1365
|
#
|
|
1330
1366
|
# @example Request syntax with placeholder values
|
|
1331
1367
|
#
|
|
@@ -1360,6 +1396,11 @@ module Aws::IoTWireless
|
|
|
1360
1396
|
# resp.lo_ra_wan.abp_v1_0_x.dev_addr #=> String
|
|
1361
1397
|
# resp.lo_ra_wan.abp_v1_0_x.session_keys.nwk_s_key #=> String
|
|
1362
1398
|
# resp.lo_ra_wan.abp_v1_0_x.session_keys.app_s_key #=> String
|
|
1399
|
+
# resp.sidewalk.sidewalk_id #=> String
|
|
1400
|
+
# resp.sidewalk.sidewalk_manufacturing_sn #=> String
|
|
1401
|
+
# resp.sidewalk.device_certificates #=> Array
|
|
1402
|
+
# resp.sidewalk.device_certificates[0].signing_alg #=> String, one of "Ed25519", "P256r1"
|
|
1403
|
+
# resp.sidewalk.device_certificates[0].value #=> String
|
|
1363
1404
|
#
|
|
1364
1405
|
# @overload get_wireless_device(params = {})
|
|
1365
1406
|
# @param [Hash] params ({})
|
|
@@ -1378,6 +1419,7 @@ module Aws::IoTWireless
|
|
|
1378
1419
|
# * {Types::GetWirelessDeviceStatisticsResponse#wireless_device_id #wireless_device_id} => String
|
|
1379
1420
|
# * {Types::GetWirelessDeviceStatisticsResponse#last_uplink_received_at #last_uplink_received_at} => String
|
|
1380
1421
|
# * {Types::GetWirelessDeviceStatisticsResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANDeviceMetadata
|
|
1422
|
+
# * {Types::GetWirelessDeviceStatisticsResponse#sidewalk #sidewalk} => Types::SidewalkDeviceMetadata
|
|
1381
1423
|
#
|
|
1382
1424
|
# @example Request syntax with placeholder values
|
|
1383
1425
|
#
|
|
@@ -1398,6 +1440,10 @@ module Aws::IoTWireless
|
|
|
1398
1440
|
# resp.lo_ra_wan.gateways[0].gateway_eui #=> String
|
|
1399
1441
|
# resp.lo_ra_wan.gateways[0].snr #=> Float
|
|
1400
1442
|
# resp.lo_ra_wan.gateways[0].rssi #=> Float
|
|
1443
|
+
# resp.sidewalk.rssi #=> Integer
|
|
1444
|
+
# resp.sidewalk.battery_level #=> String, one of "normal", "low", "critical"
|
|
1445
|
+
# resp.sidewalk.event #=> String, one of "discovered", "lost", "ack", "nack", "passthrough"
|
|
1446
|
+
# resp.sidewalk.device_state #=> String, one of "Provisioned", "RegisteredNotSeen", "RegisteredReachable", "RegisteredUnreachable"
|
|
1401
1447
|
#
|
|
1402
1448
|
# @overload get_wireless_device_statistics(params = {})
|
|
1403
1449
|
# @param [Hash] params ({})
|
|
@@ -1516,6 +1562,7 @@ module Aws::IoTWireless
|
|
|
1516
1562
|
#
|
|
1517
1563
|
# * {Types::GetWirelessGatewayStatisticsResponse#wireless_gateway_id #wireless_gateway_id} => String
|
|
1518
1564
|
# * {Types::GetWirelessGatewayStatisticsResponse#last_uplink_received_at #last_uplink_received_at} => String
|
|
1565
|
+
# * {Types::GetWirelessGatewayStatisticsResponse#connection_status #connection_status} => String
|
|
1519
1566
|
#
|
|
1520
1567
|
# @example Request syntax with placeholder values
|
|
1521
1568
|
#
|
|
@@ -1527,6 +1574,7 @@ module Aws::IoTWireless
|
|
|
1527
1574
|
#
|
|
1528
1575
|
# resp.wireless_gateway_id #=> String
|
|
1529
1576
|
# resp.last_uplink_received_at #=> String
|
|
1577
|
+
# resp.connection_status #=> String, one of "Connected", "Disconnected"
|
|
1530
1578
|
#
|
|
1531
1579
|
# @overload get_wireless_gateway_statistics(params = {})
|
|
1532
1580
|
# @param [Hash] params ({})
|
|
@@ -1579,6 +1627,7 @@ module Aws::IoTWireless
|
|
|
1579
1627
|
# * {Types::GetWirelessGatewayTaskDefinitionResponse#auto_create_tasks #auto_create_tasks} => Boolean
|
|
1580
1628
|
# * {Types::GetWirelessGatewayTaskDefinitionResponse#name #name} => String
|
|
1581
1629
|
# * {Types::GetWirelessGatewayTaskDefinitionResponse#update #update} => Types::UpdateWirelessGatewayTaskCreate
|
|
1630
|
+
# * {Types::GetWirelessGatewayTaskDefinitionResponse#arn #arn} => String
|
|
1582
1631
|
#
|
|
1583
1632
|
# @example Request syntax with placeholder values
|
|
1584
1633
|
#
|
|
@@ -1600,6 +1649,7 @@ module Aws::IoTWireless
|
|
|
1600
1649
|
# resp.update.lo_ra_wan.update_version.package_version #=> String
|
|
1601
1650
|
# resp.update.lo_ra_wan.update_version.model #=> String
|
|
1602
1651
|
# resp.update.lo_ra_wan.update_version.station #=> String
|
|
1652
|
+
# resp.arn #=> String
|
|
1603
1653
|
#
|
|
1604
1654
|
# @overload get_wireless_gateway_task_definition(params = {})
|
|
1605
1655
|
# @param [Hash] params ({})
|
|
@@ -1717,6 +1767,7 @@ module Aws::IoTWireless
|
|
|
1717
1767
|
# resp.sidewalk #=> Array
|
|
1718
1768
|
# resp.sidewalk[0].amazon_id #=> String
|
|
1719
1769
|
# resp.sidewalk[0].fingerprint #=> String
|
|
1770
|
+
# resp.sidewalk[0].arn #=> String
|
|
1720
1771
|
#
|
|
1721
1772
|
# @overload list_partner_accounts(params = {})
|
|
1722
1773
|
# @param [Hash] params ({})
|
|
@@ -1767,7 +1818,7 @@ module Aws::IoTWireless
|
|
|
1767
1818
|
# Lists the tags (metadata) you have assigned to the resource.
|
|
1768
1819
|
#
|
|
1769
1820
|
# @option params [required, String] :resource_arn
|
|
1770
|
-
# The ARN of the resource for which to list tags.
|
|
1821
|
+
# The ARN of the resource for which you want to list tags.
|
|
1771
1822
|
#
|
|
1772
1823
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1773
1824
|
#
|
|
@@ -1847,6 +1898,11 @@ module Aws::IoTWireless
|
|
|
1847
1898
|
# resp.wireless_device_list[0].last_uplink_received_at #=> String
|
|
1848
1899
|
# resp.wireless_device_list[0].lo_ra_wan.dev_eui #=> String
|
|
1849
1900
|
# resp.wireless_device_list[0].sidewalk.amazon_id #=> String
|
|
1901
|
+
# resp.wireless_device_list[0].sidewalk.sidewalk_id #=> String
|
|
1902
|
+
# resp.wireless_device_list[0].sidewalk.sidewalk_manufacturing_sn #=> String
|
|
1903
|
+
# resp.wireless_device_list[0].sidewalk.device_certificates #=> Array
|
|
1904
|
+
# resp.wireless_device_list[0].sidewalk.device_certificates[0].signing_alg #=> String, one of "Ed25519", "P256r1"
|
|
1905
|
+
# resp.wireless_device_list[0].sidewalk.device_certificates[0].value #=> String
|
|
1850
1906
|
#
|
|
1851
1907
|
# @overload list_wireless_devices(params = {})
|
|
1852
1908
|
# @param [Hash] params ({})
|
|
@@ -1894,6 +1950,7 @@ module Aws::IoTWireless
|
|
|
1894
1950
|
# resp.task_definitions[0].lo_ra_wan.update_version.package_version #=> String
|
|
1895
1951
|
# resp.task_definitions[0].lo_ra_wan.update_version.model #=> String
|
|
1896
1952
|
# resp.task_definitions[0].lo_ra_wan.update_version.station #=> String
|
|
1953
|
+
# resp.task_definitions[0].arn #=> String
|
|
1897
1954
|
#
|
|
1898
1955
|
# @overload list_wireless_gateway_task_definitions(params = {})
|
|
1899
1956
|
# @param [Hash] params ({})
|
|
@@ -1998,7 +2055,7 @@ module Aws::IoTWireless
|
|
|
1998
2055
|
#
|
|
1999
2056
|
# @option params [required, Array<Types::Tag>] :tags
|
|
2000
2057
|
# Adds to or modifies the tags of the given resource. Tags are metadata
|
|
2001
|
-
# that can
|
|
2058
|
+
# that you can use to manage a resource.
|
|
2002
2059
|
#
|
|
2003
2060
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2004
2061
|
#
|
|
@@ -2218,7 +2275,7 @@ module Aws::IoTWireless
|
|
|
2218
2275
|
params: params,
|
|
2219
2276
|
config: config)
|
|
2220
2277
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
|
2221
|
-
context[:gem_version] = '1.
|
|
2278
|
+
context[:gem_version] = '1.7.0'
|
|
2222
2279
|
Seahorse::Client::Request.new(handlers, context)
|
|
2223
2280
|
end
|
|
2224
2281
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -33,12 +33,16 @@ module Aws::IoTWireless
|
|
|
33
33
|
AssociateWirelessGatewayWithThingRequest = Shapes::StructureShape.new(name: 'AssociateWirelessGatewayWithThingRequest')
|
|
34
34
|
AssociateWirelessGatewayWithThingResponse = Shapes::StructureShape.new(name: 'AssociateWirelessGatewayWithThingResponse')
|
|
35
35
|
AutoCreateTasks = Shapes::BooleanShape.new(name: 'AutoCreateTasks')
|
|
36
|
+
BatteryLevel = Shapes::StringShape.new(name: 'BatteryLevel')
|
|
37
|
+
CertificateList = Shapes::StructureShape.new(name: 'CertificateList')
|
|
36
38
|
CertificatePEM = Shapes::StringShape.new(name: 'CertificatePEM')
|
|
39
|
+
CertificateValue = Shapes::StringShape.new(name: 'CertificateValue')
|
|
37
40
|
ChannelMask = Shapes::StringShape.new(name: 'ChannelMask')
|
|
38
41
|
ClassBTimeout = Shapes::IntegerShape.new(name: 'ClassBTimeout')
|
|
39
42
|
ClassCTimeout = Shapes::IntegerShape.new(name: 'ClassCTimeout')
|
|
40
43
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
|
41
44
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
45
|
+
ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
|
|
42
46
|
Crc = Shapes::IntegerShape.new(name: 'Crc')
|
|
43
47
|
CreateDestinationRequest = Shapes::StructureShape.new(name: 'CreateDestinationRequest')
|
|
44
48
|
CreateDestinationResponse = Shapes::StructureShape.new(name: 'CreateDestinationResponse')
|
|
@@ -76,11 +80,13 @@ module Aws::IoTWireless
|
|
|
76
80
|
DevAddr = Shapes::StringShape.new(name: 'DevAddr')
|
|
77
81
|
DevEui = Shapes::StringShape.new(name: 'DevEui')
|
|
78
82
|
DevStatusReqFreq = Shapes::IntegerShape.new(name: 'DevStatusReqFreq')
|
|
83
|
+
DeviceCertificateList = Shapes::ListShape.new(name: 'DeviceCertificateList')
|
|
79
84
|
DeviceProfile = Shapes::StructureShape.new(name: 'DeviceProfile')
|
|
80
85
|
DeviceProfileArn = Shapes::StringShape.new(name: 'DeviceProfileArn')
|
|
81
86
|
DeviceProfileId = Shapes::StringShape.new(name: 'DeviceProfileId')
|
|
82
87
|
DeviceProfileList = Shapes::ListShape.new(name: 'DeviceProfileList')
|
|
83
88
|
DeviceProfileName = Shapes::StringShape.new(name: 'DeviceProfileName')
|
|
89
|
+
DeviceState = Shapes::StringShape.new(name: 'DeviceState')
|
|
84
90
|
DisassociateAwsAccountFromPartnerAccountRequest = Shapes::StructureShape.new(name: 'DisassociateAwsAccountFromPartnerAccountRequest')
|
|
85
91
|
DisassociateAwsAccountFromPartnerAccountResponse = Shapes::StructureShape.new(name: 'DisassociateAwsAccountFromPartnerAccountResponse')
|
|
86
92
|
DisassociateWirelessDeviceFromThingRequest = Shapes::StructureShape.new(name: 'DisassociateWirelessDeviceFromThingRequest')
|
|
@@ -96,6 +102,7 @@ module Aws::IoTWireless
|
|
|
96
102
|
DrMax = Shapes::IntegerShape.new(name: 'DrMax')
|
|
97
103
|
DrMin = Shapes::IntegerShape.new(name: 'DrMin')
|
|
98
104
|
EndPoint = Shapes::StringShape.new(name: 'EndPoint')
|
|
105
|
+
Event = Shapes::StringShape.new(name: 'Event')
|
|
99
106
|
Expression = Shapes::StringShape.new(name: 'Expression')
|
|
100
107
|
ExpressionType = Shapes::StringShape.new(name: 'ExpressionType')
|
|
101
108
|
FNwkSIntKey = Shapes::StringShape.new(name: 'FNwkSIntKey')
|
|
@@ -183,6 +190,7 @@ module Aws::IoTWireless
|
|
|
183
190
|
OtaaV1_0_x = Shapes::StructureShape.new(name: 'OtaaV1_0_x')
|
|
184
191
|
OtaaV1_1 = Shapes::StructureShape.new(name: 'OtaaV1_1')
|
|
185
192
|
PackageVersion = Shapes::StringShape.new(name: 'PackageVersion')
|
|
193
|
+
PartnerAccountArn = Shapes::StringShape.new(name: 'PartnerAccountArn')
|
|
186
194
|
PartnerAccountId = Shapes::StringShape.new(name: 'PartnerAccountId')
|
|
187
195
|
PartnerType = Shapes::StringShape.new(name: 'PartnerType')
|
|
188
196
|
PayloadData = Shapes::StringShape.new(name: 'PayloadData')
|
|
@@ -219,9 +227,14 @@ module Aws::IoTWireless
|
|
|
219
227
|
SidewalkAccountInfo = Shapes::StructureShape.new(name: 'SidewalkAccountInfo')
|
|
220
228
|
SidewalkAccountInfoWithFingerprint = Shapes::StructureShape.new(name: 'SidewalkAccountInfoWithFingerprint')
|
|
221
229
|
SidewalkAccountList = Shapes::ListShape.new(name: 'SidewalkAccountList')
|
|
230
|
+
SidewalkDevice = Shapes::StructureShape.new(name: 'SidewalkDevice')
|
|
231
|
+
SidewalkDeviceMetadata = Shapes::StructureShape.new(name: 'SidewalkDeviceMetadata')
|
|
232
|
+
SidewalkId = Shapes::StringShape.new(name: 'SidewalkId')
|
|
222
233
|
SidewalkListDevice = Shapes::StructureShape.new(name: 'SidewalkListDevice')
|
|
234
|
+
SidewalkManufacturingSn = Shapes::StringShape.new(name: 'SidewalkManufacturingSn')
|
|
223
235
|
SidewalkSendDataToDevice = Shapes::StructureShape.new(name: 'SidewalkSendDataToDevice')
|
|
224
236
|
SidewalkUpdateAccount = Shapes::StructureShape.new(name: 'SidewalkUpdateAccount')
|
|
237
|
+
SigningAlg = Shapes::StringShape.new(name: 'SigningAlg')
|
|
225
238
|
Station = Shapes::StringShape.new(name: 'Station')
|
|
226
239
|
Supports32BitFCnt = Shapes::BooleanShape.new(name: 'Supports32BitFCnt')
|
|
227
240
|
SupportsClassB = Shapes::BooleanShape.new(name: 'SupportsClassB')
|
|
@@ -274,6 +287,7 @@ module Aws::IoTWireless
|
|
|
274
287
|
WirelessGatewayServiceType = Shapes::StringShape.new(name: 'WirelessGatewayServiceType')
|
|
275
288
|
WirelessGatewayStatistics = Shapes::StructureShape.new(name: 'WirelessGatewayStatistics')
|
|
276
289
|
WirelessGatewayStatisticsList = Shapes::ListShape.new(name: 'WirelessGatewayStatisticsList')
|
|
290
|
+
WirelessGatewayTaskDefinitionArn = Shapes::StringShape.new(name: 'WirelessGatewayTaskDefinitionArn')
|
|
277
291
|
WirelessGatewayTaskDefinitionId = Shapes::StringShape.new(name: 'WirelessGatewayTaskDefinitionId')
|
|
278
292
|
WirelessGatewayTaskDefinitionList = Shapes::ListShape.new(name: 'WirelessGatewayTaskDefinitionList')
|
|
279
293
|
WirelessGatewayTaskDefinitionType = Shapes::StringShape.new(name: 'WirelessGatewayTaskDefinitionType')
|
|
@@ -294,9 +308,11 @@ module Aws::IoTWireless
|
|
|
294
308
|
|
|
295
309
|
AssociateAwsAccountWithPartnerAccountRequest.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkAccountInfo, required: true, location_name: "Sidewalk"))
|
|
296
310
|
AssociateAwsAccountWithPartnerAccountRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
311
|
+
AssociateAwsAccountWithPartnerAccountRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
297
312
|
AssociateAwsAccountWithPartnerAccountRequest.struct_class = Types::AssociateAwsAccountWithPartnerAccountRequest
|
|
298
313
|
|
|
299
314
|
AssociateAwsAccountWithPartnerAccountResponse.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkAccountInfo, location_name: "Sidewalk"))
|
|
315
|
+
AssociateAwsAccountWithPartnerAccountResponse.add_member(:arn, Shapes::ShapeRef.new(shape: PartnerAccountArn, location_name: "Arn"))
|
|
300
316
|
AssociateAwsAccountWithPartnerAccountResponse.struct_class = Types::AssociateAwsAccountWithPartnerAccountResponse
|
|
301
317
|
|
|
302
318
|
AssociateWirelessDeviceWithThingRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessDeviceId, required: true, location: "uri", location_name: "Id"))
|
|
@@ -318,6 +334,10 @@ module Aws::IoTWireless
|
|
|
318
334
|
|
|
319
335
|
AssociateWirelessGatewayWithThingResponse.struct_class = Types::AssociateWirelessGatewayWithThingResponse
|
|
320
336
|
|
|
337
|
+
CertificateList.add_member(:signing_alg, Shapes::ShapeRef.new(shape: SigningAlg, required: true, location_name: "SigningAlg"))
|
|
338
|
+
CertificateList.add_member(:value, Shapes::ShapeRef.new(shape: CertificateValue, required: true, location_name: "Value"))
|
|
339
|
+
CertificateList.struct_class = Types::CertificateList
|
|
340
|
+
|
|
321
341
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
|
322
342
|
ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ResourceId"))
|
|
323
343
|
ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
|
@@ -362,6 +382,7 @@ module Aws::IoTWireless
|
|
|
362
382
|
CreateWirelessDeviceRequest.add_member(:destination_name, Shapes::ShapeRef.new(shape: DestinationName, required: true, location_name: "DestinationName"))
|
|
363
383
|
CreateWirelessDeviceRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
364
384
|
CreateWirelessDeviceRequest.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANDevice, location_name: "LoRaWAN"))
|
|
385
|
+
CreateWirelessDeviceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
365
386
|
CreateWirelessDeviceRequest.struct_class = Types::CreateWirelessDeviceRequest
|
|
366
387
|
|
|
367
388
|
CreateWirelessDeviceResponse.add_member(:arn, Shapes::ShapeRef.new(shape: WirelessDeviceArn, location_name: "Arn"))
|
|
@@ -383,9 +404,11 @@ module Aws::IoTWireless
|
|
|
383
404
|
CreateWirelessGatewayTaskDefinitionRequest.add_member(:name, Shapes::ShapeRef.new(shape: WirelessGatewayTaskName, location_name: "Name"))
|
|
384
405
|
CreateWirelessGatewayTaskDefinitionRequest.add_member(:update, Shapes::ShapeRef.new(shape: UpdateWirelessGatewayTaskCreate, location_name: "Update"))
|
|
385
406
|
CreateWirelessGatewayTaskDefinitionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
407
|
+
CreateWirelessGatewayTaskDefinitionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
386
408
|
CreateWirelessGatewayTaskDefinitionRequest.struct_class = Types::CreateWirelessGatewayTaskDefinitionRequest
|
|
387
409
|
|
|
388
410
|
CreateWirelessGatewayTaskDefinitionResponse.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayTaskDefinitionId, location_name: "Id"))
|
|
411
|
+
CreateWirelessGatewayTaskDefinitionResponse.add_member(:arn, Shapes::ShapeRef.new(shape: WirelessGatewayTaskDefinitionArn, location_name: "Arn"))
|
|
389
412
|
CreateWirelessGatewayTaskDefinitionResponse.struct_class = Types::CreateWirelessGatewayTaskDefinitionResponse
|
|
390
413
|
|
|
391
414
|
CreateWirelessGatewayTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayId, required: true, location: "uri", location_name: "Id"))
|
|
@@ -441,6 +464,8 @@ module Aws::IoTWireless
|
|
|
441
464
|
Destinations.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
|
442
465
|
Destinations.struct_class = Types::Destinations
|
|
443
466
|
|
|
467
|
+
DeviceCertificateList.member = Shapes::ShapeRef.new(shape: CertificateList)
|
|
468
|
+
|
|
444
469
|
DeviceProfile.add_member(:arn, Shapes::ShapeRef.new(shape: DeviceProfileArn, location_name: "Arn"))
|
|
445
470
|
DeviceProfile.add_member(:name, Shapes::ShapeRef.new(shape: DeviceProfileName, location_name: "Name"))
|
|
446
471
|
DeviceProfile.add_member(:id, Shapes::ShapeRef.new(shape: DeviceProfileId, location_name: "Id"))
|
|
@@ -529,6 +554,7 @@ module Aws::IoTWireless
|
|
|
529
554
|
GetWirelessDeviceResponse.add_member(:thing_name, Shapes::ShapeRef.new(shape: ThingName, location_name: "ThingName"))
|
|
530
555
|
GetWirelessDeviceResponse.add_member(:thing_arn, Shapes::ShapeRef.new(shape: ThingArn, location_name: "ThingArn"))
|
|
531
556
|
GetWirelessDeviceResponse.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANDevice, location_name: "LoRaWAN"))
|
|
557
|
+
GetWirelessDeviceResponse.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkDevice, location_name: "Sidewalk"))
|
|
532
558
|
GetWirelessDeviceResponse.struct_class = Types::GetWirelessDeviceResponse
|
|
533
559
|
|
|
534
560
|
GetWirelessDeviceStatisticsRequest.add_member(:wireless_device_id, Shapes::ShapeRef.new(shape: WirelessDeviceId, required: true, location: "uri", location_name: "Id"))
|
|
@@ -537,6 +563,7 @@ module Aws::IoTWireless
|
|
|
537
563
|
GetWirelessDeviceStatisticsResponse.add_member(:wireless_device_id, Shapes::ShapeRef.new(shape: WirelessDeviceId, location_name: "WirelessDeviceId"))
|
|
538
564
|
GetWirelessDeviceStatisticsResponse.add_member(:last_uplink_received_at, Shapes::ShapeRef.new(shape: ISODateTimeString, location_name: "LastUplinkReceivedAt"))
|
|
539
565
|
GetWirelessDeviceStatisticsResponse.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANDeviceMetadata, location_name: "LoRaWAN"))
|
|
566
|
+
GetWirelessDeviceStatisticsResponse.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkDeviceMetadata, location_name: "Sidewalk"))
|
|
540
567
|
GetWirelessDeviceStatisticsResponse.struct_class = Types::GetWirelessDeviceStatisticsResponse
|
|
541
568
|
|
|
542
569
|
GetWirelessGatewayCertificateRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayId, required: true, location: "uri", location_name: "Id"))
|
|
@@ -570,6 +597,7 @@ module Aws::IoTWireless
|
|
|
570
597
|
|
|
571
598
|
GetWirelessGatewayStatisticsResponse.add_member(:wireless_gateway_id, Shapes::ShapeRef.new(shape: WirelessGatewayId, location_name: "WirelessGatewayId"))
|
|
572
599
|
GetWirelessGatewayStatisticsResponse.add_member(:last_uplink_received_at, Shapes::ShapeRef.new(shape: ISODateTimeString, location_name: "LastUplinkReceivedAt"))
|
|
600
|
+
GetWirelessGatewayStatisticsResponse.add_member(:connection_status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "ConnectionStatus"))
|
|
573
601
|
GetWirelessGatewayStatisticsResponse.struct_class = Types::GetWirelessGatewayStatisticsResponse
|
|
574
602
|
|
|
575
603
|
GetWirelessGatewayTaskDefinitionRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayTaskDefinitionId, required: true, location: "uri", location_name: "Id"))
|
|
@@ -578,6 +606,7 @@ module Aws::IoTWireless
|
|
|
578
606
|
GetWirelessGatewayTaskDefinitionResponse.add_member(:auto_create_tasks, Shapes::ShapeRef.new(shape: AutoCreateTasks, location_name: "AutoCreateTasks"))
|
|
579
607
|
GetWirelessGatewayTaskDefinitionResponse.add_member(:name, Shapes::ShapeRef.new(shape: WirelessGatewayTaskName, location_name: "Name"))
|
|
580
608
|
GetWirelessGatewayTaskDefinitionResponse.add_member(:update, Shapes::ShapeRef.new(shape: UpdateWirelessGatewayTaskCreate, location_name: "Update"))
|
|
609
|
+
GetWirelessGatewayTaskDefinitionResponse.add_member(:arn, Shapes::ShapeRef.new(shape: WirelessGatewayTaskDefinitionArn, location_name: "Arn"))
|
|
581
610
|
GetWirelessGatewayTaskDefinitionResponse.struct_class = Types::GetWirelessGatewayTaskDefinitionResponse
|
|
582
611
|
|
|
583
612
|
GetWirelessGatewayTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayId, required: true, location: "uri", location_name: "Id"))
|
|
@@ -807,11 +836,26 @@ module Aws::IoTWireless
|
|
|
807
836
|
|
|
808
837
|
SidewalkAccountInfoWithFingerprint.add_member(:amazon_id, Shapes::ShapeRef.new(shape: AmazonId, location_name: "AmazonId"))
|
|
809
838
|
SidewalkAccountInfoWithFingerprint.add_member(:fingerprint, Shapes::ShapeRef.new(shape: Fingerprint, location_name: "Fingerprint"))
|
|
839
|
+
SidewalkAccountInfoWithFingerprint.add_member(:arn, Shapes::ShapeRef.new(shape: PartnerAccountArn, location_name: "Arn"))
|
|
810
840
|
SidewalkAccountInfoWithFingerprint.struct_class = Types::SidewalkAccountInfoWithFingerprint
|
|
811
841
|
|
|
812
842
|
SidewalkAccountList.member = Shapes::ShapeRef.new(shape: SidewalkAccountInfoWithFingerprint)
|
|
813
843
|
|
|
844
|
+
SidewalkDevice.add_member(:sidewalk_id, Shapes::ShapeRef.new(shape: SidewalkId, location_name: "SidewalkId"))
|
|
845
|
+
SidewalkDevice.add_member(:sidewalk_manufacturing_sn, Shapes::ShapeRef.new(shape: SidewalkManufacturingSn, location_name: "SidewalkManufacturingSn"))
|
|
846
|
+
SidewalkDevice.add_member(:device_certificates, Shapes::ShapeRef.new(shape: DeviceCertificateList, location_name: "DeviceCertificates"))
|
|
847
|
+
SidewalkDevice.struct_class = Types::SidewalkDevice
|
|
848
|
+
|
|
849
|
+
SidewalkDeviceMetadata.add_member(:rssi, Shapes::ShapeRef.new(shape: Integer, location_name: "Rssi"))
|
|
850
|
+
SidewalkDeviceMetadata.add_member(:battery_level, Shapes::ShapeRef.new(shape: BatteryLevel, location_name: "BatteryLevel"))
|
|
851
|
+
SidewalkDeviceMetadata.add_member(:event, Shapes::ShapeRef.new(shape: Event, location_name: "Event"))
|
|
852
|
+
SidewalkDeviceMetadata.add_member(:device_state, Shapes::ShapeRef.new(shape: DeviceState, location_name: "DeviceState"))
|
|
853
|
+
SidewalkDeviceMetadata.struct_class = Types::SidewalkDeviceMetadata
|
|
854
|
+
|
|
814
855
|
SidewalkListDevice.add_member(:amazon_id, Shapes::ShapeRef.new(shape: AmazonId, location_name: "AmazonId"))
|
|
856
|
+
SidewalkListDevice.add_member(:sidewalk_id, Shapes::ShapeRef.new(shape: SidewalkId, location_name: "SidewalkId"))
|
|
857
|
+
SidewalkListDevice.add_member(:sidewalk_manufacturing_sn, Shapes::ShapeRef.new(shape: SidewalkManufacturingSn, location_name: "SidewalkManufacturingSn"))
|
|
858
|
+
SidewalkListDevice.add_member(:device_certificates, Shapes::ShapeRef.new(shape: DeviceCertificateList, location_name: "DeviceCertificates"))
|
|
815
859
|
SidewalkListDevice.struct_class = Types::SidewalkListDevice
|
|
816
860
|
|
|
817
861
|
SidewalkSendDataToDevice.add_member(:seq, Shapes::ShapeRef.new(shape: Seq, location_name: "Seq"))
|
|
@@ -892,6 +936,7 @@ module Aws::IoTWireless
|
|
|
892
936
|
|
|
893
937
|
UpdateWirelessGatewayTaskEntry.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayTaskDefinitionId, location_name: "Id"))
|
|
894
938
|
UpdateWirelessGatewayTaskEntry.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANUpdateGatewayTaskEntry, location_name: "LoRaWAN"))
|
|
939
|
+
UpdateWirelessGatewayTaskEntry.add_member(:arn, Shapes::ShapeRef.new(shape: WirelessGatewayTaskDefinitionArn, location_name: "Arn"))
|
|
895
940
|
UpdateWirelessGatewayTaskEntry.struct_class = Types::UpdateWirelessGatewayTaskEntry
|
|
896
941
|
|
|
897
942
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -88,6 +88,12 @@ module Aws::IoTWireless
|
|
|
88
88
|
# app_server_private_key: "AppServerPrivateKey",
|
|
89
89
|
# },
|
|
90
90
|
# client_request_token: "ClientRequestToken",
|
|
91
|
+
# tags: [
|
|
92
|
+
# {
|
|
93
|
+
# key: "TagKey", # required
|
|
94
|
+
# value: "TagValue", # required
|
|
95
|
+
# },
|
|
96
|
+
# ],
|
|
91
97
|
# }
|
|
92
98
|
#
|
|
93
99
|
# @!attribute [rw] sidewalk
|
|
@@ -104,9 +110,15 @@ module Aws::IoTWireless
|
|
|
104
110
|
# not need to pass this option.
|
|
105
111
|
# @return [String]
|
|
106
112
|
#
|
|
113
|
+
# @!attribute [rw] tags
|
|
114
|
+
# The tags to attach to the specified resource. Tags are metadata that
|
|
115
|
+
# you can use to manage a resource.
|
|
116
|
+
# @return [Array<Types::Tag>]
|
|
117
|
+
#
|
|
107
118
|
class AssociateAwsAccountWithPartnerAccountRequest < Struct.new(
|
|
108
119
|
:sidewalk,
|
|
109
|
-
:client_request_token
|
|
120
|
+
:client_request_token,
|
|
121
|
+
:tags)
|
|
110
122
|
SENSITIVE = []
|
|
111
123
|
include Aws::Structure
|
|
112
124
|
end
|
|
@@ -115,8 +127,13 @@ module Aws::IoTWireless
|
|
|
115
127
|
# The Sidewalk account credentials.
|
|
116
128
|
# @return [Types::SidewalkAccountInfo]
|
|
117
129
|
#
|
|
130
|
+
# @!attribute [rw] arn
|
|
131
|
+
# The Amazon Resource Name of the resource.
|
|
132
|
+
# @return [String]
|
|
133
|
+
#
|
|
118
134
|
class AssociateAwsAccountWithPartnerAccountResponse < Struct.new(
|
|
119
|
-
:sidewalk
|
|
135
|
+
:sidewalk,
|
|
136
|
+
:arn)
|
|
120
137
|
SENSITIVE = []
|
|
121
138
|
include Aws::Structure
|
|
122
139
|
end
|
|
@@ -204,6 +221,23 @@ module Aws::IoTWireless
|
|
|
204
221
|
|
|
205
222
|
class AssociateWirelessGatewayWithThingResponse < Aws::EmptyStructure; end
|
|
206
223
|
|
|
224
|
+
# List of sidewalk certificates.
|
|
225
|
+
#
|
|
226
|
+
# @!attribute [rw] signing_alg
|
|
227
|
+
# The certificate chain algorithm provided by sidewalk.
|
|
228
|
+
# @return [String]
|
|
229
|
+
#
|
|
230
|
+
# @!attribute [rw] value
|
|
231
|
+
# The value of the chosen sidewalk certificate.
|
|
232
|
+
# @return [String]
|
|
233
|
+
#
|
|
234
|
+
class CertificateList < Struct.new(
|
|
235
|
+
:signing_alg,
|
|
236
|
+
:value)
|
|
237
|
+
SENSITIVE = []
|
|
238
|
+
include Aws::Structure
|
|
239
|
+
end
|
|
240
|
+
|
|
207
241
|
# Adding, updating, or deleting the resource can cause an inconsistent
|
|
208
242
|
# state.
|
|
209
243
|
#
|
|
@@ -264,7 +298,7 @@ module Aws::IoTWireless
|
|
|
264
298
|
#
|
|
265
299
|
# @!attribute [rw] tags
|
|
266
300
|
# The tags to attach to the new destination. Tags are metadata that
|
|
267
|
-
# can
|
|
301
|
+
# you can use to manage a resource.
|
|
268
302
|
# @return [Array<Types::Tag>]
|
|
269
303
|
#
|
|
270
304
|
# @!attribute [rw] client_request_token
|
|
@@ -348,8 +382,8 @@ module Aws::IoTWireless
|
|
|
348
382
|
# @return [Types::LoRaWANDeviceProfile]
|
|
349
383
|
#
|
|
350
384
|
# @!attribute [rw] tags
|
|
351
|
-
# The tags to attach to the new device profile Tags are metadata that
|
|
352
|
-
# can
|
|
385
|
+
# The tags to attach to the new device profile. Tags are metadata that
|
|
386
|
+
# you can use to manage a resource.
|
|
353
387
|
# @return [Array<Types::Tag>]
|
|
354
388
|
#
|
|
355
389
|
# @!attribute [rw] client_request_token
|
|
@@ -414,7 +448,7 @@ module Aws::IoTWireless
|
|
|
414
448
|
#
|
|
415
449
|
# @!attribute [rw] tags
|
|
416
450
|
# The tags to attach to the new service profile. Tags are metadata
|
|
417
|
-
# that can
|
|
451
|
+
# that you can use to manage a resource.
|
|
418
452
|
# @return [Array<Types::Tag>]
|
|
419
453
|
#
|
|
420
454
|
# @!attribute [rw] client_request_token
|
|
@@ -490,6 +524,12 @@ module Aws::IoTWireless
|
|
|
490
524
|
# },
|
|
491
525
|
# },
|
|
492
526
|
# },
|
|
527
|
+
# tags: [
|
|
528
|
+
# {
|
|
529
|
+
# key: "TagKey", # required
|
|
530
|
+
# value: "TagValue", # required
|
|
531
|
+
# },
|
|
532
|
+
# ],
|
|
493
533
|
# }
|
|
494
534
|
#
|
|
495
535
|
# @!attribute [rw] type
|
|
@@ -523,13 +563,19 @@ module Aws::IoTWireless
|
|
|
523
563
|
# device.
|
|
524
564
|
# @return [Types::LoRaWANDevice]
|
|
525
565
|
#
|
|
566
|
+
# @!attribute [rw] tags
|
|
567
|
+
# The tags to attach to the new wireless device. Tags are metadata
|
|
568
|
+
# that you can use to manage a resource.
|
|
569
|
+
# @return [Array<Types::Tag>]
|
|
570
|
+
#
|
|
526
571
|
class CreateWirelessDeviceRequest < Struct.new(
|
|
527
572
|
:type,
|
|
528
573
|
:name,
|
|
529
574
|
:description,
|
|
530
575
|
:destination_name,
|
|
531
576
|
:client_request_token,
|
|
532
|
-
:lo_ra_wan
|
|
577
|
+
:lo_ra_wan,
|
|
578
|
+
:tags)
|
|
533
579
|
SENSITIVE = []
|
|
534
580
|
include Aws::Structure
|
|
535
581
|
end
|
|
@@ -583,7 +629,7 @@ module Aws::IoTWireless
|
|
|
583
629
|
#
|
|
584
630
|
# @!attribute [rw] tags
|
|
585
631
|
# The tags to attach to the new wireless gateway. Tags are metadata
|
|
586
|
-
# that can
|
|
632
|
+
# that you can use to manage a resource.
|
|
587
633
|
# @return [Array<Types::Tag>]
|
|
588
634
|
#
|
|
589
635
|
# @!attribute [rw] client_request_token
|
|
@@ -646,6 +692,12 @@ module Aws::IoTWireless
|
|
|
646
692
|
# },
|
|
647
693
|
# },
|
|
648
694
|
# client_request_token: "ClientRequestToken",
|
|
695
|
+
# tags: [
|
|
696
|
+
# {
|
|
697
|
+
# key: "TagKey", # required
|
|
698
|
+
# value: "TagValue", # required
|
|
699
|
+
# },
|
|
700
|
+
# ],
|
|
649
701
|
# }
|
|
650
702
|
#
|
|
651
703
|
# @!attribute [rw] auto_create_tasks
|
|
@@ -672,11 +724,17 @@ module Aws::IoTWireless
|
|
|
672
724
|
# not need to pass this option.
|
|
673
725
|
# @return [String]
|
|
674
726
|
#
|
|
727
|
+
# @!attribute [rw] tags
|
|
728
|
+
# The tags to attach to the specified resource. Tags are metadata that
|
|
729
|
+
# you can use to manage a resource.
|
|
730
|
+
# @return [Array<Types::Tag>]
|
|
731
|
+
#
|
|
675
732
|
class CreateWirelessGatewayTaskDefinitionRequest < Struct.new(
|
|
676
733
|
:auto_create_tasks,
|
|
677
734
|
:name,
|
|
678
735
|
:update,
|
|
679
|
-
:client_request_token
|
|
736
|
+
:client_request_token,
|
|
737
|
+
:tags)
|
|
680
738
|
SENSITIVE = []
|
|
681
739
|
include Aws::Structure
|
|
682
740
|
end
|
|
@@ -685,8 +743,13 @@ module Aws::IoTWireless
|
|
|
685
743
|
# The ID of the new wireless gateway task definition.
|
|
686
744
|
# @return [String]
|
|
687
745
|
#
|
|
746
|
+
# @!attribute [rw] arn
|
|
747
|
+
# The Amazon Resource Name of the resource.
|
|
748
|
+
# @return [String]
|
|
749
|
+
#
|
|
688
750
|
class CreateWirelessGatewayTaskDefinitionResponse < Struct.new(
|
|
689
|
-
:id
|
|
751
|
+
:id,
|
|
752
|
+
:arn)
|
|
690
753
|
SENSITIVE = []
|
|
691
754
|
include Aws::Structure
|
|
692
755
|
end
|
|
@@ -1276,6 +1339,10 @@ module Aws::IoTWireless
|
|
|
1276
1339
|
# Information about the wireless device.
|
|
1277
1340
|
# @return [Types::LoRaWANDevice]
|
|
1278
1341
|
#
|
|
1342
|
+
# @!attribute [rw] sidewalk
|
|
1343
|
+
# Sidewalk device object.
|
|
1344
|
+
# @return [Types::SidewalkDevice]
|
|
1345
|
+
#
|
|
1279
1346
|
class GetWirelessDeviceResponse < Struct.new(
|
|
1280
1347
|
:type,
|
|
1281
1348
|
:name,
|
|
@@ -1285,7 +1352,8 @@ module Aws::IoTWireless
|
|
|
1285
1352
|
:arn,
|
|
1286
1353
|
:thing_name,
|
|
1287
1354
|
:thing_arn,
|
|
1288
|
-
:lo_ra_wan
|
|
1355
|
+
:lo_ra_wan,
|
|
1356
|
+
:sidewalk)
|
|
1289
1357
|
SENSITIVE = []
|
|
1290
1358
|
include Aws::Structure
|
|
1291
1359
|
end
|
|
@@ -1319,10 +1387,15 @@ module Aws::IoTWireless
|
|
|
1319
1387
|
# Information about the wireless device's operations.
|
|
1320
1388
|
# @return [Types::LoRaWANDeviceMetadata]
|
|
1321
1389
|
#
|
|
1390
|
+
# @!attribute [rw] sidewalk
|
|
1391
|
+
# MetaData for Sidewalk device.
|
|
1392
|
+
# @return [Types::SidewalkDeviceMetadata]
|
|
1393
|
+
#
|
|
1322
1394
|
class GetWirelessDeviceStatisticsResponse < Struct.new(
|
|
1323
1395
|
:wireless_device_id,
|
|
1324
1396
|
:last_uplink_received_at,
|
|
1325
|
-
:lo_ra_wan
|
|
1397
|
+
:lo_ra_wan,
|
|
1398
|
+
:sidewalk)
|
|
1326
1399
|
SENSITIVE = []
|
|
1327
1400
|
include Aws::Structure
|
|
1328
1401
|
end
|
|
@@ -1349,8 +1422,8 @@ module Aws::IoTWireless
|
|
|
1349
1422
|
# @return [String]
|
|
1350
1423
|
#
|
|
1351
1424
|
# @!attribute [rw] lo_ra_wan_network_server_certificate_id
|
|
1352
|
-
# The ID of the certificate associated with the wireless
|
|
1353
|
-
# used for LoRaWANNetworkServer endpoint.
|
|
1425
|
+
# The ID of the certificate that is associated with the wireless
|
|
1426
|
+
# gateway and used for the LoRaWANNetworkServer endpoint.
|
|
1354
1427
|
# @return [String]
|
|
1355
1428
|
#
|
|
1356
1429
|
class GetWirelessGatewayCertificateResponse < Struct.new(
|
|
@@ -1476,9 +1549,14 @@ module Aws::IoTWireless
|
|
|
1476
1549
|
# The date and time when the most recent uplink was received.
|
|
1477
1550
|
# @return [String]
|
|
1478
1551
|
#
|
|
1552
|
+
# @!attribute [rw] connection_status
|
|
1553
|
+
# The connection status of the wireless gateway.
|
|
1554
|
+
# @return [String]
|
|
1555
|
+
#
|
|
1479
1556
|
class GetWirelessGatewayStatisticsResponse < Struct.new(
|
|
1480
1557
|
:wireless_gateway_id,
|
|
1481
|
-
:last_uplink_received_at
|
|
1558
|
+
:last_uplink_received_at,
|
|
1559
|
+
:connection_status)
|
|
1482
1560
|
SENSITIVE = []
|
|
1483
1561
|
include Aws::Structure
|
|
1484
1562
|
end
|
|
@@ -1514,10 +1592,15 @@ module Aws::IoTWireless
|
|
|
1514
1592
|
# Information about the gateways to update.
|
|
1515
1593
|
# @return [Types::UpdateWirelessGatewayTaskCreate]
|
|
1516
1594
|
#
|
|
1595
|
+
# @!attribute [rw] arn
|
|
1596
|
+
# The Amazon Resource Name of the resource.
|
|
1597
|
+
# @return [String]
|
|
1598
|
+
#
|
|
1517
1599
|
class GetWirelessGatewayTaskDefinitionResponse < Struct.new(
|
|
1518
1600
|
:auto_create_tasks,
|
|
1519
1601
|
:name,
|
|
1520
|
-
:update
|
|
1602
|
+
:update,
|
|
1603
|
+
:arn)
|
|
1521
1604
|
SENSITIVE = []
|
|
1522
1605
|
include Aws::Structure
|
|
1523
1606
|
end
|
|
@@ -1752,7 +1835,7 @@ module Aws::IoTWireless
|
|
|
1752
1835
|
# }
|
|
1753
1836
|
#
|
|
1754
1837
|
# @!attribute [rw] resource_arn
|
|
1755
|
-
# The ARN of the resource for which to list tags.
|
|
1838
|
+
# The ARN of the resource for which you want to list tags.
|
|
1756
1839
|
# @return [String]
|
|
1757
1840
|
#
|
|
1758
1841
|
class ListTagsForResourceRequest < Struct.new(
|
|
@@ -1762,8 +1845,8 @@ module Aws::IoTWireless
|
|
|
1762
1845
|
end
|
|
1763
1846
|
|
|
1764
1847
|
# @!attribute [rw] tags
|
|
1765
|
-
# The tags
|
|
1766
|
-
# can
|
|
1848
|
+
# The tags to attach to the specified resource. Tags are metadata that
|
|
1849
|
+
# you can use to manage a resource.
|
|
1767
1850
|
# @return [Array<Types::Tag>]
|
|
1768
1851
|
#
|
|
1769
1852
|
class ListTagsForResourceResponse < Struct.new(
|
|
@@ -2751,21 +2834,90 @@ module Aws::IoTWireless
|
|
|
2751
2834
|
# The fingerprint of the Sidewalk application server private key.
|
|
2752
2835
|
# @return [String]
|
|
2753
2836
|
#
|
|
2837
|
+
# @!attribute [rw] arn
|
|
2838
|
+
# The Amazon Resource Name of the resource.
|
|
2839
|
+
# @return [String]
|
|
2840
|
+
#
|
|
2754
2841
|
class SidewalkAccountInfoWithFingerprint < Struct.new(
|
|
2755
2842
|
:amazon_id,
|
|
2756
|
-
:fingerprint
|
|
2843
|
+
:fingerprint,
|
|
2844
|
+
:arn)
|
|
2757
2845
|
SENSITIVE = [:fingerprint]
|
|
2758
2846
|
include Aws::Structure
|
|
2759
2847
|
end
|
|
2760
2848
|
|
|
2849
|
+
# Sidewalk device object.
|
|
2850
|
+
#
|
|
2851
|
+
# @!attribute [rw] sidewalk_id
|
|
2852
|
+
# The sidewalk device identification.
|
|
2853
|
+
# @return [String]
|
|
2854
|
+
#
|
|
2855
|
+
# @!attribute [rw] sidewalk_manufacturing_sn
|
|
2856
|
+
# The Sidewalk manufacturing series number.
|
|
2857
|
+
# @return [String]
|
|
2858
|
+
#
|
|
2859
|
+
# @!attribute [rw] device_certificates
|
|
2860
|
+
# The sidewalk device certificates for Ed25519 and P256r1.
|
|
2861
|
+
# @return [Array<Types::CertificateList>]
|
|
2862
|
+
#
|
|
2863
|
+
class SidewalkDevice < Struct.new(
|
|
2864
|
+
:sidewalk_id,
|
|
2865
|
+
:sidewalk_manufacturing_sn,
|
|
2866
|
+
:device_certificates)
|
|
2867
|
+
SENSITIVE = []
|
|
2868
|
+
include Aws::Structure
|
|
2869
|
+
end
|
|
2870
|
+
|
|
2871
|
+
# MetaData for Sidewalk device.
|
|
2872
|
+
#
|
|
2873
|
+
# @!attribute [rw] rssi
|
|
2874
|
+
# The RSSI value.
|
|
2875
|
+
# @return [Integer]
|
|
2876
|
+
#
|
|
2877
|
+
# @!attribute [rw] battery_level
|
|
2878
|
+
# Sidewalk device battery level.
|
|
2879
|
+
# @return [String]
|
|
2880
|
+
#
|
|
2881
|
+
# @!attribute [rw] event
|
|
2882
|
+
# Sidewalk device status notification.
|
|
2883
|
+
# @return [String]
|
|
2884
|
+
#
|
|
2885
|
+
# @!attribute [rw] device_state
|
|
2886
|
+
# Device state defines the device status of sidewalk device.
|
|
2887
|
+
# @return [String]
|
|
2888
|
+
#
|
|
2889
|
+
class SidewalkDeviceMetadata < Struct.new(
|
|
2890
|
+
:rssi,
|
|
2891
|
+
:battery_level,
|
|
2892
|
+
:event,
|
|
2893
|
+
:device_state)
|
|
2894
|
+
SENSITIVE = []
|
|
2895
|
+
include Aws::Structure
|
|
2896
|
+
end
|
|
2897
|
+
|
|
2761
2898
|
# Sidewalk object used by list functions.
|
|
2762
2899
|
#
|
|
2763
2900
|
# @!attribute [rw] amazon_id
|
|
2764
2901
|
# The Sidewalk Amazon ID.
|
|
2765
2902
|
# @return [String]
|
|
2766
2903
|
#
|
|
2904
|
+
# @!attribute [rw] sidewalk_id
|
|
2905
|
+
# The sidewalk device identification.
|
|
2906
|
+
# @return [String]
|
|
2907
|
+
#
|
|
2908
|
+
# @!attribute [rw] sidewalk_manufacturing_sn
|
|
2909
|
+
# The Sidewalk manufacturing series number.
|
|
2910
|
+
# @return [String]
|
|
2911
|
+
#
|
|
2912
|
+
# @!attribute [rw] device_certificates
|
|
2913
|
+
# The sidewalk device certificates for Ed25519 and P256r1.
|
|
2914
|
+
# @return [Array<Types::CertificateList>]
|
|
2915
|
+
#
|
|
2767
2916
|
class SidewalkListDevice < Struct.new(
|
|
2768
|
-
:amazon_id
|
|
2917
|
+
:amazon_id,
|
|
2918
|
+
:sidewalk_id,
|
|
2919
|
+
:sidewalk_manufacturing_sn,
|
|
2920
|
+
:device_certificates)
|
|
2769
2921
|
SENSITIVE = []
|
|
2770
2922
|
include Aws::Structure
|
|
2771
2923
|
end
|
|
@@ -2852,7 +3004,7 @@ module Aws::IoTWireless
|
|
|
2852
3004
|
#
|
|
2853
3005
|
# @!attribute [rw] tags
|
|
2854
3006
|
# Adds to or modifies the tags of the given resource. Tags are
|
|
2855
|
-
# metadata that can
|
|
3007
|
+
# metadata that you can use to manage a resource.
|
|
2856
3008
|
# @return [Array<Types::Tag>]
|
|
2857
3009
|
#
|
|
2858
3010
|
class TagResourceRequest < Struct.new(
|
|
@@ -3150,9 +3302,14 @@ module Aws::IoTWireless
|
|
|
3150
3302
|
# The properties that relate to the LoRaWAN wireless gateway.
|
|
3151
3303
|
# @return [Types::LoRaWANUpdateGatewayTaskEntry]
|
|
3152
3304
|
#
|
|
3305
|
+
# @!attribute [rw] arn
|
|
3306
|
+
# The Amazon Resource Name of the resource.
|
|
3307
|
+
# @return [String]
|
|
3308
|
+
#
|
|
3153
3309
|
class UpdateWirelessGatewayTaskEntry < Struct.new(
|
|
3154
3310
|
:id,
|
|
3155
|
-
:lo_ra_wan
|
|
3311
|
+
:lo_ra_wan,
|
|
3312
|
+
:arn)
|
|
3156
3313
|
SENSITIVE = []
|
|
3157
3314
|
include Aws::Structure
|
|
3158
3315
|
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.
|
|
4
|
+
version: 1.7.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-
|
|
11
|
+
date: 2021-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -47,11 +47,14 @@ dependencies:
|
|
|
47
47
|
description: Official AWS Ruby gem for AWS IoT Wireless. This gem is part of the AWS
|
|
48
48
|
SDK for Ruby.
|
|
49
49
|
email:
|
|
50
|
-
-
|
|
50
|
+
- aws-dr-rubygems@amazon.com
|
|
51
51
|
executables: []
|
|
52
52
|
extensions: []
|
|
53
53
|
extra_rdoc_files: []
|
|
54
54
|
files:
|
|
55
|
+
- CHANGELOG.md
|
|
56
|
+
- LICENSE.txt
|
|
57
|
+
- VERSION
|
|
55
58
|
- lib/aws-sdk-iotwireless.rb
|
|
56
59
|
- lib/aws-sdk-iotwireless/client.rb
|
|
57
60
|
- lib/aws-sdk-iotwireless/client_api.rb
|
|
@@ -63,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
|
63
66
|
licenses:
|
|
64
67
|
- Apache-2.0
|
|
65
68
|
metadata:
|
|
66
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
|
67
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotwireless
|
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotwireless/CHANGELOG.md
|
|
68
71
|
post_install_message:
|
|
69
72
|
rdoc_options: []
|
|
70
73
|
require_paths:
|