@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
@@ -0,0 +1,35 @@
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 { StartBulkAssociateWirelessDeviceWithMulticastGroupRequest, StartBulkAssociateWirelessDeviceWithMulticastGroupResponse } from "../models/models_0";
5
+ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput extends StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
6
+ }
7
+ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput extends StartBulkAssociateWirelessDeviceWithMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Starts a bulk association of all qualifying wireless devices with a multicast group.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, StartBulkAssociateWirelessDeviceWithMulticastGroupCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, StartBulkAssociateWirelessDeviceWithMulticastGroupCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new StartBulkAssociateWirelessDeviceWithMulticastGroupCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput} for command's `input` shape.
22
+ * @see {@link StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StartBulkAssociateWirelessDeviceWithMulticastGroupCommand extends $Command<StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput;
28
+ constructor(input: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
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 { StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest, StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse } from "../models/models_0";
5
+ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput extends StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
6
+ }
7
+ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput extends StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Starts a bulk disassociatin of all qualifying wireless devices from a multicast group.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput} for command's `input` shape.
22
+ * @see {@link StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand extends $Command<StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput;
28
+ constructor(input: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
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 { StartFuotaTaskRequest, StartFuotaTaskResponse } from "../models/models_0";
5
+ export interface StartFuotaTaskCommandInput extends StartFuotaTaskRequest {
6
+ }
7
+ export interface StartFuotaTaskCommandOutput extends StartFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Starts a FUOTA task.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, StartFuotaTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, StartFuotaTaskCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new StartFuotaTaskCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StartFuotaTaskCommandInput} for command's `input` shape.
22
+ * @see {@link StartFuotaTaskCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StartFuotaTaskCommand extends $Command<StartFuotaTaskCommandInput, StartFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: StartFuotaTaskCommandInput;
28
+ constructor(input: StartFuotaTaskCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartFuotaTaskCommandInput, StartFuotaTaskCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
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 { StartMulticastGroupSessionRequest, StartMulticastGroupSessionResponse } from "../models/models_0";
5
+ export interface StartMulticastGroupSessionCommandInput extends StartMulticastGroupSessionRequest {
6
+ }
7
+ export interface StartMulticastGroupSessionCommandOutput extends StartMulticastGroupSessionResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Starts a multicast group session.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, StartMulticastGroupSessionCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, StartMulticastGroupSessionCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new StartMulticastGroupSessionCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StartMulticastGroupSessionCommandInput} for command's `input` shape.
22
+ * @see {@link StartMulticastGroupSessionCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StartMulticastGroupSessionCommand extends $Command<StartMulticastGroupSessionCommandInput, StartMulticastGroupSessionCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: StartMulticastGroupSessionCommandInput;
28
+ constructor(input: StartMulticastGroupSessionCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMulticastGroupSessionCommandInput, StartMulticastGroupSessionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
20
20
  *
21
21
  * @see {@link TagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface TestWirelessDeviceCommandOutput extends TestWirelessDeviceRespo
20
20
  *
21
21
  * @see {@link TestWirelessDeviceCommandInput} for command's `input` shape.
22
22
  * @see {@link TestWirelessDeviceCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class TestWirelessDeviceCommand extends $Command<TestWirelessDeviceCommandInput, TestWirelessDeviceCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
20
20
  *
21
21
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationRespons
20
20
  *
21
21
  * @see {@link UpdateDestinationCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateDestinationCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateDestinationCommand extends $Command<UpdateDestinationCommandInput, UpdateDestinationCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -0,0 +1,35 @@
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 { UpdateFuotaTaskRequest, UpdateFuotaTaskResponse } from "../models/models_0";
5
+ export interface UpdateFuotaTaskCommandInput extends UpdateFuotaTaskRequest {
6
+ }
7
+ export interface UpdateFuotaTaskCommandOutput extends UpdateFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates properties of a FUOTA task.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, UpdateFuotaTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, UpdateFuotaTaskCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new UpdateFuotaTaskCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateFuotaTaskCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateFuotaTaskCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateFuotaTaskCommand extends $Command<UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: UpdateFuotaTaskCommandInput;
28
+ constructor(input: UpdateFuotaTaskCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -21,7 +21,7 @@ export interface UpdateLogLevelsByResourceTypesCommandOutput extends UpdateLogLe
21
21
  *
22
22
  * @see {@link UpdateLogLevelsByResourceTypesCommandInput} for command's `input` shape.
23
23
  * @see {@link UpdateLogLevelsByResourceTypesCommandOutput} for command's `response` shape.
24
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class UpdateLogLevelsByResourceTypesCommand extends $Command<UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -0,0 +1,35 @@
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 { UpdateMulticastGroupRequest, UpdateMulticastGroupResponse } from "../models/models_0";
5
+ export interface UpdateMulticastGroupCommandInput extends UpdateMulticastGroupRequest {
6
+ }
7
+ export interface UpdateMulticastGroupCommandOutput extends UpdateMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates properties of a multicast group session.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, UpdateMulticastGroupCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, UpdateMulticastGroupCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new UpdateMulticastGroupCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateMulticastGroupCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateMulticastGroupCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateMulticastGroupCommand extends $Command<UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: UpdateMulticastGroupCommandInput;
28
+ constructor(input: UpdateMulticastGroupCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
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 { UpdateNetworkAnalyzerConfigurationRequest, UpdateNetworkAnalyzerConfigurationResponse } from "../models/models_0";
5
+ export interface UpdateNetworkAnalyzerConfigurationCommandInput extends UpdateNetworkAnalyzerConfigurationRequest {
6
+ }
7
+ export interface UpdateNetworkAnalyzerConfigurationCommandOutput extends UpdateNetworkAnalyzerConfigurationResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Update NetworkAnalyzer configuration.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, UpdateNetworkAnalyzerConfigurationCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, UpdateNetworkAnalyzerConfigurationCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new UpdateNetworkAnalyzerConfigurationCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateNetworkAnalyzerConfigurationCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateNetworkAnalyzerConfigurationCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateNetworkAnalyzerConfigurationCommand extends $Command<UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: UpdateNetworkAnalyzerConfigurationCommandInput;
28
+ constructor(input: UpdateNetworkAnalyzerConfigurationCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface UpdatePartnerAccountCommandOutput extends UpdatePartnerAccountR
20
20
  *
21
21
  * @see {@link UpdatePartnerAccountCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdatePartnerAccountCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdatePartnerAccountCommand extends $Command<UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -0,0 +1,35 @@
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 { UpdateResourceEventConfigurationRequest, UpdateResourceEventConfigurationResponse } from "../models/models_0";
5
+ export interface UpdateResourceEventConfigurationCommandInput extends UpdateResourceEventConfigurationRequest {
6
+ }
7
+ export interface UpdateResourceEventConfigurationCommandOutput extends UpdateResourceEventConfigurationResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Update the event configuration for a particular resource identifier.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, UpdateResourceEventConfigurationCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, UpdateResourceEventConfigurationCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new UpdateResourceEventConfigurationCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateResourceEventConfigurationCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateResourceEventConfigurationCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateResourceEventConfigurationCommand extends $Command<UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: UpdateResourceEventConfigurationCommandInput;
28
+ constructor(input: UpdateResourceEventConfigurationCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface UpdateWirelessDeviceCommandOutput extends UpdateWirelessDeviceR
20
20
  *
21
21
  * @see {@link UpdateWirelessDeviceCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateWirelessDeviceCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateWirelessDeviceCommand extends $Command<UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateWirelessGatewayCommandOutput extends UpdateWirelessGatewa
20
20
  *
21
21
  * @see {@link UpdateWirelessGatewayCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateWirelessGatewayCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateWirelessGatewayCommand extends $Command<UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -1,9 +1,15 @@
1
1
  export * from "./AssociateAwsAccountWithPartnerAccountCommand";
2
+ export * from "./AssociateMulticastGroupWithFuotaTaskCommand";
3
+ export * from "./AssociateWirelessDeviceWithFuotaTaskCommand";
4
+ export * from "./AssociateWirelessDeviceWithMulticastGroupCommand";
2
5
  export * from "./AssociateWirelessDeviceWithThingCommand";
3
6
  export * from "./AssociateWirelessGatewayWithCertificateCommand";
4
7
  export * from "./AssociateWirelessGatewayWithThingCommand";
8
+ export * from "./CancelMulticastGroupSessionCommand";
5
9
  export * from "./CreateDestinationCommand";
6
10
  export * from "./CreateDeviceProfileCommand";
11
+ export * from "./CreateFuotaTaskCommand";
12
+ export * from "./CreateMulticastGroupCommand";
7
13
  export * from "./CreateServiceProfileCommand";
8
14
  export * from "./CreateWirelessDeviceCommand";
9
15
  export * from "./CreateWirelessGatewayCommand";
@@ -11,19 +17,29 @@ export * from "./CreateWirelessGatewayTaskCommand";
11
17
  export * from "./CreateWirelessGatewayTaskDefinitionCommand";
12
18
  export * from "./DeleteDestinationCommand";
13
19
  export * from "./DeleteDeviceProfileCommand";
20
+ export * from "./DeleteFuotaTaskCommand";
21
+ export * from "./DeleteMulticastGroupCommand";
14
22
  export * from "./DeleteServiceProfileCommand";
15
23
  export * from "./DeleteWirelessDeviceCommand";
16
24
  export * from "./DeleteWirelessGatewayCommand";
17
25
  export * from "./DeleteWirelessGatewayTaskCommand";
18
26
  export * from "./DeleteWirelessGatewayTaskDefinitionCommand";
19
27
  export * from "./DisassociateAwsAccountFromPartnerAccountCommand";
28
+ export * from "./DisassociateMulticastGroupFromFuotaTaskCommand";
29
+ export * from "./DisassociateWirelessDeviceFromFuotaTaskCommand";
30
+ export * from "./DisassociateWirelessDeviceFromMulticastGroupCommand";
20
31
  export * from "./DisassociateWirelessDeviceFromThingCommand";
21
32
  export * from "./DisassociateWirelessGatewayFromCertificateCommand";
22
33
  export * from "./DisassociateWirelessGatewayFromThingCommand";
23
34
  export * from "./GetDestinationCommand";
24
35
  export * from "./GetDeviceProfileCommand";
36
+ export * from "./GetFuotaTaskCommand";
25
37
  export * from "./GetLogLevelsByResourceTypesCommand";
38
+ export * from "./GetMulticastGroupCommand";
39
+ export * from "./GetMulticastGroupSessionCommand";
40
+ export * from "./GetNetworkAnalyzerConfigurationCommand";
26
41
  export * from "./GetPartnerAccountCommand";
42
+ export * from "./GetResourceEventConfigurationCommand";
27
43
  export * from "./GetResourceLogLevelCommand";
28
44
  export * from "./GetServiceEndpointCommand";
29
45
  export * from "./GetServiceProfileCommand";
@@ -37,6 +53,9 @@ export * from "./GetWirelessGatewayTaskCommand";
37
53
  export * from "./GetWirelessGatewayTaskDefinitionCommand";
38
54
  export * from "./ListDestinationsCommand";
39
55
  export * from "./ListDeviceProfilesCommand";
56
+ export * from "./ListFuotaTasksCommand";
57
+ export * from "./ListMulticastGroupsByFuotaTaskCommand";
58
+ export * from "./ListMulticastGroupsCommand";
40
59
  export * from "./ListPartnerAccountsCommand";
41
60
  export * from "./ListServiceProfilesCommand";
42
61
  export * from "./ListTagsForResourceCommand";
@@ -46,12 +65,21 @@ export * from "./ListWirelessGatewaysCommand";
46
65
  export * from "./PutResourceLogLevelCommand";
47
66
  export * from "./ResetAllResourceLogLevelsCommand";
48
67
  export * from "./ResetResourceLogLevelCommand";
68
+ export * from "./SendDataToMulticastGroupCommand";
49
69
  export * from "./SendDataToWirelessDeviceCommand";
70
+ export * from "./StartBulkAssociateWirelessDeviceWithMulticastGroupCommand";
71
+ export * from "./StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand";
72
+ export * from "./StartFuotaTaskCommand";
73
+ export * from "./StartMulticastGroupSessionCommand";
50
74
  export * from "./TagResourceCommand";
51
75
  export * from "./TestWirelessDeviceCommand";
52
76
  export * from "./UntagResourceCommand";
53
77
  export * from "./UpdateDestinationCommand";
78
+ export * from "./UpdateFuotaTaskCommand";
54
79
  export * from "./UpdateLogLevelsByResourceTypesCommand";
80
+ export * from "./UpdateMulticastGroupCommand";
81
+ export * from "./UpdateNetworkAnalyzerConfigurationCommand";
55
82
  export * from "./UpdatePartnerAccountCommand";
83
+ export * from "./UpdateResourceEventConfigurationCommand";
56
84
  export * from "./UpdateWirelessDeviceCommand";
57
85
  export * from "./UpdateWirelessGatewayCommand";