@aws-sdk/client-iot-managed-integrations 3.761.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 (359) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +661 -0
  3. package/dist-cjs/IoTManagedIntegrations.js +125 -0
  4. package/dist-cjs/IoTManagedIntegrationsClient.js +51 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateCredentialLockerCommand.js +27 -0
  8. package/dist-cjs/commands/CreateDestinationCommand.js +27 -0
  9. package/dist-cjs/commands/CreateEventLogConfigurationCommand.js +26 -0
  10. package/dist-cjs/commands/CreateManagedThingCommand.js +27 -0
  11. package/dist-cjs/commands/CreateNotificationConfigurationCommand.js +27 -0
  12. package/dist-cjs/commands/CreateOtaTaskCommand.js +27 -0
  13. package/dist-cjs/commands/CreateOtaTaskConfigurationCommand.js +27 -0
  14. package/dist-cjs/commands/CreateProvisioningProfileCommand.js +27 -0
  15. package/dist-cjs/commands/DeleteCredentialLockerCommand.js +26 -0
  16. package/dist-cjs/commands/DeleteDestinationCommand.js +26 -0
  17. package/dist-cjs/commands/DeleteEventLogConfigurationCommand.js +26 -0
  18. package/dist-cjs/commands/DeleteManagedThingCommand.js +26 -0
  19. package/dist-cjs/commands/DeleteNotificationConfigurationCommand.js +26 -0
  20. package/dist-cjs/commands/DeleteOtaTaskCommand.js +26 -0
  21. package/dist-cjs/commands/DeleteOtaTaskConfigurationCommand.js +26 -0
  22. package/dist-cjs/commands/DeleteProvisioningProfileCommand.js +26 -0
  23. package/dist-cjs/commands/GetCredentialLockerCommand.js +27 -0
  24. package/dist-cjs/commands/GetCustomEndpointCommand.js +26 -0
  25. package/dist-cjs/commands/GetDefaultEncryptionConfigurationCommand.js +26 -0
  26. package/dist-cjs/commands/GetDestinationCommand.js +27 -0
  27. package/dist-cjs/commands/GetDeviceDiscoveryCommand.js +27 -0
  28. package/dist-cjs/commands/GetEventLogConfigurationCommand.js +26 -0
  29. package/dist-cjs/commands/GetHubConfigurationCommand.js +26 -0
  30. package/dist-cjs/commands/GetManagedThingCapabilitiesCommand.js +26 -0
  31. package/dist-cjs/commands/GetManagedThingCommand.js +27 -0
  32. package/dist-cjs/commands/GetManagedThingConnectivityDataCommand.js +26 -0
  33. package/dist-cjs/commands/GetManagedThingMetaDataCommand.js +26 -0
  34. package/dist-cjs/commands/GetManagedThingStateCommand.js +27 -0
  35. package/dist-cjs/commands/GetNotificationConfigurationCommand.js +27 -0
  36. package/dist-cjs/commands/GetOtaTaskCommand.js +26 -0
  37. package/dist-cjs/commands/GetOtaTaskConfigurationCommand.js +27 -0
  38. package/dist-cjs/commands/GetProvisioningProfileCommand.js +27 -0
  39. package/dist-cjs/commands/GetRuntimeLogConfigurationCommand.js +26 -0
  40. package/dist-cjs/commands/GetSchemaVersionCommand.js +26 -0
  41. package/dist-cjs/commands/ListCredentialLockersCommand.js +27 -0
  42. package/dist-cjs/commands/ListDestinationsCommand.js +26 -0
  43. package/dist-cjs/commands/ListEventLogConfigurationsCommand.js +26 -0
  44. package/dist-cjs/commands/ListManagedThingSchemasCommand.js +26 -0
  45. package/dist-cjs/commands/ListManagedThingsCommand.js +27 -0
  46. package/dist-cjs/commands/ListNotificationConfigurationsCommand.js +26 -0
  47. package/dist-cjs/commands/ListOtaTaskConfigurationsCommand.js +27 -0
  48. package/dist-cjs/commands/ListOtaTaskExecutionsCommand.js +26 -0
  49. package/dist-cjs/commands/ListOtaTasksCommand.js +26 -0
  50. package/dist-cjs/commands/ListProvisioningProfilesCommand.js +26 -0
  51. package/dist-cjs/commands/ListSchemaVersionsCommand.js +26 -0
  52. package/dist-cjs/commands/PutDefaultEncryptionConfigurationCommand.js +26 -0
  53. package/dist-cjs/commands/PutHubConfigurationCommand.js +26 -0
  54. package/dist-cjs/commands/PutRuntimeLogConfigurationCommand.js +26 -0
  55. package/dist-cjs/commands/RegisterCustomEndpointCommand.js +26 -0
  56. package/dist-cjs/commands/ResetRuntimeLogConfigurationCommand.js +26 -0
  57. package/dist-cjs/commands/SendManagedThingCommandCommand.js +27 -0
  58. package/dist-cjs/commands/StartDeviceDiscoveryCommand.js +27 -0
  59. package/dist-cjs/commands/UpdateDestinationCommand.js +26 -0
  60. package/dist-cjs/commands/UpdateEventLogConfigurationCommand.js +26 -0
  61. package/dist-cjs/commands/UpdateManagedThingCommand.js +27 -0
  62. package/dist-cjs/commands/UpdateNotificationConfigurationCommand.js +26 -0
  63. package/dist-cjs/commands/UpdateOtaTaskCommand.js +26 -0
  64. package/dist-cjs/commands/index.js +60 -0
  65. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  66. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  67. package/dist-cjs/endpoint/ruleset.js +7 -0
  68. package/dist-cjs/extensionConfiguration.js +2 -0
  69. package/dist-cjs/index.js +11 -0
  70. package/dist-cjs/models/IoTManagedIntegrationsServiceException.js +12 -0
  71. package/dist-cjs/models/index.js +4 -0
  72. package/dist-cjs/models/models_0.js +484 -0
  73. package/dist-cjs/pagination/Interfaces.js +2 -0
  74. package/dist-cjs/pagination/ListCredentialLockersPaginator.js +7 -0
  75. package/dist-cjs/pagination/ListDestinationsPaginator.js +7 -0
  76. package/dist-cjs/pagination/ListEventLogConfigurationsPaginator.js +7 -0
  77. package/dist-cjs/pagination/ListManagedThingSchemasPaginator.js +7 -0
  78. package/dist-cjs/pagination/ListManagedThingsPaginator.js +7 -0
  79. package/dist-cjs/pagination/ListNotificationConfigurationsPaginator.js +7 -0
  80. package/dist-cjs/pagination/ListOtaTaskConfigurationsPaginator.js +7 -0
  81. package/dist-cjs/pagination/ListOtaTaskExecutionsPaginator.js +7 -0
  82. package/dist-cjs/pagination/ListOtaTasksPaginator.js +7 -0
  83. package/dist-cjs/pagination/ListProvisioningProfilesPaginator.js +7 -0
  84. package/dist-cjs/pagination/ListSchemaVersionsPaginator.js +7 -0
  85. package/dist-cjs/pagination/index.js +15 -0
  86. package/dist-cjs/protocols/Aws_restJson1.js +2179 -0
  87. package/dist-cjs/runtimeConfig.browser.js +39 -0
  88. package/dist-cjs/runtimeConfig.js +52 -0
  89. package/dist-cjs/runtimeConfig.native.js +15 -0
  90. package/dist-cjs/runtimeConfig.shared.js +34 -0
  91. package/dist-cjs/runtimeExtensions.js +25 -0
  92. package/dist-es/IoTManagedIntegrations.js +121 -0
  93. package/dist-es/IoTManagedIntegrationsClient.js +47 -0
  94. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  95. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  96. package/dist-es/commands/CreateCredentialLockerCommand.js +23 -0
  97. package/dist-es/commands/CreateDestinationCommand.js +23 -0
  98. package/dist-es/commands/CreateEventLogConfigurationCommand.js +22 -0
  99. package/dist-es/commands/CreateManagedThingCommand.js +23 -0
  100. package/dist-es/commands/CreateNotificationConfigurationCommand.js +23 -0
  101. package/dist-es/commands/CreateOtaTaskCommand.js +23 -0
  102. package/dist-es/commands/CreateOtaTaskConfigurationCommand.js +23 -0
  103. package/dist-es/commands/CreateProvisioningProfileCommand.js +23 -0
  104. package/dist-es/commands/DeleteCredentialLockerCommand.js +22 -0
  105. package/dist-es/commands/DeleteDestinationCommand.js +22 -0
  106. package/dist-es/commands/DeleteEventLogConfigurationCommand.js +22 -0
  107. package/dist-es/commands/DeleteManagedThingCommand.js +22 -0
  108. package/dist-es/commands/DeleteNotificationConfigurationCommand.js +22 -0
  109. package/dist-es/commands/DeleteOtaTaskCommand.js +22 -0
  110. package/dist-es/commands/DeleteOtaTaskConfigurationCommand.js +22 -0
  111. package/dist-es/commands/DeleteProvisioningProfileCommand.js +22 -0
  112. package/dist-es/commands/GetCredentialLockerCommand.js +23 -0
  113. package/dist-es/commands/GetCustomEndpointCommand.js +22 -0
  114. package/dist-es/commands/GetDefaultEncryptionConfigurationCommand.js +22 -0
  115. package/dist-es/commands/GetDestinationCommand.js +23 -0
  116. package/dist-es/commands/GetDeviceDiscoveryCommand.js +23 -0
  117. package/dist-es/commands/GetEventLogConfigurationCommand.js +22 -0
  118. package/dist-es/commands/GetHubConfigurationCommand.js +22 -0
  119. package/dist-es/commands/GetManagedThingCapabilitiesCommand.js +22 -0
  120. package/dist-es/commands/GetManagedThingCommand.js +23 -0
  121. package/dist-es/commands/GetManagedThingConnectivityDataCommand.js +22 -0
  122. package/dist-es/commands/GetManagedThingMetaDataCommand.js +22 -0
  123. package/dist-es/commands/GetManagedThingStateCommand.js +23 -0
  124. package/dist-es/commands/GetNotificationConfigurationCommand.js +23 -0
  125. package/dist-es/commands/GetOtaTaskCommand.js +22 -0
  126. package/dist-es/commands/GetOtaTaskConfigurationCommand.js +23 -0
  127. package/dist-es/commands/GetProvisioningProfileCommand.js +23 -0
  128. package/dist-es/commands/GetRuntimeLogConfigurationCommand.js +22 -0
  129. package/dist-es/commands/GetSchemaVersionCommand.js +22 -0
  130. package/dist-es/commands/ListCredentialLockersCommand.js +23 -0
  131. package/dist-es/commands/ListDestinationsCommand.js +22 -0
  132. package/dist-es/commands/ListEventLogConfigurationsCommand.js +22 -0
  133. package/dist-es/commands/ListManagedThingSchemasCommand.js +22 -0
  134. package/dist-es/commands/ListManagedThingsCommand.js +23 -0
  135. package/dist-es/commands/ListNotificationConfigurationsCommand.js +22 -0
  136. package/dist-es/commands/ListOtaTaskConfigurationsCommand.js +23 -0
  137. package/dist-es/commands/ListOtaTaskExecutionsCommand.js +22 -0
  138. package/dist-es/commands/ListOtaTasksCommand.js +22 -0
  139. package/dist-es/commands/ListProvisioningProfilesCommand.js +22 -0
  140. package/dist-es/commands/ListSchemaVersionsCommand.js +22 -0
  141. package/dist-es/commands/PutDefaultEncryptionConfigurationCommand.js +22 -0
  142. package/dist-es/commands/PutHubConfigurationCommand.js +22 -0
  143. package/dist-es/commands/PutRuntimeLogConfigurationCommand.js +22 -0
  144. package/dist-es/commands/RegisterCustomEndpointCommand.js +22 -0
  145. package/dist-es/commands/ResetRuntimeLogConfigurationCommand.js +22 -0
  146. package/dist-es/commands/SendManagedThingCommandCommand.js +23 -0
  147. package/dist-es/commands/StartDeviceDiscoveryCommand.js +23 -0
  148. package/dist-es/commands/UpdateDestinationCommand.js +22 -0
  149. package/dist-es/commands/UpdateEventLogConfigurationCommand.js +22 -0
  150. package/dist-es/commands/UpdateManagedThingCommand.js +23 -0
  151. package/dist-es/commands/UpdateNotificationConfigurationCommand.js +22 -0
  152. package/dist-es/commands/UpdateOtaTaskCommand.js +22 -0
  153. package/dist-es/commands/index.js +57 -0
  154. package/dist-es/endpoint/EndpointParameters.js +12 -0
  155. package/dist-es/endpoint/endpointResolver.js +14 -0
  156. package/dist-es/endpoint/ruleset.js +4 -0
  157. package/dist-es/extensionConfiguration.js +1 -0
  158. package/dist-es/index.js +6 -0
  159. package/dist-es/models/IoTManagedIntegrationsServiceException.js +8 -0
  160. package/dist-es/models/index.js +1 -0
  161. package/dist-es/models/models_0.js +439 -0
  162. package/dist-es/pagination/Interfaces.js +1 -0
  163. package/dist-es/pagination/ListCredentialLockersPaginator.js +4 -0
  164. package/dist-es/pagination/ListDestinationsPaginator.js +4 -0
  165. package/dist-es/pagination/ListEventLogConfigurationsPaginator.js +4 -0
  166. package/dist-es/pagination/ListManagedThingSchemasPaginator.js +4 -0
  167. package/dist-es/pagination/ListManagedThingsPaginator.js +4 -0
  168. package/dist-es/pagination/ListNotificationConfigurationsPaginator.js +4 -0
  169. package/dist-es/pagination/ListOtaTaskConfigurationsPaginator.js +4 -0
  170. package/dist-es/pagination/ListOtaTaskExecutionsPaginator.js +4 -0
  171. package/dist-es/pagination/ListOtaTasksPaginator.js +4 -0
  172. package/dist-es/pagination/ListProvisioningProfilesPaginator.js +4 -0
  173. package/dist-es/pagination/ListSchemaVersionsPaginator.js +4 -0
  174. package/dist-es/pagination/index.js +12 -0
  175. package/dist-es/protocols/Aws_restJson1.js +2060 -0
  176. package/dist-es/runtimeConfig.browser.js +34 -0
  177. package/dist-es/runtimeConfig.js +47 -0
  178. package/dist-es/runtimeConfig.native.js +11 -0
  179. package/dist-es/runtimeConfig.shared.js +30 -0
  180. package/dist-es/runtimeExtensions.js +21 -0
  181. package/dist-types/IoTManagedIntegrations.d.ts +423 -0
  182. package/dist-types/IoTManagedIntegrationsClient.d.ts +244 -0
  183. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  184. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  185. package/dist-types/commands/CreateCredentialLockerCommand.d.ts +100 -0
  186. package/dist-types/commands/CreateDestinationCommand.d.ts +96 -0
  187. package/dist-types/commands/CreateEventLogConfigurationCommand.d.ts +94 -0
  188. package/dist-types/commands/CreateManagedThingCommand.d.ts +144 -0
  189. package/dist-types/commands/CreateNotificationConfigurationCommand.d.ts +93 -0
  190. package/dist-types/commands/CreateOtaTaskCommand.d.ts +121 -0
  191. package/dist-types/commands/CreateOtaTaskConfigurationCommand.d.ts +115 -0
  192. package/dist-types/commands/CreateProvisioningProfileCommand.d.ts +106 -0
  193. package/dist-types/commands/DeleteCredentialLockerCommand.d.ts +92 -0
  194. package/dist-types/commands/DeleteDestinationCommand.d.ts +85 -0
  195. package/dist-types/commands/DeleteEventLogConfigurationCommand.d.ts +85 -0
  196. package/dist-types/commands/DeleteManagedThingCommand.d.ts +97 -0
  197. package/dist-types/commands/DeleteNotificationConfigurationCommand.d.ts +85 -0
  198. package/dist-types/commands/DeleteOtaTaskCommand.d.ts +85 -0
  199. package/dist-types/commands/DeleteOtaTaskConfigurationCommand.d.ts +85 -0
  200. package/dist-types/commands/DeleteProvisioningProfileCommand.d.ts +91 -0
  201. package/dist-types/commands/GetCredentialLockerCommand.d.ts +96 -0
  202. package/dist-types/commands/GetCustomEndpointCommand.d.ts +91 -0
  203. package/dist-types/commands/GetDefaultEncryptionConfigurationCommand.d.ts +100 -0
  204. package/dist-types/commands/GetDestinationCommand.d.ts +96 -0
  205. package/dist-types/commands/GetDeviceDiscoveryCommand.d.ts +103 -0
  206. package/dist-types/commands/GetEventLogConfigurationCommand.d.ts +90 -0
  207. package/dist-types/commands/GetHubConfigurationCommand.d.ts +89 -0
  208. package/dist-types/commands/GetManagedThingCapabilitiesCommand.d.ts +122 -0
  209. package/dist-types/commands/GetManagedThingCommand.d.ts +121 -0
  210. package/dist-types/commands/GetManagedThingConnectivityDataCommand.d.ts +96 -0
  211. package/dist-types/commands/GetManagedThingMetaDataCommand.d.ts +96 -0
  212. package/dist-types/commands/GetManagedThingStateCommand.d.ts +104 -0
  213. package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +93 -0
  214. package/dist-types/commands/GetOtaTaskCommand.d.ts +133 -0
  215. package/dist-types/commands/GetOtaTaskConfigurationCommand.d.ts +116 -0
  216. package/dist-types/commands/GetProvisioningProfileCommand.d.ts +100 -0
  217. package/dist-types/commands/GetRuntimeLogConfigurationCommand.d.ts +98 -0
  218. package/dist-types/commands/GetSchemaVersionCommand.d.ts +101 -0
  219. package/dist-types/commands/ListCredentialLockersCommand.d.ts +96 -0
  220. package/dist-types/commands/ListDestinationsCommand.d.ts +94 -0
  221. package/dist-types/commands/ListEventLogConfigurationsCommand.d.ts +93 -0
  222. package/dist-types/commands/ListManagedThingSchemasCommand.d.ts +104 -0
  223. package/dist-types/commands/ListManagedThingsCommand.d.ts +120 -0
  224. package/dist-types/commands/ListNotificationConfigurationsCommand.d.ts +91 -0
  225. package/dist-types/commands/ListOtaTaskConfigurationsCommand.d.ts +92 -0
  226. package/dist-types/commands/ListOtaTaskExecutionsCommand.d.ts +99 -0
  227. package/dist-types/commands/ListOtaTasksCommand.d.ts +95 -0
  228. package/dist-types/commands/ListProvisioningProfilesCommand.d.ts +99 -0
  229. package/dist-types/commands/ListSchemaVersionsCommand.d.ts +106 -0
  230. package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +103 -0
  231. package/dist-types/commands/PutHubConfigurationCommand.d.ts +90 -0
  232. package/dist-types/commands/PutRuntimeLogConfigurationCommand.d.ts +96 -0
  233. package/dist-types/commands/RegisterCustomEndpointCommand.d.ts +92 -0
  234. package/dist-types/commands/ResetRuntimeLogConfigurationCommand.d.ts +86 -0
  235. package/dist-types/commands/SendManagedThingCommandCommand.d.ts +111 -0
  236. package/dist-types/commands/StartDeviceDiscoveryCommand.d.ts +107 -0
  237. package/dist-types/commands/UpdateDestinationCommand.d.ts +89 -0
  238. package/dist-types/commands/UpdateEventLogConfigurationCommand.d.ts +86 -0
  239. package/dist-types/commands/UpdateManagedThingCommand.d.ts +134 -0
  240. package/dist-types/commands/UpdateNotificationConfigurationCommand.d.ts +86 -0
  241. package/dist-types/commands/UpdateOtaTaskCommand.d.ts +87 -0
  242. package/dist-types/commands/index.d.ts +57 -0
  243. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  244. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  245. package/dist-types/endpoint/ruleset.d.ts +2 -0
  246. package/dist-types/extensionConfiguration.d.ts +9 -0
  247. package/dist-types/index.d.ts +14 -0
  248. package/dist-types/models/IoTManagedIntegrationsServiceException.d.ts +14 -0
  249. package/dist-types/models/index.d.ts +1 -0
  250. package/dist-types/models/models_0.d.ts +3678 -0
  251. package/dist-types/pagination/Interfaces.d.ts +8 -0
  252. package/dist-types/pagination/ListCredentialLockersPaginator.d.ts +7 -0
  253. package/dist-types/pagination/ListDestinationsPaginator.d.ts +7 -0
  254. package/dist-types/pagination/ListEventLogConfigurationsPaginator.d.ts +7 -0
  255. package/dist-types/pagination/ListManagedThingSchemasPaginator.d.ts +7 -0
  256. package/dist-types/pagination/ListManagedThingsPaginator.d.ts +7 -0
  257. package/dist-types/pagination/ListNotificationConfigurationsPaginator.d.ts +7 -0
  258. package/dist-types/pagination/ListOtaTaskConfigurationsPaginator.d.ts +7 -0
  259. package/dist-types/pagination/ListOtaTaskExecutionsPaginator.d.ts +7 -0
  260. package/dist-types/pagination/ListOtaTasksPaginator.d.ts +7 -0
  261. package/dist-types/pagination/ListProvisioningProfilesPaginator.d.ts +7 -0
  262. package/dist-types/pagination/ListSchemaVersionsPaginator.d.ts +7 -0
  263. package/dist-types/pagination/index.d.ts +12 -0
  264. package/dist-types/protocols/Aws_restJson1.d.ts +515 -0
  265. package/dist-types/runtimeConfig.browser.d.ts +49 -0
  266. package/dist-types/runtimeConfig.d.ts +49 -0
  267. package/dist-types/runtimeConfig.native.d.ts +48 -0
  268. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  269. package/dist-types/runtimeExtensions.d.ts +17 -0
  270. package/dist-types/ts3.4/IoTManagedIntegrations.d.ts +1002 -0
  271. package/dist-types/ts3.4/IoTManagedIntegrationsClient.d.ts +464 -0
  272. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  273. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  274. package/dist-types/ts3.4/commands/CreateCredentialLockerCommand.d.ts +51 -0
  275. package/dist-types/ts3.4/commands/CreateDestinationCommand.d.ts +51 -0
  276. package/dist-types/ts3.4/commands/CreateEventLogConfigurationCommand.d.ts +51 -0
  277. package/dist-types/ts3.4/commands/CreateManagedThingCommand.d.ts +51 -0
  278. package/dist-types/ts3.4/commands/CreateNotificationConfigurationCommand.d.ts +51 -0
  279. package/dist-types/ts3.4/commands/CreateOtaTaskCommand.d.ts +50 -0
  280. package/dist-types/ts3.4/commands/CreateOtaTaskConfigurationCommand.d.ts +51 -0
  281. package/dist-types/ts3.4/commands/CreateProvisioningProfileCommand.d.ts +51 -0
  282. package/dist-types/ts3.4/commands/DeleteCredentialLockerCommand.d.ts +46 -0
  283. package/dist-types/ts3.4/commands/DeleteDestinationCommand.d.ts +46 -0
  284. package/dist-types/ts3.4/commands/DeleteEventLogConfigurationCommand.d.ts +47 -0
  285. package/dist-types/ts3.4/commands/DeleteManagedThingCommand.d.ts +46 -0
  286. package/dist-types/ts3.4/commands/DeleteNotificationConfigurationCommand.d.ts +47 -0
  287. package/dist-types/ts3.4/commands/DeleteOtaTaskCommand.d.ts +45 -0
  288. package/dist-types/ts3.4/commands/DeleteOtaTaskConfigurationCommand.d.ts +47 -0
  289. package/dist-types/ts3.4/commands/DeleteProvisioningProfileCommand.d.ts +47 -0
  290. package/dist-types/ts3.4/commands/GetCredentialLockerCommand.d.ts +51 -0
  291. package/dist-types/ts3.4/commands/GetCustomEndpointCommand.d.ts +51 -0
  292. package/dist-types/ts3.4/commands/GetDefaultEncryptionConfigurationCommand.d.ts +51 -0
  293. package/dist-types/ts3.4/commands/GetDestinationCommand.d.ts +50 -0
  294. package/dist-types/ts3.4/commands/GetDeviceDiscoveryCommand.d.ts +51 -0
  295. package/dist-types/ts3.4/commands/GetEventLogConfigurationCommand.d.ts +51 -0
  296. package/dist-types/ts3.4/commands/GetHubConfigurationCommand.d.ts +51 -0
  297. package/dist-types/ts3.4/commands/GetManagedThingCapabilitiesCommand.d.ts +51 -0
  298. package/dist-types/ts3.4/commands/GetManagedThingCommand.d.ts +50 -0
  299. package/dist-types/ts3.4/commands/GetManagedThingConnectivityDataCommand.d.ts +51 -0
  300. package/dist-types/ts3.4/commands/GetManagedThingMetaDataCommand.d.ts +51 -0
  301. package/dist-types/ts3.4/commands/GetManagedThingStateCommand.d.ts +51 -0
  302. package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +51 -0
  303. package/dist-types/ts3.4/commands/GetOtaTaskCommand.d.ts +47 -0
  304. package/dist-types/ts3.4/commands/GetOtaTaskConfigurationCommand.d.ts +51 -0
  305. package/dist-types/ts3.4/commands/GetProvisioningProfileCommand.d.ts +51 -0
  306. package/dist-types/ts3.4/commands/GetRuntimeLogConfigurationCommand.d.ts +51 -0
  307. package/dist-types/ts3.4/commands/GetSchemaVersionCommand.d.ts +50 -0
  308. package/dist-types/ts3.4/commands/ListCredentialLockersCommand.d.ts +51 -0
  309. package/dist-types/ts3.4/commands/ListDestinationsCommand.d.ts +50 -0
  310. package/dist-types/ts3.4/commands/ListEventLogConfigurationsCommand.d.ts +51 -0
  311. package/dist-types/ts3.4/commands/ListManagedThingSchemasCommand.d.ts +51 -0
  312. package/dist-types/ts3.4/commands/ListManagedThingsCommand.d.ts +51 -0
  313. package/dist-types/ts3.4/commands/ListNotificationConfigurationsCommand.d.ts +51 -0
  314. package/dist-types/ts3.4/commands/ListOtaTaskConfigurationsCommand.d.ts +51 -0
  315. package/dist-types/ts3.4/commands/ListOtaTaskExecutionsCommand.d.ts +51 -0
  316. package/dist-types/ts3.4/commands/ListOtaTasksCommand.d.ts +47 -0
  317. package/dist-types/ts3.4/commands/ListProvisioningProfilesCommand.d.ts +51 -0
  318. package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +51 -0
  319. package/dist-types/ts3.4/commands/PutDefaultEncryptionConfigurationCommand.d.ts +51 -0
  320. package/dist-types/ts3.4/commands/PutHubConfigurationCommand.d.ts +51 -0
  321. package/dist-types/ts3.4/commands/PutRuntimeLogConfigurationCommand.d.ts +47 -0
  322. package/dist-types/ts3.4/commands/RegisterCustomEndpointCommand.d.ts +51 -0
  323. package/dist-types/ts3.4/commands/ResetRuntimeLogConfigurationCommand.d.ts +47 -0
  324. package/dist-types/ts3.4/commands/SendManagedThingCommandCommand.d.ts +51 -0
  325. package/dist-types/ts3.4/commands/StartDeviceDiscoveryCommand.d.ts +51 -0
  326. package/dist-types/ts3.4/commands/UpdateDestinationCommand.d.ts +46 -0
  327. package/dist-types/ts3.4/commands/UpdateEventLogConfigurationCommand.d.ts +47 -0
  328. package/dist-types/ts3.4/commands/UpdateManagedThingCommand.d.ts +46 -0
  329. package/dist-types/ts3.4/commands/UpdateNotificationConfigurationCommand.d.ts +47 -0
  330. package/dist-types/ts3.4/commands/UpdateOtaTaskCommand.d.ts +45 -0
  331. package/dist-types/ts3.4/commands/index.d.ts +57 -0
  332. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  333. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  334. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  335. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  336. package/dist-types/ts3.4/index.d.ts +9 -0
  337. package/dist-types/ts3.4/models/IoTManagedIntegrationsServiceException.d.ts +9 -0
  338. package/dist-types/ts3.4/models/index.d.ts +1 -0
  339. package/dist-types/ts3.4/models/models_0.d.ts +1080 -0
  340. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  341. package/dist-types/ts3.4/pagination/ListCredentialLockersPaginator.d.ts +11 -0
  342. package/dist-types/ts3.4/pagination/ListDestinationsPaginator.d.ts +11 -0
  343. package/dist-types/ts3.4/pagination/ListEventLogConfigurationsPaginator.d.ts +11 -0
  344. package/dist-types/ts3.4/pagination/ListManagedThingSchemasPaginator.d.ts +11 -0
  345. package/dist-types/ts3.4/pagination/ListManagedThingsPaginator.d.ts +11 -0
  346. package/dist-types/ts3.4/pagination/ListNotificationConfigurationsPaginator.d.ts +11 -0
  347. package/dist-types/ts3.4/pagination/ListOtaTaskConfigurationsPaginator.d.ts +11 -0
  348. package/dist-types/ts3.4/pagination/ListOtaTaskExecutionsPaginator.d.ts +11 -0
  349. package/dist-types/ts3.4/pagination/ListOtaTasksPaginator.d.ts +11 -0
  350. package/dist-types/ts3.4/pagination/ListProvisioningProfilesPaginator.d.ts +11 -0
  351. package/dist-types/ts3.4/pagination/ListSchemaVersionsPaginator.d.ts +11 -0
  352. package/dist-types/ts3.4/pagination/index.d.ts +12 -0
  353. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +689 -0
  354. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +98 -0
  355. package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
  356. package/dist-types/ts3.4/runtimeConfig.native.d.ts +102 -0
  357. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  358. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  359. package/package.json +101 -0
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./CreateCredentialLockerCommand"), exports);
5
+ tslib_1.__exportStar(require("./CreateDestinationCommand"), exports);
6
+ tslib_1.__exportStar(require("./CreateEventLogConfigurationCommand"), exports);
7
+ tslib_1.__exportStar(require("./CreateManagedThingCommand"), exports);
8
+ tslib_1.__exportStar(require("./CreateNotificationConfigurationCommand"), exports);
9
+ tslib_1.__exportStar(require("./CreateOtaTaskCommand"), exports);
10
+ tslib_1.__exportStar(require("./CreateOtaTaskConfigurationCommand"), exports);
11
+ tslib_1.__exportStar(require("./CreateProvisioningProfileCommand"), exports);
12
+ tslib_1.__exportStar(require("./DeleteCredentialLockerCommand"), exports);
13
+ tslib_1.__exportStar(require("./DeleteDestinationCommand"), exports);
14
+ tslib_1.__exportStar(require("./DeleteEventLogConfigurationCommand"), exports);
15
+ tslib_1.__exportStar(require("./DeleteManagedThingCommand"), exports);
16
+ tslib_1.__exportStar(require("./DeleteNotificationConfigurationCommand"), exports);
17
+ tslib_1.__exportStar(require("./DeleteOtaTaskCommand"), exports);
18
+ tslib_1.__exportStar(require("./DeleteOtaTaskConfigurationCommand"), exports);
19
+ tslib_1.__exportStar(require("./DeleteProvisioningProfileCommand"), exports);
20
+ tslib_1.__exportStar(require("./GetCredentialLockerCommand"), exports);
21
+ tslib_1.__exportStar(require("./GetCustomEndpointCommand"), exports);
22
+ tslib_1.__exportStar(require("./GetDefaultEncryptionConfigurationCommand"), exports);
23
+ tslib_1.__exportStar(require("./GetDestinationCommand"), exports);
24
+ tslib_1.__exportStar(require("./GetDeviceDiscoveryCommand"), exports);
25
+ tslib_1.__exportStar(require("./GetEventLogConfigurationCommand"), exports);
26
+ tslib_1.__exportStar(require("./GetHubConfigurationCommand"), exports);
27
+ tslib_1.__exportStar(require("./GetManagedThingCapabilitiesCommand"), exports);
28
+ tslib_1.__exportStar(require("./GetManagedThingCommand"), exports);
29
+ tslib_1.__exportStar(require("./GetManagedThingConnectivityDataCommand"), exports);
30
+ tslib_1.__exportStar(require("./GetManagedThingMetaDataCommand"), exports);
31
+ tslib_1.__exportStar(require("./GetManagedThingStateCommand"), exports);
32
+ tslib_1.__exportStar(require("./GetNotificationConfigurationCommand"), exports);
33
+ tslib_1.__exportStar(require("./GetOtaTaskCommand"), exports);
34
+ tslib_1.__exportStar(require("./GetOtaTaskConfigurationCommand"), exports);
35
+ tslib_1.__exportStar(require("./GetProvisioningProfileCommand"), exports);
36
+ tslib_1.__exportStar(require("./GetRuntimeLogConfigurationCommand"), exports);
37
+ tslib_1.__exportStar(require("./GetSchemaVersionCommand"), exports);
38
+ tslib_1.__exportStar(require("./ListCredentialLockersCommand"), exports);
39
+ tslib_1.__exportStar(require("./ListDestinationsCommand"), exports);
40
+ tslib_1.__exportStar(require("./ListEventLogConfigurationsCommand"), exports);
41
+ tslib_1.__exportStar(require("./ListManagedThingSchemasCommand"), exports);
42
+ tslib_1.__exportStar(require("./ListManagedThingsCommand"), exports);
43
+ tslib_1.__exportStar(require("./ListNotificationConfigurationsCommand"), exports);
44
+ tslib_1.__exportStar(require("./ListOtaTaskConfigurationsCommand"), exports);
45
+ tslib_1.__exportStar(require("./ListOtaTaskExecutionsCommand"), exports);
46
+ tslib_1.__exportStar(require("./ListOtaTasksCommand"), exports);
47
+ tslib_1.__exportStar(require("./ListProvisioningProfilesCommand"), exports);
48
+ tslib_1.__exportStar(require("./ListSchemaVersionsCommand"), exports);
49
+ tslib_1.__exportStar(require("./PutDefaultEncryptionConfigurationCommand"), exports);
50
+ tslib_1.__exportStar(require("./PutHubConfigurationCommand"), exports);
51
+ tslib_1.__exportStar(require("./PutRuntimeLogConfigurationCommand"), exports);
52
+ tslib_1.__exportStar(require("./RegisterCustomEndpointCommand"), exports);
53
+ tslib_1.__exportStar(require("./ResetRuntimeLogConfigurationCommand"), exports);
54
+ tslib_1.__exportStar(require("./SendManagedThingCommandCommand"), exports);
55
+ tslib_1.__exportStar(require("./StartDeviceDiscoveryCommand"), exports);
56
+ tslib_1.__exportStar(require("./UpdateDestinationCommand"), exports);
57
+ tslib_1.__exportStar(require("./UpdateEventLogConfigurationCommand"), exports);
58
+ tslib_1.__exportStar(require("./UpdateManagedThingCommand"), exports);
59
+ tslib_1.__exportStar(require("./UpdateNotificationConfigurationCommand"), exports);
60
+ tslib_1.__exportStar(require("./UpdateOtaTaskCommand"), exports);
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
+ const resolveClientEndpointParameters = (options) => {
5
+ return {
6
+ ...options,
7
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
8
+ defaultSigningName: "iotmanagedintegrations",
9
+ };
10
+ };
11
+ exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
12
+ exports.commonParams = {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ };
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.defaultEndpointResolver = void 0;
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
6
+ const ruleset_1 = require("./ruleset");
7
+ const cache = new util_endpoints_2.EndpointCache({
8
+ size: 50,
9
+ params: ["Endpoint", "Region", "UseFIPS"],
10
+ });
11
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
12
+ return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
13
+ endpointParams: endpointParams,
14
+ logger: context.logger,
15
+ }));
16
+ };
17
+ exports.defaultEndpointResolver = defaultEndpointResolver;
18
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ruleSet = void 0;
4
+ const l = "ref";
5
+ const a = true, b = false, c = "isSet", d = "error", e = "endpoint", f = "tree", g = { "required": false, "type": "String" }, h = { [l]: "Endpoint" }, i = {}, j = [{ "fn": "booleanEquals", "argv": [{ [l]: "UseFIPS" }, true] }], k = [{ [l]: "Region" }];
6
+ const _data = { version: "1.0", parameters: { UseFIPS: { required: a, default: b, type: "Boolean" }, Endpoint: g, Region: g }, rules: [{ conditions: [{ fn: c, argv: [h] }], rules: [{ conditions: j, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { endpoint: { url: h, properties: i, headers: i }, type: e }], type: f }, { rules: [{ conditions: [{ fn: c, argv: k }], rules: [{ conditions: [{ fn: "aws.partition", argv: k, assign: "PartitionResult" }], rules: [{ conditions: j, endpoint: { url: "https://api.iotmanagedintegrations-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: i, headers: i }, type: e }, { endpoint: { url: "https://api.iotmanagedintegrations.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: i, headers: i }, type: e }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
7
+ exports.ruleSet = _data;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IoTManagedIntegrationsServiceException = void 0;
4
+ const tslib_1 = require("tslib");
5
+ tslib_1.__exportStar(require("./IoTManagedIntegrationsClient"), exports);
6
+ tslib_1.__exportStar(require("./IoTManagedIntegrations"), exports);
7
+ tslib_1.__exportStar(require("./commands"), exports);
8
+ tslib_1.__exportStar(require("./pagination"), exports);
9
+ tslib_1.__exportStar(require("./models"), exports);
10
+ var IoTManagedIntegrationsServiceException_1 = require("./models/IoTManagedIntegrationsServiceException");
11
+ Object.defineProperty(exports, "IoTManagedIntegrationsServiceException", { enumerable: true, get: function () { return IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException; } });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IoTManagedIntegrationsServiceException = exports.__ServiceException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
+ class IoTManagedIntegrationsServiceException extends smithy_client_1.ServiceException {
7
+ constructor(options) {
8
+ super(options);
9
+ Object.setPrototypeOf(this, IoTManagedIntegrationsServiceException.prototype);
10
+ }
11
+ }
12
+ exports.IoTManagedIntegrationsServiceException = IoTManagedIntegrationsServiceException;
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./models_0"), exports);
@@ -0,0 +1,484 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListCredentialLockersResponseFilterSensitiveLog = exports.GetCredentialLockerResponseFilterSensitiveLog = exports.CredentialLockerSummaryFilterSensitiveLog = exports.CreateProvisioningProfileResponseFilterSensitiveLog = exports.CreateProvisioningProfileRequestFilterSensitiveLog = exports.CreateOtaTaskConfigurationRequestFilterSensitiveLog = exports.CreateOtaTaskRequestFilterSensitiveLog = exports.CreateNotificationConfigurationRequestFilterSensitiveLog = exports.CreateManagedThingRequestFilterSensitiveLog = exports.CreateDestinationRequestFilterSensitiveLog = exports.CreateCredentialLockerRequestFilterSensitiveLog = exports.CommandEndpointFilterSensitiveLog = exports.CommandCapabilityFilterSensitiveLog = exports.CapabilityActionFilterSensitiveLog = exports.OtaTaskExecutionStatus = exports.SchemaVersionVisibility = exports.SchemaVersionType = exports.SchemaVersionFormat = exports.OtaStatus = exports.ProvisioningStatus = exports.HubNetworkMode = exports.InternalFailureException = exports.EncryptionType = exports.DisconnectReasonValue = exports.DiscoveryAuthMaterialType = exports.DeviceDiscoveryStatus = exports.DiscoveryType = exports.ProvisioningType = exports.OtaProtocol = exports.OtaType = exports.RetryCriteriaFailureType = exports.SchedulingConfigEndBehavior = exports.OtaMechanism = exports.EventType = exports.UnauthorizedException = exports.ResourceNotFoundException = exports.Role = exports.LogLevel = exports.DeliveryDestinationType = exports.ValidationException = exports.ThrottlingException = exports.ServiceUnavailableException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.ConflictException = exports.ConfigurationState = exports.AuthMaterialType = exports.AccessDeniedException = exports.AbortCriteriaFailureType = exports.AbortCriteriaAction = void 0;
4
+ exports.ListOtaTaskConfigurationsResponseFilterSensitiveLog = exports.OtaTaskConfigurationSummaryFilterSensitiveLog = exports.UpdateManagedThingRequestFilterSensitiveLog = exports.ListManagedThingsResponseFilterSensitiveLog = exports.ManagedThingSummaryFilterSensitiveLog = exports.ListManagedThingsRequestFilterSensitiveLog = exports.SendManagedThingCommandRequestFilterSensitiveLog = exports.GetProvisioningProfileResponseFilterSensitiveLog = exports.GetOtaTaskConfigurationResponseFilterSensitiveLog = exports.GetNotificationConfigurationResponseFilterSensitiveLog = exports.GetManagedThingStateResponseFilterSensitiveLog = exports.StateEndpointFilterSensitiveLog = exports.StateCapabilityFilterSensitiveLog = exports.GetManagedThingResponseFilterSensitiveLog = exports.StartDeviceDiscoveryRequestFilterSensitiveLog = exports.GetDeviceDiscoveryResponseFilterSensitiveLog = exports.GetDestinationResponseFilterSensitiveLog = void 0;
5
+ const smithy_client_1 = require("@smithy/smithy-client");
6
+ const IoTManagedIntegrationsServiceException_1 = require("./IoTManagedIntegrationsServiceException");
7
+ exports.AbortCriteriaAction = {
8
+ CANCEL: "CANCEL",
9
+ };
10
+ exports.AbortCriteriaFailureType = {
11
+ ALL: "ALL",
12
+ FAILED: "FAILED",
13
+ REJECTED: "REJECTED",
14
+ TIMED_OUT: "TIMED_OUT",
15
+ };
16
+ class AccessDeniedException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
17
+ name = "AccessDeniedException";
18
+ $fault = "client";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "AccessDeniedException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ exports.AccessDeniedException = AccessDeniedException;
31
+ exports.AuthMaterialType = {
32
+ WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE",
33
+ ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE",
34
+ ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE",
35
+ };
36
+ exports.ConfigurationState = {
37
+ ENABLED: "ENABLED",
38
+ UPDATE_FAILED: "UPDATE_FAILED",
39
+ UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
40
+ };
41
+ class ConflictException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
42
+ name = "ConflictException";
43
+ $fault = "client";
44
+ Message;
45
+ constructor(opts) {
46
+ super({
47
+ name: "ConflictException",
48
+ $fault: "client",
49
+ ...opts,
50
+ });
51
+ Object.setPrototypeOf(this, ConflictException.prototype);
52
+ this.Message = opts.Message;
53
+ }
54
+ }
55
+ exports.ConflictException = ConflictException;
56
+ class InternalServerException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
57
+ name = "InternalServerException";
58
+ $fault = "server";
59
+ Message;
60
+ constructor(opts) {
61
+ super({
62
+ name: "InternalServerException",
63
+ $fault: "server",
64
+ ...opts,
65
+ });
66
+ Object.setPrototypeOf(this, InternalServerException.prototype);
67
+ this.Message = opts.Message;
68
+ }
69
+ }
70
+ exports.InternalServerException = InternalServerException;
71
+ class ServiceQuotaExceededException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
72
+ name = "ServiceQuotaExceededException";
73
+ $fault = "client";
74
+ Message;
75
+ constructor(opts) {
76
+ super({
77
+ name: "ServiceQuotaExceededException",
78
+ $fault: "client",
79
+ ...opts,
80
+ });
81
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
82
+ this.Message = opts.Message;
83
+ }
84
+ }
85
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
86
+ class ServiceUnavailableException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
87
+ name = "ServiceUnavailableException";
88
+ $fault = "server";
89
+ Message;
90
+ constructor(opts) {
91
+ super({
92
+ name: "ServiceUnavailableException",
93
+ $fault: "server",
94
+ ...opts,
95
+ });
96
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
97
+ this.Message = opts.Message;
98
+ }
99
+ }
100
+ exports.ServiceUnavailableException = ServiceUnavailableException;
101
+ class ThrottlingException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
102
+ name = "ThrottlingException";
103
+ $fault = "client";
104
+ Message;
105
+ constructor(opts) {
106
+ super({
107
+ name: "ThrottlingException",
108
+ $fault: "client",
109
+ ...opts,
110
+ });
111
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
112
+ this.Message = opts.Message;
113
+ }
114
+ }
115
+ exports.ThrottlingException = ThrottlingException;
116
+ class ValidationException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
117
+ name = "ValidationException";
118
+ $fault = "client";
119
+ Message;
120
+ constructor(opts) {
121
+ super({
122
+ name: "ValidationException",
123
+ $fault: "client",
124
+ ...opts,
125
+ });
126
+ Object.setPrototypeOf(this, ValidationException.prototype);
127
+ this.Message = opts.Message;
128
+ }
129
+ }
130
+ exports.ValidationException = ValidationException;
131
+ exports.DeliveryDestinationType = {
132
+ KINESIS: "KINESIS",
133
+ };
134
+ exports.LogLevel = {
135
+ DEBUG: "DEBUG",
136
+ ERROR: "ERROR",
137
+ INFO: "INFO",
138
+ WARN: "WARN",
139
+ };
140
+ exports.Role = {
141
+ CONTROLLER: "CONTROLLER",
142
+ DEVICE: "DEVICE",
143
+ };
144
+ class ResourceNotFoundException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
145
+ name = "ResourceNotFoundException";
146
+ $fault = "client";
147
+ Message;
148
+ constructor(opts) {
149
+ super({
150
+ name: "ResourceNotFoundException",
151
+ $fault: "client",
152
+ ...opts,
153
+ });
154
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
155
+ this.Message = opts.Message;
156
+ }
157
+ }
158
+ exports.ResourceNotFoundException = ResourceNotFoundException;
159
+ class UnauthorizedException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
160
+ name = "UnauthorizedException";
161
+ $fault = "client";
162
+ Message;
163
+ constructor(opts) {
164
+ super({
165
+ name: "UnauthorizedException",
166
+ $fault: "client",
167
+ ...opts,
168
+ });
169
+ Object.setPrototypeOf(this, UnauthorizedException.prototype);
170
+ this.Message = opts.Message;
171
+ }
172
+ }
173
+ exports.UnauthorizedException = UnauthorizedException;
174
+ exports.EventType = {
175
+ CONNECTOR_ASSOCIATION: "CONNECTOR_ASSOCIATION",
176
+ CONNECTOR_ERROR_REPORT: "CONNECTOR_ERROR_REPORT",
177
+ DEVICE_COMMAND: "DEVICE_COMMAND",
178
+ DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST",
179
+ DEVICE_EVENT: "DEVICE_EVENT",
180
+ DEVICE_LIFE_CYCLE: "DEVICE_LIFE_CYCLE",
181
+ DEVICE_OTA: "DEVICE_OTA",
182
+ DEVICE_STATE: "DEVICE_STATE",
183
+ };
184
+ exports.OtaMechanism = {
185
+ PUSH: "PUSH",
186
+ };
187
+ exports.SchedulingConfigEndBehavior = {
188
+ CANCEL: "CANCEL",
189
+ FORCE_CANCEL: "FORCE_CANCEL",
190
+ STOP_ROLLOUT: "STOP_ROLLOUT",
191
+ };
192
+ exports.RetryCriteriaFailureType = {
193
+ ALL: "ALL",
194
+ FAILED: "FAILED",
195
+ TIMED_OUT: "TIMED_OUT",
196
+ };
197
+ exports.OtaType = {
198
+ CONTINUOUS: "CONTINUOUS",
199
+ ONE_TIME: "ONE_TIME",
200
+ };
201
+ exports.OtaProtocol = {
202
+ HTTP: "HTTP",
203
+ };
204
+ exports.ProvisioningType = {
205
+ FLEET_PROVISIONING: "FLEET_PROVISIONING",
206
+ JITR: "JITR",
207
+ };
208
+ exports.DiscoveryType = {
209
+ CLOUD: "CLOUD",
210
+ ZIGBEE: "ZIGBEE",
211
+ ZWAVE: "ZWAVE",
212
+ };
213
+ exports.DeviceDiscoveryStatus = {
214
+ FAILED: "FAILED",
215
+ RUNNING: "RUNNING",
216
+ SUCCEEDED: "SUCCEEDED",
217
+ TIMED_OUT: "TIMED_OUT",
218
+ };
219
+ exports.DiscoveryAuthMaterialType = {
220
+ ZWAVE_INSTALL_CODE: "ZWAVE_INSTALL_CODE",
221
+ };
222
+ exports.DisconnectReasonValue = {
223
+ AUTH_ERROR: "AUTH_ERROR",
224
+ CLIENT_ERROR: "CLIENT_ERROR",
225
+ CLIENT_INITIATED_DISCONNECT: "CLIENT_INITIATED_DISCONNECT",
226
+ CONNECTION_LOST: "CONNECTION_LOST",
227
+ CUSTOMAUTH_TTL_EXPIRATION: "CUSTOMAUTH_TTL_EXPIRATION",
228
+ DUPLICATE_CLIENTID: "DUPLICATE_CLIENTID",
229
+ FORBIDDEN_ACCESS: "FORBIDDEN_ACCESS",
230
+ MQTT_KEEP_ALIVE_TIMEOUT: "MQTT_KEEP_ALIVE_TIMEOUT",
231
+ NONE: "NONE",
232
+ SERVER_ERROR: "SERVER_ERROR",
233
+ SERVER_INITIATED_DISCONNECT: "SERVER_INITIATED_DISCONNECT",
234
+ THROTTLED: "THROTTLED",
235
+ UNKNOWN: "UNKNOWN",
236
+ WEBSOCKET_TTL_EXPIRATION: "WEBSOCKET_TTL_EXPIRATION",
237
+ };
238
+ exports.EncryptionType = {
239
+ CUSTOMER_KEY_ENCRYPTION: "CUSTOMER_KEY_ENCRYPTION",
240
+ MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION: "MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION",
241
+ };
242
+ class InternalFailureException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
243
+ name = "InternalFailureException";
244
+ $fault = "server";
245
+ Message;
246
+ constructor(opts) {
247
+ super({
248
+ name: "InternalFailureException",
249
+ $fault: "server",
250
+ ...opts,
251
+ });
252
+ Object.setPrototypeOf(this, InternalFailureException.prototype);
253
+ this.Message = opts.Message;
254
+ }
255
+ }
256
+ exports.InternalFailureException = InternalFailureException;
257
+ exports.HubNetworkMode = {
258
+ NETWORK_WIDE_EXCLUSION: "NETWORK_WIDE_EXCLUSION",
259
+ STANDARD: "STANDARD",
260
+ };
261
+ exports.ProvisioningStatus = {
262
+ ACTIVATED: "ACTIVATED",
263
+ DELETED: "DELETED",
264
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
265
+ DELETION_FAILED: "DELETION_FAILED",
266
+ DISCOVERED: "DISCOVERED",
267
+ ISOLATED: "ISOLATED",
268
+ PRE_ASSOCIATED: "PRE_ASSOCIATED",
269
+ UNASSOCIATED: "UNASSOCIATED",
270
+ };
271
+ exports.OtaStatus = {
272
+ CANCELED: "CANCELED",
273
+ COMPLETED: "COMPLETED",
274
+ DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS",
275
+ IN_PROGRESS: "IN_PROGRESS",
276
+ SCHEDULED: "SCHEDULED",
277
+ };
278
+ exports.SchemaVersionFormat = {
279
+ AWS: "AWS",
280
+ CONNECTOR: "CONNECTOR",
281
+ ZCL: "ZCL",
282
+ };
283
+ exports.SchemaVersionType = {
284
+ CAPABILITY: "capability",
285
+ DEFINITION: "definition",
286
+ };
287
+ exports.SchemaVersionVisibility = {
288
+ PRIVATE: "PRIVATE",
289
+ PUBLIC: "PUBLIC",
290
+ };
291
+ exports.OtaTaskExecutionStatus = {
292
+ CANCELED: "CANCELED",
293
+ FAILED: "FAILED",
294
+ IN_PROGRESS: "IN_PROGRESS",
295
+ QUEUED: "QUEUED",
296
+ REJECTED: "REJECTED",
297
+ REMOVED: "REMOVED",
298
+ SUCCEEDED: "SUCCEEDED",
299
+ TIMED_OUT: "TIMED_OUT",
300
+ };
301
+ const CapabilityActionFilterSensitiveLog = (obj) => ({
302
+ ...obj,
303
+ ...(obj.parameters && { parameters: smithy_client_1.SENSITIVE_STRING }),
304
+ });
305
+ exports.CapabilityActionFilterSensitiveLog = CapabilityActionFilterSensitiveLog;
306
+ const CommandCapabilityFilterSensitiveLog = (obj) => ({
307
+ ...obj,
308
+ ...(obj.actions && { actions: obj.actions.map((item) => (0, exports.CapabilityActionFilterSensitiveLog)(item)) }),
309
+ });
310
+ exports.CommandCapabilityFilterSensitiveLog = CommandCapabilityFilterSensitiveLog;
311
+ const CommandEndpointFilterSensitiveLog = (obj) => ({
312
+ ...obj,
313
+ });
314
+ exports.CommandEndpointFilterSensitiveLog = CommandEndpointFilterSensitiveLog;
315
+ const CreateCredentialLockerRequestFilterSensitiveLog = (obj) => ({
316
+ ...obj,
317
+ ...(obj.Name && { Name: smithy_client_1.SENSITIVE_STRING }),
318
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
319
+ });
320
+ exports.CreateCredentialLockerRequestFilterSensitiveLog = CreateCredentialLockerRequestFilterSensitiveLog;
321
+ const CreateDestinationRequestFilterSensitiveLog = (obj) => ({
322
+ ...obj,
323
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
324
+ });
325
+ exports.CreateDestinationRequestFilterSensitiveLog = CreateDestinationRequestFilterSensitiveLog;
326
+ const CreateManagedThingRequestFilterSensitiveLog = (obj) => ({
327
+ ...obj,
328
+ ...(obj.Owner && { Owner: smithy_client_1.SENSITIVE_STRING }),
329
+ ...(obj.AuthenticationMaterial && { AuthenticationMaterial: smithy_client_1.SENSITIVE_STRING }),
330
+ ...(obj.SerialNumber && { SerialNumber: smithy_client_1.SENSITIVE_STRING }),
331
+ ...(obj.Brand && { Brand: smithy_client_1.SENSITIVE_STRING }),
332
+ ...(obj.Model && { Model: smithy_client_1.SENSITIVE_STRING }),
333
+ ...(obj.Classification && { Classification: smithy_client_1.SENSITIVE_STRING }),
334
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
335
+ });
336
+ exports.CreateManagedThingRequestFilterSensitiveLog = CreateManagedThingRequestFilterSensitiveLog;
337
+ const CreateNotificationConfigurationRequestFilterSensitiveLog = (obj) => ({
338
+ ...obj,
339
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
340
+ });
341
+ exports.CreateNotificationConfigurationRequestFilterSensitiveLog = CreateNotificationConfigurationRequestFilterSensitiveLog;
342
+ const CreateOtaTaskRequestFilterSensitiveLog = (obj) => ({
343
+ ...obj,
344
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
345
+ });
346
+ exports.CreateOtaTaskRequestFilterSensitiveLog = CreateOtaTaskRequestFilterSensitiveLog;
347
+ const CreateOtaTaskConfigurationRequestFilterSensitiveLog = (obj) => ({
348
+ ...obj,
349
+ ...(obj.Name && { Name: smithy_client_1.SENSITIVE_STRING }),
350
+ });
351
+ exports.CreateOtaTaskConfigurationRequestFilterSensitiveLog = CreateOtaTaskConfigurationRequestFilterSensitiveLog;
352
+ const CreateProvisioningProfileRequestFilterSensitiveLog = (obj) => ({
353
+ ...obj,
354
+ ...(obj.CaCertificate && { CaCertificate: smithy_client_1.SENSITIVE_STRING }),
355
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
356
+ });
357
+ exports.CreateProvisioningProfileRequestFilterSensitiveLog = CreateProvisioningProfileRequestFilterSensitiveLog;
358
+ const CreateProvisioningProfileResponseFilterSensitiveLog = (obj) => ({
359
+ ...obj,
360
+ ...(obj.ClaimCertificate && { ClaimCertificate: smithy_client_1.SENSITIVE_STRING }),
361
+ ...(obj.ClaimCertificatePrivateKey && { ClaimCertificatePrivateKey: smithy_client_1.SENSITIVE_STRING }),
362
+ });
363
+ exports.CreateProvisioningProfileResponseFilterSensitiveLog = CreateProvisioningProfileResponseFilterSensitiveLog;
364
+ const CredentialLockerSummaryFilterSensitiveLog = (obj) => ({
365
+ ...obj,
366
+ ...(obj.Name && { Name: smithy_client_1.SENSITIVE_STRING }),
367
+ });
368
+ exports.CredentialLockerSummaryFilterSensitiveLog = CredentialLockerSummaryFilterSensitiveLog;
369
+ const GetCredentialLockerResponseFilterSensitiveLog = (obj) => ({
370
+ ...obj,
371
+ ...(obj.Name && { Name: smithy_client_1.SENSITIVE_STRING }),
372
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
373
+ });
374
+ exports.GetCredentialLockerResponseFilterSensitiveLog = GetCredentialLockerResponseFilterSensitiveLog;
375
+ const ListCredentialLockersResponseFilterSensitiveLog = (obj) => ({
376
+ ...obj,
377
+ ...(obj.Items && { Items: obj.Items.map((item) => (0, exports.CredentialLockerSummaryFilterSensitiveLog)(item)) }),
378
+ });
379
+ exports.ListCredentialLockersResponseFilterSensitiveLog = ListCredentialLockersResponseFilterSensitiveLog;
380
+ const GetDestinationResponseFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
383
+ });
384
+ exports.GetDestinationResponseFilterSensitiveLog = GetDestinationResponseFilterSensitiveLog;
385
+ const GetDeviceDiscoveryResponseFilterSensitiveLog = (obj) => ({
386
+ ...obj,
387
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
388
+ });
389
+ exports.GetDeviceDiscoveryResponseFilterSensitiveLog = GetDeviceDiscoveryResponseFilterSensitiveLog;
390
+ const StartDeviceDiscoveryRequestFilterSensitiveLog = (obj) => ({
391
+ ...obj,
392
+ ...(obj.AuthenticationMaterial && { AuthenticationMaterial: smithy_client_1.SENSITIVE_STRING }),
393
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
394
+ });
395
+ exports.StartDeviceDiscoveryRequestFilterSensitiveLog = StartDeviceDiscoveryRequestFilterSensitiveLog;
396
+ const GetManagedThingResponseFilterSensitiveLog = (obj) => ({
397
+ ...obj,
398
+ ...(obj.Owner && { Owner: smithy_client_1.SENSITIVE_STRING }),
399
+ ...(obj.Model && { Model: smithy_client_1.SENSITIVE_STRING }),
400
+ ...(obj.Brand && { Brand: smithy_client_1.SENSITIVE_STRING }),
401
+ ...(obj.SerialNumber && { SerialNumber: smithy_client_1.SENSITIVE_STRING }),
402
+ ...(obj.UniversalProductCode && { UniversalProductCode: smithy_client_1.SENSITIVE_STRING }),
403
+ ...(obj.InternationalArticleNumber && { InternationalArticleNumber: smithy_client_1.SENSITIVE_STRING }),
404
+ ...(obj.ConnectorDeviceId && { ConnectorDeviceId: smithy_client_1.SENSITIVE_STRING }),
405
+ ...(obj.DeviceSpecificKey && { DeviceSpecificKey: smithy_client_1.SENSITIVE_STRING }),
406
+ ...(obj.MacAddress && { MacAddress: smithy_client_1.SENSITIVE_STRING }),
407
+ ...(obj.Classification && { Classification: smithy_client_1.SENSITIVE_STRING }),
408
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
409
+ });
410
+ exports.GetManagedThingResponseFilterSensitiveLog = GetManagedThingResponseFilterSensitiveLog;
411
+ const StateCapabilityFilterSensitiveLog = (obj) => ({
412
+ ...obj,
413
+ ...(obj.properties && { properties: smithy_client_1.SENSITIVE_STRING }),
414
+ });
415
+ exports.StateCapabilityFilterSensitiveLog = StateCapabilityFilterSensitiveLog;
416
+ const StateEndpointFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ ...(obj.capabilities && { capabilities: obj.capabilities.map((item) => (0, exports.StateCapabilityFilterSensitiveLog)(item)) }),
419
+ });
420
+ exports.StateEndpointFilterSensitiveLog = StateEndpointFilterSensitiveLog;
421
+ const GetManagedThingStateResponseFilterSensitiveLog = (obj) => ({
422
+ ...obj,
423
+ });
424
+ exports.GetManagedThingStateResponseFilterSensitiveLog = GetManagedThingStateResponseFilterSensitiveLog;
425
+ const GetNotificationConfigurationResponseFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
428
+ });
429
+ exports.GetNotificationConfigurationResponseFilterSensitiveLog = GetNotificationConfigurationResponseFilterSensitiveLog;
430
+ const GetOtaTaskConfigurationResponseFilterSensitiveLog = (obj) => ({
431
+ ...obj,
432
+ ...(obj.Name && { Name: smithy_client_1.SENSITIVE_STRING }),
433
+ });
434
+ exports.GetOtaTaskConfigurationResponseFilterSensitiveLog = GetOtaTaskConfigurationResponseFilterSensitiveLog;
435
+ const GetProvisioningProfileResponseFilterSensitiveLog = (obj) => ({
436
+ ...obj,
437
+ ...(obj.ClaimCertificate && { ClaimCertificate: smithy_client_1.SENSITIVE_STRING }),
438
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
439
+ });
440
+ exports.GetProvisioningProfileResponseFilterSensitiveLog = GetProvisioningProfileResponseFilterSensitiveLog;
441
+ const SendManagedThingCommandRequestFilterSensitiveLog = (obj) => ({
442
+ ...obj,
443
+ });
444
+ exports.SendManagedThingCommandRequestFilterSensitiveLog = SendManagedThingCommandRequestFilterSensitiveLog;
445
+ const ListManagedThingsRequestFilterSensitiveLog = (obj) => ({
446
+ ...obj,
447
+ ...(obj.OwnerFilter && { OwnerFilter: smithy_client_1.SENSITIVE_STRING }),
448
+ ...(obj.SerialNumberFilter && { SerialNumberFilter: smithy_client_1.SENSITIVE_STRING }),
449
+ });
450
+ exports.ListManagedThingsRequestFilterSensitiveLog = ListManagedThingsRequestFilterSensitiveLog;
451
+ const ManagedThingSummaryFilterSensitiveLog = (obj) => ({
452
+ ...obj,
453
+ ...(obj.Brand && { Brand: smithy_client_1.SENSITIVE_STRING }),
454
+ ...(obj.Classification && { Classification: smithy_client_1.SENSITIVE_STRING }),
455
+ ...(obj.ConnectorDeviceId && { ConnectorDeviceId: smithy_client_1.SENSITIVE_STRING }),
456
+ ...(obj.Model && { Model: smithy_client_1.SENSITIVE_STRING }),
457
+ ...(obj.Owner && { Owner: smithy_client_1.SENSITIVE_STRING }),
458
+ ...(obj.SerialNumber && { SerialNumber: smithy_client_1.SENSITIVE_STRING }),
459
+ });
460
+ exports.ManagedThingSummaryFilterSensitiveLog = ManagedThingSummaryFilterSensitiveLog;
461
+ const ListManagedThingsResponseFilterSensitiveLog = (obj) => ({
462
+ ...obj,
463
+ ...(obj.Items && { Items: obj.Items.map((item) => (0, exports.ManagedThingSummaryFilterSensitiveLog)(item)) }),
464
+ });
465
+ exports.ListManagedThingsResponseFilterSensitiveLog = ListManagedThingsResponseFilterSensitiveLog;
466
+ const UpdateManagedThingRequestFilterSensitiveLog = (obj) => ({
467
+ ...obj,
468
+ ...(obj.Owner && { Owner: smithy_client_1.SENSITIVE_STRING }),
469
+ ...(obj.SerialNumber && { SerialNumber: smithy_client_1.SENSITIVE_STRING }),
470
+ ...(obj.Brand && { Brand: smithy_client_1.SENSITIVE_STRING }),
471
+ ...(obj.Model && { Model: smithy_client_1.SENSITIVE_STRING }),
472
+ ...(obj.Classification && { Classification: smithy_client_1.SENSITIVE_STRING }),
473
+ });
474
+ exports.UpdateManagedThingRequestFilterSensitiveLog = UpdateManagedThingRequestFilterSensitiveLog;
475
+ const OtaTaskConfigurationSummaryFilterSensitiveLog = (obj) => ({
476
+ ...obj,
477
+ ...(obj.Name && { Name: smithy_client_1.SENSITIVE_STRING }),
478
+ });
479
+ exports.OtaTaskConfigurationSummaryFilterSensitiveLog = OtaTaskConfigurationSummaryFilterSensitiveLog;
480
+ const ListOtaTaskConfigurationsResponseFilterSensitiveLog = (obj) => ({
481
+ ...obj,
482
+ ...(obj.Items && { Items: obj.Items.map((item) => (0, exports.OtaTaskConfigurationSummaryFilterSensitiveLog)(item)) }),
483
+ });
484
+ exports.ListOtaTaskConfigurationsResponseFilterSensitiveLog = ListOtaTaskConfigurationsResponseFilterSensitiveLog;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListCredentialLockers = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListCredentialLockersCommand_1 = require("../commands/ListCredentialLockersCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListCredentialLockers = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListCredentialLockersCommand_1.ListCredentialLockersCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListDestinations = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListDestinationsCommand_1 = require("../commands/ListDestinationsCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListDestinations = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListDestinationsCommand_1.ListDestinationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListEventLogConfigurations = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListEventLogConfigurationsCommand_1 = require("../commands/ListEventLogConfigurationsCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListEventLogConfigurations = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListEventLogConfigurationsCommand_1.ListEventLogConfigurationsCommand, "NextToken", "NextToken", "MaxResults");