@aws-sdk/client-iot-wireless 3.39.0 → 3.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist-cjs/IoTWireless.js +420 -0
  3. package/dist-cjs/commands/AssociateMulticastGroupWithFuotaTaskCommand.js +36 -0
  4. package/dist-cjs/commands/AssociateWirelessDeviceWithFuotaTaskCommand.js +36 -0
  5. package/dist-cjs/commands/AssociateWirelessDeviceWithMulticastGroupCommand.js +36 -0
  6. package/dist-cjs/commands/CancelMulticastGroupSessionCommand.js +36 -0
  7. package/dist-cjs/commands/CreateFuotaTaskCommand.js +36 -0
  8. package/dist-cjs/commands/CreateMulticastGroupCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteFuotaTaskCommand.js +36 -0
  10. package/dist-cjs/commands/DeleteMulticastGroupCommand.js +36 -0
  11. package/dist-cjs/commands/DisassociateMulticastGroupFromFuotaTaskCommand.js +36 -0
  12. package/dist-cjs/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.js +36 -0
  13. package/dist-cjs/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.js +36 -0
  14. package/dist-cjs/commands/GetFuotaTaskCommand.js +36 -0
  15. package/dist-cjs/commands/GetMulticastGroupCommand.js +36 -0
  16. package/dist-cjs/commands/GetMulticastGroupSessionCommand.js +36 -0
  17. package/dist-cjs/commands/GetNetworkAnalyzerConfigurationCommand.js +36 -0
  18. package/dist-cjs/commands/GetResourceEventConfigurationCommand.js +36 -0
  19. package/dist-cjs/commands/ListFuotaTasksCommand.js +36 -0
  20. package/dist-cjs/commands/ListMulticastGroupsByFuotaTaskCommand.js +36 -0
  21. package/dist-cjs/commands/ListMulticastGroupsCommand.js +36 -0
  22. package/dist-cjs/commands/SendDataToMulticastGroupCommand.js +36 -0
  23. package/dist-cjs/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.js +36 -0
  24. package/dist-cjs/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.js +36 -0
  25. package/dist-cjs/commands/StartFuotaTaskCommand.js +36 -0
  26. package/dist-cjs/commands/StartMulticastGroupSessionCommand.js +36 -0
  27. package/dist-cjs/commands/UpdateFuotaTaskCommand.js +36 -0
  28. package/dist-cjs/commands/UpdateMulticastGroupCommand.js +36 -0
  29. package/dist-cjs/commands/UpdateNetworkAnalyzerConfigurationCommand.js +36 -0
  30. package/dist-cjs/commands/UpdateResourceEventConfigurationCommand.js +36 -0
  31. package/dist-cjs/commands/index.js +28 -0
  32. package/dist-cjs/endpoints.js +121 -6
  33. package/dist-cjs/models/models_0.js +490 -4
  34. package/dist-cjs/pagination/ListFuotaTasksPaginator.js +35 -0
  35. package/dist-cjs/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +35 -0
  36. package/dist-cjs/pagination/ListMulticastGroupsPaginator.js +35 -0
  37. package/dist-cjs/pagination/index.js +3 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +4371 -896
  39. package/dist-cjs/runtimeConfig.browser.js +6 -3
  40. package/dist-cjs/runtimeConfig.js +5 -3
  41. package/dist-es/IoTWireless.js +420 -0
  42. package/dist-es/commands/AssociateMulticastGroupWithFuotaTaskCommand.js +39 -0
  43. package/dist-es/commands/AssociateWirelessDeviceWithFuotaTaskCommand.js +39 -0
  44. package/dist-es/commands/AssociateWirelessDeviceWithMulticastGroupCommand.js +39 -0
  45. package/dist-es/commands/CancelMulticastGroupSessionCommand.js +39 -0
  46. package/dist-es/commands/CreateFuotaTaskCommand.js +39 -0
  47. package/dist-es/commands/CreateMulticastGroupCommand.js +39 -0
  48. package/dist-es/commands/DeleteFuotaTaskCommand.js +39 -0
  49. package/dist-es/commands/DeleteMulticastGroupCommand.js +39 -0
  50. package/dist-es/commands/DisassociateMulticastGroupFromFuotaTaskCommand.js +39 -0
  51. package/dist-es/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.js +39 -0
  52. package/dist-es/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.js +39 -0
  53. package/dist-es/commands/GetFuotaTaskCommand.js +39 -0
  54. package/dist-es/commands/GetMulticastGroupCommand.js +39 -0
  55. package/dist-es/commands/GetMulticastGroupSessionCommand.js +39 -0
  56. package/dist-es/commands/GetNetworkAnalyzerConfigurationCommand.js +39 -0
  57. package/dist-es/commands/GetResourceEventConfigurationCommand.js +39 -0
  58. package/dist-es/commands/ListFuotaTasksCommand.js +39 -0
  59. package/dist-es/commands/ListMulticastGroupsByFuotaTaskCommand.js +39 -0
  60. package/dist-es/commands/ListMulticastGroupsCommand.js +39 -0
  61. package/dist-es/commands/SendDataToMulticastGroupCommand.js +39 -0
  62. package/dist-es/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.js +39 -0
  63. package/dist-es/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.js +39 -0
  64. package/dist-es/commands/StartFuotaTaskCommand.js +39 -0
  65. package/dist-es/commands/StartMulticastGroupSessionCommand.js +39 -0
  66. package/dist-es/commands/UpdateFuotaTaskCommand.js +39 -0
  67. package/dist-es/commands/UpdateMulticastGroupCommand.js +39 -0
  68. package/dist-es/commands/UpdateNetworkAnalyzerConfigurationCommand.js +39 -0
  69. package/dist-es/commands/UpdateResourceEventConfigurationCommand.js +39 -0
  70. package/dist-es/commands/index.js +28 -0
  71. package/dist-es/endpoints.js +121 -6
  72. package/dist-es/models/models_0.js +340 -0
  73. package/dist-es/pagination/ListFuotaTasksPaginator.js +74 -0
  74. package/dist-es/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +74 -0
  75. package/dist-es/pagination/ListMulticastGroupsPaginator.js +74 -0
  76. package/dist-es/pagination/index.js +3 -0
  77. package/dist-es/protocols/Aws_restJson1.js +5730 -1858
  78. package/dist-es/runtimeConfig.browser.js +3 -2
  79. package/dist-es/runtimeConfig.js +3 -3
  80. package/dist-types/IoTWireless.d.ts +196 -0
  81. package/dist-types/IoTWirelessClient.d.ts +38 -2
  82. package/dist-types/commands/AssociateAwsAccountWithPartnerAccountCommand.d.ts +1 -1
  83. package/dist-types/commands/AssociateMulticastGroupWithFuotaTaskCommand.d.ts +35 -0
  84. package/dist-types/commands/AssociateWirelessDeviceWithFuotaTaskCommand.d.ts +35 -0
  85. package/dist-types/commands/AssociateWirelessDeviceWithMulticastGroupCommand.d.ts +35 -0
  86. package/dist-types/commands/AssociateWirelessDeviceWithThingCommand.d.ts +1 -1
  87. package/dist-types/commands/AssociateWirelessGatewayWithCertificateCommand.d.ts +1 -1
  88. package/dist-types/commands/AssociateWirelessGatewayWithThingCommand.d.ts +1 -1
  89. package/dist-types/commands/CancelMulticastGroupSessionCommand.d.ts +35 -0
  90. package/dist-types/commands/CreateDestinationCommand.d.ts +1 -1
  91. package/dist-types/commands/CreateDeviceProfileCommand.d.ts +1 -1
  92. package/dist-types/commands/CreateFuotaTaskCommand.d.ts +35 -0
  93. package/dist-types/commands/CreateMulticastGroupCommand.d.ts +35 -0
  94. package/dist-types/commands/CreateServiceProfileCommand.d.ts +1 -1
  95. package/dist-types/commands/CreateWirelessDeviceCommand.d.ts +1 -1
  96. package/dist-types/commands/CreateWirelessGatewayCommand.d.ts +1 -1
  97. package/dist-types/commands/CreateWirelessGatewayTaskCommand.d.ts +1 -1
  98. package/dist-types/commands/CreateWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  99. package/dist-types/commands/DeleteDestinationCommand.d.ts +1 -1
  100. package/dist-types/commands/DeleteDeviceProfileCommand.d.ts +1 -1
  101. package/dist-types/commands/DeleteFuotaTaskCommand.d.ts +35 -0
  102. package/dist-types/commands/DeleteMulticastGroupCommand.d.ts +35 -0
  103. package/dist-types/commands/DeleteServiceProfileCommand.d.ts +1 -1
  104. package/dist-types/commands/DeleteWirelessDeviceCommand.d.ts +1 -1
  105. package/dist-types/commands/DeleteWirelessGatewayCommand.d.ts +1 -1
  106. package/dist-types/commands/DeleteWirelessGatewayTaskCommand.d.ts +1 -1
  107. package/dist-types/commands/DeleteWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  108. package/dist-types/commands/DisassociateAwsAccountFromPartnerAccountCommand.d.ts +1 -1
  109. package/dist-types/commands/DisassociateMulticastGroupFromFuotaTaskCommand.d.ts +35 -0
  110. package/dist-types/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.d.ts +35 -0
  111. package/dist-types/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +35 -0
  112. package/dist-types/commands/DisassociateWirelessDeviceFromThingCommand.d.ts +1 -1
  113. package/dist-types/commands/DisassociateWirelessGatewayFromCertificateCommand.d.ts +1 -1
  114. package/dist-types/commands/DisassociateWirelessGatewayFromThingCommand.d.ts +1 -1
  115. package/dist-types/commands/GetDestinationCommand.d.ts +1 -1
  116. package/dist-types/commands/GetDeviceProfileCommand.d.ts +1 -1
  117. package/dist-types/commands/GetFuotaTaskCommand.d.ts +35 -0
  118. package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +1 -1
  119. package/dist-types/commands/GetMulticastGroupCommand.d.ts +35 -0
  120. package/dist-types/commands/GetMulticastGroupSessionCommand.d.ts +35 -0
  121. package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  122. package/dist-types/commands/GetPartnerAccountCommand.d.ts +1 -1
  123. package/dist-types/commands/GetResourceEventConfigurationCommand.d.ts +35 -0
  124. package/dist-types/commands/GetResourceLogLevelCommand.d.ts +1 -1
  125. package/dist-types/commands/GetServiceEndpointCommand.d.ts +1 -1
  126. package/dist-types/commands/GetServiceProfileCommand.d.ts +1 -1
  127. package/dist-types/commands/GetWirelessDeviceCommand.d.ts +1 -1
  128. package/dist-types/commands/GetWirelessDeviceStatisticsCommand.d.ts +1 -1
  129. package/dist-types/commands/GetWirelessGatewayCertificateCommand.d.ts +1 -1
  130. package/dist-types/commands/GetWirelessGatewayCommand.d.ts +1 -1
  131. package/dist-types/commands/GetWirelessGatewayFirmwareInformationCommand.d.ts +1 -1
  132. package/dist-types/commands/GetWirelessGatewayStatisticsCommand.d.ts +1 -1
  133. package/dist-types/commands/GetWirelessGatewayTaskCommand.d.ts +1 -1
  134. package/dist-types/commands/GetWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  135. package/dist-types/commands/ListDestinationsCommand.d.ts +1 -1
  136. package/dist-types/commands/ListDeviceProfilesCommand.d.ts +1 -1
  137. package/dist-types/commands/ListFuotaTasksCommand.d.ts +35 -0
  138. package/dist-types/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +35 -0
  139. package/dist-types/commands/ListMulticastGroupsCommand.d.ts +35 -0
  140. package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
  141. package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
  142. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  143. package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -1
  144. package/dist-types/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
  145. package/dist-types/commands/ListWirelessGatewaysCommand.d.ts +1 -1
  146. package/dist-types/commands/PutResourceLogLevelCommand.d.ts +1 -1
  147. package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
  148. package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  149. package/dist-types/commands/SendDataToMulticastGroupCommand.d.ts +35 -0
  150. package/dist-types/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
  151. package/dist-types/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +35 -0
  152. package/dist-types/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +35 -0
  153. package/dist-types/commands/StartFuotaTaskCommand.d.ts +35 -0
  154. package/dist-types/commands/StartMulticastGroupSessionCommand.d.ts +35 -0
  155. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  156. package/dist-types/commands/TestWirelessDeviceCommand.d.ts +1 -1
  157. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  158. package/dist-types/commands/UpdateDestinationCommand.d.ts +1 -1
  159. package/dist-types/commands/UpdateFuotaTaskCommand.d.ts +35 -0
  160. package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +1 -1
  161. package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +35 -0
  162. package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  163. package/dist-types/commands/UpdatePartnerAccountCommand.d.ts +1 -1
  164. package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +35 -0
  165. package/dist-types/commands/UpdateWirelessDeviceCommand.d.ts +1 -1
  166. package/dist-types/commands/UpdateWirelessGatewayCommand.d.ts +1 -1
  167. package/dist-types/commands/index.d.ts +28 -0
  168. package/dist-types/models/models_0.d.ts +1307 -51
  169. package/dist-types/pagination/ListFuotaTasksPaginator.d.ts +4 -0
  170. package/dist-types/pagination/ListMulticastGroupsByFuotaTaskPaginator.d.ts +4 -0
  171. package/dist-types/pagination/ListMulticastGroupsPaginator.d.ts +4 -0
  172. package/dist-types/pagination/index.d.ts +3 -0
  173. package/dist-types/protocols/Aws_restJson1.d.ts +84 -0
  174. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  175. package/dist-types/runtimeConfig.d.ts +2 -0
  176. package/dist-types/runtimeConfig.native.d.ts +2 -0
  177. package/dist-types/ts3.4/IoTWireless.d.ts +140 -0
  178. package/dist-types/ts3.4/IoTWirelessClient.d.ts +34 -2
  179. package/dist-types/ts3.4/commands/AssociateMulticastGroupWithFuotaTaskCommand.d.ts +17 -0
  180. package/dist-types/ts3.4/commands/AssociateWirelessDeviceWithFuotaTaskCommand.d.ts +17 -0
  181. package/dist-types/ts3.4/commands/AssociateWirelessDeviceWithMulticastGroupCommand.d.ts +17 -0
  182. package/dist-types/ts3.4/commands/CancelMulticastGroupSessionCommand.d.ts +17 -0
  183. package/dist-types/ts3.4/commands/CreateFuotaTaskCommand.d.ts +17 -0
  184. package/dist-types/ts3.4/commands/CreateMulticastGroupCommand.d.ts +17 -0
  185. package/dist-types/ts3.4/commands/DeleteFuotaTaskCommand.d.ts +17 -0
  186. package/dist-types/ts3.4/commands/DeleteMulticastGroupCommand.d.ts +17 -0
  187. package/dist-types/ts3.4/commands/DisassociateMulticastGroupFromFuotaTaskCommand.d.ts +17 -0
  188. package/dist-types/ts3.4/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.d.ts +17 -0
  189. package/dist-types/ts3.4/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +17 -0
  190. package/dist-types/ts3.4/commands/GetFuotaTaskCommand.d.ts +17 -0
  191. package/dist-types/ts3.4/commands/GetMulticastGroupCommand.d.ts +17 -0
  192. package/dist-types/ts3.4/commands/GetMulticastGroupSessionCommand.d.ts +17 -0
  193. package/dist-types/ts3.4/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  194. package/dist-types/ts3.4/commands/GetResourceEventConfigurationCommand.d.ts +17 -0
  195. package/dist-types/ts3.4/commands/ListFuotaTasksCommand.d.ts +17 -0
  196. package/dist-types/ts3.4/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +17 -0
  197. package/dist-types/ts3.4/commands/ListMulticastGroupsCommand.d.ts +17 -0
  198. package/dist-types/ts3.4/commands/SendDataToMulticastGroupCommand.d.ts +17 -0
  199. package/dist-types/ts3.4/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +17 -0
  200. package/dist-types/ts3.4/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +17 -0
  201. package/dist-types/ts3.4/commands/StartFuotaTaskCommand.d.ts +17 -0
  202. package/dist-types/ts3.4/commands/StartMulticastGroupSessionCommand.d.ts +17 -0
  203. package/dist-types/ts3.4/commands/UpdateFuotaTaskCommand.d.ts +17 -0
  204. package/dist-types/ts3.4/commands/UpdateMulticastGroupCommand.d.ts +17 -0
  205. package/dist-types/ts3.4/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  206. package/dist-types/ts3.4/commands/UpdateResourceEventConfigurationCommand.d.ts +17 -0
  207. package/dist-types/ts3.4/commands/index.d.ts +28 -0
  208. package/dist-types/ts3.4/models/models_0.d.ts +784 -0
  209. package/dist-types/ts3.4/pagination/ListFuotaTasksPaginator.d.ts +4 -0
  210. package/dist-types/ts3.4/pagination/ListMulticastGroupsByFuotaTaskPaginator.d.ts +4 -0
  211. package/dist-types/ts3.4/pagination/ListMulticastGroupsPaginator.d.ts +4 -0
  212. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  213. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  214. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  215. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  216. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  217. package/package.json +23 -23
@@ -1,6 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { Sha256 } from "@aws-crypto/sha256-browser";
4
+ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
4
5
  import { FetchHttpHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
5
6
  import { invalidProvider } from "@aws-sdk/invalid-dependency";
6
7
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
@@ -10,7 +11,7 @@ import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
10
11
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
11
12
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
12
13
  export var getRuntimeConfig = function (config) {
13
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
14
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
14
15
  var clientSharedValues = getSharedRuntimeConfig(config);
15
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
16
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
16
17
  };
@@ -1,7 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
4
- import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS } from "@aws-sdk/config-resolver";
4
+ import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
5
5
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
6
6
  import { Hash } from "@aws-sdk/hash-node";
7
7
  import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
@@ -14,8 +14,8 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
14
14
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
15
15
  import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
16
16
  export var getRuntimeConfig = function (config) {
17
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
17
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
18
18
  emitWarningIfUnsupportedVersion(process.version);
19
19
  var clientSharedValues = getSharedRuntimeConfig(config);
20
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
20
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
21
21
  };
@@ -1,10 +1,16 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
2
  import { AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput } from "./commands/AssociateAwsAccountWithPartnerAccountCommand";
3
+ import { AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput } from "./commands/AssociateMulticastGroupWithFuotaTaskCommand";
4
+ import { AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput } from "./commands/AssociateWirelessDeviceWithFuotaTaskCommand";
5
+ import { AssociateWirelessDeviceWithMulticastGroupCommandInput, AssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/AssociateWirelessDeviceWithMulticastGroupCommand";
3
6
  import { AssociateWirelessDeviceWithThingCommandInput, AssociateWirelessDeviceWithThingCommandOutput } from "./commands/AssociateWirelessDeviceWithThingCommand";
4
7
  import { AssociateWirelessGatewayWithCertificateCommandInput, AssociateWirelessGatewayWithCertificateCommandOutput } from "./commands/AssociateWirelessGatewayWithCertificateCommand";
5
8
  import { AssociateWirelessGatewayWithThingCommandInput, AssociateWirelessGatewayWithThingCommandOutput } from "./commands/AssociateWirelessGatewayWithThingCommand";
9
+ import { CancelMulticastGroupSessionCommandInput, CancelMulticastGroupSessionCommandOutput } from "./commands/CancelMulticastGroupSessionCommand";
6
10
  import { CreateDestinationCommandInput, CreateDestinationCommandOutput } from "./commands/CreateDestinationCommand";
7
11
  import { CreateDeviceProfileCommandInput, CreateDeviceProfileCommandOutput } from "./commands/CreateDeviceProfileCommand";
12
+ import { CreateFuotaTaskCommandInput, CreateFuotaTaskCommandOutput } from "./commands/CreateFuotaTaskCommand";
13
+ import { CreateMulticastGroupCommandInput, CreateMulticastGroupCommandOutput } from "./commands/CreateMulticastGroupCommand";
8
14
  import { CreateServiceProfileCommandInput, CreateServiceProfileCommandOutput } from "./commands/CreateServiceProfileCommand";
9
15
  import { CreateWirelessDeviceCommandInput, CreateWirelessDeviceCommandOutput } from "./commands/CreateWirelessDeviceCommand";
10
16
  import { CreateWirelessGatewayCommandInput, CreateWirelessGatewayCommandOutput } from "./commands/CreateWirelessGatewayCommand";
@@ -12,19 +18,29 @@ import { CreateWirelessGatewayTaskCommandInput, CreateWirelessGatewayTaskCommand
12
18
  import { CreateWirelessGatewayTaskDefinitionCommandInput, CreateWirelessGatewayTaskDefinitionCommandOutput } from "./commands/CreateWirelessGatewayTaskDefinitionCommand";
13
19
  import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from "./commands/DeleteDestinationCommand";
14
20
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
21
+ import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
22
+ import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
15
23
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
16
24
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
17
25
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
18
26
  import { DeleteWirelessGatewayTaskCommandInput, DeleteWirelessGatewayTaskCommandOutput } from "./commands/DeleteWirelessGatewayTaskCommand";
19
27
  import { DeleteWirelessGatewayTaskDefinitionCommandInput, DeleteWirelessGatewayTaskDefinitionCommandOutput } from "./commands/DeleteWirelessGatewayTaskDefinitionCommand";
20
28
  import { DisassociateAwsAccountFromPartnerAccountCommandInput, DisassociateAwsAccountFromPartnerAccountCommandOutput } from "./commands/DisassociateAwsAccountFromPartnerAccountCommand";
29
+ import { DisassociateMulticastGroupFromFuotaTaskCommandInput, DisassociateMulticastGroupFromFuotaTaskCommandOutput } from "./commands/DisassociateMulticastGroupFromFuotaTaskCommand";
30
+ import { DisassociateWirelessDeviceFromFuotaTaskCommandInput, DisassociateWirelessDeviceFromFuotaTaskCommandOutput } from "./commands/DisassociateWirelessDeviceFromFuotaTaskCommand";
31
+ import { DisassociateWirelessDeviceFromMulticastGroupCommandInput, DisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/DisassociateWirelessDeviceFromMulticastGroupCommand";
21
32
  import { DisassociateWirelessDeviceFromThingCommandInput, DisassociateWirelessDeviceFromThingCommandOutput } from "./commands/DisassociateWirelessDeviceFromThingCommand";
22
33
  import { DisassociateWirelessGatewayFromCertificateCommandInput, DisassociateWirelessGatewayFromCertificateCommandOutput } from "./commands/DisassociateWirelessGatewayFromCertificateCommand";
23
34
  import { DisassociateWirelessGatewayFromThingCommandInput, DisassociateWirelessGatewayFromThingCommandOutput } from "./commands/DisassociateWirelessGatewayFromThingCommand";
24
35
  import { GetDestinationCommandInput, GetDestinationCommandOutput } from "./commands/GetDestinationCommand";
25
36
  import { GetDeviceProfileCommandInput, GetDeviceProfileCommandOutput } from "./commands/GetDeviceProfileCommand";
37
+ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/GetFuotaTaskCommand";
26
38
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
39
+ import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
40
+ import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
41
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
27
42
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
43
+ import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
28
44
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
29
45
  import { GetServiceEndpointCommandInput, GetServiceEndpointCommandOutput } from "./commands/GetServiceEndpointCommand";
30
46
  import { GetServiceProfileCommandInput, GetServiceProfileCommandOutput } from "./commands/GetServiceProfileCommand";
@@ -38,6 +54,9 @@ import { GetWirelessGatewayTaskCommandInput, GetWirelessGatewayTaskCommandOutput
38
54
  import { GetWirelessGatewayTaskDefinitionCommandInput, GetWirelessGatewayTaskDefinitionCommandOutput } from "./commands/GetWirelessGatewayTaskDefinitionCommand";
39
55
  import { ListDestinationsCommandInput, ListDestinationsCommandOutput } from "./commands/ListDestinationsCommand";
40
56
  import { ListDeviceProfilesCommandInput, ListDeviceProfilesCommandOutput } from "./commands/ListDeviceProfilesCommand";
57
+ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./commands/ListFuotaTasksCommand";
58
+ import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
59
+ import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
41
60
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
42
61
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
43
62
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
@@ -47,13 +66,22 @@ import { ListWirelessGatewayTaskDefinitionsCommandInput, ListWirelessGatewayTask
47
66
  import { PutResourceLogLevelCommandInput, PutResourceLogLevelCommandOutput } from "./commands/PutResourceLogLevelCommand";
48
67
  import { ResetAllResourceLogLevelsCommandInput, ResetAllResourceLogLevelsCommandOutput } from "./commands/ResetAllResourceLogLevelsCommand";
49
68
  import { ResetResourceLogLevelCommandInput, ResetResourceLogLevelCommandOutput } from "./commands/ResetResourceLogLevelCommand";
69
+ import { SendDataToMulticastGroupCommandInput, SendDataToMulticastGroupCommandOutput } from "./commands/SendDataToMulticastGroupCommand";
50
70
  import { SendDataToWirelessDeviceCommandInput, SendDataToWirelessDeviceCommandOutput } from "./commands/SendDataToWirelessDeviceCommand";
71
+ import { StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand";
72
+ import { StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand";
73
+ import { StartFuotaTaskCommandInput, StartFuotaTaskCommandOutput } from "./commands/StartFuotaTaskCommand";
74
+ import { StartMulticastGroupSessionCommandInput, StartMulticastGroupSessionCommandOutput } from "./commands/StartMulticastGroupSessionCommand";
51
75
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
52
76
  import { TestWirelessDeviceCommandInput, TestWirelessDeviceCommandOutput } from "./commands/TestWirelessDeviceCommand";
53
77
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
54
78
  import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from "./commands/UpdateDestinationCommand";
79
+ import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
55
80
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
81
+ import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
82
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
56
83
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
84
+ import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
57
85
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
58
86
  import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
59
87
  import { IoTWirelessClient } from "./IoTWirelessClient";
@@ -67,6 +95,24 @@ export declare class IoTWireless extends IoTWirelessClient {
67
95
  associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAwsAccountWithPartnerAccountCommandOutput>;
68
96
  associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, cb: (err: any, data?: AssociateAwsAccountWithPartnerAccountCommandOutput) => void): void;
69
97
  associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAwsAccountWithPartnerAccountCommandOutput) => void): void;
98
+ /**
99
+ * <p>Associate a multicast group with a FUOTA task.</p>
100
+ */
101
+ associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<AssociateMulticastGroupWithFuotaTaskCommandOutput>;
102
+ associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, cb: (err: any, data?: AssociateMulticastGroupWithFuotaTaskCommandOutput) => void): void;
103
+ associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateMulticastGroupWithFuotaTaskCommandOutput) => void): void;
104
+ /**
105
+ * <p>Associate a wireless device with a FUOTA task.</p>
106
+ */
107
+ associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithFuotaTaskCommandOutput>;
108
+ associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithFuotaTaskCommandOutput) => void): void;
109
+ associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithFuotaTaskCommandOutput) => void): void;
110
+ /**
111
+ * <p>Associates a wireless device with a multicast group.</p>
112
+ */
113
+ associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithMulticastGroupCommandOutput>;
114
+ associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
115
+ associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
70
116
  /**
71
117
  * <p>Associates a wireless device with a thing.</p>
72
118
  */
@@ -85,6 +131,12 @@ export declare class IoTWireless extends IoTWirelessClient {
85
131
  associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessGatewayWithThingCommandOutput>;
86
132
  associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, cb: (err: any, data?: AssociateWirelessGatewayWithThingCommandOutput) => void): void;
87
133
  associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessGatewayWithThingCommandOutput) => void): void;
134
+ /**
135
+ * <p>Cancels an existing multicast group session.</p>
136
+ */
137
+ cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<CancelMulticastGroupSessionCommandOutput>;
138
+ cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, cb: (err: any, data?: CancelMulticastGroupSessionCommandOutput) => void): void;
139
+ cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelMulticastGroupSessionCommandOutput) => void): void;
88
140
  /**
89
141
  * <p>Creates a new destination that maps a device message to an AWS IoT rule.</p>
90
142
  */
@@ -97,6 +149,18 @@ export declare class IoTWireless extends IoTWirelessClient {
97
149
  createDeviceProfile(args: CreateDeviceProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeviceProfileCommandOutput>;
98
150
  createDeviceProfile(args: CreateDeviceProfileCommandInput, cb: (err: any, data?: CreateDeviceProfileCommandOutput) => void): void;
99
151
  createDeviceProfile(args: CreateDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeviceProfileCommandOutput) => void): void;
152
+ /**
153
+ * <p>Creates a FUOTA task.</p>
154
+ */
155
+ createFuotaTask(args: CreateFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateFuotaTaskCommandOutput>;
156
+ createFuotaTask(args: CreateFuotaTaskCommandInput, cb: (err: any, data?: CreateFuotaTaskCommandOutput) => void): void;
157
+ createFuotaTask(args: CreateFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFuotaTaskCommandOutput) => void): void;
158
+ /**
159
+ * <p>Creates a multicast group.</p>
160
+ */
161
+ createMulticastGroup(args: CreateMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateMulticastGroupCommandOutput>;
162
+ createMulticastGroup(args: CreateMulticastGroupCommandInput, cb: (err: any, data?: CreateMulticastGroupCommandOutput) => void): void;
163
+ createMulticastGroup(args: CreateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMulticastGroupCommandOutput) => void): void;
100
164
  /**
101
165
  * <p>Creates a new service profile.</p>
102
166
  */
@@ -139,6 +203,18 @@ export declare class IoTWireless extends IoTWirelessClient {
139
203
  deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDeviceProfileCommandOutput>;
140
204
  deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, cb: (err: any, data?: DeleteDeviceProfileCommandOutput) => void): void;
141
205
  deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeviceProfileCommandOutput) => void): void;
206
+ /**
207
+ * <p>Deletes a FUOTA task.</p>
208
+ */
209
+ deleteFuotaTask(args: DeleteFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFuotaTaskCommandOutput>;
210
+ deleteFuotaTask(args: DeleteFuotaTaskCommandInput, cb: (err: any, data?: DeleteFuotaTaskCommandOutput) => void): void;
211
+ deleteFuotaTask(args: DeleteFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFuotaTaskCommandOutput) => void): void;
212
+ /**
213
+ * <p>Deletes a multicast group if it is not in use by a fuota task.</p>
214
+ */
215
+ deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMulticastGroupCommandOutput>;
216
+ deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
217
+ deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
142
218
  /**
143
219
  * <p>Deletes a service profile.</p>
144
220
  */
@@ -175,6 +251,24 @@ export declare class IoTWireless extends IoTWirelessClient {
175
251
  disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAwsAccountFromPartnerAccountCommandOutput>;
176
252
  disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, cb: (err: any, data?: DisassociateAwsAccountFromPartnerAccountCommandOutput) => void): void;
177
253
  disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAwsAccountFromPartnerAccountCommandOutput) => void): void;
254
+ /**
255
+ * <p>Disassociates a multicast group from a fuota task.</p>
256
+ */
257
+ disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateMulticastGroupFromFuotaTaskCommandOutput>;
258
+ disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, cb: (err: any, data?: DisassociateMulticastGroupFromFuotaTaskCommandOutput) => void): void;
259
+ disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateMulticastGroupFromFuotaTaskCommandOutput) => void): void;
260
+ /**
261
+ * <p>Disassociates a wireless device from a FUOTA task.</p>
262
+ */
263
+ disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromFuotaTaskCommandOutput>;
264
+ disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromFuotaTaskCommandOutput) => void): void;
265
+ disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromFuotaTaskCommandOutput) => void): void;
266
+ /**
267
+ * <p>Disassociates a wireless device from a multicast group.</p>
268
+ */
269
+ disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
270
+ disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
271
+ disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
178
272
  /**
179
273
  * <p>Disassociates a wireless device from its currently associated thing.</p>
180
274
  */
@@ -205,6 +299,12 @@ export declare class IoTWireless extends IoTWirelessClient {
205
299
  getDeviceProfile(args: GetDeviceProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceProfileCommandOutput>;
206
300
  getDeviceProfile(args: GetDeviceProfileCommandInput, cb: (err: any, data?: GetDeviceProfileCommandOutput) => void): void;
207
301
  getDeviceProfile(args: GetDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceProfileCommandOutput) => void): void;
302
+ /**
303
+ * <p>Gets information about a FUOTA task.</p>
304
+ */
305
+ getFuotaTask(args: GetFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetFuotaTaskCommandOutput>;
306
+ getFuotaTask(args: GetFuotaTaskCommandInput, cb: (err: any, data?: GetFuotaTaskCommandOutput) => void): void;
307
+ getFuotaTask(args: GetFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFuotaTaskCommandOutput) => void): void;
208
308
  /**
209
309
  * <p>Returns current default log levels or log levels by resource types. Based on resource types, log levels can be
210
310
  * for wireless device log options or wireless gateway log options.</p>
@@ -212,12 +312,36 @@ export declare class IoTWireless extends IoTWirelessClient {
212
312
  getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetLogLevelsByResourceTypesCommandOutput>;
213
313
  getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, cb: (err: any, data?: GetLogLevelsByResourceTypesCommandOutput) => void): void;
214
314
  getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLogLevelsByResourceTypesCommandOutput) => void): void;
315
+ /**
316
+ * <p>Gets information about a multicast group.</p>
317
+ */
318
+ getMulticastGroup(args: GetMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetMulticastGroupCommandOutput>;
319
+ getMulticastGroup(args: GetMulticastGroupCommandInput, cb: (err: any, data?: GetMulticastGroupCommandOutput) => void): void;
320
+ getMulticastGroup(args: GetMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupCommandOutput) => void): void;
321
+ /**
322
+ * <p>Gets information about a multicast group session.</p>
323
+ */
324
+ getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetMulticastGroupSessionCommandOutput>;
325
+ getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
326
+ getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
327
+ /**
328
+ * <p>Get NetworkAnalyzer configuration.</p>
329
+ */
330
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
331
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
332
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
215
333
  /**
216
334
  * <p>Gets information about a partner account. If <code>PartnerAccountId</code> and <code>PartnerType</code> are <code>null</code>, returns all partner accounts.</p>
217
335
  */
218
336
  getPartnerAccount(args: GetPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetPartnerAccountCommandOutput>;
219
337
  getPartnerAccount(args: GetPartnerAccountCommandInput, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
220
338
  getPartnerAccount(args: GetPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
339
+ /**
340
+ * <p>Get the event configuration for a particular resource identifier.</p>
341
+ */
342
+ getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceEventConfigurationCommandOutput>;
343
+ getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, cb: (err: any, data?: GetResourceEventConfigurationCommandOutput) => void): void;
344
+ getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceEventConfigurationCommandOutput) => void): void;
221
345
  /**
222
346
  * <p>Fetches the log-level override, if any, for a given resource-ID and resource-type. It can be used for
223
347
  * a wireless device or a wireless gateway.</p>
@@ -297,6 +421,24 @@ export declare class IoTWireless extends IoTWirelessClient {
297
421
  listDeviceProfiles(args: ListDeviceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListDeviceProfilesCommandOutput>;
298
422
  listDeviceProfiles(args: ListDeviceProfilesCommandInput, cb: (err: any, data?: ListDeviceProfilesCommandOutput) => void): void;
299
423
  listDeviceProfiles(args: ListDeviceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceProfilesCommandOutput) => void): void;
424
+ /**
425
+ * <p>Lists the FUOTA tasks registered to your AWS account.</p>
426
+ */
427
+ listFuotaTasks(args: ListFuotaTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListFuotaTasksCommandOutput>;
428
+ listFuotaTasks(args: ListFuotaTasksCommandInput, cb: (err: any, data?: ListFuotaTasksCommandOutput) => void): void;
429
+ listFuotaTasks(args: ListFuotaTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFuotaTasksCommandOutput) => void): void;
430
+ /**
431
+ * <p>Lists the multicast groups registered to your AWS account.</p>
432
+ */
433
+ listMulticastGroups(args: ListMulticastGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListMulticastGroupsCommandOutput>;
434
+ listMulticastGroups(args: ListMulticastGroupsCommandInput, cb: (err: any, data?: ListMulticastGroupsCommandOutput) => void): void;
435
+ listMulticastGroups(args: ListMulticastGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMulticastGroupsCommandOutput) => void): void;
436
+ /**
437
+ * <p>List all multicast groups associated with a fuota task.</p>
438
+ */
439
+ listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
440
+ listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, cb: (err: any, data?: ListMulticastGroupsByFuotaTaskCommandOutput) => void): void;
441
+ listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMulticastGroupsByFuotaTaskCommandOutput) => void): void;
300
442
  /**
301
443
  * <p>Lists the partner accounts associated with your AWS account.</p>
302
444
  */
@@ -353,12 +495,42 @@ export declare class IoTWireless extends IoTWirelessClient {
353
495
  resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, options?: __HttpHandlerOptions): Promise<ResetResourceLogLevelCommandOutput>;
354
496
  resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, cb: (err: any, data?: ResetResourceLogLevelCommandOutput) => void): void;
355
497
  resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetResourceLogLevelCommandOutput) => void): void;
498
+ /**
499
+ * <p>Sends the specified data to a multicast group.</p>
500
+ */
501
+ sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<SendDataToMulticastGroupCommandOutput>;
502
+ sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, cb: (err: any, data?: SendDataToMulticastGroupCommandOutput) => void): void;
503
+ sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDataToMulticastGroupCommandOutput) => void): void;
356
504
  /**
357
505
  * <p>Sends a decrypted application data frame to a device.</p>
358
506
  */
359
507
  sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<SendDataToWirelessDeviceCommandOutput>;
360
508
  sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, cb: (err: any, data?: SendDataToWirelessDeviceCommandOutput) => void): void;
361
509
  sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDataToWirelessDeviceCommandOutput) => void): void;
510
+ /**
511
+ * <p>Starts a bulk association of all qualifying wireless devices with a multicast group.</p>
512
+ */
513
+ startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput>;
514
+ startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, cb: (err: any, data?: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
515
+ startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
516
+ /**
517
+ * <p>Starts a bulk disassociatin of all qualifying wireless devices from a multicast group.</p>
518
+ */
519
+ startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
520
+ startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, cb: (err: any, data?: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
521
+ startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
522
+ /**
523
+ * <p>Starts a FUOTA task.</p>
524
+ */
525
+ startFuotaTask(args: StartFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartFuotaTaskCommandOutput>;
526
+ startFuotaTask(args: StartFuotaTaskCommandInput, cb: (err: any, data?: StartFuotaTaskCommandOutput) => void): void;
527
+ startFuotaTask(args: StartFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFuotaTaskCommandOutput) => void): void;
528
+ /**
529
+ * <p>Starts a multicast group session.</p>
530
+ */
531
+ startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<StartMulticastGroupSessionCommandOutput>;
532
+ startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, cb: (err: any, data?: StartMulticastGroupSessionCommandOutput) => void): void;
533
+ startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMulticastGroupSessionCommandOutput) => void): void;
362
534
  /**
363
535
  * <p>Adds a tag to a resource.</p>
364
536
  */
@@ -383,6 +555,12 @@ export declare class IoTWireless extends IoTWirelessClient {
383
555
  updateDestination(args: UpdateDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDestinationCommandOutput>;
384
556
  updateDestination(args: UpdateDestinationCommandInput, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
385
557
  updateDestination(args: UpdateDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
558
+ /**
559
+ * <p>Updates properties of a FUOTA task.</p>
560
+ */
561
+ updateFuotaTask(args: UpdateFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFuotaTaskCommandOutput>;
562
+ updateFuotaTask(args: UpdateFuotaTaskCommandInput, cb: (err: any, data?: UpdateFuotaTaskCommandOutput) => void): void;
563
+ updateFuotaTask(args: UpdateFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFuotaTaskCommandOutput) => void): void;
386
564
  /**
387
565
  * <p>Set default log level, or log levels by resource types. This can be for wireless device log options or
388
566
  * wireless gateways log options and is used to control the log messages that'll be displayed in CloudWatch.</p>
@@ -390,12 +568,30 @@ export declare class IoTWireless extends IoTWirelessClient {
390
568
  updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
391
569
  updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, cb: (err: any, data?: UpdateLogLevelsByResourceTypesCommandOutput) => void): void;
392
570
  updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLogLevelsByResourceTypesCommandOutput) => void): void;
571
+ /**
572
+ * <p>Updates properties of a multicast group session.</p>
573
+ */
574
+ updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMulticastGroupCommandOutput>;
575
+ updateMulticastGroup(args: UpdateMulticastGroupCommandInput, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
576
+ updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
577
+ /**
578
+ * <p>Update NetworkAnalyzer configuration.</p>
579
+ */
580
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
581
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
582
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
393
583
  /**
394
584
  * <p>Updates properties of a partner account.</p>
395
585
  */
396
586
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePartnerAccountCommandOutput>;
397
587
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
398
588
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
589
+ /**
590
+ * <p>Update the event configuration for a particular resource identifier.</p>
591
+ */
592
+ updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceEventConfigurationCommandOutput>;
593
+ updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, cb: (err: any, data?: UpdateResourceEventConfigurationCommandOutput) => void): void;
594
+ updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceEventConfigurationCommandOutput) => void): void;
399
595
  /**
400
596
  * <p>Updates properties of a wireless device.</p>
401
597
  */
@@ -7,11 +7,17 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput } from "./commands/AssociateAwsAccountWithPartnerAccountCommand";
10
+ import { AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput } from "./commands/AssociateMulticastGroupWithFuotaTaskCommand";
11
+ import { AssociateWirelessDeviceWithFuotaTaskCommandInput, AssociateWirelessDeviceWithFuotaTaskCommandOutput } from "./commands/AssociateWirelessDeviceWithFuotaTaskCommand";
12
+ import { AssociateWirelessDeviceWithMulticastGroupCommandInput, AssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/AssociateWirelessDeviceWithMulticastGroupCommand";
10
13
  import { AssociateWirelessDeviceWithThingCommandInput, AssociateWirelessDeviceWithThingCommandOutput } from "./commands/AssociateWirelessDeviceWithThingCommand";
11
14
  import { AssociateWirelessGatewayWithCertificateCommandInput, AssociateWirelessGatewayWithCertificateCommandOutput } from "./commands/AssociateWirelessGatewayWithCertificateCommand";
12
15
  import { AssociateWirelessGatewayWithThingCommandInput, AssociateWirelessGatewayWithThingCommandOutput } from "./commands/AssociateWirelessGatewayWithThingCommand";
16
+ import { CancelMulticastGroupSessionCommandInput, CancelMulticastGroupSessionCommandOutput } from "./commands/CancelMulticastGroupSessionCommand";
13
17
  import { CreateDestinationCommandInput, CreateDestinationCommandOutput } from "./commands/CreateDestinationCommand";
14
18
  import { CreateDeviceProfileCommandInput, CreateDeviceProfileCommandOutput } from "./commands/CreateDeviceProfileCommand";
19
+ import { CreateFuotaTaskCommandInput, CreateFuotaTaskCommandOutput } from "./commands/CreateFuotaTaskCommand";
20
+ import { CreateMulticastGroupCommandInput, CreateMulticastGroupCommandOutput } from "./commands/CreateMulticastGroupCommand";
15
21
  import { CreateServiceProfileCommandInput, CreateServiceProfileCommandOutput } from "./commands/CreateServiceProfileCommand";
16
22
  import { CreateWirelessDeviceCommandInput, CreateWirelessDeviceCommandOutput } from "./commands/CreateWirelessDeviceCommand";
17
23
  import { CreateWirelessGatewayCommandInput, CreateWirelessGatewayCommandOutput } from "./commands/CreateWirelessGatewayCommand";
@@ -19,19 +25,29 @@ import { CreateWirelessGatewayTaskCommandInput, CreateWirelessGatewayTaskCommand
19
25
  import { CreateWirelessGatewayTaskDefinitionCommandInput, CreateWirelessGatewayTaskDefinitionCommandOutput } from "./commands/CreateWirelessGatewayTaskDefinitionCommand";
20
26
  import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from "./commands/DeleteDestinationCommand";
21
27
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
28
+ import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
29
+ import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
22
30
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
23
31
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
24
32
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
25
33
  import { DeleteWirelessGatewayTaskCommandInput, DeleteWirelessGatewayTaskCommandOutput } from "./commands/DeleteWirelessGatewayTaskCommand";
26
34
  import { DeleteWirelessGatewayTaskDefinitionCommandInput, DeleteWirelessGatewayTaskDefinitionCommandOutput } from "./commands/DeleteWirelessGatewayTaskDefinitionCommand";
27
35
  import { DisassociateAwsAccountFromPartnerAccountCommandInput, DisassociateAwsAccountFromPartnerAccountCommandOutput } from "./commands/DisassociateAwsAccountFromPartnerAccountCommand";
36
+ import { DisassociateMulticastGroupFromFuotaTaskCommandInput, DisassociateMulticastGroupFromFuotaTaskCommandOutput } from "./commands/DisassociateMulticastGroupFromFuotaTaskCommand";
37
+ import { DisassociateWirelessDeviceFromFuotaTaskCommandInput, DisassociateWirelessDeviceFromFuotaTaskCommandOutput } from "./commands/DisassociateWirelessDeviceFromFuotaTaskCommand";
38
+ import { DisassociateWirelessDeviceFromMulticastGroupCommandInput, DisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/DisassociateWirelessDeviceFromMulticastGroupCommand";
28
39
  import { DisassociateWirelessDeviceFromThingCommandInput, DisassociateWirelessDeviceFromThingCommandOutput } from "./commands/DisassociateWirelessDeviceFromThingCommand";
29
40
  import { DisassociateWirelessGatewayFromCertificateCommandInput, DisassociateWirelessGatewayFromCertificateCommandOutput } from "./commands/DisassociateWirelessGatewayFromCertificateCommand";
30
41
  import { DisassociateWirelessGatewayFromThingCommandInput, DisassociateWirelessGatewayFromThingCommandOutput } from "./commands/DisassociateWirelessGatewayFromThingCommand";
31
42
  import { GetDestinationCommandInput, GetDestinationCommandOutput } from "./commands/GetDestinationCommand";
32
43
  import { GetDeviceProfileCommandInput, GetDeviceProfileCommandOutput } from "./commands/GetDeviceProfileCommand";
44
+ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/GetFuotaTaskCommand";
33
45
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
46
+ import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
47
+ import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
48
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
34
49
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
50
+ import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
35
51
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
36
52
  import { GetServiceEndpointCommandInput, GetServiceEndpointCommandOutput } from "./commands/GetServiceEndpointCommand";
37
53
  import { GetServiceProfileCommandInput, GetServiceProfileCommandOutput } from "./commands/GetServiceProfileCommand";
@@ -45,6 +61,9 @@ import { GetWirelessGatewayTaskCommandInput, GetWirelessGatewayTaskCommandOutput
45
61
  import { GetWirelessGatewayTaskDefinitionCommandInput, GetWirelessGatewayTaskDefinitionCommandOutput } from "./commands/GetWirelessGatewayTaskDefinitionCommand";
46
62
  import { ListDestinationsCommandInput, ListDestinationsCommandOutput } from "./commands/ListDestinationsCommand";
47
63
  import { ListDeviceProfilesCommandInput, ListDeviceProfilesCommandOutput } from "./commands/ListDeviceProfilesCommand";
64
+ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./commands/ListFuotaTasksCommand";
65
+ import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
66
+ import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
48
67
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
49
68
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
50
69
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
@@ -54,17 +73,26 @@ import { ListWirelessGatewayTaskDefinitionsCommandInput, ListWirelessGatewayTask
54
73
  import { PutResourceLogLevelCommandInput, PutResourceLogLevelCommandOutput } from "./commands/PutResourceLogLevelCommand";
55
74
  import { ResetAllResourceLogLevelsCommandInput, ResetAllResourceLogLevelsCommandOutput } from "./commands/ResetAllResourceLogLevelsCommand";
56
75
  import { ResetResourceLogLevelCommandInput, ResetResourceLogLevelCommandOutput } from "./commands/ResetResourceLogLevelCommand";
76
+ import { SendDataToMulticastGroupCommandInput, SendDataToMulticastGroupCommandOutput } from "./commands/SendDataToMulticastGroupCommand";
57
77
  import { SendDataToWirelessDeviceCommandInput, SendDataToWirelessDeviceCommandOutput } from "./commands/SendDataToWirelessDeviceCommand";
78
+ import { StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput } from "./commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand";
79
+ import { StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput } from "./commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand";
80
+ import { StartFuotaTaskCommandInput, StartFuotaTaskCommandOutput } from "./commands/StartFuotaTaskCommand";
81
+ import { StartMulticastGroupSessionCommandInput, StartMulticastGroupSessionCommandOutput } from "./commands/StartMulticastGroupSessionCommand";
58
82
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
59
83
  import { TestWirelessDeviceCommandInput, TestWirelessDeviceCommandOutput } from "./commands/TestWirelessDeviceCommand";
60
84
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
61
85
  import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from "./commands/UpdateDestinationCommand";
86
+ import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
62
87
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
88
+ import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
89
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
63
90
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
91
+ import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
64
92
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
65
93
  import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
66
- export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetLogLevelsByResourceTypesCommandInput | GetPartnerAccountCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListPartnerAccountsCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToWirelessDeviceCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdatePartnerAccountCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
67
- export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetPartnerAccountCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListPartnerAccountsCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToWirelessDeviceCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdatePartnerAccountCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
94
+ export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetNetworkAnalyzerConfigurationCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdateNetworkAnalyzerConfigurationCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
95
+ export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetNetworkAnalyzerConfigurationCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdateNetworkAnalyzerConfigurationCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
68
96
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
69
97
  /**
70
98
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -133,6 +161,14 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
133
161
  * Optional logger for logging debug/info/warn/error.
134
162
  */
135
163
  logger?: __Logger;
164
+ /**
165
+ * Enables IPv6/IPv4 dualstack endpoint.
166
+ */
167
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
168
+ /**
169
+ * Enables FIPS compatible endpoints.
170
+ */
171
+ useFipsEndpoint?: boolean | __Provider<boolean>;
136
172
  /**
137
173
  * Unique service identifier.
138
174
  * @internal
@@ -20,7 +20,7 @@ export interface AssociateAwsAccountWithPartnerAccountCommandOutput extends Asso
20
20
  *
21
21
  * @see {@link AssociateAwsAccountWithPartnerAccountCommandInput} for command's `input` shape.
22
22
  * @see {@link AssociateAwsAccountWithPartnerAccountCommandOutput} for command's `response` shape.
23
- * @see {@link IoTWirelessClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class AssociateAwsAccountWithPartnerAccountCommand extends $Command<AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput, IoTWirelessClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { AssociateMulticastGroupWithFuotaTaskRequest, AssociateMulticastGroupWithFuotaTaskResponse } from "../models/models_0";
5
+ export interface AssociateMulticastGroupWithFuotaTaskCommandInput extends AssociateMulticastGroupWithFuotaTaskRequest {
6
+ }
7
+ export interface AssociateMulticastGroupWithFuotaTaskCommandOutput extends AssociateMulticastGroupWithFuotaTaskResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Associate a multicast group with a FUOTA task.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IoTWirelessClient, AssociateMulticastGroupWithFuotaTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
15
+ * // const { IoTWirelessClient, AssociateMulticastGroupWithFuotaTaskCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
16
+ * const client = new IoTWirelessClient(config);
17
+ * const command = new AssociateMulticastGroupWithFuotaTaskCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link AssociateMulticastGroupWithFuotaTaskCommandInput} for command's `input` shape.
22
+ * @see {@link AssociateMulticastGroupWithFuotaTaskCommandOutput} for command's `response` shape.
23
+ * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class AssociateMulticastGroupWithFuotaTaskCommand extends $Command<AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput, IoTWirelessClientResolvedConfig> {
27
+ readonly input: AssociateMulticastGroupWithFuotaTaskCommandInput;
28
+ constructor(input: AssociateMulticastGroupWithFuotaTaskCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }