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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist-cjs/IoTWireless.js +420 -0
  3. package/dist-cjs/commands/AssociateMulticastGroupWithFuotaTaskCommand.js +36 -0
  4. package/dist-cjs/commands/AssociateWirelessDeviceWithFuotaTaskCommand.js +36 -0
  5. package/dist-cjs/commands/AssociateWirelessDeviceWithMulticastGroupCommand.js +36 -0
  6. package/dist-cjs/commands/CancelMulticastGroupSessionCommand.js +36 -0
  7. package/dist-cjs/commands/CreateFuotaTaskCommand.js +36 -0
  8. package/dist-cjs/commands/CreateMulticastGroupCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteFuotaTaskCommand.js +36 -0
  10. package/dist-cjs/commands/DeleteMulticastGroupCommand.js +36 -0
  11. package/dist-cjs/commands/DisassociateMulticastGroupFromFuotaTaskCommand.js +36 -0
  12. package/dist-cjs/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.js +36 -0
  13. package/dist-cjs/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.js +36 -0
  14. package/dist-cjs/commands/GetFuotaTaskCommand.js +36 -0
  15. package/dist-cjs/commands/GetMulticastGroupCommand.js +36 -0
  16. package/dist-cjs/commands/GetMulticastGroupSessionCommand.js +36 -0
  17. package/dist-cjs/commands/GetNetworkAnalyzerConfigurationCommand.js +36 -0
  18. package/dist-cjs/commands/GetResourceEventConfigurationCommand.js +36 -0
  19. package/dist-cjs/commands/ListFuotaTasksCommand.js +36 -0
  20. package/dist-cjs/commands/ListMulticastGroupsByFuotaTaskCommand.js +36 -0
  21. package/dist-cjs/commands/ListMulticastGroupsCommand.js +36 -0
  22. package/dist-cjs/commands/SendDataToMulticastGroupCommand.js +36 -0
  23. package/dist-cjs/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.js +36 -0
  24. package/dist-cjs/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.js +36 -0
  25. package/dist-cjs/commands/StartFuotaTaskCommand.js +36 -0
  26. package/dist-cjs/commands/StartMulticastGroupSessionCommand.js +36 -0
  27. package/dist-cjs/commands/UpdateFuotaTaskCommand.js +36 -0
  28. package/dist-cjs/commands/UpdateMulticastGroupCommand.js +36 -0
  29. package/dist-cjs/commands/UpdateNetworkAnalyzerConfigurationCommand.js +36 -0
  30. package/dist-cjs/commands/UpdateResourceEventConfigurationCommand.js +36 -0
  31. package/dist-cjs/commands/index.js +28 -0
  32. package/dist-cjs/endpoints.js +121 -6
  33. package/dist-cjs/models/models_0.js +490 -4
  34. package/dist-cjs/pagination/ListFuotaTasksPaginator.js +35 -0
  35. package/dist-cjs/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +35 -0
  36. package/dist-cjs/pagination/ListMulticastGroupsPaginator.js +35 -0
  37. package/dist-cjs/pagination/index.js +3 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +4371 -896
  39. package/dist-cjs/runtimeConfig.browser.js +6 -3
  40. package/dist-cjs/runtimeConfig.js +5 -3
  41. package/dist-es/IoTWireless.js +420 -0
  42. package/dist-es/commands/AssociateMulticastGroupWithFuotaTaskCommand.js +39 -0
  43. package/dist-es/commands/AssociateWirelessDeviceWithFuotaTaskCommand.js +39 -0
  44. package/dist-es/commands/AssociateWirelessDeviceWithMulticastGroupCommand.js +39 -0
  45. package/dist-es/commands/CancelMulticastGroupSessionCommand.js +39 -0
  46. package/dist-es/commands/CreateFuotaTaskCommand.js +39 -0
  47. package/dist-es/commands/CreateMulticastGroupCommand.js +39 -0
  48. package/dist-es/commands/DeleteFuotaTaskCommand.js +39 -0
  49. package/dist-es/commands/DeleteMulticastGroupCommand.js +39 -0
  50. package/dist-es/commands/DisassociateMulticastGroupFromFuotaTaskCommand.js +39 -0
  51. package/dist-es/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.js +39 -0
  52. package/dist-es/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.js +39 -0
  53. package/dist-es/commands/GetFuotaTaskCommand.js +39 -0
  54. package/dist-es/commands/GetMulticastGroupCommand.js +39 -0
  55. package/dist-es/commands/GetMulticastGroupSessionCommand.js +39 -0
  56. package/dist-es/commands/GetNetworkAnalyzerConfigurationCommand.js +39 -0
  57. package/dist-es/commands/GetResourceEventConfigurationCommand.js +39 -0
  58. package/dist-es/commands/ListFuotaTasksCommand.js +39 -0
  59. package/dist-es/commands/ListMulticastGroupsByFuotaTaskCommand.js +39 -0
  60. package/dist-es/commands/ListMulticastGroupsCommand.js +39 -0
  61. package/dist-es/commands/SendDataToMulticastGroupCommand.js +39 -0
  62. package/dist-es/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.js +39 -0
  63. package/dist-es/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.js +39 -0
  64. package/dist-es/commands/StartFuotaTaskCommand.js +39 -0
  65. package/dist-es/commands/StartMulticastGroupSessionCommand.js +39 -0
  66. package/dist-es/commands/UpdateFuotaTaskCommand.js +39 -0
  67. package/dist-es/commands/UpdateMulticastGroupCommand.js +39 -0
  68. package/dist-es/commands/UpdateNetworkAnalyzerConfigurationCommand.js +39 -0
  69. package/dist-es/commands/UpdateResourceEventConfigurationCommand.js +39 -0
  70. package/dist-es/commands/index.js +28 -0
  71. package/dist-es/endpoints.js +121 -6
  72. package/dist-es/models/models_0.js +340 -0
  73. package/dist-es/pagination/ListFuotaTasksPaginator.js +74 -0
  74. package/dist-es/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +74 -0
  75. package/dist-es/pagination/ListMulticastGroupsPaginator.js +74 -0
  76. package/dist-es/pagination/index.js +3 -0
  77. package/dist-es/protocols/Aws_restJson1.js +5730 -1858
  78. package/dist-es/runtimeConfig.browser.js +3 -2
  79. package/dist-es/runtimeConfig.js +3 -3
  80. package/dist-types/IoTWireless.d.ts +196 -0
  81. package/dist-types/IoTWirelessClient.d.ts +38 -2
  82. package/dist-types/commands/AssociateAwsAccountWithPartnerAccountCommand.d.ts +1 -1
  83. package/dist-types/commands/AssociateMulticastGroupWithFuotaTaskCommand.d.ts +35 -0
  84. package/dist-types/commands/AssociateWirelessDeviceWithFuotaTaskCommand.d.ts +35 -0
  85. package/dist-types/commands/AssociateWirelessDeviceWithMulticastGroupCommand.d.ts +35 -0
  86. package/dist-types/commands/AssociateWirelessDeviceWithThingCommand.d.ts +1 -1
  87. package/dist-types/commands/AssociateWirelessGatewayWithCertificateCommand.d.ts +1 -1
  88. package/dist-types/commands/AssociateWirelessGatewayWithThingCommand.d.ts +1 -1
  89. package/dist-types/commands/CancelMulticastGroupSessionCommand.d.ts +35 -0
  90. package/dist-types/commands/CreateDestinationCommand.d.ts +1 -1
  91. package/dist-types/commands/CreateDeviceProfileCommand.d.ts +1 -1
  92. package/dist-types/commands/CreateFuotaTaskCommand.d.ts +35 -0
  93. package/dist-types/commands/CreateMulticastGroupCommand.d.ts +35 -0
  94. package/dist-types/commands/CreateServiceProfileCommand.d.ts +1 -1
  95. package/dist-types/commands/CreateWirelessDeviceCommand.d.ts +1 -1
  96. package/dist-types/commands/CreateWirelessGatewayCommand.d.ts +1 -1
  97. package/dist-types/commands/CreateWirelessGatewayTaskCommand.d.ts +1 -1
  98. package/dist-types/commands/CreateWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  99. package/dist-types/commands/DeleteDestinationCommand.d.ts +1 -1
  100. package/dist-types/commands/DeleteDeviceProfileCommand.d.ts +1 -1
  101. package/dist-types/commands/DeleteFuotaTaskCommand.d.ts +35 -0
  102. package/dist-types/commands/DeleteMulticastGroupCommand.d.ts +35 -0
  103. package/dist-types/commands/DeleteServiceProfileCommand.d.ts +1 -1
  104. package/dist-types/commands/DeleteWirelessDeviceCommand.d.ts +1 -1
  105. package/dist-types/commands/DeleteWirelessGatewayCommand.d.ts +1 -1
  106. package/dist-types/commands/DeleteWirelessGatewayTaskCommand.d.ts +1 -1
  107. package/dist-types/commands/DeleteWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  108. package/dist-types/commands/DisassociateAwsAccountFromPartnerAccountCommand.d.ts +1 -1
  109. package/dist-types/commands/DisassociateMulticastGroupFromFuotaTaskCommand.d.ts +35 -0
  110. package/dist-types/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.d.ts +35 -0
  111. package/dist-types/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +35 -0
  112. package/dist-types/commands/DisassociateWirelessDeviceFromThingCommand.d.ts +1 -1
  113. package/dist-types/commands/DisassociateWirelessGatewayFromCertificateCommand.d.ts +1 -1
  114. package/dist-types/commands/DisassociateWirelessGatewayFromThingCommand.d.ts +1 -1
  115. package/dist-types/commands/GetDestinationCommand.d.ts +1 -1
  116. package/dist-types/commands/GetDeviceProfileCommand.d.ts +1 -1
  117. package/dist-types/commands/GetFuotaTaskCommand.d.ts +35 -0
  118. package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +1 -1
  119. package/dist-types/commands/GetMulticastGroupCommand.d.ts +35 -0
  120. package/dist-types/commands/GetMulticastGroupSessionCommand.d.ts +35 -0
  121. package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  122. package/dist-types/commands/GetPartnerAccountCommand.d.ts +1 -1
  123. package/dist-types/commands/GetResourceEventConfigurationCommand.d.ts +35 -0
  124. package/dist-types/commands/GetResourceLogLevelCommand.d.ts +1 -1
  125. package/dist-types/commands/GetServiceEndpointCommand.d.ts +1 -1
  126. package/dist-types/commands/GetServiceProfileCommand.d.ts +1 -1
  127. package/dist-types/commands/GetWirelessDeviceCommand.d.ts +1 -1
  128. package/dist-types/commands/GetWirelessDeviceStatisticsCommand.d.ts +1 -1
  129. package/dist-types/commands/GetWirelessGatewayCertificateCommand.d.ts +1 -1
  130. package/dist-types/commands/GetWirelessGatewayCommand.d.ts +1 -1
  131. package/dist-types/commands/GetWirelessGatewayFirmwareInformationCommand.d.ts +1 -1
  132. package/dist-types/commands/GetWirelessGatewayStatisticsCommand.d.ts +1 -1
  133. package/dist-types/commands/GetWirelessGatewayTaskCommand.d.ts +1 -1
  134. package/dist-types/commands/GetWirelessGatewayTaskDefinitionCommand.d.ts +1 -1
  135. package/dist-types/commands/ListDestinationsCommand.d.ts +1 -1
  136. package/dist-types/commands/ListDeviceProfilesCommand.d.ts +1 -1
  137. package/dist-types/commands/ListFuotaTasksCommand.d.ts +35 -0
  138. package/dist-types/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +35 -0
  139. package/dist-types/commands/ListMulticastGroupsCommand.d.ts +35 -0
  140. package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
  141. package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
  142. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  143. package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -1
  144. package/dist-types/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
  145. package/dist-types/commands/ListWirelessGatewaysCommand.d.ts +1 -1
  146. package/dist-types/commands/PutResourceLogLevelCommand.d.ts +1 -1
  147. package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
  148. package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  149. package/dist-types/commands/SendDataToMulticastGroupCommand.d.ts +35 -0
  150. package/dist-types/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
  151. package/dist-types/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +35 -0
  152. package/dist-types/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +35 -0
  153. package/dist-types/commands/StartFuotaTaskCommand.d.ts +35 -0
  154. package/dist-types/commands/StartMulticastGroupSessionCommand.d.ts +35 -0
  155. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  156. package/dist-types/commands/TestWirelessDeviceCommand.d.ts +1 -1
  157. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  158. package/dist-types/commands/UpdateDestinationCommand.d.ts +1 -1
  159. package/dist-types/commands/UpdateFuotaTaskCommand.d.ts +35 -0
  160. package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +1 -1
  161. package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +35 -0
  162. package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  163. package/dist-types/commands/UpdatePartnerAccountCommand.d.ts +1 -1
  164. package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +35 -0
  165. package/dist-types/commands/UpdateWirelessDeviceCommand.d.ts +1 -1
  166. package/dist-types/commands/UpdateWirelessGatewayCommand.d.ts +1 -1
  167. package/dist-types/commands/index.d.ts +28 -0
  168. package/dist-types/models/models_0.d.ts +1307 -51
  169. package/dist-types/pagination/ListFuotaTasksPaginator.d.ts +4 -0
  170. package/dist-types/pagination/ListMulticastGroupsByFuotaTaskPaginator.d.ts +4 -0
  171. package/dist-types/pagination/ListMulticastGroupsPaginator.d.ts +4 -0
  172. package/dist-types/pagination/index.d.ts +3 -0
  173. package/dist-types/protocols/Aws_restJson1.d.ts +84 -0
  174. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  175. package/dist-types/runtimeConfig.d.ts +2 -0
  176. package/dist-types/runtimeConfig.native.d.ts +2 -0
  177. package/dist-types/ts3.4/IoTWireless.d.ts +140 -0
  178. package/dist-types/ts3.4/IoTWirelessClient.d.ts +34 -2
  179. package/dist-types/ts3.4/commands/AssociateMulticastGroupWithFuotaTaskCommand.d.ts +17 -0
  180. package/dist-types/ts3.4/commands/AssociateWirelessDeviceWithFuotaTaskCommand.d.ts +17 -0
  181. package/dist-types/ts3.4/commands/AssociateWirelessDeviceWithMulticastGroupCommand.d.ts +17 -0
  182. package/dist-types/ts3.4/commands/CancelMulticastGroupSessionCommand.d.ts +17 -0
  183. package/dist-types/ts3.4/commands/CreateFuotaTaskCommand.d.ts +17 -0
  184. package/dist-types/ts3.4/commands/CreateMulticastGroupCommand.d.ts +17 -0
  185. package/dist-types/ts3.4/commands/DeleteFuotaTaskCommand.d.ts +17 -0
  186. package/dist-types/ts3.4/commands/DeleteMulticastGroupCommand.d.ts +17 -0
  187. package/dist-types/ts3.4/commands/DisassociateMulticastGroupFromFuotaTaskCommand.d.ts +17 -0
  188. package/dist-types/ts3.4/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.d.ts +17 -0
  189. package/dist-types/ts3.4/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +17 -0
  190. package/dist-types/ts3.4/commands/GetFuotaTaskCommand.d.ts +17 -0
  191. package/dist-types/ts3.4/commands/GetMulticastGroupCommand.d.ts +17 -0
  192. package/dist-types/ts3.4/commands/GetMulticastGroupSessionCommand.d.ts +17 -0
  193. package/dist-types/ts3.4/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  194. package/dist-types/ts3.4/commands/GetResourceEventConfigurationCommand.d.ts +17 -0
  195. package/dist-types/ts3.4/commands/ListFuotaTasksCommand.d.ts +17 -0
  196. package/dist-types/ts3.4/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +17 -0
  197. package/dist-types/ts3.4/commands/ListMulticastGroupsCommand.d.ts +17 -0
  198. package/dist-types/ts3.4/commands/SendDataToMulticastGroupCommand.d.ts +17 -0
  199. package/dist-types/ts3.4/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +17 -0
  200. package/dist-types/ts3.4/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +17 -0
  201. package/dist-types/ts3.4/commands/StartFuotaTaskCommand.d.ts +17 -0
  202. package/dist-types/ts3.4/commands/StartMulticastGroupSessionCommand.d.ts +17 -0
  203. package/dist-types/ts3.4/commands/UpdateFuotaTaskCommand.d.ts +17 -0
  204. package/dist-types/ts3.4/commands/UpdateMulticastGroupCommand.d.ts +17 -0
  205. package/dist-types/ts3.4/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  206. package/dist-types/ts3.4/commands/UpdateResourceEventConfigurationCommand.d.ts +17 -0
  207. package/dist-types/ts3.4/commands/index.d.ts +28 -0
  208. package/dist-types/ts3.4/models/models_0.d.ts +784 -0
  209. package/dist-types/ts3.4/pagination/ListFuotaTasksPaginator.d.ts +4 -0
  210. package/dist-types/ts3.4/pagination/ListMulticastGroupsByFuotaTaskPaginator.d.ts +4 -0
  211. package/dist-types/ts3.4/pagination/ListMulticastGroupsPaginator.d.ts +4 -0
  212. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  213. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  214. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  215. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  216. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  217. package/package.json +23 -23
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListMulticastGroupsCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class ListMulticastGroupsCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "ListMulticastGroupsCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.ListMulticastGroupsRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.ListMulticastGroupsResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1ListMulticastGroupsCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1ListMulticastGroupsCommand(output, context);
34
+ }
35
+ }
36
+ exports.ListMulticastGroupsCommand = ListMulticastGroupsCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SendDataToMulticastGroupCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class SendDataToMulticastGroupCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "SendDataToMulticastGroupCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.SendDataToMulticastGroupRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.SendDataToMulticastGroupResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1SendDataToMulticastGroupCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1SendDataToMulticastGroupCommand(output, context);
34
+ }
35
+ }
36
+ exports.SendDataToMulticastGroupCommand = SendDataToMulticastGroupCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StartBulkAssociateWirelessDeviceWithMulticastGroupCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class StartBulkAssociateWirelessDeviceWithMulticastGroupCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "StartBulkAssociateWirelessDeviceWithMulticastGroupCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.StartBulkAssociateWirelessDeviceWithMulticastGroupRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.StartBulkAssociateWirelessDeviceWithMulticastGroupResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1StartBulkAssociateWirelessDeviceWithMulticastGroupCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1StartBulkAssociateWirelessDeviceWithMulticastGroupCommand(output, context);
34
+ }
35
+ }
36
+ exports.StartBulkAssociateWirelessDeviceWithMulticastGroupCommand = StartBulkAssociateWirelessDeviceWithMulticastGroupCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand(output, context);
34
+ }
35
+ }
36
+ exports.StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand = StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StartFuotaTaskCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class StartFuotaTaskCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "StartFuotaTaskCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.StartFuotaTaskRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.StartFuotaTaskResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1StartFuotaTaskCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1StartFuotaTaskCommand(output, context);
34
+ }
35
+ }
36
+ exports.StartFuotaTaskCommand = StartFuotaTaskCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StartMulticastGroupSessionCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class StartMulticastGroupSessionCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "StartMulticastGroupSessionCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.StartMulticastGroupSessionRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.StartMulticastGroupSessionResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1StartMulticastGroupSessionCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1StartMulticastGroupSessionCommand(output, context);
34
+ }
35
+ }
36
+ exports.StartMulticastGroupSessionCommand = StartMulticastGroupSessionCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateFuotaTaskCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class UpdateFuotaTaskCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "UpdateFuotaTaskCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.UpdateFuotaTaskRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.UpdateFuotaTaskResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1UpdateFuotaTaskCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1UpdateFuotaTaskCommand(output, context);
34
+ }
35
+ }
36
+ exports.UpdateFuotaTaskCommand = UpdateFuotaTaskCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateMulticastGroupCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class UpdateMulticastGroupCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "UpdateMulticastGroupCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.UpdateMulticastGroupRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.UpdateMulticastGroupResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1UpdateMulticastGroupCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1UpdateMulticastGroupCommand(output, context);
34
+ }
35
+ }
36
+ exports.UpdateMulticastGroupCommand = UpdateMulticastGroupCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateNetworkAnalyzerConfigurationCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class UpdateNetworkAnalyzerConfigurationCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "UpdateNetworkAnalyzerConfigurationCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.UpdateNetworkAnalyzerConfigurationRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.UpdateNetworkAnalyzerConfigurationResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand(output, context);
34
+ }
35
+ }
36
+ exports.UpdateNetworkAnalyzerConfigurationCommand = UpdateNetworkAnalyzerConfigurationCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateResourceEventConfigurationCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class UpdateResourceEventConfigurationCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "IoTWirelessClient";
18
+ const commandName = "UpdateResourceEventConfigurationCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.UpdateResourceEventConfigurationRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.UpdateResourceEventConfigurationResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return Aws_restJson1_1.serializeAws_restJson1UpdateResourceEventConfigurationCommand(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return Aws_restJson1_1.deserializeAws_restJson1UpdateResourceEventConfigurationCommand(output, context);
34
+ }
35
+ }
36
+ exports.UpdateResourceEventConfigurationCommand = UpdateResourceEventConfigurationCommand;
@@ -2,11 +2,17 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./AssociateAwsAccountWithPartnerAccountCommand"), exports);
5
+ tslib_1.__exportStar(require("./AssociateMulticastGroupWithFuotaTaskCommand"), exports);
6
+ tslib_1.__exportStar(require("./AssociateWirelessDeviceWithFuotaTaskCommand"), exports);
7
+ tslib_1.__exportStar(require("./AssociateWirelessDeviceWithMulticastGroupCommand"), exports);
5
8
  tslib_1.__exportStar(require("./AssociateWirelessDeviceWithThingCommand"), exports);
6
9
  tslib_1.__exportStar(require("./AssociateWirelessGatewayWithCertificateCommand"), exports);
7
10
  tslib_1.__exportStar(require("./AssociateWirelessGatewayWithThingCommand"), exports);
11
+ tslib_1.__exportStar(require("./CancelMulticastGroupSessionCommand"), exports);
8
12
  tslib_1.__exportStar(require("./CreateDestinationCommand"), exports);
9
13
  tslib_1.__exportStar(require("./CreateDeviceProfileCommand"), exports);
14
+ tslib_1.__exportStar(require("./CreateFuotaTaskCommand"), exports);
15
+ tslib_1.__exportStar(require("./CreateMulticastGroupCommand"), exports);
10
16
  tslib_1.__exportStar(require("./CreateServiceProfileCommand"), exports);
11
17
  tslib_1.__exportStar(require("./CreateWirelessDeviceCommand"), exports);
12
18
  tslib_1.__exportStar(require("./CreateWirelessGatewayCommand"), exports);
@@ -14,19 +20,29 @@ tslib_1.__exportStar(require("./CreateWirelessGatewayTaskCommand"), exports);
14
20
  tslib_1.__exportStar(require("./CreateWirelessGatewayTaskDefinitionCommand"), exports);
15
21
  tslib_1.__exportStar(require("./DeleteDestinationCommand"), exports);
16
22
  tslib_1.__exportStar(require("./DeleteDeviceProfileCommand"), exports);
23
+ tslib_1.__exportStar(require("./DeleteFuotaTaskCommand"), exports);
24
+ tslib_1.__exportStar(require("./DeleteMulticastGroupCommand"), exports);
17
25
  tslib_1.__exportStar(require("./DeleteServiceProfileCommand"), exports);
18
26
  tslib_1.__exportStar(require("./DeleteWirelessDeviceCommand"), exports);
19
27
  tslib_1.__exportStar(require("./DeleteWirelessGatewayCommand"), exports);
20
28
  tslib_1.__exportStar(require("./DeleteWirelessGatewayTaskCommand"), exports);
21
29
  tslib_1.__exportStar(require("./DeleteWirelessGatewayTaskDefinitionCommand"), exports);
22
30
  tslib_1.__exportStar(require("./DisassociateAwsAccountFromPartnerAccountCommand"), exports);
31
+ tslib_1.__exportStar(require("./DisassociateMulticastGroupFromFuotaTaskCommand"), exports);
32
+ tslib_1.__exportStar(require("./DisassociateWirelessDeviceFromFuotaTaskCommand"), exports);
33
+ tslib_1.__exportStar(require("./DisassociateWirelessDeviceFromMulticastGroupCommand"), exports);
23
34
  tslib_1.__exportStar(require("./DisassociateWirelessDeviceFromThingCommand"), exports);
24
35
  tslib_1.__exportStar(require("./DisassociateWirelessGatewayFromCertificateCommand"), exports);
25
36
  tslib_1.__exportStar(require("./DisassociateWirelessGatewayFromThingCommand"), exports);
26
37
  tslib_1.__exportStar(require("./GetDestinationCommand"), exports);
27
38
  tslib_1.__exportStar(require("./GetDeviceProfileCommand"), exports);
39
+ tslib_1.__exportStar(require("./GetFuotaTaskCommand"), exports);
28
40
  tslib_1.__exportStar(require("./GetLogLevelsByResourceTypesCommand"), exports);
41
+ tslib_1.__exportStar(require("./GetMulticastGroupCommand"), exports);
42
+ tslib_1.__exportStar(require("./GetMulticastGroupSessionCommand"), exports);
43
+ tslib_1.__exportStar(require("./GetNetworkAnalyzerConfigurationCommand"), exports);
29
44
  tslib_1.__exportStar(require("./GetPartnerAccountCommand"), exports);
45
+ tslib_1.__exportStar(require("./GetResourceEventConfigurationCommand"), exports);
30
46
  tslib_1.__exportStar(require("./GetResourceLogLevelCommand"), exports);
31
47
  tslib_1.__exportStar(require("./GetServiceEndpointCommand"), exports);
32
48
  tslib_1.__exportStar(require("./GetServiceProfileCommand"), exports);
@@ -40,6 +56,9 @@ tslib_1.__exportStar(require("./GetWirelessGatewayTaskCommand"), exports);
40
56
  tslib_1.__exportStar(require("./GetWirelessGatewayTaskDefinitionCommand"), exports);
41
57
  tslib_1.__exportStar(require("./ListDestinationsCommand"), exports);
42
58
  tslib_1.__exportStar(require("./ListDeviceProfilesCommand"), exports);
59
+ tslib_1.__exportStar(require("./ListFuotaTasksCommand"), exports);
60
+ tslib_1.__exportStar(require("./ListMulticastGroupsByFuotaTaskCommand"), exports);
61
+ tslib_1.__exportStar(require("./ListMulticastGroupsCommand"), exports);
43
62
  tslib_1.__exportStar(require("./ListPartnerAccountsCommand"), exports);
44
63
  tslib_1.__exportStar(require("./ListServiceProfilesCommand"), exports);
45
64
  tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
@@ -49,12 +68,21 @@ tslib_1.__exportStar(require("./ListWirelessGatewaysCommand"), exports);
49
68
  tslib_1.__exportStar(require("./PutResourceLogLevelCommand"), exports);
50
69
  tslib_1.__exportStar(require("./ResetAllResourceLogLevelsCommand"), exports);
51
70
  tslib_1.__exportStar(require("./ResetResourceLogLevelCommand"), exports);
71
+ tslib_1.__exportStar(require("./SendDataToMulticastGroupCommand"), exports);
52
72
  tslib_1.__exportStar(require("./SendDataToWirelessDeviceCommand"), exports);
73
+ tslib_1.__exportStar(require("./StartBulkAssociateWirelessDeviceWithMulticastGroupCommand"), exports);
74
+ tslib_1.__exportStar(require("./StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand"), exports);
75
+ tslib_1.__exportStar(require("./StartFuotaTaskCommand"), exports);
76
+ tslib_1.__exportStar(require("./StartMulticastGroupSessionCommand"), exports);
53
77
  tslib_1.__exportStar(require("./TagResourceCommand"), exports);
54
78
  tslib_1.__exportStar(require("./TestWirelessDeviceCommand"), exports);
55
79
  tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
56
80
  tslib_1.__exportStar(require("./UpdateDestinationCommand"), exports);
81
+ tslib_1.__exportStar(require("./UpdateFuotaTaskCommand"), exports);
57
82
  tslib_1.__exportStar(require("./UpdateLogLevelsByResourceTypesCommand"), exports);
83
+ tslib_1.__exportStar(require("./UpdateMulticastGroupCommand"), exports);
84
+ tslib_1.__exportStar(require("./UpdateNetworkAnalyzerConfigurationCommand"), exports);
58
85
  tslib_1.__exportStar(require("./UpdatePartnerAccountCommand"), exports);
86
+ tslib_1.__exportStar(require("./UpdateResourceEventConfigurationCommand"), exports);
59
87
  tslib_1.__exportStar(require("./UpdateWirelessDeviceCommand"), exports);
60
88
  tslib_1.__exportStar(require("./UpdateWirelessGatewayCommand"), exports);
@@ -2,7 +2,53 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultRegionInfoProvider = void 0;
4
4
  const config_resolver_1 = require("@aws-sdk/config-resolver");
5
- const regionHash = {};
5
+ const regionHash = {
6
+ "ap-northeast-1": {
7
+ variants: [
8
+ {
9
+ hostname: "api.iotwireless.ap-northeast-1.amazonaws.com",
10
+ tags: [],
11
+ },
12
+ ],
13
+ signingRegion: "ap-northeast-1",
14
+ },
15
+ "ap-southeast-2": {
16
+ variants: [
17
+ {
18
+ hostname: "api.iotwireless.ap-southeast-2.amazonaws.com",
19
+ tags: [],
20
+ },
21
+ ],
22
+ signingRegion: "ap-southeast-2",
23
+ },
24
+ "eu-west-1": {
25
+ variants: [
26
+ {
27
+ hostname: "api.iotwireless.eu-west-1.amazonaws.com",
28
+ tags: [],
29
+ },
30
+ ],
31
+ signingRegion: "eu-west-1",
32
+ },
33
+ "us-east-1": {
34
+ variants: [
35
+ {
36
+ hostname: "api.iotwireless.us-east-1.amazonaws.com",
37
+ tags: [],
38
+ },
39
+ ],
40
+ signingRegion: "us-east-1",
41
+ },
42
+ "us-west-2": {
43
+ variants: [
44
+ {
45
+ hostname: "api.iotwireless.us-west-2.amazonaws.com",
46
+ tags: [],
47
+ },
48
+ ],
49
+ signingRegion: "us-west-2",
50
+ },
51
+ };
6
52
  const partitionHash = {
7
53
  aws: {
8
54
  regions: [
@@ -29,27 +75,96 @@ const partitionHash = {
29
75
  "us-west-2",
30
76
  ],
31
77
  regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
32
- hostname: "api.iotwireless.{region}.amazonaws.com",
78
+ variants: [
79
+ {
80
+ hostname: "api.iotwireless.{region}.amazonaws.com",
81
+ tags: [],
82
+ },
83
+ {
84
+ hostname: "api.iotwireless-fips.{region}.amazonaws.com",
85
+ tags: ["fips"],
86
+ },
87
+ {
88
+ hostname: "api.iotwireless-fips.{region}.api.aws",
89
+ tags: ["dualstack", "fips"],
90
+ },
91
+ {
92
+ hostname: "api.iotwireless.{region}.api.aws",
93
+ tags: ["dualstack"],
94
+ },
95
+ ],
33
96
  },
34
97
  "aws-cn": {
35
98
  regions: ["cn-north-1", "cn-northwest-1"],
36
99
  regionRegex: "^cn\\-\\w+\\-\\d+$",
37
- hostname: "api.iotwireless.{region}.amazonaws.com.cn",
100
+ variants: [
101
+ {
102
+ hostname: "api.iotwireless.{region}.amazonaws.com.cn",
103
+ tags: [],
104
+ },
105
+ {
106
+ hostname: "api.iotwireless-fips.{region}.amazonaws.com.cn",
107
+ tags: ["fips"],
108
+ },
109
+ {
110
+ hostname: "api.iotwireless-fips.{region}.api.amazonwebservices.com.cn",
111
+ tags: ["dualstack", "fips"],
112
+ },
113
+ {
114
+ hostname: "api.iotwireless.{region}.api.amazonwebservices.com.cn",
115
+ tags: ["dualstack"],
116
+ },
117
+ ],
38
118
  },
39
119
  "aws-iso": {
40
120
  regions: ["us-iso-east-1", "us-iso-west-1"],
41
121
  regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
42
- hostname: "api.iotwireless.{region}.c2s.ic.gov",
122
+ variants: [
123
+ {
124
+ hostname: "api.iotwireless.{region}.c2s.ic.gov",
125
+ tags: [],
126
+ },
127
+ {
128
+ hostname: "api.iotwireless-fips.{region}.c2s.ic.gov",
129
+ tags: ["fips"],
130
+ },
131
+ ],
43
132
  },
44
133
  "aws-iso-b": {
45
134
  regions: ["us-isob-east-1"],
46
135
  regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
47
- hostname: "api.iotwireless.{region}.sc2s.sgov.gov",
136
+ variants: [
137
+ {
138
+ hostname: "api.iotwireless.{region}.sc2s.sgov.gov",
139
+ tags: [],
140
+ },
141
+ {
142
+ hostname: "api.iotwireless-fips.{region}.sc2s.sgov.gov",
143
+ tags: ["fips"],
144
+ },
145
+ ],
48
146
  },
49
147
  "aws-us-gov": {
50
148
  regions: ["us-gov-east-1", "us-gov-west-1"],
51
149
  regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
52
- hostname: "api.iotwireless.{region}.amazonaws.com",
150
+ variants: [
151
+ {
152
+ hostname: "api.iotwireless.{region}.amazonaws.com",
153
+ tags: [],
154
+ },
155
+ {
156
+ hostname: "api.iotwireless-fips.{region}.amazonaws.com",
157
+ tags: ["fips"],
158
+ },
159
+ {
160
+ hostname: "api.iotwireless-fips.{region}.api.aws",
161
+ tags: ["dualstack", "fips"],
162
+ },
163
+ {
164
+ hostname: "api.iotwireless.{region}.api.aws",
165
+ tags: ["dualstack"],
166
+ },
167
+ ],
53
168
  },
54
169
  };
55
170
  const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {