@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 { GetFuotaTaskRequest, GetFuotaTaskResponse } from "../models/models_0";
5
+ export interface GetFuotaTaskCommandInput extends GetFuotaTaskRequest {
6
+ }
7
+ export interface GetFuotaTaskCommandOutput extends GetFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Gets information about 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, GetFuotaTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, GetFuotaTaskCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new GetFuotaTaskCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetFuotaTaskCommandInput} for command's `input` shape.
22
+ * @see {@link GetFuotaTaskCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetFuotaTaskCommand extends $Command<GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: GetFuotaTaskCommandInput;
28
+ constructor(input: GetFuotaTaskCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -21,7 +21,7 @@ export interface GetLogLevelsByResourceTypesCommandOutput extends GetLogLevelsBy
21
21
  *
22
22
  * @see {@link GetLogLevelsByResourceTypesCommandInput} for command's `input` shape.
23
23
  * @see {@link GetLogLevelsByResourceTypesCommandOutput} 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 GetLogLevelsByResourceTypesCommand extends $Command<GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput, 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 { GetMulticastGroupRequest, GetMulticastGroupResponse } from "../models/models_0";
5
+ export interface GetMulticastGroupCommandInput extends GetMulticastGroupRequest {
6
+ }
7
+ export interface GetMulticastGroupCommandOutput extends GetMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Gets information about 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, GetMulticastGroupCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, GetMulticastGroupCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new GetMulticastGroupCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetMulticastGroupCommandInput} for command's `input` shape.
22
+ * @see {@link GetMulticastGroupCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetMulticastGroupCommand extends $Command<GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: GetMulticastGroupCommandInput;
28
+ constructor(input: GetMulticastGroupCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput>;
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 { GetMulticastGroupSessionRequest, GetMulticastGroupSessionResponse } from "../models/models_0";
5
+ export interface GetMulticastGroupSessionCommandInput extends GetMulticastGroupSessionRequest {
6
+ }
7
+ export interface GetMulticastGroupSessionCommandOutput extends GetMulticastGroupSessionResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Gets information about 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, GetMulticastGroupSessionCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, GetMulticastGroupSessionCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new GetMulticastGroupSessionCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetMulticastGroupSessionCommandInput} for command's `input` shape.
22
+ * @see {@link GetMulticastGroupSessionCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetMulticastGroupSessionCommand extends $Command<GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: GetMulticastGroupSessionCommandInput;
28
+ constructor(input: GetMulticastGroupSessionCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput>;
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 { GetNetworkAnalyzerConfigurationRequest, GetNetworkAnalyzerConfigurationResponse } from "../models/models_0";
5
+ export interface GetNetworkAnalyzerConfigurationCommandInput extends GetNetworkAnalyzerConfigurationRequest {
6
+ }
7
+ export interface GetNetworkAnalyzerConfigurationCommandOutput extends GetNetworkAnalyzerConfigurationResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Get 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, GetNetworkAnalyzerConfigurationCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, GetNetworkAnalyzerConfigurationCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new GetNetworkAnalyzerConfigurationCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetNetworkAnalyzerConfigurationCommandInput} for command's `input` shape.
22
+ * @see {@link GetNetworkAnalyzerConfigurationCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetNetworkAnalyzerConfigurationCommand extends $Command<GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: GetNetworkAnalyzerConfigurationCommandInput;
28
+ constructor(input: GetNetworkAnalyzerConfigurationCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface GetPartnerAccountCommandOutput extends GetPartnerAccountRespons
20
20
  *
21
21
  * @see {@link GetPartnerAccountCommandInput} for command's `input` shape.
22
22
  * @see {@link GetPartnerAccountCommandOutput} 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 GetPartnerAccountCommand extends $Command<GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput, 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 { GetResourceEventConfigurationRequest, GetResourceEventConfigurationResponse } from "../models/models_0";
5
+ export interface GetResourceEventConfigurationCommandInput extends GetResourceEventConfigurationRequest {
6
+ }
7
+ export interface GetResourceEventConfigurationCommandOutput extends GetResourceEventConfigurationResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Get 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, GetResourceEventConfigurationCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, GetResourceEventConfigurationCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new GetResourceEventConfigurationCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetResourceEventConfigurationCommandInput} for command's `input` shape.
22
+ * @see {@link GetResourceEventConfigurationCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetResourceEventConfigurationCommand extends $Command<GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: GetResourceEventConfigurationCommandInput;
28
+ constructor(input: GetResourceEventConfigurationCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -21,7 +21,7 @@ export interface GetResourceLogLevelCommandOutput extends GetResourceLogLevelRes
21
21
  *
22
22
  * @see {@link GetResourceLogLevelCommandInput} for command's `input` shape.
23
23
  * @see {@link GetResourceLogLevelCommandOutput} 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 GetResourceLogLevelCommand extends $Command<GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetServiceEndpointCommandOutput extends GetServiceEndpointRespo
20
20
  *
21
21
  * @see {@link GetServiceEndpointCommandInput} for command's `input` shape.
22
22
  * @see {@link GetServiceEndpointCommandOutput} 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 GetServiceEndpointCommand extends $Command<GetServiceEndpointCommandInput, GetServiceEndpointCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetServiceProfileCommandOutput extends GetServiceProfileRespons
20
20
  *
21
21
  * @see {@link GetServiceProfileCommandInput} for command's `input` shape.
22
22
  * @see {@link GetServiceProfileCommandOutput} 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 GetServiceProfileCommand extends $Command<GetServiceProfileCommandInput, GetServiceProfileCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessDeviceCommandOutput extends GetWirelessDeviceRespons
20
20
  *
21
21
  * @see {@link GetWirelessDeviceCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessDeviceCommandOutput} 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 GetWirelessDeviceCommand extends $Command<GetWirelessDeviceCommandInput, GetWirelessDeviceCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessDeviceStatisticsCommandOutput extends GetWirelessDev
20
20
  *
21
21
  * @see {@link GetWirelessDeviceStatisticsCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessDeviceStatisticsCommandOutput} 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 GetWirelessDeviceStatisticsCommand extends $Command<GetWirelessDeviceStatisticsCommandInput, GetWirelessDeviceStatisticsCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessGatewayCertificateCommandOutput extends GetWirelessG
20
20
  *
21
21
  * @see {@link GetWirelessGatewayCertificateCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessGatewayCertificateCommandOutput} 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 GetWirelessGatewayCertificateCommand extends $Command<GetWirelessGatewayCertificateCommandInput, GetWirelessGatewayCertificateCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessGatewayCommandOutput extends GetWirelessGatewayRespo
20
20
  *
21
21
  * @see {@link GetWirelessGatewayCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessGatewayCommandOutput} 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 GetWirelessGatewayCommand extends $Command<GetWirelessGatewayCommandInput, GetWirelessGatewayCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessGatewayFirmwareInformationCommandOutput extends GetW
20
20
  *
21
21
  * @see {@link GetWirelessGatewayFirmwareInformationCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessGatewayFirmwareInformationCommandOutput} 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 GetWirelessGatewayFirmwareInformationCommand extends $Command<GetWirelessGatewayFirmwareInformationCommandInput, GetWirelessGatewayFirmwareInformationCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessGatewayStatisticsCommandOutput extends GetWirelessGa
20
20
  *
21
21
  * @see {@link GetWirelessGatewayStatisticsCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessGatewayStatisticsCommandOutput} 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 GetWirelessGatewayStatisticsCommand extends $Command<GetWirelessGatewayStatisticsCommandInput, GetWirelessGatewayStatisticsCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessGatewayTaskCommandOutput extends GetWirelessGatewayT
20
20
  *
21
21
  * @see {@link GetWirelessGatewayTaskCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessGatewayTaskCommandOutput} 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 GetWirelessGatewayTaskCommand extends $Command<GetWirelessGatewayTaskCommandInput, GetWirelessGatewayTaskCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetWirelessGatewayTaskDefinitionCommandOutput extends GetWirele
20
20
  *
21
21
  * @see {@link GetWirelessGatewayTaskDefinitionCommandInput} for command's `input` shape.
22
22
  * @see {@link GetWirelessGatewayTaskDefinitionCommandOutput} 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 GetWirelessGatewayTaskDefinitionCommand extends $Command<GetWirelessGatewayTaskDefinitionCommandInput, GetWirelessGatewayTaskDefinitionCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListDestinationsCommandOutput extends ListDestinationsResponse,
20
20
  *
21
21
  * @see {@link ListDestinationsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListDestinationsCommandOutput} 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 ListDestinationsCommand extends $Command<ListDestinationsCommandInput, ListDestinationsCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListDeviceProfilesCommandOutput extends ListDeviceProfilesRespo
20
20
  *
21
21
  * @see {@link ListDeviceProfilesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListDeviceProfilesCommandOutput} 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 ListDeviceProfilesCommand extends $Command<ListDeviceProfilesCommandInput, ListDeviceProfilesCommandOutput, 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 { ListFuotaTasksRequest, ListFuotaTasksResponse } from "../models/models_0";
5
+ export interface ListFuotaTasksCommandInput extends ListFuotaTasksRequest {
6
+ }
7
+ export interface ListFuotaTasksCommandOutput extends ListFuotaTasksResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Lists the FUOTA tasks registered to your AWS account.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, ListFuotaTasksCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, ListFuotaTasksCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new ListFuotaTasksCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListFuotaTasksCommandInput} for command's `input` shape.
22
+ * @see {@link ListFuotaTasksCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListFuotaTasksCommand extends $Command<ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: ListFuotaTasksCommandInput;
28
+ constructor(input: ListFuotaTasksCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput>;
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 { ListMulticastGroupsByFuotaTaskRequest, ListMulticastGroupsByFuotaTaskResponse } from "../models/models_0";
5
+ export interface ListMulticastGroupsByFuotaTaskCommandInput extends ListMulticastGroupsByFuotaTaskRequest {
6
+ }
7
+ export interface ListMulticastGroupsByFuotaTaskCommandOutput extends ListMulticastGroupsByFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>List all multicast groups associated with 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, ListMulticastGroupsByFuotaTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, ListMulticastGroupsByFuotaTaskCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new ListMulticastGroupsByFuotaTaskCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListMulticastGroupsByFuotaTaskCommandInput} for command's `input` shape.
22
+ * @see {@link ListMulticastGroupsByFuotaTaskCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListMulticastGroupsByFuotaTaskCommand extends $Command<ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: ListMulticastGroupsByFuotaTaskCommandInput;
28
+ constructor(input: ListMulticastGroupsByFuotaTaskCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput>;
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 { ListMulticastGroupsRequest, ListMulticastGroupsResponse } from "../models/models_0";
5
+ export interface ListMulticastGroupsCommandInput extends ListMulticastGroupsRequest {
6
+ }
7
+ export interface ListMulticastGroupsCommandOutput extends ListMulticastGroupsResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Lists the multicast groups registered to your AWS account.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, ListMulticastGroupsCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, ListMulticastGroupsCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new ListMulticastGroupsCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListMulticastGroupsCommandInput} for command's `input` shape.
22
+ * @see {@link ListMulticastGroupsCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListMulticastGroupsCommand extends $Command<ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: ListMulticastGroupsCommandInput;
28
+ constructor(input: ListMulticastGroupsCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface ListPartnerAccountsCommandOutput extends ListPartnerAccountsRes
20
20
  *
21
21
  * @see {@link ListPartnerAccountsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListPartnerAccountsCommandOutput} 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 ListPartnerAccountsCommand extends $Command<ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListServiceProfilesCommandOutput extends ListServiceProfilesRes
20
20
  *
21
21
  * @see {@link ListServiceProfilesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListServiceProfilesCommandOutput} 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 ListServiceProfilesCommand extends $Command<ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
20
20
  *
21
21
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTagsForResourceCommandOutput} 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 ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListWirelessDevicesCommandOutput extends ListWirelessDevicesRes
20
20
  *
21
21
  * @see {@link ListWirelessDevicesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListWirelessDevicesCommandOutput} 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 ListWirelessDevicesCommand extends $Command<ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListWirelessGatewayTaskDefinitionsCommandOutput extends ListWir
20
20
  *
21
21
  * @see {@link ListWirelessGatewayTaskDefinitionsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListWirelessGatewayTaskDefinitionsCommandOutput} 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 ListWirelessGatewayTaskDefinitionsCommand extends $Command<ListWirelessGatewayTaskDefinitionsCommandInput, ListWirelessGatewayTaskDefinitionsCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListWirelessGatewaysCommandOutput extends ListWirelessGatewaysR
20
20
  *
21
21
  * @see {@link ListWirelessGatewaysCommandInput} for command's `input` shape.
22
22
  * @see {@link ListWirelessGatewaysCommandOutput} 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 ListWirelessGatewaysCommand extends $Command<ListWirelessGatewaysCommandInput, ListWirelessGatewaysCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface PutResourceLogLevelCommandOutput extends PutResourceLogLevelRes
21
21
  *
22
22
  * @see {@link PutResourceLogLevelCommandInput} for command's `input` shape.
23
23
  * @see {@link PutResourceLogLevelCommandOutput} 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 PutResourceLogLevelCommand extends $Command<PutResourceLogLevelCommandInput, PutResourceLogLevelCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ResetAllResourceLogLevelsCommandOutput extends ResetAllResource
20
20
  *
21
21
  * @see {@link ResetAllResourceLogLevelsCommandInput} for command's `input` shape.
22
22
  * @see {@link ResetAllResourceLogLevelsCommandOutput} 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 ResetAllResourceLogLevelsCommand extends $Command<ResetAllResourceLogLevelsCommandInput, ResetAllResourceLogLevelsCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface ResetResourceLogLevelCommandOutput extends ResetResourceLogLeve
21
21
  *
22
22
  * @see {@link ResetResourceLogLevelCommandInput} for command's `input` shape.
23
23
  * @see {@link ResetResourceLogLevelCommandOutput} 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 ResetResourceLogLevelCommand extends $Command<ResetResourceLogLevelCommandInput, ResetResourceLogLevelCommandOutput, 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 { SendDataToMulticastGroupRequest, SendDataToMulticastGroupResponse } from "../models/models_0";
5
+ export interface SendDataToMulticastGroupCommandInput extends SendDataToMulticastGroupRequest {
6
+ }
7
+ export interface SendDataToMulticastGroupCommandOutput extends SendDataToMulticastGroupResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Sends the specified data to 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, SendDataToMulticastGroupCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, SendDataToMulticastGroupCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new SendDataToMulticastGroupCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link SendDataToMulticastGroupCommandInput} for command's `input` shape.
22
+ * @see {@link SendDataToMulticastGroupCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class SendDataToMulticastGroupCommand extends $Command<SendDataToMulticastGroupCommandInput, SendDataToMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: SendDataToMulticastGroupCommandInput;
28
+ constructor(input: SendDataToMulticastGroupCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendDataToMulticastGroupCommandInput, SendDataToMulticastGroupCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface SendDataToWirelessDeviceCommandOutput extends SendDataToWireles
20
20
  *
21
21
  * @see {@link SendDataToWirelessDeviceCommandInput} for command's `input` shape.
22
22
  * @see {@link SendDataToWirelessDeviceCommandOutput} 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 SendDataToWirelessDeviceCommand extends $Command<SendDataToWirelessDeviceCommandInput, SendDataToWirelessDeviceCommandOutput, IoTWirelessClientResolvedConfig> {