@aws-sdk/client-iot-wireless 3.39.0 → 3.43.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.
Files changed (217) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist-cjs/IoTWireless.js +420 -0
  3. package/dist-cjs/commands/AssociateMulticastGroupWithFuotaTaskCommand.js +36 -0
  4. package/dist-cjs/commands/AssociateWirelessDeviceWithFuotaTaskCommand.js +36 -0
  5. package/dist-cjs/commands/AssociateWirelessDeviceWithMulticastGroupCommand.js +36 -0
  6. package/dist-cjs/commands/CancelMulticastGroupSessionCommand.js +36 -0
  7. package/dist-cjs/commands/CreateFuotaTaskCommand.js +36 -0
  8. package/dist-cjs/commands/CreateMulticastGroupCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteFuotaTaskCommand.js +36 -0
  10. package/dist-cjs/commands/DeleteMulticastGroupCommand.js +36 -0
  11. package/dist-cjs/commands/DisassociateMulticastGroupFromFuotaTaskCommand.js +36 -0
  12. package/dist-cjs/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.js +36 -0
  13. package/dist-cjs/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.js +36 -0
  14. package/dist-cjs/commands/GetFuotaTaskCommand.js +36 -0
  15. package/dist-cjs/commands/GetMulticastGroupCommand.js +36 -0
  16. package/dist-cjs/commands/GetMulticastGroupSessionCommand.js +36 -0
  17. package/dist-cjs/commands/GetNetworkAnalyzerConfigurationCommand.js +36 -0
  18. package/dist-cjs/commands/GetResourceEventConfigurationCommand.js +36 -0
  19. package/dist-cjs/commands/ListFuotaTasksCommand.js +36 -0
  20. package/dist-cjs/commands/ListMulticastGroupsByFuotaTaskCommand.js +36 -0
  21. package/dist-cjs/commands/ListMulticastGroupsCommand.js +36 -0
  22. package/dist-cjs/commands/SendDataToMulticastGroupCommand.js +36 -0
  23. package/dist-cjs/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.js +36 -0
  24. package/dist-cjs/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.js +36 -0
  25. package/dist-cjs/commands/StartFuotaTaskCommand.js +36 -0
  26. package/dist-cjs/commands/StartMulticastGroupSessionCommand.js +36 -0
  27. package/dist-cjs/commands/UpdateFuotaTaskCommand.js +36 -0
  28. package/dist-cjs/commands/UpdateMulticastGroupCommand.js +36 -0
  29. package/dist-cjs/commands/UpdateNetworkAnalyzerConfigurationCommand.js +36 -0
  30. package/dist-cjs/commands/UpdateResourceEventConfigurationCommand.js +36 -0
  31. package/dist-cjs/commands/index.js +28 -0
  32. package/dist-cjs/endpoints.js +121 -6
  33. package/dist-cjs/models/models_0.js +490 -4
  34. package/dist-cjs/pagination/ListFuotaTasksPaginator.js +35 -0
  35. package/dist-cjs/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +35 -0
  36. package/dist-cjs/pagination/ListMulticastGroupsPaginator.js +35 -0
  37. package/dist-cjs/pagination/index.js +3 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +4371 -896
  39. package/dist-cjs/runtimeConfig.browser.js +6 -3
  40. package/dist-cjs/runtimeConfig.js +5 -3
  41. package/dist-es/IoTWireless.js +420 -0
  42. package/dist-es/commands/AssociateMulticastGroupWithFuotaTaskCommand.js +39 -0
  43. package/dist-es/commands/AssociateWirelessDeviceWithFuotaTaskCommand.js +39 -0
  44. package/dist-es/commands/AssociateWirelessDeviceWithMulticastGroupCommand.js +39 -0
  45. package/dist-es/commands/CancelMulticastGroupSessionCommand.js +39 -0
  46. package/dist-es/commands/CreateFuotaTaskCommand.js +39 -0
  47. package/dist-es/commands/CreateMulticastGroupCommand.js +39 -0
  48. package/dist-es/commands/DeleteFuotaTaskCommand.js +39 -0
  49. package/dist-es/commands/DeleteMulticastGroupCommand.js +39 -0
  50. package/dist-es/commands/DisassociateMulticastGroupFromFuotaTaskCommand.js +39 -0
  51. package/dist-es/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.js +39 -0
  52. package/dist-es/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.js +39 -0
  53. package/dist-es/commands/GetFuotaTaskCommand.js +39 -0
  54. package/dist-es/commands/GetMulticastGroupCommand.js +39 -0
  55. package/dist-es/commands/GetMulticastGroupSessionCommand.js +39 -0
  56. package/dist-es/commands/GetNetworkAnalyzerConfigurationCommand.js +39 -0
  57. package/dist-es/commands/GetResourceEventConfigurationCommand.js +39 -0
  58. package/dist-es/commands/ListFuotaTasksCommand.js +39 -0
  59. package/dist-es/commands/ListMulticastGroupsByFuotaTaskCommand.js +39 -0
  60. package/dist-es/commands/ListMulticastGroupsCommand.js +39 -0
  61. package/dist-es/commands/SendDataToMulticastGroupCommand.js +39 -0
  62. package/dist-es/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.js +39 -0
  63. package/dist-es/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.js +39 -0
  64. package/dist-es/commands/StartFuotaTaskCommand.js +39 -0
  65. package/dist-es/commands/StartMulticastGroupSessionCommand.js +39 -0
  66. package/dist-es/commands/UpdateFuotaTaskCommand.js +39 -0
  67. package/dist-es/commands/UpdateMulticastGroupCommand.js +39 -0
  68. package/dist-es/commands/UpdateNetworkAnalyzerConfigurationCommand.js +39 -0
  69. package/dist-es/commands/UpdateResourceEventConfigurationCommand.js +39 -0
  70. package/dist-es/commands/index.js +28 -0
  71. package/dist-es/endpoints.js +121 -6
  72. package/dist-es/models/models_0.js +340 -0
  73. package/dist-es/pagination/ListFuotaTasksPaginator.js +74 -0
  74. package/dist-es/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +74 -0
  75. package/dist-es/pagination/ListMulticastGroupsPaginator.js +74 -0
  76. package/dist-es/pagination/index.js +3 -0
  77. package/dist-es/protocols/Aws_restJson1.js +5730 -1858
  78. package/dist-es/runtimeConfig.browser.js +3 -2
  79. package/dist-es/runtimeConfig.js +3 -3
  80. package/dist-types/IoTWireless.d.ts +196 -0
  81. package/dist-types/IoTWirelessClient.d.ts +38 -2
  82. package/dist-types/commands/AssociateAwsAccountWithPartnerAccountCommand.d.ts +1 -1
  83. package/dist-types/commands/AssociateMulticastGroupWithFuotaTaskCommand.d.ts +35 -0
  84. package/dist-types/commands/AssociateWirelessDeviceWithFuotaTaskCommand.d.ts +35 -0
  85. package/dist-types/commands/AssociateWirelessDeviceWithMulticastGroupCommand.d.ts +35 -0
  86. package/dist-types/commands/AssociateWirelessDeviceWithThingCommand.d.ts +1 -1
  87. package/dist-types/commands/AssociateWirelessGatewayWithCertificateCommand.d.ts +1 -1
  88. package/dist-types/commands/AssociateWirelessGatewayWithThingCommand.d.ts +1 -1
  89. package/dist-types/commands/CancelMulticastGroupSessionCommand.d.ts +35 -0
  90. package/dist-types/commands/CreateDestinationCommand.d.ts +1 -1
  91. package/dist-types/commands/CreateDeviceProfileCommand.d.ts +1 -1
  92. package/dist-types/commands/CreateFuotaTaskCommand.d.ts +35 -0
  93. package/dist-types/commands/CreateMulticastGroupCommand.d.ts +35 -0
  94. package/dist-types/commands/CreateServiceProfileCommand.d.ts +1 -1
  95. package/dist-types/commands/CreateWirelessDeviceCommand.d.ts +1 -1
  96. package/dist-types/commands/CreateWirelessGatewayCommand.d.ts +1 -1
  97. package/dist-types/commands/CreateWirelessGatewayTaskCommand.d.ts +1 -1
  98. package/dist-types/commands/CreateWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  99. package/dist-types/commands/DeleteDestinationCommand.d.ts +1 -1
  100. package/dist-types/commands/DeleteDeviceProfileCommand.d.ts +1 -1
  101. package/dist-types/commands/DeleteFuotaTaskCommand.d.ts +35 -0
  102. package/dist-types/commands/DeleteMulticastGroupCommand.d.ts +35 -0
  103. package/dist-types/commands/DeleteServiceProfileCommand.d.ts +1 -1
  104. package/dist-types/commands/DeleteWirelessDeviceCommand.d.ts +1 -1
  105. package/dist-types/commands/DeleteWirelessGatewayCommand.d.ts +1 -1
  106. package/dist-types/commands/DeleteWirelessGatewayTaskCommand.d.ts +1 -1
  107. package/dist-types/commands/DeleteWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  108. package/dist-types/commands/DisassociateAwsAccountFromPartnerAccountCommand.d.ts +1 -1
  109. package/dist-types/commands/DisassociateMulticastGroupFromFuotaTaskCommand.d.ts +35 -0
  110. package/dist-types/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.d.ts +35 -0
  111. package/dist-types/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +35 -0
  112. package/dist-types/commands/DisassociateWirelessDeviceFromThingCommand.d.ts +1 -1
  113. package/dist-types/commands/DisassociateWirelessGatewayFromCertificateCommand.d.ts +1 -1
  114. package/dist-types/commands/DisassociateWirelessGatewayFromThingCommand.d.ts +1 -1
  115. package/dist-types/commands/GetDestinationCommand.d.ts +1 -1
  116. package/dist-types/commands/GetDeviceProfileCommand.d.ts +1 -1
  117. package/dist-types/commands/GetFuotaTaskCommand.d.ts +35 -0
  118. package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +1 -1
  119. package/dist-types/commands/GetMulticastGroupCommand.d.ts +35 -0
  120. package/dist-types/commands/GetMulticastGroupSessionCommand.d.ts +35 -0
  121. package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  122. package/dist-types/commands/GetPartnerAccountCommand.d.ts +1 -1
  123. package/dist-types/commands/GetResourceEventConfigurationCommand.d.ts +35 -0
  124. package/dist-types/commands/GetResourceLogLevelCommand.d.ts +1 -1
  125. package/dist-types/commands/GetServiceEndpointCommand.d.ts +1 -1
  126. package/dist-types/commands/GetServiceProfileCommand.d.ts +1 -1
  127. package/dist-types/commands/GetWirelessDeviceCommand.d.ts +1 -1
  128. package/dist-types/commands/GetWirelessDeviceStatisticsCommand.d.ts +1 -1
  129. package/dist-types/commands/GetWirelessGatewayCertificateCommand.d.ts +1 -1
  130. package/dist-types/commands/GetWirelessGatewayCommand.d.ts +1 -1
  131. package/dist-types/commands/GetWirelessGatewayFirmwareInformationCommand.d.ts +1 -1
  132. package/dist-types/commands/GetWirelessGatewayStatisticsCommand.d.ts +1 -1
  133. package/dist-types/commands/GetWirelessGatewayTaskCommand.d.ts +1 -1
  134. package/dist-types/commands/GetWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  135. package/dist-types/commands/ListDestinationsCommand.d.ts +1 -1
  136. package/dist-types/commands/ListDeviceProfilesCommand.d.ts +1 -1
  137. package/dist-types/commands/ListFuotaTasksCommand.d.ts +35 -0
  138. package/dist-types/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +35 -0
  139. package/dist-types/commands/ListMulticastGroupsCommand.d.ts +35 -0
  140. package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
  141. package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
  142. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  143. package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -1
  144. package/dist-types/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
  145. package/dist-types/commands/ListWirelessGatewaysCommand.d.ts +1 -1
  146. package/dist-types/commands/PutResourceLogLevelCommand.d.ts +1 -1
  147. package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
  148. package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  149. package/dist-types/commands/SendDataToMulticastGroupCommand.d.ts +35 -0
  150. package/dist-types/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
  151. package/dist-types/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +35 -0
  152. package/dist-types/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +35 -0
  153. package/dist-types/commands/StartFuotaTaskCommand.d.ts +35 -0
  154. package/dist-types/commands/StartMulticastGroupSessionCommand.d.ts +35 -0
  155. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  156. package/dist-types/commands/TestWirelessDeviceCommand.d.ts +1 -1
  157. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  158. package/dist-types/commands/UpdateDestinationCommand.d.ts +1 -1
  159. package/dist-types/commands/UpdateFuotaTaskCommand.d.ts +35 -0
  160. package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +1 -1
  161. package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +35 -0
  162. package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  163. package/dist-types/commands/UpdatePartnerAccountCommand.d.ts +1 -1
  164. package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +35 -0
  165. package/dist-types/commands/UpdateWirelessDeviceCommand.d.ts +1 -1
  166. package/dist-types/commands/UpdateWirelessGatewayCommand.d.ts +1 -1
  167. package/dist-types/commands/index.d.ts +28 -0
  168. package/dist-types/models/models_0.d.ts +1307 -51
  169. package/dist-types/pagination/ListFuotaTasksPaginator.d.ts +4 -0
  170. package/dist-types/pagination/ListMulticastGroupsByFuotaTaskPaginator.d.ts +4 -0
  171. package/dist-types/pagination/ListMulticastGroupsPaginator.d.ts +4 -0
  172. package/dist-types/pagination/index.d.ts +3 -0
  173. package/dist-types/protocols/Aws_restJson1.d.ts +84 -0
  174. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  175. package/dist-types/runtimeConfig.d.ts +2 -0
  176. package/dist-types/runtimeConfig.native.d.ts +2 -0
  177. package/dist-types/ts3.4/IoTWireless.d.ts +140 -0
  178. package/dist-types/ts3.4/IoTWirelessClient.d.ts +34 -2
  179. package/dist-types/ts3.4/commands/AssociateMulticastGroupWithFuotaTaskCommand.d.ts +17 -0
  180. package/dist-types/ts3.4/commands/AssociateWirelessDeviceWithFuotaTaskCommand.d.ts +17 -0
  181. package/dist-types/ts3.4/commands/AssociateWirelessDeviceWithMulticastGroupCommand.d.ts +17 -0
  182. package/dist-types/ts3.4/commands/CancelMulticastGroupSessionCommand.d.ts +17 -0
  183. package/dist-types/ts3.4/commands/CreateFuotaTaskCommand.d.ts +17 -0
  184. package/dist-types/ts3.4/commands/CreateMulticastGroupCommand.d.ts +17 -0
  185. package/dist-types/ts3.4/commands/DeleteFuotaTaskCommand.d.ts +17 -0
  186. package/dist-types/ts3.4/commands/DeleteMulticastGroupCommand.d.ts +17 -0
  187. package/dist-types/ts3.4/commands/DisassociateMulticastGroupFromFuotaTaskCommand.d.ts +17 -0
  188. package/dist-types/ts3.4/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.d.ts +17 -0
  189. package/dist-types/ts3.4/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +17 -0
  190. package/dist-types/ts3.4/commands/GetFuotaTaskCommand.d.ts +17 -0
  191. package/dist-types/ts3.4/commands/GetMulticastGroupCommand.d.ts +17 -0
  192. package/dist-types/ts3.4/commands/GetMulticastGroupSessionCommand.d.ts +17 -0
  193. package/dist-types/ts3.4/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  194. package/dist-types/ts3.4/commands/GetResourceEventConfigurationCommand.d.ts +17 -0
  195. package/dist-types/ts3.4/commands/ListFuotaTasksCommand.d.ts +17 -0
  196. package/dist-types/ts3.4/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +17 -0
  197. package/dist-types/ts3.4/commands/ListMulticastGroupsCommand.d.ts +17 -0
  198. package/dist-types/ts3.4/commands/SendDataToMulticastGroupCommand.d.ts +17 -0
  199. package/dist-types/ts3.4/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +17 -0
  200. package/dist-types/ts3.4/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +17 -0
  201. package/dist-types/ts3.4/commands/StartFuotaTaskCommand.d.ts +17 -0
  202. package/dist-types/ts3.4/commands/StartMulticastGroupSessionCommand.d.ts +17 -0
  203. package/dist-types/ts3.4/commands/UpdateFuotaTaskCommand.d.ts +17 -0
  204. package/dist-types/ts3.4/commands/UpdateMulticastGroupCommand.d.ts +17 -0
  205. package/dist-types/ts3.4/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  206. package/dist-types/ts3.4/commands/UpdateResourceEventConfigurationCommand.d.ts +17 -0
  207. package/dist-types/ts3.4/commands/index.d.ts +28 -0
  208. package/dist-types/ts3.4/models/models_0.d.ts +784 -0
  209. package/dist-types/ts3.4/pagination/ListFuotaTasksPaginator.d.ts +4 -0
  210. package/dist-types/ts3.4/pagination/ListMulticastGroupsByFuotaTaskPaginator.d.ts +4 -0
  211. package/dist-types/ts3.4/pagination/ListMulticastGroupsPaginator.d.ts +4 -0
  212. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  213. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  214. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  215. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  216. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  217. package/package.json +23 -23
@@ -159,6 +159,54 @@ export declare namespace ValidationException {
159
159
 
160
160
  const filterSensitiveLog: (obj: ValidationException) => any;
161
161
  }
162
+ export interface AssociateMulticastGroupWithFuotaTaskRequest {
163
+
164
+ Id: string | undefined;
165
+
166
+ MulticastGroupId: string | undefined;
167
+ }
168
+ export declare namespace AssociateMulticastGroupWithFuotaTaskRequest {
169
+
170
+ const filterSensitiveLog: (obj: AssociateMulticastGroupWithFuotaTaskRequest) => any;
171
+ }
172
+ export interface AssociateMulticastGroupWithFuotaTaskResponse {
173
+ }
174
+ export declare namespace AssociateMulticastGroupWithFuotaTaskResponse {
175
+
176
+ const filterSensitiveLog: (obj: AssociateMulticastGroupWithFuotaTaskResponse) => any;
177
+ }
178
+ export interface AssociateWirelessDeviceWithFuotaTaskRequest {
179
+
180
+ Id: string | undefined;
181
+
182
+ WirelessDeviceId: string | undefined;
183
+ }
184
+ export declare namespace AssociateWirelessDeviceWithFuotaTaskRequest {
185
+
186
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithFuotaTaskRequest) => any;
187
+ }
188
+ export interface AssociateWirelessDeviceWithFuotaTaskResponse {
189
+ }
190
+ export declare namespace AssociateWirelessDeviceWithFuotaTaskResponse {
191
+
192
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithFuotaTaskResponse) => any;
193
+ }
194
+ export interface AssociateWirelessDeviceWithMulticastGroupRequest {
195
+
196
+ Id: string | undefined;
197
+
198
+ WirelessDeviceId: string | undefined;
199
+ }
200
+ export declare namespace AssociateWirelessDeviceWithMulticastGroupRequest {
201
+
202
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithMulticastGroupRequest) => any;
203
+ }
204
+ export interface AssociateWirelessDeviceWithMulticastGroupResponse {
205
+ }
206
+ export declare namespace AssociateWirelessDeviceWithMulticastGroupResponse {
207
+
208
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithMulticastGroupResponse) => any;
209
+ }
162
210
  export interface AssociateWirelessDeviceWithThingRequest {
163
211
 
164
212
  Id: string | undefined;
@@ -214,6 +262,20 @@ export declare enum BatteryLevel {
214
262
  LOW = "low",
215
263
  NORMAL = "normal"
216
264
  }
265
+ export interface CancelMulticastGroupSessionRequest {
266
+
267
+ Id: string | undefined;
268
+ }
269
+ export declare namespace CancelMulticastGroupSessionRequest {
270
+
271
+ const filterSensitiveLog: (obj: CancelMulticastGroupSessionRequest) => any;
272
+ }
273
+ export interface CancelMulticastGroupSessionResponse {
274
+ }
275
+ export declare namespace CancelMulticastGroupSessionResponse {
276
+
277
+ const filterSensitiveLog: (obj: CancelMulticastGroupSessionResponse) => any;
278
+ }
217
279
  export declare enum SigningAlg {
218
280
  Ed25519 = "Ed25519",
219
281
  P256r1 = "P256r1"
@@ -336,6 +398,92 @@ export declare namespace CreateDeviceProfileResponse {
336
398
 
337
399
  const filterSensitiveLog: (obj: CreateDeviceProfileResponse) => any;
338
400
  }
401
+ export declare enum SupportedRfRegion {
402
+ AS923_1 = "AS923-1",
403
+ AU915 = "AU915",
404
+ EU868 = "EU868",
405
+ US915 = "US915"
406
+ }
407
+
408
+ export interface LoRaWANFuotaTask {
409
+
410
+ RfRegion?: SupportedRfRegion | string;
411
+ }
412
+ export declare namespace LoRaWANFuotaTask {
413
+
414
+ const filterSensitiveLog: (obj: LoRaWANFuotaTask) => any;
415
+ }
416
+ export interface CreateFuotaTaskRequest {
417
+
418
+ Name?: string;
419
+
420
+ Description?: string;
421
+
422
+ ClientRequestToken?: string;
423
+
424
+ LoRaWAN?: LoRaWANFuotaTask;
425
+
426
+ FirmwareUpdateImage: string | undefined;
427
+
428
+ FirmwareUpdateRole: string | undefined;
429
+
430
+ Tags?: Tag[];
431
+ }
432
+ export declare namespace CreateFuotaTaskRequest {
433
+
434
+ const filterSensitiveLog: (obj: CreateFuotaTaskRequest) => any;
435
+ }
436
+ export interface CreateFuotaTaskResponse {
437
+
438
+ Arn?: string;
439
+
440
+ Id?: string;
441
+ }
442
+ export declare namespace CreateFuotaTaskResponse {
443
+
444
+ const filterSensitiveLog: (obj: CreateFuotaTaskResponse) => any;
445
+ }
446
+ export declare enum DlClass {
447
+ ClassB = "ClassB",
448
+ ClassC = "ClassC"
449
+ }
450
+
451
+ export interface LoRaWANMulticast {
452
+
453
+ RfRegion?: SupportedRfRegion | string;
454
+
455
+ DlClass?: DlClass | string;
456
+ }
457
+ export declare namespace LoRaWANMulticast {
458
+
459
+ const filterSensitiveLog: (obj: LoRaWANMulticast) => any;
460
+ }
461
+ export interface CreateMulticastGroupRequest {
462
+
463
+ Name?: string;
464
+
465
+ Description?: string;
466
+
467
+ ClientRequestToken?: string;
468
+
469
+ LoRaWAN: LoRaWANMulticast | undefined;
470
+
471
+ Tags?: Tag[];
472
+ }
473
+ export declare namespace CreateMulticastGroupRequest {
474
+
475
+ const filterSensitiveLog: (obj: CreateMulticastGroupRequest) => any;
476
+ }
477
+ export interface CreateMulticastGroupResponse {
478
+
479
+ Arn?: string;
480
+
481
+ Id?: string;
482
+ }
483
+ export declare namespace CreateMulticastGroupResponse {
484
+
485
+ const filterSensitiveLog: (obj: CreateMulticastGroupResponse) => any;
486
+ }
339
487
 
340
488
  export interface LoRaWANServiceProfile {
341
489
 
@@ -370,11 +518,26 @@ export declare namespace CreateServiceProfileResponse {
370
518
  const filterSensitiveLog: (obj: CreateServiceProfileResponse) => any;
371
519
  }
372
520
 
521
+ export interface FPorts {
522
+
523
+ Fuota?: number;
524
+
525
+ Multicast?: number;
526
+
527
+ ClockSync?: number;
528
+ }
529
+ export declare namespace FPorts {
530
+
531
+ const filterSensitiveLog: (obj: FPorts) => any;
532
+ }
533
+
373
534
  export interface OtaaV1_0_x {
374
535
 
375
536
  AppKey?: string;
376
537
 
377
538
  AppEui?: string;
539
+
540
+ GenAppKey?: string;
378
541
  }
379
542
  export declare namespace OtaaV1_0_x {
380
543
 
@@ -409,6 +572,8 @@ export interface LoRaWANDevice {
409
572
  AbpV1_1?: AbpV1_1;
410
573
 
411
574
  AbpV1_0_x?: AbpV1_0_x;
575
+
576
+ FPorts?: FPorts;
412
577
  }
413
578
  export declare namespace LoRaWANDevice {
414
579
 
@@ -614,6 +779,34 @@ export declare namespace DeleteDeviceProfileResponse {
614
779
 
615
780
  const filterSensitiveLog: (obj: DeleteDeviceProfileResponse) => any;
616
781
  }
782
+ export interface DeleteFuotaTaskRequest {
783
+
784
+ Id: string | undefined;
785
+ }
786
+ export declare namespace DeleteFuotaTaskRequest {
787
+
788
+ const filterSensitiveLog: (obj: DeleteFuotaTaskRequest) => any;
789
+ }
790
+ export interface DeleteFuotaTaskResponse {
791
+ }
792
+ export declare namespace DeleteFuotaTaskResponse {
793
+
794
+ const filterSensitiveLog: (obj: DeleteFuotaTaskResponse) => any;
795
+ }
796
+ export interface DeleteMulticastGroupRequest {
797
+
798
+ Id: string | undefined;
799
+ }
800
+ export declare namespace DeleteMulticastGroupRequest {
801
+
802
+ const filterSensitiveLog: (obj: DeleteMulticastGroupRequest) => any;
803
+ }
804
+ export interface DeleteMulticastGroupResponse {
805
+ }
806
+ export declare namespace DeleteMulticastGroupResponse {
807
+
808
+ const filterSensitiveLog: (obj: DeleteMulticastGroupResponse) => any;
809
+ }
617
810
  export interface DeleteServiceProfileRequest {
618
811
 
619
812
  Id: string | undefined;
@@ -716,6 +909,28 @@ export declare namespace DeviceProfile {
716
909
 
717
910
  const filterSensitiveLog: (obj: DeviceProfile) => any;
718
911
  }
912
+ export declare enum EventNotificationTopicStatus {
913
+ Disabled = "Disabled",
914
+ Enabled = "Enabled"
915
+ }
916
+
917
+ export interface SidewalkEventNotificationConfigurations {
918
+
919
+ AmazonIdEventTopic?: EventNotificationTopicStatus | string;
920
+ }
921
+ export declare namespace SidewalkEventNotificationConfigurations {
922
+
923
+ const filterSensitiveLog: (obj: SidewalkEventNotificationConfigurations) => any;
924
+ }
925
+
926
+ export interface DeviceRegistrationStateEventConfiguration {
927
+
928
+ Sidewalk?: SidewalkEventNotificationConfigurations;
929
+ }
930
+ export declare namespace DeviceRegistrationStateEventConfiguration {
931
+
932
+ const filterSensitiveLog: (obj: DeviceRegistrationStateEventConfiguration) => any;
933
+ }
719
934
  export declare enum DeviceState {
720
935
  PROVISIONED = "Provisioned",
721
936
  REGISTEREDNOTSEEN = "RegisteredNotSeen",
@@ -741,6 +956,54 @@ export declare namespace DisassociateAwsAccountFromPartnerAccountResponse {
741
956
 
742
957
  const filterSensitiveLog: (obj: DisassociateAwsAccountFromPartnerAccountResponse) => any;
743
958
  }
959
+ export interface DisassociateMulticastGroupFromFuotaTaskRequest {
960
+
961
+ Id: string | undefined;
962
+
963
+ MulticastGroupId: string | undefined;
964
+ }
965
+ export declare namespace DisassociateMulticastGroupFromFuotaTaskRequest {
966
+
967
+ const filterSensitiveLog: (obj: DisassociateMulticastGroupFromFuotaTaskRequest) => any;
968
+ }
969
+ export interface DisassociateMulticastGroupFromFuotaTaskResponse {
970
+ }
971
+ export declare namespace DisassociateMulticastGroupFromFuotaTaskResponse {
972
+
973
+ const filterSensitiveLog: (obj: DisassociateMulticastGroupFromFuotaTaskResponse) => any;
974
+ }
975
+ export interface DisassociateWirelessDeviceFromFuotaTaskRequest {
976
+
977
+ Id: string | undefined;
978
+
979
+ WirelessDeviceId: string | undefined;
980
+ }
981
+ export declare namespace DisassociateWirelessDeviceFromFuotaTaskRequest {
982
+
983
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromFuotaTaskRequest) => any;
984
+ }
985
+ export interface DisassociateWirelessDeviceFromFuotaTaskResponse {
986
+ }
987
+ export declare namespace DisassociateWirelessDeviceFromFuotaTaskResponse {
988
+
989
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromFuotaTaskResponse) => any;
990
+ }
991
+ export interface DisassociateWirelessDeviceFromMulticastGroupRequest {
992
+
993
+ Id: string | undefined;
994
+
995
+ WirelessDeviceId: string | undefined;
996
+ }
997
+ export declare namespace DisassociateWirelessDeviceFromMulticastGroupRequest {
998
+
999
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromMulticastGroupRequest) => any;
1000
+ }
1001
+ export interface DisassociateWirelessDeviceFromMulticastGroupResponse {
1002
+ }
1003
+ export declare namespace DisassociateWirelessDeviceFromMulticastGroupResponse {
1004
+
1005
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromMulticastGroupResponse) => any;
1006
+ }
744
1007
  export interface DisassociateWirelessDeviceFromThingRequest {
745
1008
 
746
1009
  Id: string | undefined;
@@ -790,6 +1053,42 @@ export declare enum Event {
790
1053
  NACK = "nack",
791
1054
  PASSTHROUGH = "passthrough"
792
1055
  }
1056
+ export declare enum EventNotificationPartnerType {
1057
+ Sidewalk = "Sidewalk"
1058
+ }
1059
+ export declare enum FuotaDeviceStatus {
1060
+ FragAlgo_unsupported = "FragAlgo_unsupported",
1061
+ FragIndex_unsupported = "FragIndex_unsupported",
1062
+ Initial = "Initial",
1063
+ MICError = "MICError",
1064
+ MemoryError = "MemoryError",
1065
+ MissingFrag = "MissingFrag",
1066
+ Not_enough_memory = "Not_enough_memory",
1067
+ Package_Not_Supported = "Package_Not_Supported",
1068
+ SessionCnt_replay = "SessionCnt_replay",
1069
+ Successful = "Successful",
1070
+ Wrong_descriptor = "Wrong_descriptor"
1071
+ }
1072
+
1073
+ export interface FuotaTask {
1074
+
1075
+ Id?: string;
1076
+
1077
+ Arn?: string;
1078
+
1079
+ Name?: string;
1080
+ }
1081
+ export declare namespace FuotaTask {
1082
+
1083
+ const filterSensitiveLog: (obj: FuotaTask) => any;
1084
+ }
1085
+ export declare enum FuotaTaskStatus {
1086
+ Delete_Waiting = "Delete_Waiting",
1087
+ FuotaDone = "FuotaDone",
1088
+ FuotaSession_Waiting = "FuotaSession_Waiting",
1089
+ In_FuotaSession = "In_FuotaSession",
1090
+ Pending = "Pending"
1091
+ }
793
1092
  export interface GetDestinationRequest {
794
1093
 
795
1094
  Name: string | undefined;
@@ -838,6 +1137,49 @@ export declare namespace GetDeviceProfileResponse {
838
1137
 
839
1138
  const filterSensitiveLog: (obj: GetDeviceProfileResponse) => any;
840
1139
  }
1140
+ export interface GetFuotaTaskRequest {
1141
+
1142
+ Id: string | undefined;
1143
+ }
1144
+ export declare namespace GetFuotaTaskRequest {
1145
+
1146
+ const filterSensitiveLog: (obj: GetFuotaTaskRequest) => any;
1147
+ }
1148
+
1149
+ export interface LoRaWANFuotaTaskGetInfo {
1150
+
1151
+ RfRegion?: string;
1152
+
1153
+ StartTime?: Date;
1154
+ }
1155
+ export declare namespace LoRaWANFuotaTaskGetInfo {
1156
+
1157
+ const filterSensitiveLog: (obj: LoRaWANFuotaTaskGetInfo) => any;
1158
+ }
1159
+ export interface GetFuotaTaskResponse {
1160
+
1161
+ Arn?: string;
1162
+
1163
+ Id?: string;
1164
+
1165
+ Status?: FuotaTaskStatus | string;
1166
+
1167
+ Name?: string;
1168
+
1169
+ Description?: string;
1170
+
1171
+ LoRaWAN?: LoRaWANFuotaTaskGetInfo;
1172
+
1173
+ FirmwareUpdateImage?: string;
1174
+
1175
+ FirmwareUpdateRole?: string;
1176
+
1177
+ CreatedAt?: Date;
1178
+ }
1179
+ export declare namespace GetFuotaTaskResponse {
1180
+
1181
+ const filterSensitiveLog: (obj: GetFuotaTaskResponse) => any;
1182
+ }
841
1183
  export interface GetLogLevelsByResourceTypesRequest {
842
1184
  }
843
1185
  export declare namespace GetLogLevelsByResourceTypesRequest {
@@ -923,6 +1265,115 @@ export declare namespace GetLogLevelsByResourceTypesResponse {
923
1265
 
924
1266
  const filterSensitiveLog: (obj: GetLogLevelsByResourceTypesResponse) => any;
925
1267
  }
1268
+ export interface GetMulticastGroupRequest {
1269
+
1270
+ Id: string | undefined;
1271
+ }
1272
+ export declare namespace GetMulticastGroupRequest {
1273
+
1274
+ const filterSensitiveLog: (obj: GetMulticastGroupRequest) => any;
1275
+ }
1276
+
1277
+ export interface LoRaWANMulticastGet {
1278
+
1279
+ RfRegion?: SupportedRfRegion | string;
1280
+
1281
+ DlClass?: DlClass | string;
1282
+
1283
+ NumberOfDevicesRequested?: number;
1284
+
1285
+ NumberOfDevicesInGroup?: number;
1286
+ }
1287
+ export declare namespace LoRaWANMulticastGet {
1288
+
1289
+ const filterSensitiveLog: (obj: LoRaWANMulticastGet) => any;
1290
+ }
1291
+ export interface GetMulticastGroupResponse {
1292
+
1293
+ Arn?: string;
1294
+
1295
+ Id?: string;
1296
+
1297
+ Name?: string;
1298
+
1299
+ Description?: string;
1300
+
1301
+ Status?: string;
1302
+
1303
+ LoRaWAN?: LoRaWANMulticastGet;
1304
+
1305
+ CreatedAt?: Date;
1306
+ }
1307
+ export declare namespace GetMulticastGroupResponse {
1308
+
1309
+ const filterSensitiveLog: (obj: GetMulticastGroupResponse) => any;
1310
+ }
1311
+ export interface GetMulticastGroupSessionRequest {
1312
+
1313
+ Id: string | undefined;
1314
+ }
1315
+ export declare namespace GetMulticastGroupSessionRequest {
1316
+
1317
+ const filterSensitiveLog: (obj: GetMulticastGroupSessionRequest) => any;
1318
+ }
1319
+
1320
+ export interface LoRaWANMulticastSession {
1321
+
1322
+ DlDr?: number;
1323
+
1324
+ DlFreq?: number;
1325
+
1326
+ SessionStartTime?: Date;
1327
+
1328
+ SessionTimeout?: number;
1329
+ }
1330
+ export declare namespace LoRaWANMulticastSession {
1331
+
1332
+ const filterSensitiveLog: (obj: LoRaWANMulticastSession) => any;
1333
+ }
1334
+ export interface GetMulticastGroupSessionResponse {
1335
+
1336
+ LoRaWAN?: LoRaWANMulticastSession;
1337
+ }
1338
+ export declare namespace GetMulticastGroupSessionResponse {
1339
+
1340
+ const filterSensitiveLog: (obj: GetMulticastGroupSessionResponse) => any;
1341
+ }
1342
+ export interface GetNetworkAnalyzerConfigurationRequest {
1343
+
1344
+ ConfigurationName: string | undefined;
1345
+ }
1346
+ export declare namespace GetNetworkAnalyzerConfigurationRequest {
1347
+
1348
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationRequest) => any;
1349
+ }
1350
+ export declare enum WirelessDeviceFrameInfo {
1351
+ DISABLED = "DISABLED",
1352
+ ENABLED = "ENABLED"
1353
+ }
1354
+
1355
+ export interface TraceContent {
1356
+
1357
+ WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
1358
+
1359
+ LogLevel?: LogLevel | string;
1360
+ }
1361
+ export declare namespace TraceContent {
1362
+
1363
+ const filterSensitiveLog: (obj: TraceContent) => any;
1364
+ }
1365
+ export interface GetNetworkAnalyzerConfigurationResponse {
1366
+
1367
+ TraceContent?: TraceContent;
1368
+
1369
+ WirelessDevices?: string[];
1370
+
1371
+ WirelessGateways?: string[];
1372
+ }
1373
+ export declare namespace GetNetworkAnalyzerConfigurationResponse {
1374
+
1375
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationResponse) => any;
1376
+ }
926
1377
  export interface GetPartnerAccountRequest {
927
1378
 
928
1379
  PartnerAccountId: string | undefined;
@@ -956,6 +1407,40 @@ export declare namespace GetPartnerAccountResponse {
956
1407
 
957
1408
  const filterSensitiveLog: (obj: GetPartnerAccountResponse) => any;
958
1409
  }
1410
+ export declare enum IdentifierType {
1411
+ PartnerAccountId = "PartnerAccountId"
1412
+ }
1413
+ export interface GetResourceEventConfigurationRequest {
1414
+
1415
+ Identifier: string | undefined;
1416
+
1417
+ IdentifierType: IdentifierType | string | undefined;
1418
+
1419
+ PartnerType?: EventNotificationPartnerType | string;
1420
+ }
1421
+ export declare namespace GetResourceEventConfigurationRequest {
1422
+
1423
+ const filterSensitiveLog: (obj: GetResourceEventConfigurationRequest) => any;
1424
+ }
1425
+
1426
+ export interface ProximityEventConfiguration {
1427
+
1428
+ Sidewalk?: SidewalkEventNotificationConfigurations;
1429
+ }
1430
+ export declare namespace ProximityEventConfiguration {
1431
+
1432
+ const filterSensitiveLog: (obj: ProximityEventConfiguration) => any;
1433
+ }
1434
+ export interface GetResourceEventConfigurationResponse {
1435
+
1436
+ DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
1437
+
1438
+ Proximity?: ProximityEventConfiguration;
1439
+ }
1440
+ export declare namespace GetResourceEventConfigurationResponse {
1441
+
1442
+ const filterSensitiveLog: (obj: GetResourceEventConfigurationResponse) => any;
1443
+ }
959
1444
  export interface GetResourceLogLevelRequest {
960
1445
 
961
1446
  ResourceIdentifier: string | undefined;
@@ -1375,6 +1860,90 @@ export declare namespace ListDeviceProfilesResponse {
1375
1860
 
1376
1861
  const filterSensitiveLog: (obj: ListDeviceProfilesResponse) => any;
1377
1862
  }
1863
+ export interface ListFuotaTasksRequest {
1864
+
1865
+ NextToken?: string;
1866
+
1867
+ MaxResults?: number;
1868
+ }
1869
+ export declare namespace ListFuotaTasksRequest {
1870
+
1871
+ const filterSensitiveLog: (obj: ListFuotaTasksRequest) => any;
1872
+ }
1873
+ export interface ListFuotaTasksResponse {
1874
+
1875
+ NextToken?: string;
1876
+
1877
+ FuotaTaskList?: FuotaTask[];
1878
+ }
1879
+ export declare namespace ListFuotaTasksResponse {
1880
+
1881
+ const filterSensitiveLog: (obj: ListFuotaTasksResponse) => any;
1882
+ }
1883
+ export interface ListMulticastGroupsRequest {
1884
+
1885
+ NextToken?: string;
1886
+
1887
+ MaxResults?: number;
1888
+ }
1889
+ export declare namespace ListMulticastGroupsRequest {
1890
+
1891
+ const filterSensitiveLog: (obj: ListMulticastGroupsRequest) => any;
1892
+ }
1893
+
1894
+ export interface MulticastGroup {
1895
+
1896
+ Id?: string;
1897
+
1898
+ Arn?: string;
1899
+
1900
+ Name?: string;
1901
+ }
1902
+ export declare namespace MulticastGroup {
1903
+
1904
+ const filterSensitiveLog: (obj: MulticastGroup) => any;
1905
+ }
1906
+ export interface ListMulticastGroupsResponse {
1907
+
1908
+ NextToken?: string;
1909
+
1910
+ MulticastGroupList?: MulticastGroup[];
1911
+ }
1912
+ export declare namespace ListMulticastGroupsResponse {
1913
+
1914
+ const filterSensitiveLog: (obj: ListMulticastGroupsResponse) => any;
1915
+ }
1916
+ export interface ListMulticastGroupsByFuotaTaskRequest {
1917
+
1918
+ Id: string | undefined;
1919
+
1920
+ NextToken?: string;
1921
+
1922
+ MaxResults?: number;
1923
+ }
1924
+ export declare namespace ListMulticastGroupsByFuotaTaskRequest {
1925
+
1926
+ const filterSensitiveLog: (obj: ListMulticastGroupsByFuotaTaskRequest) => any;
1927
+ }
1928
+
1929
+ export interface MulticastGroupByFuotaTask {
1930
+
1931
+ Id?: string;
1932
+ }
1933
+ export declare namespace MulticastGroupByFuotaTask {
1934
+
1935
+ const filterSensitiveLog: (obj: MulticastGroupByFuotaTask) => any;
1936
+ }
1937
+ export interface ListMulticastGroupsByFuotaTaskResponse {
1938
+
1939
+ NextToken?: string;
1940
+
1941
+ MulticastGroupList?: MulticastGroupByFuotaTask[];
1942
+ }
1943
+ export declare namespace ListMulticastGroupsByFuotaTaskResponse {
1944
+
1945
+ const filterSensitiveLog: (obj: ListMulticastGroupsByFuotaTaskResponse) => any;
1946
+ }
1378
1947
  export interface ListPartnerAccountsRequest {
1379
1948
 
1380
1949
  NextToken?: string;
@@ -1457,6 +2026,10 @@ export interface ListWirelessDevicesRequest {
1457
2026
  ServiceProfileId?: string;
1458
2027
 
1459
2028
  WirelessDeviceType?: WirelessDeviceType | string;
2029
+
2030
+ FuotaTaskId?: string;
2031
+
2032
+ MulticastGroupId?: string;
1460
2033
  }
1461
2034
  export declare namespace ListWirelessDevicesRequest {
1462
2035
 
@@ -1504,6 +2077,12 @@ export interface WirelessDeviceStatistics {
1504
2077
  LoRaWAN?: LoRaWANListDevice;
1505
2078
 
1506
2079
  Sidewalk?: SidewalkListDevice;
2080
+
2081
+ FuotaDeviceStatus?: FuotaDeviceStatus | string;
2082
+
2083
+ MulticastDeviceStatus?: string;
2084
+
2085
+ McGroupId?: number;
1507
2086
  }
1508
2087
  export declare namespace WirelessDeviceStatistics {
1509
2088
 
@@ -1654,6 +2233,44 @@ export declare namespace ResetResourceLogLevelResponse {
1654
2233
  const filterSensitiveLog: (obj: ResetResourceLogLevelResponse) => any;
1655
2234
  }
1656
2235
 
2236
+ export interface LoRaWANMulticastMetadata {
2237
+
2238
+ FPort?: number;
2239
+ }
2240
+ export declare namespace LoRaWANMulticastMetadata {
2241
+
2242
+ const filterSensitiveLog: (obj: LoRaWANMulticastMetadata) => any;
2243
+ }
2244
+
2245
+ export interface MulticastWirelessMetadata {
2246
+
2247
+ LoRaWAN?: LoRaWANMulticastMetadata;
2248
+ }
2249
+ export declare namespace MulticastWirelessMetadata {
2250
+
2251
+ const filterSensitiveLog: (obj: MulticastWirelessMetadata) => any;
2252
+ }
2253
+ export interface SendDataToMulticastGroupRequest {
2254
+
2255
+ Id: string | undefined;
2256
+
2257
+ PayloadData: string | undefined;
2258
+
2259
+ WirelessMetadata: MulticastWirelessMetadata | undefined;
2260
+ }
2261
+ export declare namespace SendDataToMulticastGroupRequest {
2262
+
2263
+ const filterSensitiveLog: (obj: SendDataToMulticastGroupRequest) => any;
2264
+ }
2265
+ export interface SendDataToMulticastGroupResponse {
2266
+
2267
+ MessageId?: string;
2268
+ }
2269
+ export declare namespace SendDataToMulticastGroupResponse {
2270
+
2271
+ const filterSensitiveLog: (obj: SendDataToMulticastGroupResponse) => any;
2272
+ }
2273
+
1657
2274
  export interface LoRaWANSendDataToDevice {
1658
2275
 
1659
2276
  FPort?: number;
@@ -1712,6 +2329,83 @@ export declare namespace SendDataToWirelessDeviceResponse {
1712
2329
 
1713
2330
  const filterSensitiveLog: (obj: SendDataToWirelessDeviceResponse) => any;
1714
2331
  }
2332
+ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
2333
+
2334
+ Id: string | undefined;
2335
+
2336
+ QueryString?: string;
2337
+
2338
+ Tags?: Tag[];
2339
+ }
2340
+ export declare namespace StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
2341
+
2342
+ const filterSensitiveLog: (obj: StartBulkAssociateWirelessDeviceWithMulticastGroupRequest) => any;
2343
+ }
2344
+ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupResponse {
2345
+ }
2346
+ export declare namespace StartBulkAssociateWirelessDeviceWithMulticastGroupResponse {
2347
+
2348
+ const filterSensitiveLog: (obj: StartBulkAssociateWirelessDeviceWithMulticastGroupResponse) => any;
2349
+ }
2350
+ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
2351
+
2352
+ Id: string | undefined;
2353
+
2354
+ QueryString?: string;
2355
+
2356
+ Tags?: Tag[];
2357
+ }
2358
+ export declare namespace StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
2359
+
2360
+ const filterSensitiveLog: (obj: StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest) => any;
2361
+ }
2362
+ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse {
2363
+ }
2364
+ export declare namespace StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse {
2365
+
2366
+ const filterSensitiveLog: (obj: StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse) => any;
2367
+ }
2368
+
2369
+ export interface LoRaWANStartFuotaTask {
2370
+
2371
+ StartTime?: Date;
2372
+ }
2373
+ export declare namespace LoRaWANStartFuotaTask {
2374
+
2375
+ const filterSensitiveLog: (obj: LoRaWANStartFuotaTask) => any;
2376
+ }
2377
+ export interface StartFuotaTaskRequest {
2378
+
2379
+ Id: string | undefined;
2380
+
2381
+ LoRaWAN?: LoRaWANStartFuotaTask;
2382
+ }
2383
+ export declare namespace StartFuotaTaskRequest {
2384
+
2385
+ const filterSensitiveLog: (obj: StartFuotaTaskRequest) => any;
2386
+ }
2387
+ export interface StartFuotaTaskResponse {
2388
+ }
2389
+ export declare namespace StartFuotaTaskResponse {
2390
+
2391
+ const filterSensitiveLog: (obj: StartFuotaTaskResponse) => any;
2392
+ }
2393
+ export interface StartMulticastGroupSessionRequest {
2394
+
2395
+ Id: string | undefined;
2396
+
2397
+ LoRaWAN: LoRaWANMulticastSession | undefined;
2398
+ }
2399
+ export declare namespace StartMulticastGroupSessionRequest {
2400
+
2401
+ const filterSensitiveLog: (obj: StartMulticastGroupSessionRequest) => any;
2402
+ }
2403
+ export interface StartMulticastGroupSessionResponse {
2404
+ }
2405
+ export declare namespace StartMulticastGroupSessionResponse {
2406
+
2407
+ const filterSensitiveLog: (obj: StartMulticastGroupSessionResponse) => any;
2408
+ }
1715
2409
  export interface TagResourceRequest {
1716
2410
 
1717
2411
  ResourceArn: string | undefined;
@@ -1794,6 +2488,30 @@ export declare namespace UpdateDestinationResponse {
1794
2488
 
1795
2489
  const filterSensitiveLog: (obj: UpdateDestinationResponse) => any;
1796
2490
  }
2491
+ export interface UpdateFuotaTaskRequest {
2492
+
2493
+ Id: string | undefined;
2494
+
2495
+ Name?: string;
2496
+
2497
+ Description?: string;
2498
+
2499
+ LoRaWAN?: LoRaWANFuotaTask;
2500
+
2501
+ FirmwareUpdateImage?: string;
2502
+
2503
+ FirmwareUpdateRole?: string;
2504
+ }
2505
+ export declare namespace UpdateFuotaTaskRequest {
2506
+
2507
+ const filterSensitiveLog: (obj: UpdateFuotaTaskRequest) => any;
2508
+ }
2509
+ export interface UpdateFuotaTaskResponse {
2510
+ }
2511
+ export declare namespace UpdateFuotaTaskResponse {
2512
+
2513
+ const filterSensitiveLog: (obj: UpdateFuotaTaskResponse) => any;
2514
+ }
1797
2515
  export interface UpdateLogLevelsByResourceTypesRequest {
1798
2516
 
1799
2517
  DefaultLogLevel?: LogLevel | string;
@@ -1812,6 +2530,50 @@ export declare namespace UpdateLogLevelsByResourceTypesResponse {
1812
2530
 
1813
2531
  const filterSensitiveLog: (obj: UpdateLogLevelsByResourceTypesResponse) => any;
1814
2532
  }
2533
+ export interface UpdateMulticastGroupRequest {
2534
+
2535
+ Id: string | undefined;
2536
+
2537
+ Name?: string;
2538
+
2539
+ Description?: string;
2540
+
2541
+ LoRaWAN?: LoRaWANMulticast;
2542
+ }
2543
+ export declare namespace UpdateMulticastGroupRequest {
2544
+
2545
+ const filterSensitiveLog: (obj: UpdateMulticastGroupRequest) => any;
2546
+ }
2547
+ export interface UpdateMulticastGroupResponse {
2548
+ }
2549
+ export declare namespace UpdateMulticastGroupResponse {
2550
+
2551
+ const filterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
2552
+ }
2553
+ export interface UpdateNetworkAnalyzerConfigurationRequest {
2554
+
2555
+ ConfigurationName: string | undefined;
2556
+
2557
+ TraceContent?: TraceContent;
2558
+
2559
+ WirelessDevicesToAdd?: string[];
2560
+
2561
+ WirelessDevicesToRemove?: string[];
2562
+
2563
+ WirelessGatewaysToAdd?: string[];
2564
+
2565
+ WirelessGatewaysToRemove?: string[];
2566
+ }
2567
+ export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
2568
+
2569
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
2570
+ }
2571
+ export interface UpdateNetworkAnalyzerConfigurationResponse {
2572
+ }
2573
+ export declare namespace UpdateNetworkAnalyzerConfigurationResponse {
2574
+
2575
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
2576
+ }
1815
2577
 
1816
2578
  export interface SidewalkUpdateAccount {
1817
2579
 
@@ -1839,6 +2601,28 @@ export declare namespace UpdatePartnerAccountResponse {
1839
2601
 
1840
2602
  const filterSensitiveLog: (obj: UpdatePartnerAccountResponse) => any;
1841
2603
  }
2604
+ export interface UpdateResourceEventConfigurationRequest {
2605
+
2606
+ Identifier: string | undefined;
2607
+
2608
+ IdentifierType: IdentifierType | string | undefined;
2609
+
2610
+ PartnerType?: EventNotificationPartnerType | string;
2611
+
2612
+ DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
2613
+
2614
+ Proximity?: ProximityEventConfiguration;
2615
+ }
2616
+ export declare namespace UpdateResourceEventConfigurationRequest {
2617
+
2618
+ const filterSensitiveLog: (obj: UpdateResourceEventConfigurationRequest) => any;
2619
+ }
2620
+ export interface UpdateResourceEventConfigurationResponse {
2621
+ }
2622
+ export declare namespace UpdateResourceEventConfigurationResponse {
2623
+
2624
+ const filterSensitiveLog: (obj: UpdateResourceEventConfigurationResponse) => any;
2625
+ }
1842
2626
 
1843
2627
  export interface LoRaWANUpdateDevice {
1844
2628