@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
@@ -257,6 +257,78 @@ export declare namespace ValidationException {
257
257
  */
258
258
  const filterSensitiveLog: (obj: ValidationException) => any;
259
259
  }
260
+ export interface AssociateMulticastGroupWithFuotaTaskRequest {
261
+ /**
262
+ * <p>The ID of a FUOTA task.</p>
263
+ */
264
+ Id: string | undefined;
265
+ /**
266
+ * <p>The ID of the multicast group.</p>
267
+ */
268
+ MulticastGroupId: string | undefined;
269
+ }
270
+ export declare namespace AssociateMulticastGroupWithFuotaTaskRequest {
271
+ /**
272
+ * @internal
273
+ */
274
+ const filterSensitiveLog: (obj: AssociateMulticastGroupWithFuotaTaskRequest) => any;
275
+ }
276
+ export interface AssociateMulticastGroupWithFuotaTaskResponse {
277
+ }
278
+ export declare namespace AssociateMulticastGroupWithFuotaTaskResponse {
279
+ /**
280
+ * @internal
281
+ */
282
+ const filterSensitiveLog: (obj: AssociateMulticastGroupWithFuotaTaskResponse) => any;
283
+ }
284
+ export interface AssociateWirelessDeviceWithFuotaTaskRequest {
285
+ /**
286
+ * <p>The ID of a FUOTA task.</p>
287
+ */
288
+ Id: string | undefined;
289
+ /**
290
+ * <p>The ID of the wireless device.</p>
291
+ */
292
+ WirelessDeviceId: string | undefined;
293
+ }
294
+ export declare namespace AssociateWirelessDeviceWithFuotaTaskRequest {
295
+ /**
296
+ * @internal
297
+ */
298
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithFuotaTaskRequest) => any;
299
+ }
300
+ export interface AssociateWirelessDeviceWithFuotaTaskResponse {
301
+ }
302
+ export declare namespace AssociateWirelessDeviceWithFuotaTaskResponse {
303
+ /**
304
+ * @internal
305
+ */
306
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithFuotaTaskResponse) => any;
307
+ }
308
+ export interface AssociateWirelessDeviceWithMulticastGroupRequest {
309
+ /**
310
+ * <p>The ID of the multicast group.</p>
311
+ */
312
+ Id: string | undefined;
313
+ /**
314
+ * <p>The ID of the wireless device.</p>
315
+ */
316
+ WirelessDeviceId: string | undefined;
317
+ }
318
+ export declare namespace AssociateWirelessDeviceWithMulticastGroupRequest {
319
+ /**
320
+ * @internal
321
+ */
322
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithMulticastGroupRequest) => any;
323
+ }
324
+ export interface AssociateWirelessDeviceWithMulticastGroupResponse {
325
+ }
326
+ export declare namespace AssociateWirelessDeviceWithMulticastGroupResponse {
327
+ /**
328
+ * @internal
329
+ */
330
+ const filterSensitiveLog: (obj: AssociateWirelessDeviceWithMulticastGroupResponse) => any;
331
+ }
260
332
  export interface AssociateWirelessDeviceWithThingRequest {
261
333
  /**
262
334
  * <p>The ID of the resource to update.</p>
@@ -338,6 +410,26 @@ export declare enum BatteryLevel {
338
410
  LOW = "low",
339
411
  NORMAL = "normal"
340
412
  }
413
+ export interface CancelMulticastGroupSessionRequest {
414
+ /**
415
+ * <p>The ID of the multicast group.</p>
416
+ */
417
+ Id: string | undefined;
418
+ }
419
+ export declare namespace CancelMulticastGroupSessionRequest {
420
+ /**
421
+ * @internal
422
+ */
423
+ const filterSensitiveLog: (obj: CancelMulticastGroupSessionRequest) => any;
424
+ }
425
+ export interface CancelMulticastGroupSessionResponse {
426
+ }
427
+ export declare namespace CancelMulticastGroupSessionResponse {
428
+ /**
429
+ * @internal
430
+ */
431
+ const filterSensitiveLog: (obj: CancelMulticastGroupSessionResponse) => any;
432
+ }
341
433
  export declare enum SigningAlg {
342
434
  Ed25519 = "Ed25519",
343
435
  P256r1 = "P256r1"
@@ -548,6 +640,148 @@ export declare namespace CreateDeviceProfileResponse {
548
640
  */
549
641
  const filterSensitiveLog: (obj: CreateDeviceProfileResponse) => any;
550
642
  }
643
+ export declare enum SupportedRfRegion {
644
+ AS923_1 = "AS923-1",
645
+ AU915 = "AU915",
646
+ EU868 = "EU868",
647
+ US915 = "US915"
648
+ }
649
+ /**
650
+ * <p>The LoRaWAN information used with a FUOTA task.</p>
651
+ */
652
+ export interface LoRaWANFuotaTask {
653
+ /**
654
+ * <p>Supported RfRegions</p>
655
+ */
656
+ RfRegion?: SupportedRfRegion | string;
657
+ }
658
+ export declare namespace LoRaWANFuotaTask {
659
+ /**
660
+ * @internal
661
+ */
662
+ const filterSensitiveLog: (obj: LoRaWANFuotaTask) => any;
663
+ }
664
+ export interface CreateFuotaTaskRequest {
665
+ /**
666
+ * <p>The name of a FUOTA task.</p>
667
+ */
668
+ Name?: string;
669
+ /**
670
+ * <p>The description of the new resource.</p>
671
+ */
672
+ Description?: string;
673
+ /**
674
+ * <p>Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.</p>
675
+ */
676
+ ClientRequestToken?: string;
677
+ /**
678
+ * <p>The LoRaWAN information used with a FUOTA task.</p>
679
+ */
680
+ LoRaWAN?: LoRaWANFuotaTask;
681
+ /**
682
+ * <p>The S3 URI points to a firmware update image that is to be used with a FUOTA task.</p>
683
+ */
684
+ FirmwareUpdateImage: string | undefined;
685
+ /**
686
+ * <p>The firmware update role that is to be used with a FUOTA task.</p>
687
+ */
688
+ FirmwareUpdateRole: string | undefined;
689
+ /**
690
+ * <p>The tag to attach to the specified resource. Tags are metadata that you can use to manage a resource.</p>
691
+ */
692
+ Tags?: Tag[];
693
+ }
694
+ export declare namespace CreateFuotaTaskRequest {
695
+ /**
696
+ * @internal
697
+ */
698
+ const filterSensitiveLog: (obj: CreateFuotaTaskRequest) => any;
699
+ }
700
+ export interface CreateFuotaTaskResponse {
701
+ /**
702
+ * <p>The arn of a FUOTA task.</p>
703
+ */
704
+ Arn?: string;
705
+ /**
706
+ * <p>The ID of a FUOTA task.</p>
707
+ */
708
+ Id?: string;
709
+ }
710
+ export declare namespace CreateFuotaTaskResponse {
711
+ /**
712
+ * @internal
713
+ */
714
+ const filterSensitiveLog: (obj: CreateFuotaTaskResponse) => any;
715
+ }
716
+ export declare enum DlClass {
717
+ ClassB = "ClassB",
718
+ ClassC = "ClassC"
719
+ }
720
+ /**
721
+ * <p>The LoRaWAN information that is to be used with the multicast group.</p>
722
+ */
723
+ export interface LoRaWANMulticast {
724
+ /**
725
+ * <p>Supported RfRegions</p>
726
+ */
727
+ RfRegion?: SupportedRfRegion | string;
728
+ /**
729
+ * <p>DlClass for LoRaWAM, valid values are ClassB and ClassC.</p>
730
+ */
731
+ DlClass?: DlClass | string;
732
+ }
733
+ export declare namespace LoRaWANMulticast {
734
+ /**
735
+ * @internal
736
+ */
737
+ const filterSensitiveLog: (obj: LoRaWANMulticast) => any;
738
+ }
739
+ export interface CreateMulticastGroupRequest {
740
+ /**
741
+ * <p>The name of the multicast group.</p>
742
+ */
743
+ Name?: string;
744
+ /**
745
+ * <p>The description of the multicast group.</p>
746
+ */
747
+ Description?: string;
748
+ /**
749
+ * <p>Each resource must have a unique client request token. If you try to create a new resource with the
750
+ * same token as a resource that already exists, an exception occurs. If you omit this value,
751
+ * AWS SDKs will automatically generate a unique client request. </p>
752
+ */
753
+ ClientRequestToken?: string;
754
+ /**
755
+ * <p>The LoRaWAN information that is to be used with the multicast group.</p>
756
+ */
757
+ LoRaWAN: LoRaWANMulticast | undefined;
758
+ /**
759
+ * <p>The tag to attach to the specified resource. Tags are metadata that you can use to manage a resource.</p>
760
+ */
761
+ Tags?: Tag[];
762
+ }
763
+ export declare namespace CreateMulticastGroupRequest {
764
+ /**
765
+ * @internal
766
+ */
767
+ const filterSensitiveLog: (obj: CreateMulticastGroupRequest) => any;
768
+ }
769
+ export interface CreateMulticastGroupResponse {
770
+ /**
771
+ * <p>The arn of the multicast group.</p>
772
+ */
773
+ Arn?: string;
774
+ /**
775
+ * <p>The ID of the multicast group.</p>
776
+ */
777
+ Id?: string;
778
+ }
779
+ export declare namespace CreateMulticastGroupResponse {
780
+ /**
781
+ * @internal
782
+ */
783
+ const filterSensitiveLog: (obj: CreateMulticastGroupResponse) => any;
784
+ }
551
785
  /**
552
786
  * <p>LoRaWANServiceProfile object.</p>
553
787
  */
@@ -603,6 +837,29 @@ export declare namespace CreateServiceProfileResponse {
603
837
  */
604
838
  const filterSensitiveLog: (obj: CreateServiceProfileResponse) => any;
605
839
  }
840
+ /**
841
+ * <p>List of FPort assigned for different LoRaWAN application packages to use</p>
842
+ */
843
+ export interface FPorts {
844
+ /**
845
+ * <p>The Fport value.</p>
846
+ */
847
+ Fuota?: number;
848
+ /**
849
+ * <p>The Fport value.</p>
850
+ */
851
+ Multicast?: number;
852
+ /**
853
+ * <p>The Fport value.</p>
854
+ */
855
+ ClockSync?: number;
856
+ }
857
+ export declare namespace FPorts {
858
+ /**
859
+ * @internal
860
+ */
861
+ const filterSensitiveLog: (obj: FPorts) => any;
862
+ }
606
863
  /**
607
864
  * <p>OTAA device object for v1.0.x</p>
608
865
  */
@@ -615,6 +872,10 @@ export interface OtaaV1_0_x {
615
872
  * <p>The AppEUI value.</p>
616
873
  */
617
874
  AppEui?: string;
875
+ /**
876
+ * <p>The GenAppKey value.</p>
877
+ */
878
+ GenAppKey?: string;
618
879
  }
619
880
  export declare namespace OtaaV1_0_x {
620
881
  /**
@@ -677,6 +938,10 @@ export interface LoRaWANDevice {
677
938
  * <p>LoRaWAN object for create APIs</p>
678
939
  */
679
940
  AbpV1_0_x?: AbpV1_0_x;
941
+ /**
942
+ * <p>List of FPort assigned for different LoRaWAN application packages to use</p>
943
+ */
944
+ FPorts?: FPorts;
680
945
  }
681
946
  export declare namespace LoRaWANDevice {
682
947
  /**
@@ -1012,6 +1277,46 @@ export declare namespace DeleteDeviceProfileResponse {
1012
1277
  */
1013
1278
  const filterSensitiveLog: (obj: DeleteDeviceProfileResponse) => any;
1014
1279
  }
1280
+ export interface DeleteFuotaTaskRequest {
1281
+ /**
1282
+ * <p>The ID of a FUOTA task.</p>
1283
+ */
1284
+ Id: string | undefined;
1285
+ }
1286
+ export declare namespace DeleteFuotaTaskRequest {
1287
+ /**
1288
+ * @internal
1289
+ */
1290
+ const filterSensitiveLog: (obj: DeleteFuotaTaskRequest) => any;
1291
+ }
1292
+ export interface DeleteFuotaTaskResponse {
1293
+ }
1294
+ export declare namespace DeleteFuotaTaskResponse {
1295
+ /**
1296
+ * @internal
1297
+ */
1298
+ const filterSensitiveLog: (obj: DeleteFuotaTaskResponse) => any;
1299
+ }
1300
+ export interface DeleteMulticastGroupRequest {
1301
+ /**
1302
+ * <p>The ID of the multicast group.</p>
1303
+ */
1304
+ Id: string | undefined;
1305
+ }
1306
+ export declare namespace DeleteMulticastGroupRequest {
1307
+ /**
1308
+ * @internal
1309
+ */
1310
+ const filterSensitiveLog: (obj: DeleteMulticastGroupRequest) => any;
1311
+ }
1312
+ export interface DeleteMulticastGroupResponse {
1313
+ }
1314
+ export declare namespace DeleteMulticastGroupResponse {
1315
+ /**
1316
+ * @internal
1317
+ */
1318
+ const filterSensitiveLog: (obj: DeleteMulticastGroupResponse) => any;
1319
+ }
1015
1320
  export interface DeleteServiceProfileRequest {
1016
1321
  /**
1017
1322
  * <p>The ID of the resource to delete.</p>
@@ -1170,6 +1475,42 @@ export declare namespace DeviceProfile {
1170
1475
  */
1171
1476
  const filterSensitiveLog: (obj: DeviceProfile) => any;
1172
1477
  }
1478
+ export declare enum EventNotificationTopicStatus {
1479
+ Disabled = "Disabled",
1480
+ Enabled = "Enabled"
1481
+ }
1482
+ /**
1483
+ * <p> SidewalkEventNotificationConfigurations object
1484
+ * Event configuration object for Sidewalk related event topics.</p>
1485
+ */
1486
+ export interface SidewalkEventNotificationConfigurations {
1487
+ /**
1488
+ * <p>Enum to denote whether amazon id event topic is enabled or disabled.</p>
1489
+ */
1490
+ AmazonIdEventTopic?: EventNotificationTopicStatus | string;
1491
+ }
1492
+ export declare namespace SidewalkEventNotificationConfigurations {
1493
+ /**
1494
+ * @internal
1495
+ */
1496
+ const filterSensitiveLog: (obj: SidewalkEventNotificationConfigurations) => any;
1497
+ }
1498
+ /**
1499
+ * <p>Device registration state event configuration object for enabling and disabling relevant topics.</p>
1500
+ */
1501
+ export interface DeviceRegistrationStateEventConfiguration {
1502
+ /**
1503
+ * <p>Device registration state event configuration object for enabling or disabling Sidewalk related event
1504
+ * topics.</p>
1505
+ */
1506
+ Sidewalk?: SidewalkEventNotificationConfigurations;
1507
+ }
1508
+ export declare namespace DeviceRegistrationStateEventConfiguration {
1509
+ /**
1510
+ * @internal
1511
+ */
1512
+ const filterSensitiveLog: (obj: DeviceRegistrationStateEventConfiguration) => any;
1513
+ }
1173
1514
  export declare enum DeviceState {
1174
1515
  PROVISIONED = "Provisioned",
1175
1516
  REGISTEREDNOTSEEN = "RegisteredNotSeen",
@@ -1203,76 +1544,194 @@ export declare namespace DisassociateAwsAccountFromPartnerAccountResponse {
1203
1544
  */
1204
1545
  const filterSensitiveLog: (obj: DisassociateAwsAccountFromPartnerAccountResponse) => any;
1205
1546
  }
1206
- export interface DisassociateWirelessDeviceFromThingRequest {
1547
+ export interface DisassociateMulticastGroupFromFuotaTaskRequest {
1207
1548
  /**
1208
- * <p>The ID of the resource to update.</p>
1549
+ * <p>The ID of a FUOTA task.</p>
1209
1550
  */
1210
1551
  Id: string | undefined;
1552
+ /**
1553
+ * <p>The ID of the multicast group.</p>
1554
+ */
1555
+ MulticastGroupId: string | undefined;
1211
1556
  }
1212
- export declare namespace DisassociateWirelessDeviceFromThingRequest {
1557
+ export declare namespace DisassociateMulticastGroupFromFuotaTaskRequest {
1213
1558
  /**
1214
1559
  * @internal
1215
1560
  */
1216
- const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromThingRequest) => any;
1561
+ const filterSensitiveLog: (obj: DisassociateMulticastGroupFromFuotaTaskRequest) => any;
1217
1562
  }
1218
- export interface DisassociateWirelessDeviceFromThingResponse {
1563
+ export interface DisassociateMulticastGroupFromFuotaTaskResponse {
1219
1564
  }
1220
- export declare namespace DisassociateWirelessDeviceFromThingResponse {
1565
+ export declare namespace DisassociateMulticastGroupFromFuotaTaskResponse {
1221
1566
  /**
1222
1567
  * @internal
1223
1568
  */
1224
- const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromThingResponse) => any;
1569
+ const filterSensitiveLog: (obj: DisassociateMulticastGroupFromFuotaTaskResponse) => any;
1225
1570
  }
1226
- export interface DisassociateWirelessGatewayFromCertificateRequest {
1571
+ export interface DisassociateWirelessDeviceFromFuotaTaskRequest {
1227
1572
  /**
1228
- * <p>The ID of the resource to update.</p>
1573
+ * <p>The ID of a FUOTA task.</p>
1229
1574
  */
1230
1575
  Id: string | undefined;
1576
+ /**
1577
+ * <p>The ID of the wireless device.</p>
1578
+ */
1579
+ WirelessDeviceId: string | undefined;
1231
1580
  }
1232
- export declare namespace DisassociateWirelessGatewayFromCertificateRequest {
1581
+ export declare namespace DisassociateWirelessDeviceFromFuotaTaskRequest {
1233
1582
  /**
1234
1583
  * @internal
1235
1584
  */
1236
- const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromCertificateRequest) => any;
1585
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromFuotaTaskRequest) => any;
1237
1586
  }
1238
- export interface DisassociateWirelessGatewayFromCertificateResponse {
1587
+ export interface DisassociateWirelessDeviceFromFuotaTaskResponse {
1239
1588
  }
1240
- export declare namespace DisassociateWirelessGatewayFromCertificateResponse {
1589
+ export declare namespace DisassociateWirelessDeviceFromFuotaTaskResponse {
1241
1590
  /**
1242
1591
  * @internal
1243
1592
  */
1244
- const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromCertificateResponse) => any;
1593
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromFuotaTaskResponse) => any;
1245
1594
  }
1246
- export interface DisassociateWirelessGatewayFromThingRequest {
1595
+ export interface DisassociateWirelessDeviceFromMulticastGroupRequest {
1247
1596
  /**
1248
- * <p>The ID of the resource to update.</p>
1597
+ * <p>The ID of the multicast group.</p>
1249
1598
  */
1250
1599
  Id: string | undefined;
1600
+ /**
1601
+ * <p>The ID of the wireless device.</p>
1602
+ */
1603
+ WirelessDeviceId: string | undefined;
1251
1604
  }
1252
- export declare namespace DisassociateWirelessGatewayFromThingRequest {
1605
+ export declare namespace DisassociateWirelessDeviceFromMulticastGroupRequest {
1253
1606
  /**
1254
1607
  * @internal
1255
1608
  */
1256
- const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingRequest) => any;
1609
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromMulticastGroupRequest) => any;
1257
1610
  }
1258
- export interface DisassociateWirelessGatewayFromThingResponse {
1611
+ export interface DisassociateWirelessDeviceFromMulticastGroupResponse {
1259
1612
  }
1260
- export declare namespace DisassociateWirelessGatewayFromThingResponse {
1613
+ export declare namespace DisassociateWirelessDeviceFromMulticastGroupResponse {
1261
1614
  /**
1262
1615
  * @internal
1263
1616
  */
1264
- const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingResponse) => any;
1265
- }
1266
- export declare enum Event {
1267
- ACK = "ack",
1268
- DISCOVERED = "discovered",
1269
- LOST = "lost",
1270
- NACK = "nack",
1271
- PASSTHROUGH = "passthrough"
1617
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromMulticastGroupResponse) => any;
1272
1618
  }
1273
- export interface GetDestinationRequest {
1619
+ export interface DisassociateWirelessDeviceFromThingRequest {
1274
1620
  /**
1275
- * <p>The name of the resource to get.</p>
1621
+ * <p>The ID of the resource to update.</p>
1622
+ */
1623
+ Id: string | undefined;
1624
+ }
1625
+ export declare namespace DisassociateWirelessDeviceFromThingRequest {
1626
+ /**
1627
+ * @internal
1628
+ */
1629
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromThingRequest) => any;
1630
+ }
1631
+ export interface DisassociateWirelessDeviceFromThingResponse {
1632
+ }
1633
+ export declare namespace DisassociateWirelessDeviceFromThingResponse {
1634
+ /**
1635
+ * @internal
1636
+ */
1637
+ const filterSensitiveLog: (obj: DisassociateWirelessDeviceFromThingResponse) => any;
1638
+ }
1639
+ export interface DisassociateWirelessGatewayFromCertificateRequest {
1640
+ /**
1641
+ * <p>The ID of the resource to update.</p>
1642
+ */
1643
+ Id: string | undefined;
1644
+ }
1645
+ export declare namespace DisassociateWirelessGatewayFromCertificateRequest {
1646
+ /**
1647
+ * @internal
1648
+ */
1649
+ const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromCertificateRequest) => any;
1650
+ }
1651
+ export interface DisassociateWirelessGatewayFromCertificateResponse {
1652
+ }
1653
+ export declare namespace DisassociateWirelessGatewayFromCertificateResponse {
1654
+ /**
1655
+ * @internal
1656
+ */
1657
+ const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromCertificateResponse) => any;
1658
+ }
1659
+ export interface DisassociateWirelessGatewayFromThingRequest {
1660
+ /**
1661
+ * <p>The ID of the resource to update.</p>
1662
+ */
1663
+ Id: string | undefined;
1664
+ }
1665
+ export declare namespace DisassociateWirelessGatewayFromThingRequest {
1666
+ /**
1667
+ * @internal
1668
+ */
1669
+ const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingRequest) => any;
1670
+ }
1671
+ export interface DisassociateWirelessGatewayFromThingResponse {
1672
+ }
1673
+ export declare namespace DisassociateWirelessGatewayFromThingResponse {
1674
+ /**
1675
+ * @internal
1676
+ */
1677
+ const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingResponse) => any;
1678
+ }
1679
+ export declare enum Event {
1680
+ ACK = "ack",
1681
+ DISCOVERED = "discovered",
1682
+ LOST = "lost",
1683
+ NACK = "nack",
1684
+ PASSTHROUGH = "passthrough"
1685
+ }
1686
+ export declare enum EventNotificationPartnerType {
1687
+ Sidewalk = "Sidewalk"
1688
+ }
1689
+ export declare enum FuotaDeviceStatus {
1690
+ FragAlgo_unsupported = "FragAlgo_unsupported",
1691
+ FragIndex_unsupported = "FragIndex_unsupported",
1692
+ Initial = "Initial",
1693
+ MICError = "MICError",
1694
+ MemoryError = "MemoryError",
1695
+ MissingFrag = "MissingFrag",
1696
+ Not_enough_memory = "Not_enough_memory",
1697
+ Package_Not_Supported = "Package_Not_Supported",
1698
+ SessionCnt_replay = "SessionCnt_replay",
1699
+ Successful = "Successful",
1700
+ Wrong_descriptor = "Wrong_descriptor"
1701
+ }
1702
+ /**
1703
+ * <p>A FUOTA task.</p>
1704
+ */
1705
+ export interface FuotaTask {
1706
+ /**
1707
+ * <p>The ID of a FUOTA task.</p>
1708
+ */
1709
+ Id?: string;
1710
+ /**
1711
+ * <p>The arn of a FUOTA task.</p>
1712
+ */
1713
+ Arn?: string;
1714
+ /**
1715
+ * <p>The name of a FUOTA task.</p>
1716
+ */
1717
+ Name?: string;
1718
+ }
1719
+ export declare namespace FuotaTask {
1720
+ /**
1721
+ * @internal
1722
+ */
1723
+ const filterSensitiveLog: (obj: FuotaTask) => any;
1724
+ }
1725
+ export declare enum FuotaTaskStatus {
1726
+ Delete_Waiting = "Delete_Waiting",
1727
+ FuotaDone = "FuotaDone",
1728
+ FuotaSession_Waiting = "FuotaSession_Waiting",
1729
+ In_FuotaSession = "In_FuotaSession",
1730
+ Pending = "Pending"
1731
+ }
1732
+ export interface GetDestinationRequest {
1733
+ /**
1734
+ * <p>The name of the resource to get.</p>
1276
1735
  */
1277
1736
  Name: string | undefined;
1278
1737
  }
@@ -1350,6 +1809,81 @@ export declare namespace GetDeviceProfileResponse {
1350
1809
  */
1351
1810
  const filterSensitiveLog: (obj: GetDeviceProfileResponse) => any;
1352
1811
  }
1812
+ export interface GetFuotaTaskRequest {
1813
+ /**
1814
+ * <p>The ID of a FUOTA task.</p>
1815
+ */
1816
+ Id: string | undefined;
1817
+ }
1818
+ export declare namespace GetFuotaTaskRequest {
1819
+ /**
1820
+ * @internal
1821
+ */
1822
+ const filterSensitiveLog: (obj: GetFuotaTaskRequest) => any;
1823
+ }
1824
+ /**
1825
+ * <p>The LoRaWAN information returned from getting a FUOTA task.</p>
1826
+ */
1827
+ export interface LoRaWANFuotaTaskGetInfo {
1828
+ /**
1829
+ * <p>The frequency band (RFRegion) value.</p>
1830
+ */
1831
+ RfRegion?: string;
1832
+ /**
1833
+ * <p>Start time of a FUOTA task.</p>
1834
+ */
1835
+ StartTime?: Date;
1836
+ }
1837
+ export declare namespace LoRaWANFuotaTaskGetInfo {
1838
+ /**
1839
+ * @internal
1840
+ */
1841
+ const filterSensitiveLog: (obj: LoRaWANFuotaTaskGetInfo) => any;
1842
+ }
1843
+ export interface GetFuotaTaskResponse {
1844
+ /**
1845
+ * <p>The arn of a FUOTA task.</p>
1846
+ */
1847
+ Arn?: string;
1848
+ /**
1849
+ * <p>The ID of a FUOTA task.</p>
1850
+ */
1851
+ Id?: string;
1852
+ /**
1853
+ * <p>The status of a FUOTA task.</p>
1854
+ */
1855
+ Status?: FuotaTaskStatus | string;
1856
+ /**
1857
+ * <p>The name of a FUOTA task.</p>
1858
+ */
1859
+ Name?: string;
1860
+ /**
1861
+ * <p>The description of the new resource.</p>
1862
+ */
1863
+ Description?: string;
1864
+ /**
1865
+ * <p>The LoRaWAN information returned from getting a FUOTA task.</p>
1866
+ */
1867
+ LoRaWAN?: LoRaWANFuotaTaskGetInfo;
1868
+ /**
1869
+ * <p>The S3 URI points to a firmware update image that is to be used with a FUOTA task.</p>
1870
+ */
1871
+ FirmwareUpdateImage?: string;
1872
+ /**
1873
+ * <p>The firmware update role that is to be used with a FUOTA task.</p>
1874
+ */
1875
+ FirmwareUpdateRole?: string;
1876
+ /**
1877
+ * <p>Created at timestamp for the resource.</p>
1878
+ */
1879
+ CreatedAt?: Date;
1880
+ }
1881
+ export declare namespace GetFuotaTaskResponse {
1882
+ /**
1883
+ * @internal
1884
+ */
1885
+ const filterSensitiveLog: (obj: GetFuotaTaskResponse) => any;
1886
+ }
1353
1887
  export interface GetLogLevelsByResourceTypesRequest {
1354
1888
  }
1355
1889
  export declare namespace GetLogLevelsByResourceTypesRequest {
@@ -1485,6 +2019,187 @@ export declare namespace GetLogLevelsByResourceTypesResponse {
1485
2019
  */
1486
2020
  const filterSensitiveLog: (obj: GetLogLevelsByResourceTypesResponse) => any;
1487
2021
  }
2022
+ export interface GetMulticastGroupRequest {
2023
+ /**
2024
+ * <p>The ID of the multicast group.</p>
2025
+ */
2026
+ Id: string | undefined;
2027
+ }
2028
+ export declare namespace GetMulticastGroupRequest {
2029
+ /**
2030
+ * @internal
2031
+ */
2032
+ const filterSensitiveLog: (obj: GetMulticastGroupRequest) => any;
2033
+ }
2034
+ /**
2035
+ * <p>The LoRaWAN information that is to be returned from getting multicast group information.</p>
2036
+ */
2037
+ export interface LoRaWANMulticastGet {
2038
+ /**
2039
+ * <p>Supported RfRegions</p>
2040
+ */
2041
+ RfRegion?: SupportedRfRegion | string;
2042
+ /**
2043
+ * <p>DlClass for LoRaWAM, valid values are ClassB and ClassC.</p>
2044
+ */
2045
+ DlClass?: DlClass | string;
2046
+ /**
2047
+ * <p>Number of devices that are requested to be associated with the multicast group.</p>
2048
+ */
2049
+ NumberOfDevicesRequested?: number;
2050
+ /**
2051
+ * <p>Number of devices that are associated to the multicast group.</p>
2052
+ */
2053
+ NumberOfDevicesInGroup?: number;
2054
+ }
2055
+ export declare namespace LoRaWANMulticastGet {
2056
+ /**
2057
+ * @internal
2058
+ */
2059
+ const filterSensitiveLog: (obj: LoRaWANMulticastGet) => any;
2060
+ }
2061
+ export interface GetMulticastGroupResponse {
2062
+ /**
2063
+ * <p>The arn of the multicast group.</p>
2064
+ */
2065
+ Arn?: string;
2066
+ /**
2067
+ * <p>The ID of the multicast group.</p>
2068
+ */
2069
+ Id?: string;
2070
+ /**
2071
+ * <p>The name of the multicast group.</p>
2072
+ */
2073
+ Name?: string;
2074
+ /**
2075
+ * <p>The description of the new resource.</p>
2076
+ */
2077
+ Description?: string;
2078
+ /**
2079
+ * <p>The status of the multicast group.</p>
2080
+ */
2081
+ Status?: string;
2082
+ /**
2083
+ * <p>The LoRaWAN information that is to be returned from getting multicast group information.</p>
2084
+ */
2085
+ LoRaWAN?: LoRaWANMulticastGet;
2086
+ /**
2087
+ * <p>Created at timestamp for the resource.</p>
2088
+ */
2089
+ CreatedAt?: Date;
2090
+ }
2091
+ export declare namespace GetMulticastGroupResponse {
2092
+ /**
2093
+ * @internal
2094
+ */
2095
+ const filterSensitiveLog: (obj: GetMulticastGroupResponse) => any;
2096
+ }
2097
+ export interface GetMulticastGroupSessionRequest {
2098
+ /**
2099
+ * <p>The ID of the multicast group.</p>
2100
+ */
2101
+ Id: string | undefined;
2102
+ }
2103
+ export declare namespace GetMulticastGroupSessionRequest {
2104
+ /**
2105
+ * @internal
2106
+ */
2107
+ const filterSensitiveLog: (obj: GetMulticastGroupSessionRequest) => any;
2108
+ }
2109
+ /**
2110
+ * <p>The LoRaWAN information used with the multicast session.</p>
2111
+ */
2112
+ export interface LoRaWANMulticastSession {
2113
+ /**
2114
+ * <p>Downlink data rate.</p>
2115
+ */
2116
+ DlDr?: number;
2117
+ /**
2118
+ * <p>Downlink frequency.</p>
2119
+ */
2120
+ DlFreq?: number;
2121
+ /**
2122
+ * <p>Timestamp of when the multicast group session is to start.</p>
2123
+ */
2124
+ SessionStartTime?: Date;
2125
+ /**
2126
+ * <p>How long before a multicast group session is to timeout.</p>
2127
+ */
2128
+ SessionTimeout?: number;
2129
+ }
2130
+ export declare namespace LoRaWANMulticastSession {
2131
+ /**
2132
+ * @internal
2133
+ */
2134
+ const filterSensitiveLog: (obj: LoRaWANMulticastSession) => any;
2135
+ }
2136
+ export interface GetMulticastGroupSessionResponse {
2137
+ /**
2138
+ * <p>The LoRaWAN information used with the multicast session.</p>
2139
+ */
2140
+ LoRaWAN?: LoRaWANMulticastSession;
2141
+ }
2142
+ export declare namespace GetMulticastGroupSessionResponse {
2143
+ /**
2144
+ * @internal
2145
+ */
2146
+ const filterSensitiveLog: (obj: GetMulticastGroupSessionResponse) => any;
2147
+ }
2148
+ export interface GetNetworkAnalyzerConfigurationRequest {
2149
+ /**
2150
+ * <p>NetworkAnalyzer configuration name.</p>
2151
+ */
2152
+ ConfigurationName: string | undefined;
2153
+ }
2154
+ export declare namespace GetNetworkAnalyzerConfigurationRequest {
2155
+ /**
2156
+ * @internal
2157
+ */
2158
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationRequest) => any;
2159
+ }
2160
+ export declare enum WirelessDeviceFrameInfo {
2161
+ DISABLED = "DISABLED",
2162
+ ENABLED = "ENABLED"
2163
+ }
2164
+ /**
2165
+ * <p>Trace Content for resources.</p>
2166
+ */
2167
+ export interface TraceContent {
2168
+ /**
2169
+ * <p>WirelessDevice FrameInfo for trace content.</p>
2170
+ */
2171
+ WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
2172
+ /**
2173
+ * <p>The log level for a log message.</p>
2174
+ */
2175
+ LogLevel?: LogLevel | string;
2176
+ }
2177
+ export declare namespace TraceContent {
2178
+ /**
2179
+ * @internal
2180
+ */
2181
+ const filterSensitiveLog: (obj: TraceContent) => any;
2182
+ }
2183
+ export interface GetNetworkAnalyzerConfigurationResponse {
2184
+ /**
2185
+ * <p>Trace Content for resources.</p>
2186
+ */
2187
+ TraceContent?: TraceContent;
2188
+ /**
2189
+ * <p>List of WirelessDevices in the NetworkAnalyzerConfiguration.</p>
2190
+ */
2191
+ WirelessDevices?: string[];
2192
+ /**
2193
+ * <p>List of WirelessGateways in the NetworkAnalyzerConfiguration.</p>
2194
+ */
2195
+ WirelessGateways?: string[];
2196
+ }
2197
+ export declare namespace GetNetworkAnalyzerConfigurationResponse {
2198
+ /**
2199
+ * @internal
2200
+ */
2201
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationResponse) => any;
2202
+ }
1488
2203
  export interface GetPartnerAccountRequest {
1489
2204
  /**
1490
2205
  * <p>The partner account ID to disassociate from the AWS account.</p>
@@ -1540,6 +2255,60 @@ export declare namespace GetPartnerAccountResponse {
1540
2255
  */
1541
2256
  const filterSensitiveLog: (obj: GetPartnerAccountResponse) => any;
1542
2257
  }
2258
+ export declare enum IdentifierType {
2259
+ PartnerAccountId = "PartnerAccountId"
2260
+ }
2261
+ export interface GetResourceEventConfigurationRequest {
2262
+ /**
2263
+ * <p>Resource identifier to opt in for event messaging.</p>
2264
+ */
2265
+ Identifier: string | undefined;
2266
+ /**
2267
+ * <p>Identifier type of the particular resource identifier for event configuration.</p>
2268
+ */
2269
+ IdentifierType: IdentifierType | string | undefined;
2270
+ /**
2271
+ * <p>Partner type of the resource if the identifier type is PartnerAccountId.</p>
2272
+ */
2273
+ PartnerType?: EventNotificationPartnerType | string;
2274
+ }
2275
+ export declare namespace GetResourceEventConfigurationRequest {
2276
+ /**
2277
+ * @internal
2278
+ */
2279
+ const filterSensitiveLog: (obj: GetResourceEventConfigurationRequest) => any;
2280
+ }
2281
+ /**
2282
+ * <p>Proximity event configuration object for enabling and disabling relevant topics.</p>
2283
+ */
2284
+ export interface ProximityEventConfiguration {
2285
+ /**
2286
+ * <p>Proximity event configuration object for enabling or disabling Sidewalk related event topics.</p>
2287
+ */
2288
+ Sidewalk?: SidewalkEventNotificationConfigurations;
2289
+ }
2290
+ export declare namespace ProximityEventConfiguration {
2291
+ /**
2292
+ * @internal
2293
+ */
2294
+ const filterSensitiveLog: (obj: ProximityEventConfiguration) => any;
2295
+ }
2296
+ export interface GetResourceEventConfigurationResponse {
2297
+ /**
2298
+ * <p>Event configuration for the device registration state event</p>
2299
+ */
2300
+ DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
2301
+ /**
2302
+ * <p>Event configuration for the Proximity event</p>
2303
+ */
2304
+ Proximity?: ProximityEventConfiguration;
2305
+ }
2306
+ export declare namespace GetResourceEventConfigurationResponse {
2307
+ /**
2308
+ * @internal
2309
+ */
2310
+ const filterSensitiveLog: (obj: GetResourceEventConfigurationResponse) => any;
2311
+ }
1543
2312
  export interface GetResourceLogLevelRequest {
1544
2313
  /**
1545
2314
  * <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID. For a wireless gateway,
@@ -2180,37 +2949,160 @@ export declare namespace GetWirelessGatewayTaskDefinitionResponse {
2180
2949
  }
2181
2950
  export interface ListDestinationsRequest {
2182
2951
  /**
2183
- * <p>The maximum number of results to return in this operation.</p>
2952
+ * <p>The maximum number of results to return in this operation.</p>
2953
+ */
2954
+ MaxResults?: number;
2955
+ /**
2956
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
2957
+ */
2958
+ NextToken?: string;
2959
+ }
2960
+ export declare namespace ListDestinationsRequest {
2961
+ /**
2962
+ * @internal
2963
+ */
2964
+ const filterSensitiveLog: (obj: ListDestinationsRequest) => any;
2965
+ }
2966
+ export interface ListDestinationsResponse {
2967
+ /**
2968
+ * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
2969
+ */
2970
+ NextToken?: string;
2971
+ /**
2972
+ * <p>The list of destinations.</p>
2973
+ */
2974
+ DestinationList?: Destinations[];
2975
+ }
2976
+ export declare namespace ListDestinationsResponse {
2977
+ /**
2978
+ * @internal
2979
+ */
2980
+ const filterSensitiveLog: (obj: ListDestinationsResponse) => any;
2981
+ }
2982
+ export interface ListDeviceProfilesRequest {
2983
+ /**
2984
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
2985
+ */
2986
+ NextToken?: string;
2987
+ /**
2988
+ * <p>The maximum number of results to return in this operation.</p>
2989
+ */
2990
+ MaxResults?: number;
2991
+ }
2992
+ export declare namespace ListDeviceProfilesRequest {
2993
+ /**
2994
+ * @internal
2995
+ */
2996
+ const filterSensitiveLog: (obj: ListDeviceProfilesRequest) => any;
2997
+ }
2998
+ export interface ListDeviceProfilesResponse {
2999
+ /**
3000
+ * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
3001
+ */
3002
+ NextToken?: string;
3003
+ /**
3004
+ * <p>The list of device profiles.</p>
3005
+ */
3006
+ DeviceProfileList?: DeviceProfile[];
3007
+ }
3008
+ export declare namespace ListDeviceProfilesResponse {
3009
+ /**
3010
+ * @internal
3011
+ */
3012
+ const filterSensitiveLog: (obj: ListDeviceProfilesResponse) => any;
3013
+ }
3014
+ export interface ListFuotaTasksRequest {
3015
+ /**
3016
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
3017
+ */
3018
+ NextToken?: string;
3019
+ /**
3020
+ * <p>The maximum number of results to return in this operation.</p>
3021
+ */
3022
+ MaxResults?: number;
3023
+ }
3024
+ export declare namespace ListFuotaTasksRequest {
3025
+ /**
3026
+ * @internal
3027
+ */
3028
+ const filterSensitiveLog: (obj: ListFuotaTasksRequest) => any;
3029
+ }
3030
+ export interface ListFuotaTasksResponse {
3031
+ /**
3032
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
3033
+ */
3034
+ NextToken?: string;
3035
+ /**
3036
+ * <p>Lists the FUOTA tasks registered to your AWS account.</p>
3037
+ */
3038
+ FuotaTaskList?: FuotaTask[];
3039
+ }
3040
+ export declare namespace ListFuotaTasksResponse {
3041
+ /**
3042
+ * @internal
3043
+ */
3044
+ const filterSensitiveLog: (obj: ListFuotaTasksResponse) => any;
3045
+ }
3046
+ export interface ListMulticastGroupsRequest {
3047
+ /**
3048
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
3049
+ */
3050
+ NextToken?: string;
3051
+ /**
3052
+ * <p>The maximum number of results to return in this operation.</p>
3053
+ */
3054
+ MaxResults?: number;
3055
+ }
3056
+ export declare namespace ListMulticastGroupsRequest {
3057
+ /**
3058
+ * @internal
3059
+ */
3060
+ const filterSensitiveLog: (obj: ListMulticastGroupsRequest) => any;
3061
+ }
3062
+ /**
3063
+ * <p>A multicast group.</p>
3064
+ */
3065
+ export interface MulticastGroup {
3066
+ /**
3067
+ * <p>The ID of the multicast group.</p>
3068
+ */
3069
+ Id?: string;
3070
+ /**
3071
+ * <p>The arn of the multicast group.</p>
2184
3072
  */
2185
- MaxResults?: number;
3073
+ Arn?: string;
2186
3074
  /**
2187
- * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
3075
+ * <p>The name of the multicast group.</p>
2188
3076
  */
2189
- NextToken?: string;
3077
+ Name?: string;
2190
3078
  }
2191
- export declare namespace ListDestinationsRequest {
3079
+ export declare namespace MulticastGroup {
2192
3080
  /**
2193
3081
  * @internal
2194
3082
  */
2195
- const filterSensitiveLog: (obj: ListDestinationsRequest) => any;
3083
+ const filterSensitiveLog: (obj: MulticastGroup) => any;
2196
3084
  }
2197
- export interface ListDestinationsResponse {
3085
+ export interface ListMulticastGroupsResponse {
2198
3086
  /**
2199
- * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
3087
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
2200
3088
  */
2201
3089
  NextToken?: string;
2202
3090
  /**
2203
- * <p>The list of destinations.</p>
3091
+ * <p>List of multicast groups.</p>
2204
3092
  */
2205
- DestinationList?: Destinations[];
3093
+ MulticastGroupList?: MulticastGroup[];
2206
3094
  }
2207
- export declare namespace ListDestinationsResponse {
3095
+ export declare namespace ListMulticastGroupsResponse {
2208
3096
  /**
2209
3097
  * @internal
2210
3098
  */
2211
- const filterSensitiveLog: (obj: ListDestinationsResponse) => any;
3099
+ const filterSensitiveLog: (obj: ListMulticastGroupsResponse) => any;
2212
3100
  }
2213
- export interface ListDeviceProfilesRequest {
3101
+ export interface ListMulticastGroupsByFuotaTaskRequest {
3102
+ /**
3103
+ * <p>The ID of a FUOTA task.</p>
3104
+ */
3105
+ Id: string | undefined;
2214
3106
  /**
2215
3107
  * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
2216
3108
  */
@@ -2220,27 +3112,42 @@ export interface ListDeviceProfilesRequest {
2220
3112
  */
2221
3113
  MaxResults?: number;
2222
3114
  }
2223
- export declare namespace ListDeviceProfilesRequest {
3115
+ export declare namespace ListMulticastGroupsByFuotaTaskRequest {
2224
3116
  /**
2225
3117
  * @internal
2226
3118
  */
2227
- const filterSensitiveLog: (obj: ListDeviceProfilesRequest) => any;
3119
+ const filterSensitiveLog: (obj: ListMulticastGroupsByFuotaTaskRequest) => any;
2228
3120
  }
2229
- export interface ListDeviceProfilesResponse {
3121
+ /**
3122
+ * <p>A multicast group that is associated with a FUOTA task.</p>
3123
+ */
3124
+ export interface MulticastGroupByFuotaTask {
2230
3125
  /**
2231
- * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
3126
+ * <p>The ID of the multicast group.</p>
3127
+ */
3128
+ Id?: string;
3129
+ }
3130
+ export declare namespace MulticastGroupByFuotaTask {
3131
+ /**
3132
+ * @internal
3133
+ */
3134
+ const filterSensitiveLog: (obj: MulticastGroupByFuotaTask) => any;
3135
+ }
3136
+ export interface ListMulticastGroupsByFuotaTaskResponse {
3137
+ /**
3138
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
2232
3139
  */
2233
3140
  NextToken?: string;
2234
3141
  /**
2235
- * <p>The list of device profiles.</p>
3142
+ * <p>List of multicast groups associated with a FUOTA task.</p>
2236
3143
  */
2237
- DeviceProfileList?: DeviceProfile[];
3144
+ MulticastGroupList?: MulticastGroupByFuotaTask[];
2238
3145
  }
2239
- export declare namespace ListDeviceProfilesResponse {
3146
+ export declare namespace ListMulticastGroupsByFuotaTaskResponse {
2240
3147
  /**
2241
3148
  * @internal
2242
3149
  */
2243
- const filterSensitiveLog: (obj: ListDeviceProfilesResponse) => any;
3150
+ const filterSensitiveLog: (obj: ListMulticastGroupsByFuotaTaskResponse) => any;
2244
3151
  }
2245
3152
  export interface ListPartnerAccountsRequest {
2246
3153
  /**
@@ -2378,6 +3285,14 @@ export interface ListWirelessDevicesRequest {
2378
3285
  * <p>A filter to list only the wireless devices that use this wireless device type.</p>
2379
3286
  */
2380
3287
  WirelessDeviceType?: WirelessDeviceType | string;
3288
+ /**
3289
+ * <p>The ID of a FUOTA task.</p>
3290
+ */
3291
+ FuotaTaskId?: string;
3292
+ /**
3293
+ * <p>The ID of the multicast group.</p>
3294
+ */
3295
+ MulticastGroupId?: string;
2381
3296
  }
2382
3297
  export declare namespace ListWirelessDevicesRequest {
2383
3298
  /**
@@ -2463,6 +3378,18 @@ export interface WirelessDeviceStatistics {
2463
3378
  * <p>The Sidewalk account credentials.</p>
2464
3379
  */
2465
3380
  Sidewalk?: SidewalkListDevice;
3381
+ /**
3382
+ * <p>The status of a wireless device in a FUOTA task.</p>
3383
+ */
3384
+ FuotaDeviceStatus?: FuotaDeviceStatus | string;
3385
+ /**
3386
+ * <p>The status of the wireless device in the multicast group.</p>
3387
+ */
3388
+ MulticastDeviceStatus?: string;
3389
+ /**
3390
+ * <p>Id of the multicast group.</p>
3391
+ */
3392
+ McGroupId?: number;
2466
3393
  }
2467
3394
  export declare namespace WirelessDeviceStatistics {
2468
3395
  /**
@@ -2704,6 +3631,68 @@ export declare namespace ResetResourceLogLevelResponse {
2704
3631
  */
2705
3632
  const filterSensitiveLog: (obj: ResetResourceLogLevelResponse) => any;
2706
3633
  }
3634
+ /**
3635
+ * <p>The metadata information of the LoRaWAN multicast group.</p>
3636
+ */
3637
+ export interface LoRaWANMulticastMetadata {
3638
+ /**
3639
+ * <p>The Fport value.</p>
3640
+ */
3641
+ FPort?: number;
3642
+ }
3643
+ export declare namespace LoRaWANMulticastMetadata {
3644
+ /**
3645
+ * @internal
3646
+ */
3647
+ const filterSensitiveLog: (obj: LoRaWANMulticastMetadata) => any;
3648
+ }
3649
+ /**
3650
+ * <p>Wireless metadata that is to be sent to multicast group.</p>
3651
+ */
3652
+ export interface MulticastWirelessMetadata {
3653
+ /**
3654
+ * <p>The metadata information of the LoRaWAN multicast group.</p>
3655
+ */
3656
+ LoRaWAN?: LoRaWANMulticastMetadata;
3657
+ }
3658
+ export declare namespace MulticastWirelessMetadata {
3659
+ /**
3660
+ * @internal
3661
+ */
3662
+ const filterSensitiveLog: (obj: MulticastWirelessMetadata) => any;
3663
+ }
3664
+ export interface SendDataToMulticastGroupRequest {
3665
+ /**
3666
+ * <p>The ID of the multicast group.</p>
3667
+ */
3668
+ Id: string | undefined;
3669
+ /**
3670
+ * <p>The binary to be sent to the end device, encoded in base64.</p>
3671
+ */
3672
+ PayloadData: string | undefined;
3673
+ /**
3674
+ * <p>Wireless metadata that is to be sent to multicast group.</p>
3675
+ */
3676
+ WirelessMetadata: MulticastWirelessMetadata | undefined;
3677
+ }
3678
+ export declare namespace SendDataToMulticastGroupRequest {
3679
+ /**
3680
+ * @internal
3681
+ */
3682
+ const filterSensitiveLog: (obj: SendDataToMulticastGroupRequest) => any;
3683
+ }
3684
+ export interface SendDataToMulticastGroupResponse {
3685
+ /**
3686
+ * <p>ID of a multicast group message.</p>
3687
+ */
3688
+ MessageId?: string;
3689
+ }
3690
+ export declare namespace SendDataToMulticastGroupResponse {
3691
+ /**
3692
+ * @internal
3693
+ */
3694
+ const filterSensitiveLog: (obj: SendDataToMulticastGroupResponse) => any;
3695
+ }
2707
3696
  /**
2708
3697
  * <p>LoRaWAN router info.</p>
2709
3698
  */
@@ -2799,6 +3788,125 @@ export declare namespace SendDataToWirelessDeviceResponse {
2799
3788
  */
2800
3789
  const filterSensitiveLog: (obj: SendDataToWirelessDeviceResponse) => any;
2801
3790
  }
3791
+ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
3792
+ /**
3793
+ * <p>The ID of the multicast group.</p>
3794
+ */
3795
+ Id: string | undefined;
3796
+ /**
3797
+ * <p>Query string used to search for wireless devices as part of the bulk associate and disassociate process.</p>
3798
+ */
3799
+ QueryString?: string;
3800
+ /**
3801
+ * <p>The tag to attach to the specified resource. Tags are metadata that you can use to manage a resource.</p>
3802
+ */
3803
+ Tags?: Tag[];
3804
+ }
3805
+ export declare namespace StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
3806
+ /**
3807
+ * @internal
3808
+ */
3809
+ const filterSensitiveLog: (obj: StartBulkAssociateWirelessDeviceWithMulticastGroupRequest) => any;
3810
+ }
3811
+ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupResponse {
3812
+ }
3813
+ export declare namespace StartBulkAssociateWirelessDeviceWithMulticastGroupResponse {
3814
+ /**
3815
+ * @internal
3816
+ */
3817
+ const filterSensitiveLog: (obj: StartBulkAssociateWirelessDeviceWithMulticastGroupResponse) => any;
3818
+ }
3819
+ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
3820
+ /**
3821
+ * <p>The ID of the multicast group.</p>
3822
+ */
3823
+ Id: string | undefined;
3824
+ /**
3825
+ * <p>Query string used to search for wireless devices as part of the bulk associate and disassociate process.</p>
3826
+ */
3827
+ QueryString?: string;
3828
+ /**
3829
+ * <p>The tag to attach to the specified resource. Tags are metadata that you can use to manage a resource.</p>
3830
+ */
3831
+ Tags?: Tag[];
3832
+ }
3833
+ export declare namespace StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
3834
+ /**
3835
+ * @internal
3836
+ */
3837
+ const filterSensitiveLog: (obj: StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest) => any;
3838
+ }
3839
+ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse {
3840
+ }
3841
+ export declare namespace StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse {
3842
+ /**
3843
+ * @internal
3844
+ */
3845
+ const filterSensitiveLog: (obj: StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse) => any;
3846
+ }
3847
+ /**
3848
+ * <p>The LoRaWAN information used to start a FUOTA task.</p>
3849
+ */
3850
+ export interface LoRaWANStartFuotaTask {
3851
+ /**
3852
+ * <p>Start time of a FUOTA task.</p>
3853
+ */
3854
+ StartTime?: Date;
3855
+ }
3856
+ export declare namespace LoRaWANStartFuotaTask {
3857
+ /**
3858
+ * @internal
3859
+ */
3860
+ const filterSensitiveLog: (obj: LoRaWANStartFuotaTask) => any;
3861
+ }
3862
+ export interface StartFuotaTaskRequest {
3863
+ /**
3864
+ * <p>The ID of a FUOTA task.</p>
3865
+ */
3866
+ Id: string | undefined;
3867
+ /**
3868
+ * <p>The LoRaWAN information used to start a FUOTA task.</p>
3869
+ */
3870
+ LoRaWAN?: LoRaWANStartFuotaTask;
3871
+ }
3872
+ export declare namespace StartFuotaTaskRequest {
3873
+ /**
3874
+ * @internal
3875
+ */
3876
+ const filterSensitiveLog: (obj: StartFuotaTaskRequest) => any;
3877
+ }
3878
+ export interface StartFuotaTaskResponse {
3879
+ }
3880
+ export declare namespace StartFuotaTaskResponse {
3881
+ /**
3882
+ * @internal
3883
+ */
3884
+ const filterSensitiveLog: (obj: StartFuotaTaskResponse) => any;
3885
+ }
3886
+ export interface StartMulticastGroupSessionRequest {
3887
+ /**
3888
+ * <p>The ID of the multicast group.</p>
3889
+ */
3890
+ Id: string | undefined;
3891
+ /**
3892
+ * <p>The LoRaWAN information used with the multicast session.</p>
3893
+ */
3894
+ LoRaWAN: LoRaWANMulticastSession | undefined;
3895
+ }
3896
+ export declare namespace StartMulticastGroupSessionRequest {
3897
+ /**
3898
+ * @internal
3899
+ */
3900
+ const filterSensitiveLog: (obj: StartMulticastGroupSessionRequest) => any;
3901
+ }
3902
+ export interface StartMulticastGroupSessionResponse {
3903
+ }
3904
+ export declare namespace StartMulticastGroupSessionResponse {
3905
+ /**
3906
+ * @internal
3907
+ */
3908
+ const filterSensitiveLog: (obj: StartMulticastGroupSessionResponse) => any;
3909
+ }
2802
3910
  export interface TagResourceRequest {
2803
3911
  /**
2804
3912
  * <p>The ARN of the resource to add tags to.</p>
@@ -2925,6 +4033,46 @@ export declare namespace UpdateDestinationResponse {
2925
4033
  */
2926
4034
  const filterSensitiveLog: (obj: UpdateDestinationResponse) => any;
2927
4035
  }
4036
+ export interface UpdateFuotaTaskRequest {
4037
+ /**
4038
+ * <p>The ID of a FUOTA task.</p>
4039
+ */
4040
+ Id: string | undefined;
4041
+ /**
4042
+ * <p>The name of a FUOTA task.</p>
4043
+ */
4044
+ Name?: string;
4045
+ /**
4046
+ * <p>The description of the new resource.</p>
4047
+ */
4048
+ Description?: string;
4049
+ /**
4050
+ * <p>The LoRaWAN information used with a FUOTA task.</p>
4051
+ */
4052
+ LoRaWAN?: LoRaWANFuotaTask;
4053
+ /**
4054
+ * <p>The S3 URI points to a firmware update image that is to be used with a FUOTA task.</p>
4055
+ */
4056
+ FirmwareUpdateImage?: string;
4057
+ /**
4058
+ * <p>The firmware update role that is to be used with a FUOTA task.</p>
4059
+ */
4060
+ FirmwareUpdateRole?: string;
4061
+ }
4062
+ export declare namespace UpdateFuotaTaskRequest {
4063
+ /**
4064
+ * @internal
4065
+ */
4066
+ const filterSensitiveLog: (obj: UpdateFuotaTaskRequest) => any;
4067
+ }
4068
+ export interface UpdateFuotaTaskResponse {
4069
+ }
4070
+ export declare namespace UpdateFuotaTaskResponse {
4071
+ /**
4072
+ * @internal
4073
+ */
4074
+ const filterSensitiveLog: (obj: UpdateFuotaTaskResponse) => any;
4075
+ }
2928
4076
  export interface UpdateLogLevelsByResourceTypesRequest {
2929
4077
  /**
2930
4078
  * <p>The log level for a log message.</p>
@@ -2953,6 +4101,78 @@ export declare namespace UpdateLogLevelsByResourceTypesResponse {
2953
4101
  */
2954
4102
  const filterSensitiveLog: (obj: UpdateLogLevelsByResourceTypesResponse) => any;
2955
4103
  }
4104
+ export interface UpdateMulticastGroupRequest {
4105
+ /**
4106
+ * <p>The ID of the multicast group.</p>
4107
+ */
4108
+ Id: string | undefined;
4109
+ /**
4110
+ * <p>The name of the multicast group.</p>
4111
+ */
4112
+ Name?: string;
4113
+ /**
4114
+ * <p>The description of the new resource.</p>
4115
+ */
4116
+ Description?: string;
4117
+ /**
4118
+ * <p>The LoRaWAN information that is to be used with the multicast group.</p>
4119
+ */
4120
+ LoRaWAN?: LoRaWANMulticast;
4121
+ }
4122
+ export declare namespace UpdateMulticastGroupRequest {
4123
+ /**
4124
+ * @internal
4125
+ */
4126
+ const filterSensitiveLog: (obj: UpdateMulticastGroupRequest) => any;
4127
+ }
4128
+ export interface UpdateMulticastGroupResponse {
4129
+ }
4130
+ export declare namespace UpdateMulticastGroupResponse {
4131
+ /**
4132
+ * @internal
4133
+ */
4134
+ const filterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
4135
+ }
4136
+ export interface UpdateNetworkAnalyzerConfigurationRequest {
4137
+ /**
4138
+ * <p>NetworkAnalyzer configuration name.</p>
4139
+ */
4140
+ ConfigurationName: string | undefined;
4141
+ /**
4142
+ * <p>Trace Content for resources.</p>
4143
+ */
4144
+ TraceContent?: TraceContent;
4145
+ /**
4146
+ * <p>WirelessDevices to add into NetworkAnalyzerConfiguration.</p>
4147
+ */
4148
+ WirelessDevicesToAdd?: string[];
4149
+ /**
4150
+ * <p>WirelessDevices to remove from NetworkAnalyzerConfiguration.</p>
4151
+ */
4152
+ WirelessDevicesToRemove?: string[];
4153
+ /**
4154
+ * <p>WirelessGateways to add into NetworkAnalyzerConfiguration.</p>
4155
+ */
4156
+ WirelessGatewaysToAdd?: string[];
4157
+ /**
4158
+ * <p>WirelessGateways to remove from NetworkAnalyzerConfiguration.</p>
4159
+ */
4160
+ WirelessGatewaysToRemove?: string[];
4161
+ }
4162
+ export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
4163
+ /**
4164
+ * @internal
4165
+ */
4166
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
4167
+ }
4168
+ export interface UpdateNetworkAnalyzerConfigurationResponse {
4169
+ }
4170
+ export declare namespace UpdateNetworkAnalyzerConfigurationResponse {
4171
+ /**
4172
+ * @internal
4173
+ */
4174
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
4175
+ }
2956
4176
  /**
2957
4177
  * <p>Sidewalk update.</p>
2958
4178
  */
@@ -2996,6 +4216,42 @@ export declare namespace UpdatePartnerAccountResponse {
2996
4216
  */
2997
4217
  const filterSensitiveLog: (obj: UpdatePartnerAccountResponse) => any;
2998
4218
  }
4219
+ export interface UpdateResourceEventConfigurationRequest {
4220
+ /**
4221
+ * <p>Resource identifier to opt in for event messaging.</p>
4222
+ */
4223
+ Identifier: string | undefined;
4224
+ /**
4225
+ * <p>Identifier type of the particular resource identifier for event configuration.</p>
4226
+ */
4227
+ IdentifierType: IdentifierType | string | undefined;
4228
+ /**
4229
+ * <p>Partner type of the resource if the identifier type is PartnerAccountId</p>
4230
+ */
4231
+ PartnerType?: EventNotificationPartnerType | string;
4232
+ /**
4233
+ * <p>Event configuration for the device registration state event</p>
4234
+ */
4235
+ DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
4236
+ /**
4237
+ * <p>Event configuration for the Proximity event</p>
4238
+ */
4239
+ Proximity?: ProximityEventConfiguration;
4240
+ }
4241
+ export declare namespace UpdateResourceEventConfigurationRequest {
4242
+ /**
4243
+ * @internal
4244
+ */
4245
+ const filterSensitiveLog: (obj: UpdateResourceEventConfigurationRequest) => any;
4246
+ }
4247
+ export interface UpdateResourceEventConfigurationResponse {
4248
+ }
4249
+ export declare namespace UpdateResourceEventConfigurationResponse {
4250
+ /**
4251
+ * @internal
4252
+ */
4253
+ const filterSensitiveLog: (obj: UpdateResourceEventConfigurationResponse) => any;
4254
+ }
2999
4255
  /**
3000
4256
  * <p>LoRaWAN object for update functions.</p>
3001
4257
  */