@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
@@ -1,10 +1,16 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
2
  import { AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput } from "./commands/AssociateAwsAccountWithPartnerAccountCommand";
3
+ import { AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput } from "./commands/AssociateMulticastGroupWithFuotaTaskCommand";
4
+ import { AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput } from "./commands/AssociateWirelessDeviceWithFuotaTaskCommand";
5
+ import { AssociateWirelessDeviceWithMulticastGroupCommandInput, AssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/AssociateWirelessDeviceWithMulticastGroupCommand";
3
6
  import { AssociateWirelessDeviceWithThingCommandInput, AssociateWirelessDeviceWithThingCommandOutput } from "./commands/AssociateWirelessDeviceWithThingCommand";
4
7
  import { AssociateWirelessGatewayWithCertificateCommandInput, AssociateWirelessGatewayWithCertificateCommandOutput } from "./commands/AssociateWirelessGatewayWithCertificateCommand";
5
8
  import { AssociateWirelessGatewayWithThingCommandInput, AssociateWirelessGatewayWithThingCommandOutput } from "./commands/AssociateWirelessGatewayWithThingCommand";
9
+ import { CancelMulticastGroupSessionCommandInput, CancelMulticastGroupSessionCommandOutput } from "./commands/CancelMulticastGroupSessionCommand";
6
10
  import { CreateDestinationCommandInput, CreateDestinationCommandOutput } from "./commands/CreateDestinationCommand";
7
11
  import { CreateDeviceProfileCommandInput, CreateDeviceProfileCommandOutput } from "./commands/CreateDeviceProfileCommand";
12
+ import { CreateFuotaTaskCommandInput, CreateFuotaTaskCommandOutput } from "./commands/CreateFuotaTaskCommand";
13
+ import { CreateMulticastGroupCommandInput, CreateMulticastGroupCommandOutput } from "./commands/CreateMulticastGroupCommand";
8
14
  import { CreateServiceProfileCommandInput, CreateServiceProfileCommandOutput } from "./commands/CreateServiceProfileCommand";
9
15
  import { CreateWirelessDeviceCommandInput, CreateWirelessDeviceCommandOutput } from "./commands/CreateWirelessDeviceCommand";
10
16
  import { CreateWirelessGatewayCommandInput, CreateWirelessGatewayCommandOutput } from "./commands/CreateWirelessGatewayCommand";
@@ -12,19 +18,29 @@ import { CreateWirelessGatewayTaskCommandInput, CreateWirelessGatewayTaskCommand
12
18
  import { CreateWirelessGatewayTaskDefinitionCommandInput, CreateWirelessGatewayTaskDefinitionCommandOutput } from "./commands/CreateWirelessGatewayTaskDefinitionCommand";
13
19
  import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from "./commands/DeleteDestinationCommand";
14
20
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
21
+ import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
22
+ import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
15
23
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
16
24
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
17
25
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
18
26
  import { DeleteWirelessGatewayTaskCommandInput, DeleteWirelessGatewayTaskCommandOutput } from "./commands/DeleteWirelessGatewayTaskCommand";
19
27
  import { DeleteWirelessGatewayTaskDefinitionCommandInput, DeleteWirelessGatewayTaskDefinitionCommandOutput } from "./commands/DeleteWirelessGatewayTaskDefinitionCommand";
20
28
  import { DisassociateAwsAccountFromPartnerAccountCommandInput, DisassociateAwsAccountFromPartnerAccountCommandOutput } from "./commands/DisassociateAwsAccountFromPartnerAccountCommand";
29
+ import { DisassociateMulticastGroupFromFuotaTaskCommandInput, DisassociateMulticastGroupFromFuotaTaskCommandOutput } from "./commands/DisassociateMulticastGroupFromFuotaTaskCommand";
30
+ import { DisassociateWirelessDeviceFromFuotaTaskCommandInput, DisassociateWirelessDeviceFromFuotaTaskCommandOutput } from "./commands/DisassociateWirelessDeviceFromFuotaTaskCommand";
31
+ import { DisassociateWirelessDeviceFromMulticastGroupCommandInput, DisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/DisassociateWirelessDeviceFromMulticastGroupCommand";
21
32
  import { DisassociateWirelessDeviceFromThingCommandInput, DisassociateWirelessDeviceFromThingCommandOutput } from "./commands/DisassociateWirelessDeviceFromThingCommand";
22
33
  import { DisassociateWirelessGatewayFromCertificateCommandInput, DisassociateWirelessGatewayFromCertificateCommandOutput } from "./commands/DisassociateWirelessGatewayFromCertificateCommand";
23
34
  import { DisassociateWirelessGatewayFromThingCommandInput, DisassociateWirelessGatewayFromThingCommandOutput } from "./commands/DisassociateWirelessGatewayFromThingCommand";
24
35
  import { GetDestinationCommandInput, GetDestinationCommandOutput } from "./commands/GetDestinationCommand";
25
36
  import { GetDeviceProfileCommandInput, GetDeviceProfileCommandOutput } from "./commands/GetDeviceProfileCommand";
37
+ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/GetFuotaTaskCommand";
26
38
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
39
+ import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
40
+ import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
41
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
27
42
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
43
+ import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
28
44
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
29
45
  import { GetServiceEndpointCommandInput, GetServiceEndpointCommandOutput } from "./commands/GetServiceEndpointCommand";
30
46
  import { GetServiceProfileCommandInput, GetServiceProfileCommandOutput } from "./commands/GetServiceProfileCommand";
@@ -38,6 +54,9 @@ import { GetWirelessGatewayTaskCommandInput, GetWirelessGatewayTaskCommandOutput
38
54
  import { GetWirelessGatewayTaskDefinitionCommandInput, GetWirelessGatewayTaskDefinitionCommandOutput } from "./commands/GetWirelessGatewayTaskDefinitionCommand";
39
55
  import { ListDestinationsCommandInput, ListDestinationsCommandOutput } from "./commands/ListDestinationsCommand";
40
56
  import { ListDeviceProfilesCommandInput, ListDeviceProfilesCommandOutput } from "./commands/ListDeviceProfilesCommand";
57
+ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./commands/ListFuotaTasksCommand";
58
+ import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
59
+ import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
41
60
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
42
61
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
43
62
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
@@ -47,13 +66,22 @@ import { ListWirelessGatewayTaskDefinitionsCommandInput, ListWirelessGatewayTask
47
66
  import { PutResourceLogLevelCommandInput, PutResourceLogLevelCommandOutput } from "./commands/PutResourceLogLevelCommand";
48
67
  import { ResetAllResourceLogLevelsCommandInput, ResetAllResourceLogLevelsCommandOutput } from "./commands/ResetAllResourceLogLevelsCommand";
49
68
  import { ResetResourceLogLevelCommandInput, ResetResourceLogLevelCommandOutput } from "./commands/ResetResourceLogLevelCommand";
69
+ import { SendDataToMulticastGroupCommandInput, SendDataToMulticastGroupCommandOutput } from "./commands/SendDataToMulticastGroupCommand";
50
70
  import { SendDataToWirelessDeviceCommandInput, SendDataToWirelessDeviceCommandOutput } from "./commands/SendDataToWirelessDeviceCommand";
71
+ import { StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand";
72
+ import { StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand";
73
+ import { StartFuotaTaskCommandInput, StartFuotaTaskCommandOutput } from "./commands/StartFuotaTaskCommand";
74
+ import { StartMulticastGroupSessionCommandInput, StartMulticastGroupSessionCommandOutput } from "./commands/StartMulticastGroupSessionCommand";
51
75
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
52
76
  import { TestWirelessDeviceCommandInput, TestWirelessDeviceCommandOutput } from "./commands/TestWirelessDeviceCommand";
53
77
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
54
78
  import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from "./commands/UpdateDestinationCommand";
79
+ import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
55
80
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
81
+ import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
82
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
56
83
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
84
+ import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
57
85
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
58
86
  import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
59
87
  import { IoTWirelessClient } from "./IoTWirelessClient";
@@ -64,6 +92,18 @@ export declare class IoTWireless extends IoTWirelessClient {
64
92
  associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, cb: (err: any, data?: AssociateAwsAccountWithPartnerAccountCommandOutput) => void): void;
65
93
  associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAwsAccountWithPartnerAccountCommandOutput) => void): void;
66
94
 
95
+ associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<AssociateMulticastGroupWithFuotaTaskCommandOutput>;
96
+ associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, cb: (err: any, data?: AssociateMulticastGroupWithFuotaTaskCommandOutput) => void): void;
97
+ associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateMulticastGroupWithFuotaTaskCommandOutput) => void): void;
98
+
99
+ associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithFuotaTaskCommandOutput>;
100
+ associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithFuotaTaskCommandOutput) => void): void;
101
+ associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithFuotaTaskCommandOutput) => void): void;
102
+
103
+ associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithMulticastGroupCommandOutput>;
104
+ associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
105
+ associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
106
+
67
107
  associateWirelessDeviceWithThing(args: AssociateWirelessDeviceWithThingCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithThingCommandOutput>;
68
108
  associateWirelessDeviceWithThing(args: AssociateWirelessDeviceWithThingCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithThingCommandOutput) => void): void;
69
109
  associateWirelessDeviceWithThing(args: AssociateWirelessDeviceWithThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithThingCommandOutput) => void): void;
@@ -76,6 +116,10 @@ export declare class IoTWireless extends IoTWirelessClient {
76
116
  associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, cb: (err: any, data?: AssociateWirelessGatewayWithThingCommandOutput) => void): void;
77
117
  associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessGatewayWithThingCommandOutput) => void): void;
78
118
 
119
+ cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<CancelMulticastGroupSessionCommandOutput>;
120
+ cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, cb: (err: any, data?: CancelMulticastGroupSessionCommandOutput) => void): void;
121
+ cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelMulticastGroupSessionCommandOutput) => void): void;
122
+
79
123
  createDestination(args: CreateDestinationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDestinationCommandOutput>;
80
124
  createDestination(args: CreateDestinationCommandInput, cb: (err: any, data?: CreateDestinationCommandOutput) => void): void;
81
125
  createDestination(args: CreateDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDestinationCommandOutput) => void): void;
@@ -84,6 +128,14 @@ export declare class IoTWireless extends IoTWirelessClient {
84
128
  createDeviceProfile(args: CreateDeviceProfileCommandInput, cb: (err: any, data?: CreateDeviceProfileCommandOutput) => void): void;
85
129
  createDeviceProfile(args: CreateDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeviceProfileCommandOutput) => void): void;
86
130
 
131
+ createFuotaTask(args: CreateFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateFuotaTaskCommandOutput>;
132
+ createFuotaTask(args: CreateFuotaTaskCommandInput, cb: (err: any, data?: CreateFuotaTaskCommandOutput) => void): void;
133
+ createFuotaTask(args: CreateFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFuotaTaskCommandOutput) => void): void;
134
+
135
+ createMulticastGroup(args: CreateMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateMulticastGroupCommandOutput>;
136
+ createMulticastGroup(args: CreateMulticastGroupCommandInput, cb: (err: any, data?: CreateMulticastGroupCommandOutput) => void): void;
137
+ createMulticastGroup(args: CreateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMulticastGroupCommandOutput) => void): void;
138
+
87
139
  createServiceProfile(args: CreateServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceProfileCommandOutput>;
88
140
  createServiceProfile(args: CreateServiceProfileCommandInput, cb: (err: any, data?: CreateServiceProfileCommandOutput) => void): void;
89
141
  createServiceProfile(args: CreateServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceProfileCommandOutput) => void): void;
@@ -112,6 +164,14 @@ export declare class IoTWireless extends IoTWirelessClient {
112
164
  deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, cb: (err: any, data?: DeleteDeviceProfileCommandOutput) => void): void;
113
165
  deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeviceProfileCommandOutput) => void): void;
114
166
 
167
+ deleteFuotaTask(args: DeleteFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFuotaTaskCommandOutput>;
168
+ deleteFuotaTask(args: DeleteFuotaTaskCommandInput, cb: (err: any, data?: DeleteFuotaTaskCommandOutput) => void): void;
169
+ deleteFuotaTask(args: DeleteFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFuotaTaskCommandOutput) => void): void;
170
+
171
+ deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMulticastGroupCommandOutput>;
172
+ deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
173
+ deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
174
+
115
175
  deleteServiceProfile(args: DeleteServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceProfileCommandOutput>;
116
176
  deleteServiceProfile(args: DeleteServiceProfileCommandInput, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
117
177
  deleteServiceProfile(args: DeleteServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
@@ -136,6 +196,18 @@ export declare class IoTWireless extends IoTWirelessClient {
136
196
  disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, cb: (err: any, data?: DisassociateAwsAccountFromPartnerAccountCommandOutput) => void): void;
137
197
  disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAwsAccountFromPartnerAccountCommandOutput) => void): void;
138
198
 
199
+ disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateMulticastGroupFromFuotaTaskCommandOutput>;
200
+ disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, cb: (err: any, data?: DisassociateMulticastGroupFromFuotaTaskCommandOutput) => void): void;
201
+ disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateMulticastGroupFromFuotaTaskCommandOutput) => void): void;
202
+
203
+ disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromFuotaTaskCommandOutput>;
204
+ disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromFuotaTaskCommandOutput) => void): void;
205
+ disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromFuotaTaskCommandOutput) => void): void;
206
+
207
+ disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
208
+ disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
209
+ disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
210
+
139
211
  disassociateWirelessDeviceFromThing(args: DisassociateWirelessDeviceFromThingCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromThingCommandOutput>;
140
212
  disassociateWirelessDeviceFromThing(args: DisassociateWirelessDeviceFromThingCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromThingCommandOutput) => void): void;
141
213
  disassociateWirelessDeviceFromThing(args: DisassociateWirelessDeviceFromThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromThingCommandOutput) => void): void;
@@ -156,14 +228,34 @@ export declare class IoTWireless extends IoTWirelessClient {
156
228
  getDeviceProfile(args: GetDeviceProfileCommandInput, cb: (err: any, data?: GetDeviceProfileCommandOutput) => void): void;
157
229
  getDeviceProfile(args: GetDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceProfileCommandOutput) => void): void;
158
230
 
231
+ getFuotaTask(args: GetFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetFuotaTaskCommandOutput>;
232
+ getFuotaTask(args: GetFuotaTaskCommandInput, cb: (err: any, data?: GetFuotaTaskCommandOutput) => void): void;
233
+ getFuotaTask(args: GetFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFuotaTaskCommandOutput) => void): void;
234
+
159
235
  getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetLogLevelsByResourceTypesCommandOutput>;
160
236
  getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, cb: (err: any, data?: GetLogLevelsByResourceTypesCommandOutput) => void): void;
161
237
  getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLogLevelsByResourceTypesCommandOutput) => void): void;
162
238
 
239
+ getMulticastGroup(args: GetMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetMulticastGroupCommandOutput>;
240
+ getMulticastGroup(args: GetMulticastGroupCommandInput, cb: (err: any, data?: GetMulticastGroupCommandOutput) => void): void;
241
+ getMulticastGroup(args: GetMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupCommandOutput) => void): void;
242
+
243
+ getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetMulticastGroupSessionCommandOutput>;
244
+ getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
245
+ getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
246
+
247
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
248
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
249
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
250
+
163
251
  getPartnerAccount(args: GetPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetPartnerAccountCommandOutput>;
164
252
  getPartnerAccount(args: GetPartnerAccountCommandInput, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
165
253
  getPartnerAccount(args: GetPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
166
254
 
255
+ getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceEventConfigurationCommandOutput>;
256
+ getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, cb: (err: any, data?: GetResourceEventConfigurationCommandOutput) => void): void;
257
+ getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceEventConfigurationCommandOutput) => void): void;
258
+
167
259
  getResourceLogLevel(args: GetResourceLogLevelCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceLogLevelCommandOutput>;
168
260
  getResourceLogLevel(args: GetResourceLogLevelCommandInput, cb: (err: any, data?: GetResourceLogLevelCommandOutput) => void): void;
169
261
  getResourceLogLevel(args: GetResourceLogLevelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceLogLevelCommandOutput) => void): void;
@@ -216,6 +308,18 @@ export declare class IoTWireless extends IoTWirelessClient {
216
308
  listDeviceProfiles(args: ListDeviceProfilesCommandInput, cb: (err: any, data?: ListDeviceProfilesCommandOutput) => void): void;
217
309
  listDeviceProfiles(args: ListDeviceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceProfilesCommandOutput) => void): void;
218
310
 
311
+ listFuotaTasks(args: ListFuotaTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListFuotaTasksCommandOutput>;
312
+ listFuotaTasks(args: ListFuotaTasksCommandInput, cb: (err: any, data?: ListFuotaTasksCommandOutput) => void): void;
313
+ listFuotaTasks(args: ListFuotaTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFuotaTasksCommandOutput) => void): void;
314
+
315
+ listMulticastGroups(args: ListMulticastGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListMulticastGroupsCommandOutput>;
316
+ listMulticastGroups(args: ListMulticastGroupsCommandInput, cb: (err: any, data?: ListMulticastGroupsCommandOutput) => void): void;
317
+ listMulticastGroups(args: ListMulticastGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMulticastGroupsCommandOutput) => void): void;
318
+
319
+ listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
320
+ listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, cb: (err: any, data?: ListMulticastGroupsByFuotaTaskCommandOutput) => void): void;
321
+ listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMulticastGroupsByFuotaTaskCommandOutput) => void): void;
322
+
219
323
  listPartnerAccounts(args: ListPartnerAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListPartnerAccountsCommandOutput>;
220
324
  listPartnerAccounts(args: ListPartnerAccountsCommandInput, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
221
325
  listPartnerAccounts(args: ListPartnerAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
@@ -252,10 +356,30 @@ export declare class IoTWireless extends IoTWirelessClient {
252
356
  resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, cb: (err: any, data?: ResetResourceLogLevelCommandOutput) => void): void;
253
357
  resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetResourceLogLevelCommandOutput) => void): void;
254
358
 
359
+ sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<SendDataToMulticastGroupCommandOutput>;
360
+ sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, cb: (err: any, data?: SendDataToMulticastGroupCommandOutput) => void): void;
361
+ sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDataToMulticastGroupCommandOutput) => void): void;
362
+
255
363
  sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<SendDataToWirelessDeviceCommandOutput>;
256
364
  sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, cb: (err: any, data?: SendDataToWirelessDeviceCommandOutput) => void): void;
257
365
  sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDataToWirelessDeviceCommandOutput) => void): void;
258
366
 
367
+ startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput>;
368
+ startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, cb: (err: any, data?: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
369
+ startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
370
+
371
+ startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
372
+ startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, cb: (err: any, data?: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
373
+ startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
374
+
375
+ startFuotaTask(args: StartFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartFuotaTaskCommandOutput>;
376
+ startFuotaTask(args: StartFuotaTaskCommandInput, cb: (err: any, data?: StartFuotaTaskCommandOutput) => void): void;
377
+ startFuotaTask(args: StartFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFuotaTaskCommandOutput) => void): void;
378
+
379
+ startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<StartMulticastGroupSessionCommandOutput>;
380
+ startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, cb: (err: any, data?: StartMulticastGroupSessionCommandOutput) => void): void;
381
+ startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMulticastGroupSessionCommandOutput) => void): void;
382
+
259
383
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
260
384
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
261
385
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
@@ -272,14 +396,30 @@ export declare class IoTWireless extends IoTWirelessClient {
272
396
  updateDestination(args: UpdateDestinationCommandInput, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
273
397
  updateDestination(args: UpdateDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
274
398
 
399
+ updateFuotaTask(args: UpdateFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFuotaTaskCommandOutput>;
400
+ updateFuotaTask(args: UpdateFuotaTaskCommandInput, cb: (err: any, data?: UpdateFuotaTaskCommandOutput) => void): void;
401
+ updateFuotaTask(args: UpdateFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFuotaTaskCommandOutput) => void): void;
402
+
275
403
  updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
276
404
  updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, cb: (err: any, data?: UpdateLogLevelsByResourceTypesCommandOutput) => void): void;
277
405
  updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLogLevelsByResourceTypesCommandOutput) => void): void;
278
406
 
407
+ updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMulticastGroupCommandOutput>;
408
+ updateMulticastGroup(args: UpdateMulticastGroupCommandInput, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
409
+ updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
410
+
411
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
412
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
413
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
414
+
279
415
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePartnerAccountCommandOutput>;
280
416
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
281
417
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
282
418
 
419
+ updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceEventConfigurationCommandOutput>;
420
+ updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, cb: (err: any, data?: UpdateResourceEventConfigurationCommandOutput) => void): void;
421
+ updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceEventConfigurationCommandOutput) => void): void;
422
+
283
423
  updateWirelessDevice(args: UpdateWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWirelessDeviceCommandOutput>;
284
424
  updateWirelessDevice(args: UpdateWirelessDeviceCommandInput, cb: (err: any, data?: UpdateWirelessDeviceCommandOutput) => void): void;
285
425
  updateWirelessDevice(args: UpdateWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWirelessDeviceCommandOutput) => void): void;
@@ -7,11 +7,17 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput } from "./commands/AssociateAwsAccountWithPartnerAccountCommand";
10
+ import { AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput } from "./commands/AssociateMulticastGroupWithFuotaTaskCommand";
11
+ import { AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput } from "./commands/AssociateWirelessDeviceWithFuotaTaskCommand";
12
+ import { AssociateWirelessDeviceWithMulticastGroupCommandInput, AssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/AssociateWirelessDeviceWithMulticastGroupCommand";
10
13
  import { AssociateWirelessDeviceWithThingCommandInput, AssociateWirelessDeviceWithThingCommandOutput } from "./commands/AssociateWirelessDeviceWithThingCommand";
11
14
  import { AssociateWirelessGatewayWithCertificateCommandInput, AssociateWirelessGatewayWithCertificateCommandOutput } from "./commands/AssociateWirelessGatewayWithCertificateCommand";
12
15
  import { AssociateWirelessGatewayWithThingCommandInput, AssociateWirelessGatewayWithThingCommandOutput } from "./commands/AssociateWirelessGatewayWithThingCommand";
16
+ import { CancelMulticastGroupSessionCommandInput, CancelMulticastGroupSessionCommandOutput } from "./commands/CancelMulticastGroupSessionCommand";
13
17
  import { CreateDestinationCommandInput, CreateDestinationCommandOutput } from "./commands/CreateDestinationCommand";
14
18
  import { CreateDeviceProfileCommandInput, CreateDeviceProfileCommandOutput } from "./commands/CreateDeviceProfileCommand";
19
+ import { CreateFuotaTaskCommandInput, CreateFuotaTaskCommandOutput } from "./commands/CreateFuotaTaskCommand";
20
+ import { CreateMulticastGroupCommandInput, CreateMulticastGroupCommandOutput } from "./commands/CreateMulticastGroupCommand";
15
21
  import { CreateServiceProfileCommandInput, CreateServiceProfileCommandOutput } from "./commands/CreateServiceProfileCommand";
16
22
  import { CreateWirelessDeviceCommandInput, CreateWirelessDeviceCommandOutput } from "./commands/CreateWirelessDeviceCommand";
17
23
  import { CreateWirelessGatewayCommandInput, CreateWirelessGatewayCommandOutput } from "./commands/CreateWirelessGatewayCommand";
@@ -19,19 +25,29 @@ import { CreateWirelessGatewayTaskCommandInput, CreateWirelessGatewayTaskCommand
19
25
  import { CreateWirelessGatewayTaskDefinitionCommandInput, CreateWirelessGatewayTaskDefinitionCommandOutput } from "./commands/CreateWirelessGatewayTaskDefinitionCommand";
20
26
  import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from "./commands/DeleteDestinationCommand";
21
27
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
28
+ import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
29
+ import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
22
30
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
23
31
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
24
32
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
25
33
  import { DeleteWirelessGatewayTaskCommandInput, DeleteWirelessGatewayTaskCommandOutput } from "./commands/DeleteWirelessGatewayTaskCommand";
26
34
  import { DeleteWirelessGatewayTaskDefinitionCommandInput, DeleteWirelessGatewayTaskDefinitionCommandOutput } from "./commands/DeleteWirelessGatewayTaskDefinitionCommand";
27
35
  import { DisassociateAwsAccountFromPartnerAccountCommandInput, DisassociateAwsAccountFromPartnerAccountCommandOutput } from "./commands/DisassociateAwsAccountFromPartnerAccountCommand";
36
+ import { DisassociateMulticastGroupFromFuotaTaskCommandInput, DisassociateMulticastGroupFromFuotaTaskCommandOutput } from "./commands/DisassociateMulticastGroupFromFuotaTaskCommand";
37
+ import { DisassociateWirelessDeviceFromFuotaTaskCommandInput, DisassociateWirelessDeviceFromFuotaTaskCommandOutput } from "./commands/DisassociateWirelessDeviceFromFuotaTaskCommand";
38
+ import { DisassociateWirelessDeviceFromMulticastGroupCommandInput, DisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/DisassociateWirelessDeviceFromMulticastGroupCommand";
28
39
  import { DisassociateWirelessDeviceFromThingCommandInput, DisassociateWirelessDeviceFromThingCommandOutput } from "./commands/DisassociateWirelessDeviceFromThingCommand";
29
40
  import { DisassociateWirelessGatewayFromCertificateCommandInput, DisassociateWirelessGatewayFromCertificateCommandOutput } from "./commands/DisassociateWirelessGatewayFromCertificateCommand";
30
41
  import { DisassociateWirelessGatewayFromThingCommandInput, DisassociateWirelessGatewayFromThingCommandOutput } from "./commands/DisassociateWirelessGatewayFromThingCommand";
31
42
  import { GetDestinationCommandInput, GetDestinationCommandOutput } from "./commands/GetDestinationCommand";
32
43
  import { GetDeviceProfileCommandInput, GetDeviceProfileCommandOutput } from "./commands/GetDeviceProfileCommand";
44
+ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/GetFuotaTaskCommand";
33
45
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
46
+ import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
47
+ import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
48
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
34
49
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
50
+ import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
35
51
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
36
52
  import { GetServiceEndpointCommandInput, GetServiceEndpointCommandOutput } from "./commands/GetServiceEndpointCommand";
37
53
  import { GetServiceProfileCommandInput, GetServiceProfileCommandOutput } from "./commands/GetServiceProfileCommand";
@@ -45,6 +61,9 @@ import { GetWirelessGatewayTaskCommandInput, GetWirelessGatewayTaskCommandOutput
45
61
  import { GetWirelessGatewayTaskDefinitionCommandInput, GetWirelessGatewayTaskDefinitionCommandOutput } from "./commands/GetWirelessGatewayTaskDefinitionCommand";
46
62
  import { ListDestinationsCommandInput, ListDestinationsCommandOutput } from "./commands/ListDestinationsCommand";
47
63
  import { ListDeviceProfilesCommandInput, ListDeviceProfilesCommandOutput } from "./commands/ListDeviceProfilesCommand";
64
+ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./commands/ListFuotaTasksCommand";
65
+ import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
66
+ import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
48
67
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
49
68
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
50
69
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
@@ -54,17 +73,26 @@ import { ListWirelessGatewayTaskDefinitionsCommandInput, ListWirelessGatewayTask
54
73
  import { PutResourceLogLevelCommandInput, PutResourceLogLevelCommandOutput } from "./commands/PutResourceLogLevelCommand";
55
74
  import { ResetAllResourceLogLevelsCommandInput, ResetAllResourceLogLevelsCommandOutput } from "./commands/ResetAllResourceLogLevelsCommand";
56
75
  import { ResetResourceLogLevelCommandInput, ResetResourceLogLevelCommandOutput } from "./commands/ResetResourceLogLevelCommand";
76
+ import { SendDataToMulticastGroupCommandInput, SendDataToMulticastGroupCommandOutput } from "./commands/SendDataToMulticastGroupCommand";
57
77
  import { SendDataToWirelessDeviceCommandInput, SendDataToWirelessDeviceCommandOutput } from "./commands/SendDataToWirelessDeviceCommand";
78
+ import { StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand";
79
+ import { StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand";
80
+ import { StartFuotaTaskCommandInput, StartFuotaTaskCommandOutput } from "./commands/StartFuotaTaskCommand";
81
+ import { StartMulticastGroupSessionCommandInput, StartMulticastGroupSessionCommandOutput } from "./commands/StartMulticastGroupSessionCommand";
58
82
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
59
83
  import { TestWirelessDeviceCommandInput, TestWirelessDeviceCommandOutput } from "./commands/TestWirelessDeviceCommand";
60
84
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
61
85
  import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from "./commands/UpdateDestinationCommand";
86
+ import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
62
87
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
88
+ import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
89
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
63
90
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
91
+ import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
64
92
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
65
93
  import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
66
- export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetLogLevelsByResourceTypesCommandInput | GetPartnerAccountCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListPartnerAccountsCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToWirelessDeviceCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdatePartnerAccountCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
67
- export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetPartnerAccountCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListPartnerAccountsCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToWirelessDeviceCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdatePartnerAccountCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
94
+ export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetNetworkAnalyzerConfigurationCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdateNetworkAnalyzerConfigurationCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
95
+ export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetNetworkAnalyzerConfigurationCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdateNetworkAnalyzerConfigurationCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
68
96
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
69
97
 
70
98
  requestHandler?: __HttpHandler;
@@ -95,6 +123,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
95
123
 
96
124
  logger?: __Logger;
97
125
 
126
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
127
+
128
+ useFipsEndpoint?: boolean | __Provider<boolean>;
129
+
98
130
  serviceId?: string;
99
131
 
100
132
  region?: string | __Provider<string>;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { AssociateMulticastGroupWithFuotaTaskRequest, AssociateMulticastGroupWithFuotaTaskResponse } from "../models/models_0";
5
+ export interface AssociateMulticastGroupWithFuotaTaskCommandInput extends AssociateMulticastGroupWithFuotaTaskRequest {
6
+ }
7
+ export interface AssociateMulticastGroupWithFuotaTaskCommandOutput extends AssociateMulticastGroupWithFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AssociateMulticastGroupWithFuotaTaskCommand extends $Command<AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: AssociateMulticastGroupWithFuotaTaskCommandInput;
12
+ constructor(input: AssociateMulticastGroupWithFuotaTaskCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { AssociateWirelessDeviceWithFuotaTaskRequest, AssociateWirelessDeviceWithFuotaTaskResponse } from "../models/models_0";
5
+ export interface AssociateWirelessDeviceWithFuotaTaskCommandInput extends AssociateWirelessDeviceWithFuotaTaskRequest {
6
+ }
7
+ export interface AssociateWirelessDeviceWithFuotaTaskCommandOutput extends AssociateWirelessDeviceWithFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AssociateWirelessDeviceWithFuotaTaskCommand extends $Command<AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: AssociateWirelessDeviceWithFuotaTaskCommandInput;
12
+ constructor(input: AssociateWirelessDeviceWithFuotaTaskCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { AssociateWirelessDeviceWithMulticastGroupRequest, AssociateWirelessDeviceWithMulticastGroupResponse } from "../models/models_0";
5
+ export interface AssociateWirelessDeviceWithMulticastGroupCommandInput extends AssociateWirelessDeviceWithMulticastGroupRequest {
6
+ }
7
+ export interface AssociateWirelessDeviceWithMulticastGroupCommandOutput extends AssociateWirelessDeviceWithMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AssociateWirelessDeviceWithMulticastGroupCommand extends $Command<AssociateWirelessDeviceWithMulticastGroupCommandInput, AssociateWirelessDeviceWithMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: AssociateWirelessDeviceWithMulticastGroupCommandInput;
12
+ constructor(input: AssociateWirelessDeviceWithMulticastGroupCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateWirelessDeviceWithMulticastGroupCommandInput, AssociateWirelessDeviceWithMulticastGroupCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { CancelMulticastGroupSessionRequest, CancelMulticastGroupSessionResponse } from "../models/models_0";
5
+ export interface CancelMulticastGroupSessionCommandInput extends CancelMulticastGroupSessionRequest {
6
+ }
7
+ export interface CancelMulticastGroupSessionCommandOutput extends CancelMulticastGroupSessionResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CancelMulticastGroupSessionCommand extends $Command<CancelMulticastGroupSessionCommandInput, CancelMulticastGroupSessionCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: CancelMulticastGroupSessionCommandInput;
12
+ constructor(input: CancelMulticastGroupSessionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelMulticastGroupSessionCommandInput, CancelMulticastGroupSessionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { CreateFuotaTaskRequest, CreateFuotaTaskResponse } from "../models/models_0";
5
+ export interface CreateFuotaTaskCommandInput extends CreateFuotaTaskRequest {
6
+ }
7
+ export interface CreateFuotaTaskCommandOutput extends CreateFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateFuotaTaskCommand extends $Command<CreateFuotaTaskCommandInput, CreateFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: CreateFuotaTaskCommandInput;
12
+ constructor(input: CreateFuotaTaskCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFuotaTaskCommandInput, CreateFuotaTaskCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { CreateMulticastGroupRequest, CreateMulticastGroupResponse } from "../models/models_0";
5
+ export interface CreateMulticastGroupCommandInput extends CreateMulticastGroupRequest {
6
+ }
7
+ export interface CreateMulticastGroupCommandOutput extends CreateMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateMulticastGroupCommand extends $Command<CreateMulticastGroupCommandInput, CreateMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: CreateMulticastGroupCommandInput;
12
+ constructor(input: CreateMulticastGroupCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMulticastGroupCommandInput, CreateMulticastGroupCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { DeleteFuotaTaskRequest, DeleteFuotaTaskResponse } from "../models/models_0";
5
+ export interface DeleteFuotaTaskCommandInput extends DeleteFuotaTaskRequest {
6
+ }
7
+ export interface DeleteFuotaTaskCommandOutput extends DeleteFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteFuotaTaskCommand extends $Command<DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: DeleteFuotaTaskCommandInput;
12
+ constructor(input: DeleteFuotaTaskCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { DeleteMulticastGroupRequest, DeleteMulticastGroupResponse } from "../models/models_0";
5
+ export interface DeleteMulticastGroupCommandInput extends DeleteMulticastGroupRequest {
6
+ }
7
+ export interface DeleteMulticastGroupCommandOutput extends DeleteMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteMulticastGroupCommand extends $Command<DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: DeleteMulticastGroupCommandInput;
12
+ constructor(input: DeleteMulticastGroupCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { DisassociateMulticastGroupFromFuotaTaskRequest, DisassociateMulticastGroupFromFuotaTaskResponse } from "../models/models_0";
5
+ export interface DisassociateMulticastGroupFromFuotaTaskCommandInput extends DisassociateMulticastGroupFromFuotaTaskRequest {
6
+ }
7
+ export interface DisassociateMulticastGroupFromFuotaTaskCommandOutput extends DisassociateMulticastGroupFromFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DisassociateMulticastGroupFromFuotaTaskCommand extends $Command<DisassociateMulticastGroupFromFuotaTaskCommandInput, DisassociateMulticastGroupFromFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: DisassociateMulticastGroupFromFuotaTaskCommandInput;
12
+ constructor(input: DisassociateMulticastGroupFromFuotaTaskCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateMulticastGroupFromFuotaTaskCommandInput, DisassociateMulticastGroupFromFuotaTaskCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }