@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
package/CHANGELOG.md CHANGED
@@ -3,6 +3,48 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 11/28/2021 ([#3072](https://github.com/aws/aws-sdk-js-v3/issues/3072)) ([2ad1622](https://github.com/aws/aws-sdk-js-v3/commit/2ad1622ba8586b926fe508055211803bb29e3976))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-iot-wireless
20
+
21
+
22
+
23
+
24
+
25
+ # [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
26
+
27
+
28
+ ### Features
29
+
30
+ * **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
31
+
32
+
33
+
34
+
35
+
36
+ # [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
37
+
38
+
39
+ ### Features
40
+
41
+ * **clients:** populate variants in endpoints hashes ([#2974](https://github.com/aws/aws-sdk-js-v3/issues/2974)) ([0dd68ef](https://github.com/aws/aws-sdk-js-v3/commit/0dd68ef8b04ea0e96e43b05a9a10221e433fdf86))
42
+ * **clients:** update clients as of 2021/11/05 ([#2994](https://github.com/aws/aws-sdk-js-v3/issues/2994)) ([f5ecc31](https://github.com/aws/aws-sdk-js-v3/commit/f5ecc3147035a1f3d2d74cfed147999927ea8256))
43
+
44
+
45
+
46
+
47
+
6
48
  # [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
7
49
 
8
50
  **Note:** Version bump only for package @aws-sdk/client-iot-wireless
@@ -2,11 +2,17 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IoTWireless = void 0;
4
4
  const AssociateAwsAccountWithPartnerAccountCommand_1 = require("./commands/AssociateAwsAccountWithPartnerAccountCommand");
5
+ const AssociateMulticastGroupWithFuotaTaskCommand_1 = require("./commands/AssociateMulticastGroupWithFuotaTaskCommand");
6
+ const AssociateWirelessDeviceWithFuotaTaskCommand_1 = require("./commands/AssociateWirelessDeviceWithFuotaTaskCommand");
7
+ const AssociateWirelessDeviceWithMulticastGroupCommand_1 = require("./commands/AssociateWirelessDeviceWithMulticastGroupCommand");
5
8
  const AssociateWirelessDeviceWithThingCommand_1 = require("./commands/AssociateWirelessDeviceWithThingCommand");
6
9
  const AssociateWirelessGatewayWithCertificateCommand_1 = require("./commands/AssociateWirelessGatewayWithCertificateCommand");
7
10
  const AssociateWirelessGatewayWithThingCommand_1 = require("./commands/AssociateWirelessGatewayWithThingCommand");
11
+ const CancelMulticastGroupSessionCommand_1 = require("./commands/CancelMulticastGroupSessionCommand");
8
12
  const CreateDestinationCommand_1 = require("./commands/CreateDestinationCommand");
9
13
  const CreateDeviceProfileCommand_1 = require("./commands/CreateDeviceProfileCommand");
14
+ const CreateFuotaTaskCommand_1 = require("./commands/CreateFuotaTaskCommand");
15
+ const CreateMulticastGroupCommand_1 = require("./commands/CreateMulticastGroupCommand");
10
16
  const CreateServiceProfileCommand_1 = require("./commands/CreateServiceProfileCommand");
11
17
  const CreateWirelessDeviceCommand_1 = require("./commands/CreateWirelessDeviceCommand");
12
18
  const CreateWirelessGatewayCommand_1 = require("./commands/CreateWirelessGatewayCommand");
@@ -14,19 +20,29 @@ const CreateWirelessGatewayTaskCommand_1 = require("./commands/CreateWirelessGat
14
20
  const CreateWirelessGatewayTaskDefinitionCommand_1 = require("./commands/CreateWirelessGatewayTaskDefinitionCommand");
15
21
  const DeleteDestinationCommand_1 = require("./commands/DeleteDestinationCommand");
16
22
  const DeleteDeviceProfileCommand_1 = require("./commands/DeleteDeviceProfileCommand");
23
+ const DeleteFuotaTaskCommand_1 = require("./commands/DeleteFuotaTaskCommand");
24
+ const DeleteMulticastGroupCommand_1 = require("./commands/DeleteMulticastGroupCommand");
17
25
  const DeleteServiceProfileCommand_1 = require("./commands/DeleteServiceProfileCommand");
18
26
  const DeleteWirelessDeviceCommand_1 = require("./commands/DeleteWirelessDeviceCommand");
19
27
  const DeleteWirelessGatewayCommand_1 = require("./commands/DeleteWirelessGatewayCommand");
20
28
  const DeleteWirelessGatewayTaskCommand_1 = require("./commands/DeleteWirelessGatewayTaskCommand");
21
29
  const DeleteWirelessGatewayTaskDefinitionCommand_1 = require("./commands/DeleteWirelessGatewayTaskDefinitionCommand");
22
30
  const DisassociateAwsAccountFromPartnerAccountCommand_1 = require("./commands/DisassociateAwsAccountFromPartnerAccountCommand");
31
+ const DisassociateMulticastGroupFromFuotaTaskCommand_1 = require("./commands/DisassociateMulticastGroupFromFuotaTaskCommand");
32
+ const DisassociateWirelessDeviceFromFuotaTaskCommand_1 = require("./commands/DisassociateWirelessDeviceFromFuotaTaskCommand");
33
+ const DisassociateWirelessDeviceFromMulticastGroupCommand_1 = require("./commands/DisassociateWirelessDeviceFromMulticastGroupCommand");
23
34
  const DisassociateWirelessDeviceFromThingCommand_1 = require("./commands/DisassociateWirelessDeviceFromThingCommand");
24
35
  const DisassociateWirelessGatewayFromCertificateCommand_1 = require("./commands/DisassociateWirelessGatewayFromCertificateCommand");
25
36
  const DisassociateWirelessGatewayFromThingCommand_1 = require("./commands/DisassociateWirelessGatewayFromThingCommand");
26
37
  const GetDestinationCommand_1 = require("./commands/GetDestinationCommand");
27
38
  const GetDeviceProfileCommand_1 = require("./commands/GetDeviceProfileCommand");
39
+ const GetFuotaTaskCommand_1 = require("./commands/GetFuotaTaskCommand");
28
40
  const GetLogLevelsByResourceTypesCommand_1 = require("./commands/GetLogLevelsByResourceTypesCommand");
41
+ const GetMulticastGroupCommand_1 = require("./commands/GetMulticastGroupCommand");
42
+ const GetMulticastGroupSessionCommand_1 = require("./commands/GetMulticastGroupSessionCommand");
43
+ const GetNetworkAnalyzerConfigurationCommand_1 = require("./commands/GetNetworkAnalyzerConfigurationCommand");
29
44
  const GetPartnerAccountCommand_1 = require("./commands/GetPartnerAccountCommand");
45
+ const GetResourceEventConfigurationCommand_1 = require("./commands/GetResourceEventConfigurationCommand");
30
46
  const GetResourceLogLevelCommand_1 = require("./commands/GetResourceLogLevelCommand");
31
47
  const GetServiceEndpointCommand_1 = require("./commands/GetServiceEndpointCommand");
32
48
  const GetServiceProfileCommand_1 = require("./commands/GetServiceProfileCommand");
@@ -40,6 +56,9 @@ const GetWirelessGatewayTaskCommand_1 = require("./commands/GetWirelessGatewayTa
40
56
  const GetWirelessGatewayTaskDefinitionCommand_1 = require("./commands/GetWirelessGatewayTaskDefinitionCommand");
41
57
  const ListDestinationsCommand_1 = require("./commands/ListDestinationsCommand");
42
58
  const ListDeviceProfilesCommand_1 = require("./commands/ListDeviceProfilesCommand");
59
+ const ListFuotaTasksCommand_1 = require("./commands/ListFuotaTasksCommand");
60
+ const ListMulticastGroupsByFuotaTaskCommand_1 = require("./commands/ListMulticastGroupsByFuotaTaskCommand");
61
+ const ListMulticastGroupsCommand_1 = require("./commands/ListMulticastGroupsCommand");
43
62
  const ListPartnerAccountsCommand_1 = require("./commands/ListPartnerAccountsCommand");
44
63
  const ListServiceProfilesCommand_1 = require("./commands/ListServiceProfilesCommand");
45
64
  const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
@@ -49,13 +68,22 @@ const ListWirelessGatewayTaskDefinitionsCommand_1 = require("./commands/ListWire
49
68
  const PutResourceLogLevelCommand_1 = require("./commands/PutResourceLogLevelCommand");
50
69
  const ResetAllResourceLogLevelsCommand_1 = require("./commands/ResetAllResourceLogLevelsCommand");
51
70
  const ResetResourceLogLevelCommand_1 = require("./commands/ResetResourceLogLevelCommand");
71
+ const SendDataToMulticastGroupCommand_1 = require("./commands/SendDataToMulticastGroupCommand");
52
72
  const SendDataToWirelessDeviceCommand_1 = require("./commands/SendDataToWirelessDeviceCommand");
73
+ const StartBulkAssociateWirelessDeviceWithMulticastGroupCommand_1 = require("./commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand");
74
+ const StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand_1 = require("./commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand");
75
+ const StartFuotaTaskCommand_1 = require("./commands/StartFuotaTaskCommand");
76
+ const StartMulticastGroupSessionCommand_1 = require("./commands/StartMulticastGroupSessionCommand");
53
77
  const TagResourceCommand_1 = require("./commands/TagResourceCommand");
54
78
  const TestWirelessDeviceCommand_1 = require("./commands/TestWirelessDeviceCommand");
55
79
  const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
56
80
  const UpdateDestinationCommand_1 = require("./commands/UpdateDestinationCommand");
81
+ const UpdateFuotaTaskCommand_1 = require("./commands/UpdateFuotaTaskCommand");
57
82
  const UpdateLogLevelsByResourceTypesCommand_1 = require("./commands/UpdateLogLevelsByResourceTypesCommand");
83
+ const UpdateMulticastGroupCommand_1 = require("./commands/UpdateMulticastGroupCommand");
84
+ const UpdateNetworkAnalyzerConfigurationCommand_1 = require("./commands/UpdateNetworkAnalyzerConfigurationCommand");
58
85
  const UpdatePartnerAccountCommand_1 = require("./commands/UpdatePartnerAccountCommand");
86
+ const UpdateResourceEventConfigurationCommand_1 = require("./commands/UpdateResourceEventConfigurationCommand");
59
87
  const UpdateWirelessDeviceCommand_1 = require("./commands/UpdateWirelessDeviceCommand");
60
88
  const UpdateWirelessGatewayCommand_1 = require("./commands/UpdateWirelessGatewayCommand");
61
89
  const IoTWirelessClient_1 = require("./IoTWirelessClient");
@@ -74,6 +102,48 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
74
102
  return this.send(command, optionsOrCb);
75
103
  }
76
104
  }
105
+ associateMulticastGroupWithFuotaTask(args, optionsOrCb, cb) {
106
+ const command = new AssociateMulticastGroupWithFuotaTaskCommand_1.AssociateMulticastGroupWithFuotaTaskCommand(args);
107
+ if (typeof optionsOrCb === "function") {
108
+ this.send(command, optionsOrCb);
109
+ }
110
+ else if (typeof cb === "function") {
111
+ if (typeof optionsOrCb !== "object")
112
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
113
+ this.send(command, optionsOrCb || {}, cb);
114
+ }
115
+ else {
116
+ return this.send(command, optionsOrCb);
117
+ }
118
+ }
119
+ associateWirelessDeviceWithFuotaTask(args, optionsOrCb, cb) {
120
+ const command = new AssociateWirelessDeviceWithFuotaTaskCommand_1.AssociateWirelessDeviceWithFuotaTaskCommand(args);
121
+ if (typeof optionsOrCb === "function") {
122
+ this.send(command, optionsOrCb);
123
+ }
124
+ else if (typeof cb === "function") {
125
+ if (typeof optionsOrCb !== "object")
126
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
127
+ this.send(command, optionsOrCb || {}, cb);
128
+ }
129
+ else {
130
+ return this.send(command, optionsOrCb);
131
+ }
132
+ }
133
+ associateWirelessDeviceWithMulticastGroup(args, optionsOrCb, cb) {
134
+ const command = new AssociateWirelessDeviceWithMulticastGroupCommand_1.AssociateWirelessDeviceWithMulticastGroupCommand(args);
135
+ if (typeof optionsOrCb === "function") {
136
+ this.send(command, optionsOrCb);
137
+ }
138
+ else if (typeof cb === "function") {
139
+ if (typeof optionsOrCb !== "object")
140
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
141
+ this.send(command, optionsOrCb || {}, cb);
142
+ }
143
+ else {
144
+ return this.send(command, optionsOrCb);
145
+ }
146
+ }
77
147
  associateWirelessDeviceWithThing(args, optionsOrCb, cb) {
78
148
  const command = new AssociateWirelessDeviceWithThingCommand_1.AssociateWirelessDeviceWithThingCommand(args);
79
149
  if (typeof optionsOrCb === "function") {
@@ -116,6 +186,20 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
116
186
  return this.send(command, optionsOrCb);
117
187
  }
118
188
  }
189
+ cancelMulticastGroupSession(args, optionsOrCb, cb) {
190
+ const command = new CancelMulticastGroupSessionCommand_1.CancelMulticastGroupSessionCommand(args);
191
+ if (typeof optionsOrCb === "function") {
192
+ this.send(command, optionsOrCb);
193
+ }
194
+ else if (typeof cb === "function") {
195
+ if (typeof optionsOrCb !== "object")
196
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
197
+ this.send(command, optionsOrCb || {}, cb);
198
+ }
199
+ else {
200
+ return this.send(command, optionsOrCb);
201
+ }
202
+ }
119
203
  createDestination(args, optionsOrCb, cb) {
120
204
  const command = new CreateDestinationCommand_1.CreateDestinationCommand(args);
121
205
  if (typeof optionsOrCb === "function") {
@@ -144,6 +228,34 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
144
228
  return this.send(command, optionsOrCb);
145
229
  }
146
230
  }
231
+ createFuotaTask(args, optionsOrCb, cb) {
232
+ const command = new CreateFuotaTaskCommand_1.CreateFuotaTaskCommand(args);
233
+ if (typeof optionsOrCb === "function") {
234
+ this.send(command, optionsOrCb);
235
+ }
236
+ else if (typeof cb === "function") {
237
+ if (typeof optionsOrCb !== "object")
238
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
239
+ this.send(command, optionsOrCb || {}, cb);
240
+ }
241
+ else {
242
+ return this.send(command, optionsOrCb);
243
+ }
244
+ }
245
+ createMulticastGroup(args, optionsOrCb, cb) {
246
+ const command = new CreateMulticastGroupCommand_1.CreateMulticastGroupCommand(args);
247
+ if (typeof optionsOrCb === "function") {
248
+ this.send(command, optionsOrCb);
249
+ }
250
+ else if (typeof cb === "function") {
251
+ if (typeof optionsOrCb !== "object")
252
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
253
+ this.send(command, optionsOrCb || {}, cb);
254
+ }
255
+ else {
256
+ return this.send(command, optionsOrCb);
257
+ }
258
+ }
147
259
  createServiceProfile(args, optionsOrCb, cb) {
148
260
  const command = new CreateServiceProfileCommand_1.CreateServiceProfileCommand(args);
149
261
  if (typeof optionsOrCb === "function") {
@@ -242,6 +354,34 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
242
354
  return this.send(command, optionsOrCb);
243
355
  }
244
356
  }
357
+ deleteFuotaTask(args, optionsOrCb, cb) {
358
+ const command = new DeleteFuotaTaskCommand_1.DeleteFuotaTaskCommand(args);
359
+ if (typeof optionsOrCb === "function") {
360
+ this.send(command, optionsOrCb);
361
+ }
362
+ else if (typeof cb === "function") {
363
+ if (typeof optionsOrCb !== "object")
364
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
365
+ this.send(command, optionsOrCb || {}, cb);
366
+ }
367
+ else {
368
+ return this.send(command, optionsOrCb);
369
+ }
370
+ }
371
+ deleteMulticastGroup(args, optionsOrCb, cb) {
372
+ const command = new DeleteMulticastGroupCommand_1.DeleteMulticastGroupCommand(args);
373
+ if (typeof optionsOrCb === "function") {
374
+ this.send(command, optionsOrCb);
375
+ }
376
+ else if (typeof cb === "function") {
377
+ if (typeof optionsOrCb !== "object")
378
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
379
+ this.send(command, optionsOrCb || {}, cb);
380
+ }
381
+ else {
382
+ return this.send(command, optionsOrCb);
383
+ }
384
+ }
245
385
  deleteServiceProfile(args, optionsOrCb, cb) {
246
386
  const command = new DeleteServiceProfileCommand_1.DeleteServiceProfileCommand(args);
247
387
  if (typeof optionsOrCb === "function") {
@@ -326,6 +466,48 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
326
466
  return this.send(command, optionsOrCb);
327
467
  }
328
468
  }
469
+ disassociateMulticastGroupFromFuotaTask(args, optionsOrCb, cb) {
470
+ const command = new DisassociateMulticastGroupFromFuotaTaskCommand_1.DisassociateMulticastGroupFromFuotaTaskCommand(args);
471
+ if (typeof optionsOrCb === "function") {
472
+ this.send(command, optionsOrCb);
473
+ }
474
+ else if (typeof cb === "function") {
475
+ if (typeof optionsOrCb !== "object")
476
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
477
+ this.send(command, optionsOrCb || {}, cb);
478
+ }
479
+ else {
480
+ return this.send(command, optionsOrCb);
481
+ }
482
+ }
483
+ disassociateWirelessDeviceFromFuotaTask(args, optionsOrCb, cb) {
484
+ const command = new DisassociateWirelessDeviceFromFuotaTaskCommand_1.DisassociateWirelessDeviceFromFuotaTaskCommand(args);
485
+ if (typeof optionsOrCb === "function") {
486
+ this.send(command, optionsOrCb);
487
+ }
488
+ else if (typeof cb === "function") {
489
+ if (typeof optionsOrCb !== "object")
490
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
491
+ this.send(command, optionsOrCb || {}, cb);
492
+ }
493
+ else {
494
+ return this.send(command, optionsOrCb);
495
+ }
496
+ }
497
+ disassociateWirelessDeviceFromMulticastGroup(args, optionsOrCb, cb) {
498
+ const command = new DisassociateWirelessDeviceFromMulticastGroupCommand_1.DisassociateWirelessDeviceFromMulticastGroupCommand(args);
499
+ if (typeof optionsOrCb === "function") {
500
+ this.send(command, optionsOrCb);
501
+ }
502
+ else if (typeof cb === "function") {
503
+ if (typeof optionsOrCb !== "object")
504
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
505
+ this.send(command, optionsOrCb || {}, cb);
506
+ }
507
+ else {
508
+ return this.send(command, optionsOrCb);
509
+ }
510
+ }
329
511
  disassociateWirelessDeviceFromThing(args, optionsOrCb, cb) {
330
512
  const command = new DisassociateWirelessDeviceFromThingCommand_1.DisassociateWirelessDeviceFromThingCommand(args);
331
513
  if (typeof optionsOrCb === "function") {
@@ -396,6 +578,20 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
396
578
  return this.send(command, optionsOrCb);
397
579
  }
398
580
  }
581
+ getFuotaTask(args, optionsOrCb, cb) {
582
+ const command = new GetFuotaTaskCommand_1.GetFuotaTaskCommand(args);
583
+ if (typeof optionsOrCb === "function") {
584
+ this.send(command, optionsOrCb);
585
+ }
586
+ else if (typeof cb === "function") {
587
+ if (typeof optionsOrCb !== "object")
588
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
589
+ this.send(command, optionsOrCb || {}, cb);
590
+ }
591
+ else {
592
+ return this.send(command, optionsOrCb);
593
+ }
594
+ }
399
595
  getLogLevelsByResourceTypes(args, optionsOrCb, cb) {
400
596
  const command = new GetLogLevelsByResourceTypesCommand_1.GetLogLevelsByResourceTypesCommand(args);
401
597
  if (typeof optionsOrCb === "function") {
@@ -410,6 +606,48 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
410
606
  return this.send(command, optionsOrCb);
411
607
  }
412
608
  }
609
+ getMulticastGroup(args, optionsOrCb, cb) {
610
+ const command = new GetMulticastGroupCommand_1.GetMulticastGroupCommand(args);
611
+ if (typeof optionsOrCb === "function") {
612
+ this.send(command, optionsOrCb);
613
+ }
614
+ else if (typeof cb === "function") {
615
+ if (typeof optionsOrCb !== "object")
616
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
617
+ this.send(command, optionsOrCb || {}, cb);
618
+ }
619
+ else {
620
+ return this.send(command, optionsOrCb);
621
+ }
622
+ }
623
+ getMulticastGroupSession(args, optionsOrCb, cb) {
624
+ const command = new GetMulticastGroupSessionCommand_1.GetMulticastGroupSessionCommand(args);
625
+ if (typeof optionsOrCb === "function") {
626
+ this.send(command, optionsOrCb);
627
+ }
628
+ else if (typeof cb === "function") {
629
+ if (typeof optionsOrCb !== "object")
630
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
631
+ this.send(command, optionsOrCb || {}, cb);
632
+ }
633
+ else {
634
+ return this.send(command, optionsOrCb);
635
+ }
636
+ }
637
+ getNetworkAnalyzerConfiguration(args, optionsOrCb, cb) {
638
+ const command = new GetNetworkAnalyzerConfigurationCommand_1.GetNetworkAnalyzerConfigurationCommand(args);
639
+ if (typeof optionsOrCb === "function") {
640
+ this.send(command, optionsOrCb);
641
+ }
642
+ else if (typeof cb === "function") {
643
+ if (typeof optionsOrCb !== "object")
644
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
645
+ this.send(command, optionsOrCb || {}, cb);
646
+ }
647
+ else {
648
+ return this.send(command, optionsOrCb);
649
+ }
650
+ }
413
651
  getPartnerAccount(args, optionsOrCb, cb) {
414
652
  const command = new GetPartnerAccountCommand_1.GetPartnerAccountCommand(args);
415
653
  if (typeof optionsOrCb === "function") {
@@ -424,6 +662,20 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
424
662
  return this.send(command, optionsOrCb);
425
663
  }
426
664
  }
665
+ getResourceEventConfiguration(args, optionsOrCb, cb) {
666
+ const command = new GetResourceEventConfigurationCommand_1.GetResourceEventConfigurationCommand(args);
667
+ if (typeof optionsOrCb === "function") {
668
+ this.send(command, optionsOrCb);
669
+ }
670
+ else if (typeof cb === "function") {
671
+ if (typeof optionsOrCb !== "object")
672
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
673
+ this.send(command, optionsOrCb || {}, cb);
674
+ }
675
+ else {
676
+ return this.send(command, optionsOrCb);
677
+ }
678
+ }
427
679
  getResourceLogLevel(args, optionsOrCb, cb) {
428
680
  const command = new GetResourceLogLevelCommand_1.GetResourceLogLevelCommand(args);
429
681
  if (typeof optionsOrCb === "function") {
@@ -606,6 +858,48 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
606
858
  return this.send(command, optionsOrCb);
607
859
  }
608
860
  }
861
+ listFuotaTasks(args, optionsOrCb, cb) {
862
+ const command = new ListFuotaTasksCommand_1.ListFuotaTasksCommand(args);
863
+ if (typeof optionsOrCb === "function") {
864
+ this.send(command, optionsOrCb);
865
+ }
866
+ else if (typeof cb === "function") {
867
+ if (typeof optionsOrCb !== "object")
868
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
869
+ this.send(command, optionsOrCb || {}, cb);
870
+ }
871
+ else {
872
+ return this.send(command, optionsOrCb);
873
+ }
874
+ }
875
+ listMulticastGroups(args, optionsOrCb, cb) {
876
+ const command = new ListMulticastGroupsCommand_1.ListMulticastGroupsCommand(args);
877
+ if (typeof optionsOrCb === "function") {
878
+ this.send(command, optionsOrCb);
879
+ }
880
+ else if (typeof cb === "function") {
881
+ if (typeof optionsOrCb !== "object")
882
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
883
+ this.send(command, optionsOrCb || {}, cb);
884
+ }
885
+ else {
886
+ return this.send(command, optionsOrCb);
887
+ }
888
+ }
889
+ listMulticastGroupsByFuotaTask(args, optionsOrCb, cb) {
890
+ const command = new ListMulticastGroupsByFuotaTaskCommand_1.ListMulticastGroupsByFuotaTaskCommand(args);
891
+ if (typeof optionsOrCb === "function") {
892
+ this.send(command, optionsOrCb);
893
+ }
894
+ else if (typeof cb === "function") {
895
+ if (typeof optionsOrCb !== "object")
896
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
897
+ this.send(command, optionsOrCb || {}, cb);
898
+ }
899
+ else {
900
+ return this.send(command, optionsOrCb);
901
+ }
902
+ }
609
903
  listPartnerAccounts(args, optionsOrCb, cb) {
610
904
  const command = new ListPartnerAccountsCommand_1.ListPartnerAccountsCommand(args);
611
905
  if (typeof optionsOrCb === "function") {
@@ -732,6 +1026,20 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
732
1026
  return this.send(command, optionsOrCb);
733
1027
  }
734
1028
  }
1029
+ sendDataToMulticastGroup(args, optionsOrCb, cb) {
1030
+ const command = new SendDataToMulticastGroupCommand_1.SendDataToMulticastGroupCommand(args);
1031
+ if (typeof optionsOrCb === "function") {
1032
+ this.send(command, optionsOrCb);
1033
+ }
1034
+ else if (typeof cb === "function") {
1035
+ if (typeof optionsOrCb !== "object")
1036
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1037
+ this.send(command, optionsOrCb || {}, cb);
1038
+ }
1039
+ else {
1040
+ return this.send(command, optionsOrCb);
1041
+ }
1042
+ }
735
1043
  sendDataToWirelessDevice(args, optionsOrCb, cb) {
736
1044
  const command = new SendDataToWirelessDeviceCommand_1.SendDataToWirelessDeviceCommand(args);
737
1045
  if (typeof optionsOrCb === "function") {
@@ -746,6 +1054,62 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
746
1054
  return this.send(command, optionsOrCb);
747
1055
  }
748
1056
  }
1057
+ startBulkAssociateWirelessDeviceWithMulticastGroup(args, optionsOrCb, cb) {
1058
+ const command = new StartBulkAssociateWirelessDeviceWithMulticastGroupCommand_1.StartBulkAssociateWirelessDeviceWithMulticastGroupCommand(args);
1059
+ if (typeof optionsOrCb === "function") {
1060
+ this.send(command, optionsOrCb);
1061
+ }
1062
+ else if (typeof cb === "function") {
1063
+ if (typeof optionsOrCb !== "object")
1064
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1065
+ this.send(command, optionsOrCb || {}, cb);
1066
+ }
1067
+ else {
1068
+ return this.send(command, optionsOrCb);
1069
+ }
1070
+ }
1071
+ startBulkDisassociateWirelessDeviceFromMulticastGroup(args, optionsOrCb, cb) {
1072
+ const command = new StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand_1.StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand(args);
1073
+ if (typeof optionsOrCb === "function") {
1074
+ this.send(command, optionsOrCb);
1075
+ }
1076
+ else if (typeof cb === "function") {
1077
+ if (typeof optionsOrCb !== "object")
1078
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1079
+ this.send(command, optionsOrCb || {}, cb);
1080
+ }
1081
+ else {
1082
+ return this.send(command, optionsOrCb);
1083
+ }
1084
+ }
1085
+ startFuotaTask(args, optionsOrCb, cb) {
1086
+ const command = new StartFuotaTaskCommand_1.StartFuotaTaskCommand(args);
1087
+ if (typeof optionsOrCb === "function") {
1088
+ this.send(command, optionsOrCb);
1089
+ }
1090
+ else if (typeof cb === "function") {
1091
+ if (typeof optionsOrCb !== "object")
1092
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1093
+ this.send(command, optionsOrCb || {}, cb);
1094
+ }
1095
+ else {
1096
+ return this.send(command, optionsOrCb);
1097
+ }
1098
+ }
1099
+ startMulticastGroupSession(args, optionsOrCb, cb) {
1100
+ const command = new StartMulticastGroupSessionCommand_1.StartMulticastGroupSessionCommand(args);
1101
+ if (typeof optionsOrCb === "function") {
1102
+ this.send(command, optionsOrCb);
1103
+ }
1104
+ else if (typeof cb === "function") {
1105
+ if (typeof optionsOrCb !== "object")
1106
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1107
+ this.send(command, optionsOrCb || {}, cb);
1108
+ }
1109
+ else {
1110
+ return this.send(command, optionsOrCb);
1111
+ }
1112
+ }
749
1113
  tagResource(args, optionsOrCb, cb) {
750
1114
  const command = new TagResourceCommand_1.TagResourceCommand(args);
751
1115
  if (typeof optionsOrCb === "function") {
@@ -802,6 +1166,20 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
802
1166
  return this.send(command, optionsOrCb);
803
1167
  }
804
1168
  }
1169
+ updateFuotaTask(args, optionsOrCb, cb) {
1170
+ const command = new UpdateFuotaTaskCommand_1.UpdateFuotaTaskCommand(args);
1171
+ if (typeof optionsOrCb === "function") {
1172
+ this.send(command, optionsOrCb);
1173
+ }
1174
+ else if (typeof cb === "function") {
1175
+ if (typeof optionsOrCb !== "object")
1176
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1177
+ this.send(command, optionsOrCb || {}, cb);
1178
+ }
1179
+ else {
1180
+ return this.send(command, optionsOrCb);
1181
+ }
1182
+ }
805
1183
  updateLogLevelsByResourceTypes(args, optionsOrCb, cb) {
806
1184
  const command = new UpdateLogLevelsByResourceTypesCommand_1.UpdateLogLevelsByResourceTypesCommand(args);
807
1185
  if (typeof optionsOrCb === "function") {
@@ -816,6 +1194,34 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
816
1194
  return this.send(command, optionsOrCb);
817
1195
  }
818
1196
  }
1197
+ updateMulticastGroup(args, optionsOrCb, cb) {
1198
+ const command = new UpdateMulticastGroupCommand_1.UpdateMulticastGroupCommand(args);
1199
+ if (typeof optionsOrCb === "function") {
1200
+ this.send(command, optionsOrCb);
1201
+ }
1202
+ else if (typeof cb === "function") {
1203
+ if (typeof optionsOrCb !== "object")
1204
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1205
+ this.send(command, optionsOrCb || {}, cb);
1206
+ }
1207
+ else {
1208
+ return this.send(command, optionsOrCb);
1209
+ }
1210
+ }
1211
+ updateNetworkAnalyzerConfiguration(args, optionsOrCb, cb) {
1212
+ const command = new UpdateNetworkAnalyzerConfigurationCommand_1.UpdateNetworkAnalyzerConfigurationCommand(args);
1213
+ if (typeof optionsOrCb === "function") {
1214
+ this.send(command, optionsOrCb);
1215
+ }
1216
+ else if (typeof cb === "function") {
1217
+ if (typeof optionsOrCb !== "object")
1218
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1219
+ this.send(command, optionsOrCb || {}, cb);
1220
+ }
1221
+ else {
1222
+ return this.send(command, optionsOrCb);
1223
+ }
1224
+ }
819
1225
  updatePartnerAccount(args, optionsOrCb, cb) {
820
1226
  const command = new UpdatePartnerAccountCommand_1.UpdatePartnerAccountCommand(args);
821
1227
  if (typeof optionsOrCb === "function") {
@@ -830,6 +1236,20 @@ class IoTWireless extends IoTWirelessClient_1.IoTWirelessClient {
830
1236
  return this.send(command, optionsOrCb);
831
1237
  }
832
1238
  }
1239
+ updateResourceEventConfiguration(args, optionsOrCb, cb) {
1240
+ const command = new UpdateResourceEventConfigurationCommand_1.UpdateResourceEventConfigurationCommand(args);
1241
+ if (typeof optionsOrCb === "function") {
1242
+ this.send(command, optionsOrCb);
1243
+ }
1244
+ else if (typeof cb === "function") {
1245
+ if (typeof optionsOrCb !== "object")
1246
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1247
+ this.send(command, optionsOrCb || {}, cb);
1248
+ }
1249
+ else {
1250
+ return this.send(command, optionsOrCb);
1251
+ }
1252
+ }
833
1253
  updateWirelessDevice(args, optionsOrCb, cb) {
834
1254
  const command = new UpdateWirelessDeviceCommand_1.UpdateWirelessDeviceCommand(args);
835
1255
  if (typeof optionsOrCb === "function") {
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AssociateMulticastGroupWithFuotaTaskCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class AssociateMulticastGroupWithFuotaTaskCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "AssociateMulticastGroupWithFuotaTaskCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.AssociateMulticastGroupWithFuotaTaskRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.AssociateMulticastGroupWithFuotaTaskResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1AssociateMulticastGroupWithFuotaTaskCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1AssociateMulticastGroupWithFuotaTaskCommand(output, context);
34
+ }
35
+ }
36
+ exports.AssociateMulticastGroupWithFuotaTaskCommand = AssociateMulticastGroupWithFuotaTaskCommand;