@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,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "../commands/ListFuotaTasksCommand";
3
+ import { IoTWirelessPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListFuotaTasks(config: IoTWirelessPaginationConfiguration, input: ListFuotaTasksCommandInput, ...additionalArguments: any): Paginator<ListFuotaTasksCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "../commands/ListMulticastGroupsByFuotaTaskCommand";
3
+ import { IoTWirelessPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListMulticastGroupsByFuotaTask(config: IoTWirelessPaginationConfiguration, input: ListMulticastGroupsByFuotaTaskCommandInput, ...additionalArguments: any): Paginator<ListMulticastGroupsByFuotaTaskCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "../commands/ListMulticastGroupsCommand";
3
+ import { IoTWirelessPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListMulticastGroups(config: IoTWirelessPaginationConfiguration, input: ListMulticastGroupsCommandInput, ...additionalArguments: any): Paginator<ListMulticastGroupsCommandOutput>;
@@ -1,6 +1,9 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListDestinationsPaginator";
3
3
  export * from "./ListDeviceProfilesPaginator";
4
+ export * from "./ListFuotaTasksPaginator";
5
+ export * from "./ListMulticastGroupsByFuotaTaskPaginator";
6
+ export * from "./ListMulticastGroupsPaginator";
4
7
  export * from "./ListServiceProfilesPaginator";
5
8
  export * from "./ListWirelessDevicesPaginator";
6
9
  export * from "./ListWirelessGatewaysPaginator";
@@ -1,11 +1,17 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput } from "../commands/AssociateAwsAccountWithPartnerAccountCommand";
4
+ import { AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput } from "../commands/AssociateMulticastGroupWithFuotaTaskCommand";
5
+ import { AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput } from "../commands/AssociateWirelessDeviceWithFuotaTaskCommand";
6
+ import { AssociateWirelessDeviceWithMulticastGroupCommandInput, AssociateWirelessDeviceWithMulticastGroupCommandOutput } from "../commands/AssociateWirelessDeviceWithMulticastGroupCommand";
4
7
  import { AssociateWirelessDeviceWithThingCommandInput, AssociateWirelessDeviceWithThingCommandOutput } from "../commands/AssociateWirelessDeviceWithThingCommand";
5
8
  import { AssociateWirelessGatewayWithCertificateCommandInput, AssociateWirelessGatewayWithCertificateCommandOutput } from "../commands/AssociateWirelessGatewayWithCertificateCommand";
6
9
  import { AssociateWirelessGatewayWithThingCommandInput, AssociateWirelessGatewayWithThingCommandOutput } from "../commands/AssociateWirelessGatewayWithThingCommand";
10
+ import { CancelMulticastGroupSessionCommandInput, CancelMulticastGroupSessionCommandOutput } from "../commands/CancelMulticastGroupSessionCommand";
7
11
  import { CreateDestinationCommandInput, CreateDestinationCommandOutput } from "../commands/CreateDestinationCommand";
8
12
  import { CreateDeviceProfileCommandInput, CreateDeviceProfileCommandOutput } from "../commands/CreateDeviceProfileCommand";
13
+ import { CreateFuotaTaskCommandInput, CreateFuotaTaskCommandOutput } from "../commands/CreateFuotaTaskCommand";
14
+ import { CreateMulticastGroupCommandInput, CreateMulticastGroupCommandOutput } from "../commands/CreateMulticastGroupCommand";
9
15
  import { CreateServiceProfileCommandInput, CreateServiceProfileCommandOutput } from "../commands/CreateServiceProfileCommand";
10
16
  import { CreateWirelessDeviceCommandInput, CreateWirelessDeviceCommandOutput } from "../commands/CreateWirelessDeviceCommand";
11
17
  import { CreateWirelessGatewayCommandInput, CreateWirelessGatewayCommandOutput } from "../commands/CreateWirelessGatewayCommand";
@@ -13,19 +19,29 @@ import { CreateWirelessGatewayTaskCommandInput, CreateWirelessGatewayTaskCommand
13
19
  import { CreateWirelessGatewayTaskDefinitionCommandInput, CreateWirelessGatewayTaskDefinitionCommandOutput } from "../commands/CreateWirelessGatewayTaskDefinitionCommand";
14
20
  import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from "../commands/DeleteDestinationCommand";
15
21
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "../commands/DeleteDeviceProfileCommand";
22
+ import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "../commands/DeleteFuotaTaskCommand";
23
+ import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "../commands/DeleteMulticastGroupCommand";
16
24
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "../commands/DeleteServiceProfileCommand";
17
25
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "../commands/DeleteWirelessDeviceCommand";
18
26
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "../commands/DeleteWirelessGatewayCommand";
19
27
  import { DeleteWirelessGatewayTaskCommandInput, DeleteWirelessGatewayTaskCommandOutput } from "../commands/DeleteWirelessGatewayTaskCommand";
20
28
  import { DeleteWirelessGatewayTaskDefinitionCommandInput, DeleteWirelessGatewayTaskDefinitionCommandOutput } from "../commands/DeleteWirelessGatewayTaskDefinitionCommand";
21
29
  import { DisassociateAwsAccountFromPartnerAccountCommandInput, DisassociateAwsAccountFromPartnerAccountCommandOutput } from "../commands/DisassociateAwsAccountFromPartnerAccountCommand";
30
+ import { DisassociateMulticastGroupFromFuotaTaskCommandInput, DisassociateMulticastGroupFromFuotaTaskCommandOutput } from "../commands/DisassociateMulticastGroupFromFuotaTaskCommand";
31
+ import { DisassociateWirelessDeviceFromFuotaTaskCommandInput, DisassociateWirelessDeviceFromFuotaTaskCommandOutput } from "../commands/DisassociateWirelessDeviceFromFuotaTaskCommand";
32
+ import { DisassociateWirelessDeviceFromMulticastGroupCommandInput, DisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "../commands/DisassociateWirelessDeviceFromMulticastGroupCommand";
22
33
  import { DisassociateWirelessDeviceFromThingCommandInput, DisassociateWirelessDeviceFromThingCommandOutput } from "../commands/DisassociateWirelessDeviceFromThingCommand";
23
34
  import { DisassociateWirelessGatewayFromCertificateCommandInput, DisassociateWirelessGatewayFromCertificateCommandOutput } from "../commands/DisassociateWirelessGatewayFromCertificateCommand";
24
35
  import { DisassociateWirelessGatewayFromThingCommandInput, DisassociateWirelessGatewayFromThingCommandOutput } from "../commands/DisassociateWirelessGatewayFromThingCommand";
25
36
  import { GetDestinationCommandInput, GetDestinationCommandOutput } from "../commands/GetDestinationCommand";
26
37
  import { GetDeviceProfileCommandInput, GetDeviceProfileCommandOutput } from "../commands/GetDeviceProfileCommand";
38
+ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "../commands/GetFuotaTaskCommand";
27
39
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "../commands/GetLogLevelsByResourceTypesCommand";
40
+ import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "../commands/GetMulticastGroupCommand";
41
+ import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "../commands/GetMulticastGroupSessionCommand";
42
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "../commands/GetNetworkAnalyzerConfigurationCommand";
28
43
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "../commands/GetPartnerAccountCommand";
44
+ import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "../commands/GetResourceEventConfigurationCommand";
29
45
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "../commands/GetResourceLogLevelCommand";
30
46
  import { GetServiceEndpointCommandInput, GetServiceEndpointCommandOutput } from "../commands/GetServiceEndpointCommand";
31
47
  import { GetServiceProfileCommandInput, GetServiceProfileCommandOutput } from "../commands/GetServiceProfileCommand";
@@ -39,6 +55,9 @@ import { GetWirelessGatewayTaskCommandInput, GetWirelessGatewayTaskCommandOutput
39
55
  import { GetWirelessGatewayTaskDefinitionCommandInput, GetWirelessGatewayTaskDefinitionCommandOutput } from "../commands/GetWirelessGatewayTaskDefinitionCommand";
40
56
  import { ListDestinationsCommandInput, ListDestinationsCommandOutput } from "../commands/ListDestinationsCommand";
41
57
  import { ListDeviceProfilesCommandInput, ListDeviceProfilesCommandOutput } from "../commands/ListDeviceProfilesCommand";
58
+ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "../commands/ListFuotaTasksCommand";
59
+ import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "../commands/ListMulticastGroupsByFuotaTaskCommand";
60
+ import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "../commands/ListMulticastGroupsCommand";
42
61
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "../commands/ListPartnerAccountsCommand";
43
62
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "../commands/ListServiceProfilesCommand";
44
63
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
@@ -48,21 +67,36 @@ import { ListWirelessGatewayTaskDefinitionsCommandInput, ListWirelessGatewayTask
48
67
  import { PutResourceLogLevelCommandInput, PutResourceLogLevelCommandOutput } from "../commands/PutResourceLogLevelCommand";
49
68
  import { ResetAllResourceLogLevelsCommandInput, ResetAllResourceLogLevelsCommandOutput } from "../commands/ResetAllResourceLogLevelsCommand";
50
69
  import { ResetResourceLogLevelCommandInput, ResetResourceLogLevelCommandOutput } from "../commands/ResetResourceLogLevelCommand";
70
+ import { SendDataToMulticastGroupCommandInput, SendDataToMulticastGroupCommandOutput } from "../commands/SendDataToMulticastGroupCommand";
51
71
  import { SendDataToWirelessDeviceCommandInput, SendDataToWirelessDeviceCommandOutput } from "../commands/SendDataToWirelessDeviceCommand";
72
+ import { StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput } from "../commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand";
73
+ import { StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "../commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand";
74
+ import { StartFuotaTaskCommandInput, StartFuotaTaskCommandOutput } from "../commands/StartFuotaTaskCommand";
75
+ import { StartMulticastGroupSessionCommandInput, StartMulticastGroupSessionCommandOutput } from "../commands/StartMulticastGroupSessionCommand";
52
76
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
53
77
  import { TestWirelessDeviceCommandInput, TestWirelessDeviceCommandOutput } from "../commands/TestWirelessDeviceCommand";
54
78
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
55
79
  import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from "../commands/UpdateDestinationCommand";
80
+ import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "../commands/UpdateFuotaTaskCommand";
56
81
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "../commands/UpdateLogLevelsByResourceTypesCommand";
82
+ import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "../commands/UpdateMulticastGroupCommand";
83
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "../commands/UpdateNetworkAnalyzerConfigurationCommand";
57
84
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "../commands/UpdatePartnerAccountCommand";
85
+ import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "../commands/UpdateResourceEventConfigurationCommand";
58
86
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "../commands/UpdateWirelessDeviceCommand";
59
87
  import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "../commands/UpdateWirelessGatewayCommand";
60
88
  export declare const serializeAws_restJson1AssociateAwsAccountWithPartnerAccountCommand: (input: AssociateAwsAccountWithPartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ export declare const serializeAws_restJson1AssociateMulticastGroupWithFuotaTaskCommand: (input: AssociateMulticastGroupWithFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1AssociateWirelessDeviceWithFuotaTaskCommand: (input: AssociateWirelessDeviceWithFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
+ export declare const serializeAws_restJson1AssociateWirelessDeviceWithMulticastGroupCommand: (input: AssociateWirelessDeviceWithMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
92
  export declare const serializeAws_restJson1AssociateWirelessDeviceWithThingCommand: (input: AssociateWirelessDeviceWithThingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
93
  export declare const serializeAws_restJson1AssociateWirelessGatewayWithCertificateCommand: (input: AssociateWirelessGatewayWithCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
94
  export declare const serializeAws_restJson1AssociateWirelessGatewayWithThingCommand: (input: AssociateWirelessGatewayWithThingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ export declare const serializeAws_restJson1CancelMulticastGroupSessionCommand: (input: CancelMulticastGroupSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
96
  export declare const serializeAws_restJson1CreateDestinationCommand: (input: CreateDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
97
  export declare const serializeAws_restJson1CreateDeviceProfileCommand: (input: CreateDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1CreateFuotaTaskCommand: (input: CreateFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
+ export declare const serializeAws_restJson1CreateMulticastGroupCommand: (input: CreateMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
100
  export declare const serializeAws_restJson1CreateServiceProfileCommand: (input: CreateServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
101
  export declare const serializeAws_restJson1CreateWirelessDeviceCommand: (input: CreateWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
102
  export declare const serializeAws_restJson1CreateWirelessGatewayCommand: (input: CreateWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -70,19 +104,29 @@ export declare const serializeAws_restJson1CreateWirelessGatewayTaskCommand: (in
70
104
  export declare const serializeAws_restJson1CreateWirelessGatewayTaskDefinitionCommand: (input: CreateWirelessGatewayTaskDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
105
  export declare const serializeAws_restJson1DeleteDestinationCommand: (input: DeleteDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
106
  export declare const serializeAws_restJson1DeleteDeviceProfileCommand: (input: DeleteDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
+ export declare const serializeAws_restJson1DeleteFuotaTaskCommand: (input: DeleteFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
+ export declare const serializeAws_restJson1DeleteMulticastGroupCommand: (input: DeleteMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
109
  export declare const serializeAws_restJson1DeleteServiceProfileCommand: (input: DeleteServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
110
  export declare const serializeAws_restJson1DeleteWirelessDeviceCommand: (input: DeleteWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
111
  export declare const serializeAws_restJson1DeleteWirelessGatewayCommand: (input: DeleteWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
112
  export declare const serializeAws_restJson1DeleteWirelessGatewayTaskCommand: (input: DeleteWirelessGatewayTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
113
  export declare const serializeAws_restJson1DeleteWirelessGatewayTaskDefinitionCommand: (input: DeleteWirelessGatewayTaskDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
114
  export declare const serializeAws_restJson1DisassociateAwsAccountFromPartnerAccountCommand: (input: DisassociateAwsAccountFromPartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
+ export declare const serializeAws_restJson1DisassociateMulticastGroupFromFuotaTaskCommand: (input: DisassociateMulticastGroupFromFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
+ export declare const serializeAws_restJson1DisassociateWirelessDeviceFromFuotaTaskCommand: (input: DisassociateWirelessDeviceFromFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
+ export declare const serializeAws_restJson1DisassociateWirelessDeviceFromMulticastGroupCommand: (input: DisassociateWirelessDeviceFromMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
118
  export declare const serializeAws_restJson1DisassociateWirelessDeviceFromThingCommand: (input: DisassociateWirelessDeviceFromThingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
119
  export declare const serializeAws_restJson1DisassociateWirelessGatewayFromCertificateCommand: (input: DisassociateWirelessGatewayFromCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
120
  export declare const serializeAws_restJson1DisassociateWirelessGatewayFromThingCommand: (input: DisassociateWirelessGatewayFromThingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
121
  export declare const serializeAws_restJson1GetDestinationCommand: (input: GetDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
122
  export declare const serializeAws_restJson1GetDeviceProfileCommand: (input: GetDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
+ export declare const serializeAws_restJson1GetFuotaTaskCommand: (input: GetFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
124
  export declare const serializeAws_restJson1GetLogLevelsByResourceTypesCommand: (input: GetLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
+ export declare const serializeAws_restJson1GetMulticastGroupCommand: (input: GetMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1GetMulticastGroupSessionCommand: (input: GetMulticastGroupSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
+ export declare const serializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (input: GetNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
128
  export declare const serializeAws_restJson1GetPartnerAccountCommand: (input: GetPartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
+ export declare const serializeAws_restJson1GetResourceEventConfigurationCommand: (input: GetResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
130
  export declare const serializeAws_restJson1GetResourceLogLevelCommand: (input: GetResourceLogLevelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
131
  export declare const serializeAws_restJson1GetServiceEndpointCommand: (input: GetServiceEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
132
  export declare const serializeAws_restJson1GetServiceProfileCommand: (input: GetServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -96,6 +140,9 @@ export declare const serializeAws_restJson1GetWirelessGatewayTaskCommand: (input
96
140
  export declare const serializeAws_restJson1GetWirelessGatewayTaskDefinitionCommand: (input: GetWirelessGatewayTaskDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
141
  export declare const serializeAws_restJson1ListDestinationsCommand: (input: ListDestinationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
142
  export declare const serializeAws_restJson1ListDeviceProfilesCommand: (input: ListDeviceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
143
+ export declare const serializeAws_restJson1ListFuotaTasksCommand: (input: ListFuotaTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
144
+ export declare const serializeAws_restJson1ListMulticastGroupsCommand: (input: ListMulticastGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
+ export declare const serializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (input: ListMulticastGroupsByFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
146
  export declare const serializeAws_restJson1ListPartnerAccountsCommand: (input: ListPartnerAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
147
  export declare const serializeAws_restJson1ListServiceProfilesCommand: (input: ListServiceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
148
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -105,21 +152,36 @@ export declare const serializeAws_restJson1ListWirelessGatewayTaskDefinitionsCom
105
152
  export declare const serializeAws_restJson1PutResourceLogLevelCommand: (input: PutResourceLogLevelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
153
  export declare const serializeAws_restJson1ResetAllResourceLogLevelsCommand: (input: ResetAllResourceLogLevelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
154
  export declare const serializeAws_restJson1ResetResourceLogLevelCommand: (input: ResetResourceLogLevelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
155
+ export declare const serializeAws_restJson1SendDataToMulticastGroupCommand: (input: SendDataToMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
156
  export declare const serializeAws_restJson1SendDataToWirelessDeviceCommand: (input: SendDataToWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
157
+ export declare const serializeAws_restJson1StartBulkAssociateWirelessDeviceWithMulticastGroupCommand: (input: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand: (input: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
159
+ export declare const serializeAws_restJson1StartFuotaTaskCommand: (input: StartFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
160
+ export declare const serializeAws_restJson1StartMulticastGroupSessionCommand: (input: StartMulticastGroupSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
161
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
162
  export declare const serializeAws_restJson1TestWirelessDeviceCommand: (input: TestWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
163
  export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
112
164
  export declare const serializeAws_restJson1UpdateDestinationCommand: (input: UpdateDestinationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
165
+ export declare const serializeAws_restJson1UpdateFuotaTaskCommand: (input: UpdateFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
166
  export declare const serializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (input: UpdateLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
167
+ export declare const serializeAws_restJson1UpdateMulticastGroupCommand: (input: UpdateMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
168
+ export declare const serializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (input: UpdateNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
169
  export declare const serializeAws_restJson1UpdatePartnerAccountCommand: (input: UpdatePartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1UpdateResourceEventConfigurationCommand: (input: UpdateResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
171
  export declare const serializeAws_restJson1UpdateWirelessDeviceCommand: (input: UpdateWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
172
  export declare const serializeAws_restJson1UpdateWirelessGatewayCommand: (input: UpdateWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
173
  export declare const deserializeAws_restJson1AssociateAwsAccountWithPartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAwsAccountWithPartnerAccountCommandOutput>;
174
+ export declare const deserializeAws_restJson1AssociateMulticastGroupWithFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateMulticastGroupWithFuotaTaskCommandOutput>;
175
+ export declare const deserializeAws_restJson1AssociateWirelessDeviceWithFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateWirelessDeviceWithFuotaTaskCommandOutput>;
176
+ export declare const deserializeAws_restJson1AssociateWirelessDeviceWithMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateWirelessDeviceWithMulticastGroupCommandOutput>;
118
177
  export declare const deserializeAws_restJson1AssociateWirelessDeviceWithThingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateWirelessDeviceWithThingCommandOutput>;
119
178
  export declare const deserializeAws_restJson1AssociateWirelessGatewayWithCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateWirelessGatewayWithCertificateCommandOutput>;
120
179
  export declare const deserializeAws_restJson1AssociateWirelessGatewayWithThingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateWirelessGatewayWithThingCommandOutput>;
180
+ export declare const deserializeAws_restJson1CancelMulticastGroupSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMulticastGroupSessionCommandOutput>;
121
181
  export declare const deserializeAws_restJson1CreateDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDestinationCommandOutput>;
122
182
  export declare const deserializeAws_restJson1CreateDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDeviceProfileCommandOutput>;
183
+ export declare const deserializeAws_restJson1CreateFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFuotaTaskCommandOutput>;
184
+ export declare const deserializeAws_restJson1CreateMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMulticastGroupCommandOutput>;
123
185
  export declare const deserializeAws_restJson1CreateServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceProfileCommandOutput>;
124
186
  export declare const deserializeAws_restJson1CreateWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWirelessDeviceCommandOutput>;
125
187
  export declare const deserializeAws_restJson1CreateWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWirelessGatewayCommandOutput>;
@@ -127,19 +189,29 @@ export declare const deserializeAws_restJson1CreateWirelessGatewayTaskCommand: (
127
189
  export declare const deserializeAws_restJson1CreateWirelessGatewayTaskDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWirelessGatewayTaskDefinitionCommandOutput>;
128
190
  export declare const deserializeAws_restJson1DeleteDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDestinationCommandOutput>;
129
191
  export declare const deserializeAws_restJson1DeleteDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceProfileCommandOutput>;
192
+ export declare const deserializeAws_restJson1DeleteFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFuotaTaskCommandOutput>;
193
+ export declare const deserializeAws_restJson1DeleteMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMulticastGroupCommandOutput>;
130
194
  export declare const deserializeAws_restJson1DeleteServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceProfileCommandOutput>;
131
195
  export declare const deserializeAws_restJson1DeleteWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessDeviceCommandOutput>;
132
196
  export declare const deserializeAws_restJson1DeleteWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayCommandOutput>;
133
197
  export declare const deserializeAws_restJson1DeleteWirelessGatewayTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayTaskCommandOutput>;
134
198
  export declare const deserializeAws_restJson1DeleteWirelessGatewayTaskDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayTaskDefinitionCommandOutput>;
135
199
  export declare const deserializeAws_restJson1DisassociateAwsAccountFromPartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateAwsAccountFromPartnerAccountCommandOutput>;
200
+ export declare const deserializeAws_restJson1DisassociateMulticastGroupFromFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateMulticastGroupFromFuotaTaskCommandOutput>;
201
+ export declare const deserializeAws_restJson1DisassociateWirelessDeviceFromFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateWirelessDeviceFromFuotaTaskCommandOutput>;
202
+ export declare const deserializeAws_restJson1DisassociateWirelessDeviceFromMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
136
203
  export declare const deserializeAws_restJson1DisassociateWirelessDeviceFromThingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateWirelessDeviceFromThingCommandOutput>;
137
204
  export declare const deserializeAws_restJson1DisassociateWirelessGatewayFromCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateWirelessGatewayFromCertificateCommandOutput>;
138
205
  export declare const deserializeAws_restJson1DisassociateWirelessGatewayFromThingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateWirelessGatewayFromThingCommandOutput>;
139
206
  export declare const deserializeAws_restJson1GetDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDestinationCommandOutput>;
140
207
  export declare const deserializeAws_restJson1GetDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeviceProfileCommandOutput>;
208
+ export declare const deserializeAws_restJson1GetFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFuotaTaskCommandOutput>;
141
209
  export declare const deserializeAws_restJson1GetLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLogLevelsByResourceTypesCommandOutput>;
210
+ export declare const deserializeAws_restJson1GetMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupCommandOutput>;
211
+ export declare const deserializeAws_restJson1GetMulticastGroupSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupSessionCommandOutput>;
212
+ export declare const deserializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
142
213
  export declare const deserializeAws_restJson1GetPartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPartnerAccountCommandOutput>;
214
+ export declare const deserializeAws_restJson1GetResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceEventConfigurationCommandOutput>;
143
215
  export declare const deserializeAws_restJson1GetResourceLogLevelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceLogLevelCommandOutput>;
144
216
  export declare const deserializeAws_restJson1GetServiceEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceEndpointCommandOutput>;
145
217
  export declare const deserializeAws_restJson1GetServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceProfileCommandOutput>;
@@ -153,6 +225,9 @@ export declare const deserializeAws_restJson1GetWirelessGatewayTaskCommand: (out
153
225
  export declare const deserializeAws_restJson1GetWirelessGatewayTaskDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWirelessGatewayTaskDefinitionCommandOutput>;
154
226
  export declare const deserializeAws_restJson1ListDestinationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDestinationsCommandOutput>;
155
227
  export declare const deserializeAws_restJson1ListDeviceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeviceProfilesCommandOutput>;
228
+ export declare const deserializeAws_restJson1ListFuotaTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFuotaTasksCommandOutput>;
229
+ export declare const deserializeAws_restJson1ListMulticastGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsCommandOutput>;
230
+ export declare const deserializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
156
231
  export declare const deserializeAws_restJson1ListPartnerAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPartnerAccountsCommandOutput>;
157
232
  export declare const deserializeAws_restJson1ListServiceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceProfilesCommandOutput>;
158
233
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
@@ -162,12 +237,21 @@ export declare const deserializeAws_restJson1ListWirelessGatewayTaskDefinitionsC
162
237
  export declare const deserializeAws_restJson1PutResourceLogLevelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourceLogLevelCommandOutput>;
163
238
  export declare const deserializeAws_restJson1ResetAllResourceLogLevelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetAllResourceLogLevelsCommandOutput>;
164
239
  export declare const deserializeAws_restJson1ResetResourceLogLevelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetResourceLogLevelCommandOutput>;
240
+ export declare const deserializeAws_restJson1SendDataToMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendDataToMulticastGroupCommandOutput>;
165
241
  export declare const deserializeAws_restJson1SendDataToWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendDataToWirelessDeviceCommandOutput>;
242
+ export declare const deserializeAws_restJson1StartBulkAssociateWirelessDeviceWithMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput>;
243
+ export declare const deserializeAws_restJson1StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
244
+ export declare const deserializeAws_restJson1StartFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFuotaTaskCommandOutput>;
245
+ export declare const deserializeAws_restJson1StartMulticastGroupSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMulticastGroupSessionCommandOutput>;
166
246
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
167
247
  export declare const deserializeAws_restJson1TestWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestWirelessDeviceCommandOutput>;
168
248
  export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
169
249
  export declare const deserializeAws_restJson1UpdateDestinationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDestinationCommandOutput>;
250
+ export declare const deserializeAws_restJson1UpdateFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFuotaTaskCommandOutput>;
170
251
  export declare const deserializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
252
+ export declare const deserializeAws_restJson1UpdateMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMulticastGroupCommandOutput>;
253
+ export declare const deserializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
171
254
  export declare const deserializeAws_restJson1UpdatePartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePartnerAccountCommandOutput>;
255
+ export declare const deserializeAws_restJson1UpdateResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceEventConfigurationCommandOutput>;
172
256
  export declare const deserializeAws_restJson1UpdateWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWirelessDeviceCommandOutput>;
173
257
  export declare const deserializeAws_restJson1UpdateWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWirelessGatewayCommandOutput>;
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: IoTWirelessClientConfig) => {
14
14
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
15
  sha256: import("@aws-sdk/types").HashConstructor;
16
16
  streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
17
19
  utf8Decoder: import("@aws-sdk/types").Decoder;
18
20
  utf8Encoder: import("@aws-sdk/types").Encoder;
19
21
  apiVersion: string;
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: IoTWirelessClientConfig) => {
14
14
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
15
  sha256: import("@aws-sdk/types").HashConstructor;
16
16
  streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
17
19
  utf8Decoder: import("@aws-sdk/types").Decoder;
18
20
  utf8Encoder: import("@aws-sdk/types").Encoder;
19
21
  apiVersion: string;
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: IoTWirelessClientConfig) => {
16
16
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
18
18
  logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
21
  serviceId: string;
20
22
  region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
21
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iot-wireless",
3
3
  "description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native",
4
- "version": "3.39.0",
4
+ "version": "3.43.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,32 +21,32 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.39.0",
25
- "@aws-sdk/config-resolver": "3.39.0",
26
- "@aws-sdk/credential-provider-node": "3.39.0",
27
- "@aws-sdk/fetch-http-handler": "3.38.0",
28
- "@aws-sdk/hash-node": "3.38.0",
29
- "@aws-sdk/invalid-dependency": "3.38.0",
30
- "@aws-sdk/middleware-content-length": "3.38.0",
31
- "@aws-sdk/middleware-host-header": "3.38.0",
32
- "@aws-sdk/middleware-logger": "3.38.0",
33
- "@aws-sdk/middleware-retry": "3.39.0",
34
- "@aws-sdk/middleware-serde": "3.38.0",
35
- "@aws-sdk/middleware-signing": "3.39.0",
36
- "@aws-sdk/middleware-stack": "3.38.0",
37
- "@aws-sdk/middleware-user-agent": "3.38.0",
38
- "@aws-sdk/node-config-provider": "3.39.0",
39
- "@aws-sdk/node-http-handler": "3.38.0",
40
- "@aws-sdk/protocol-http": "3.38.0",
41
- "@aws-sdk/smithy-client": "3.38.0",
42
- "@aws-sdk/types": "3.38.0",
43
- "@aws-sdk/url-parser": "3.38.0",
24
+ "@aws-sdk/client-sts": "3.43.0",
25
+ "@aws-sdk/config-resolver": "3.40.0",
26
+ "@aws-sdk/credential-provider-node": "3.41.0",
27
+ "@aws-sdk/fetch-http-handler": "3.40.0",
28
+ "@aws-sdk/hash-node": "3.40.0",
29
+ "@aws-sdk/invalid-dependency": "3.40.0",
30
+ "@aws-sdk/middleware-content-length": "3.40.0",
31
+ "@aws-sdk/middleware-host-header": "3.40.0",
32
+ "@aws-sdk/middleware-logger": "3.40.0",
33
+ "@aws-sdk/middleware-retry": "3.40.0",
34
+ "@aws-sdk/middleware-serde": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.40.0",
36
+ "@aws-sdk/middleware-stack": "3.40.0",
37
+ "@aws-sdk/middleware-user-agent": "3.40.0",
38
+ "@aws-sdk/node-config-provider": "3.40.0",
39
+ "@aws-sdk/node-http-handler": "3.40.0",
40
+ "@aws-sdk/protocol-http": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.41.0",
42
+ "@aws-sdk/types": "3.40.0",
43
+ "@aws-sdk/url-parser": "3.40.0",
44
44
  "@aws-sdk/util-base64-browser": "3.37.0",
45
45
  "@aws-sdk/util-base64-node": "3.37.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.37.0",
47
47
  "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.38.0",
49
- "@aws-sdk/util-user-agent-node": "3.39.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.40.0",
49
+ "@aws-sdk/util-user-agent-node": "3.40.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.37.0",
51
51
  "@aws-sdk/util-utf8-node": "3.37.0",
52
52
  "tslib": "^2.3.0",