@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,1080 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { DocumentType as __DocumentType } from "@smithy/types";
3
+ import { IoTManagedIntegrationsServiceException as __BaseException } from "./IoTManagedIntegrationsServiceException";
4
+ export declare const AbortCriteriaAction: {
5
+ readonly CANCEL: "CANCEL";
6
+ };
7
+ export type AbortCriteriaAction =
8
+ (typeof AbortCriteriaAction)[keyof typeof AbortCriteriaAction];
9
+ export declare const AbortCriteriaFailureType: {
10
+ readonly ALL: "ALL";
11
+ readonly FAILED: "FAILED";
12
+ readonly REJECTED: "REJECTED";
13
+ readonly TIMED_OUT: "TIMED_OUT";
14
+ };
15
+ export type AbortCriteriaFailureType =
16
+ (typeof AbortCriteriaFailureType)[keyof typeof AbortCriteriaFailureType];
17
+ export interface AbortConfigCriteria {
18
+ Action?: AbortCriteriaAction | undefined;
19
+ FailureType?: AbortCriteriaFailureType | undefined;
20
+ MinNumberOfExecutedThings?: number | undefined;
21
+ ThresholdPercentage?: number | undefined;
22
+ }
23
+ export declare class AccessDeniedException extends __BaseException {
24
+ readonly name: "AccessDeniedException";
25
+ readonly $fault: "client";
26
+ Message?: string | undefined;
27
+ constructor(
28
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
29
+ );
30
+ }
31
+ export declare const AuthMaterialType: {
32
+ readonly WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE";
33
+ readonly ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE";
34
+ readonly ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE";
35
+ };
36
+ export type AuthMaterialType =
37
+ (typeof AuthMaterialType)[keyof typeof AuthMaterialType];
38
+ export interface CapabilityAction {
39
+ name: string | undefined;
40
+ ref?: string | undefined;
41
+ actionTraceId?: string | undefined;
42
+ parameters?: __DocumentType | undefined;
43
+ }
44
+ export interface CapabilityReportCapability {
45
+ id: string | undefined;
46
+ name: string | undefined;
47
+ version: string | undefined;
48
+ properties: string[] | undefined;
49
+ actions: string[] | undefined;
50
+ events: string[] | undefined;
51
+ }
52
+ export interface CapabilityReportEndpoint {
53
+ id: string | undefined;
54
+ deviceTypes: string[] | undefined;
55
+ capabilities: CapabilityReportCapability[] | undefined;
56
+ }
57
+ export interface CapabilityReport {
58
+ version: string | undefined;
59
+ nodeId?: string | undefined;
60
+ endpoints: CapabilityReportEndpoint[] | undefined;
61
+ }
62
+ export interface CommandCapability {
63
+ id: string | undefined;
64
+ name: string | undefined;
65
+ version: string | undefined;
66
+ actions: CapabilityAction[] | undefined;
67
+ }
68
+ export interface CommandEndpoint {
69
+ endpointId: string | undefined;
70
+ capabilities: CommandCapability[] | undefined;
71
+ }
72
+ export interface ConfigurationError {
73
+ code?: string | undefined;
74
+ message?: string | undefined;
75
+ }
76
+ export declare const ConfigurationState: {
77
+ readonly ENABLED: "ENABLED";
78
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
79
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
80
+ };
81
+ export type ConfigurationState =
82
+ (typeof ConfigurationState)[keyof typeof ConfigurationState];
83
+ export interface ConfigurationStatus {
84
+ error?: ConfigurationError | undefined;
85
+ state: ConfigurationState | undefined;
86
+ }
87
+ export declare class ConflictException extends __BaseException {
88
+ readonly name: "ConflictException";
89
+ readonly $fault: "client";
90
+ Message?: string | undefined;
91
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
92
+ }
93
+ export interface CreateCredentialLockerRequest {
94
+ Name?: string | undefined;
95
+ ClientToken?: string | undefined;
96
+ Tags?: Record<string, string> | undefined;
97
+ }
98
+ export interface CreateCredentialLockerResponse {
99
+ Id?: string | undefined;
100
+ Arn?: string | undefined;
101
+ CreatedAt?: Date | undefined;
102
+ }
103
+ export declare class InternalServerException extends __BaseException {
104
+ readonly name: "InternalServerException";
105
+ readonly $fault: "server";
106
+ Message?: string | undefined;
107
+ constructor(
108
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
109
+ );
110
+ }
111
+ export declare class ServiceQuotaExceededException extends __BaseException {
112
+ readonly name: "ServiceQuotaExceededException";
113
+ readonly $fault: "client";
114
+ Message?: string | undefined;
115
+ constructor(
116
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
117
+ );
118
+ }
119
+ export declare class ServiceUnavailableException extends __BaseException {
120
+ readonly name: "ServiceUnavailableException";
121
+ readonly $fault: "server";
122
+ Message?: string | undefined;
123
+ constructor(
124
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
125
+ );
126
+ }
127
+ export declare class ThrottlingException extends __BaseException {
128
+ readonly name: "ThrottlingException";
129
+ readonly $fault: "client";
130
+ Message?: string | undefined;
131
+ constructor(
132
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
133
+ );
134
+ }
135
+ export declare class ValidationException extends __BaseException {
136
+ readonly name: "ValidationException";
137
+ readonly $fault: "client";
138
+ Message?: string | undefined;
139
+ constructor(
140
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
141
+ );
142
+ }
143
+ export declare const DeliveryDestinationType: {
144
+ readonly KINESIS: "KINESIS";
145
+ };
146
+ export type DeliveryDestinationType =
147
+ (typeof DeliveryDestinationType)[keyof typeof DeliveryDestinationType];
148
+ export interface CreateDestinationRequest {
149
+ DeliveryDestinationArn: string | undefined;
150
+ DeliveryDestinationType: DeliveryDestinationType | undefined;
151
+ Name: string | undefined;
152
+ RoleArn: string | undefined;
153
+ ClientToken?: string | undefined;
154
+ Description?: string | undefined;
155
+ Tags?: Record<string, string> | undefined;
156
+ }
157
+ export interface CreateDestinationResponse {
158
+ Name?: string | undefined;
159
+ }
160
+ export declare const LogLevel: {
161
+ readonly DEBUG: "DEBUG";
162
+ readonly ERROR: "ERROR";
163
+ readonly INFO: "INFO";
164
+ readonly WARN: "WARN";
165
+ };
166
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
167
+ export interface CreateEventLogConfigurationRequest {
168
+ ResourceType: string | undefined;
169
+ ResourceId?: string | undefined;
170
+ EventLogLevel: LogLevel | undefined;
171
+ ClientToken?: string | undefined;
172
+ }
173
+ export interface CreateEventLogConfigurationResponse {
174
+ Id?: string | undefined;
175
+ }
176
+ export declare const Role: {
177
+ readonly CONTROLLER: "CONTROLLER";
178
+ readonly DEVICE: "DEVICE";
179
+ };
180
+ export type Role = (typeof Role)[keyof typeof Role];
181
+ export interface CreateManagedThingRequest {
182
+ Role: Role | undefined;
183
+ Owner?: string | undefined;
184
+ CredentialLockerId?: string | undefined;
185
+ AuthenticationMaterial: string | undefined;
186
+ AuthenticationMaterialType: AuthMaterialType | undefined;
187
+ SerialNumber?: string | undefined;
188
+ Brand?: string | undefined;
189
+ Model?: string | undefined;
190
+ Name?: string | undefined;
191
+ CapabilityReport?: CapabilityReport | undefined;
192
+ Capabilities?: string | undefined;
193
+ ClientToken?: string | undefined;
194
+ Classification?: string | undefined;
195
+ Tags?: Record<string, string> | undefined;
196
+ MetaData?: Record<string, string> | undefined;
197
+ }
198
+ export interface CreateManagedThingResponse {
199
+ Id?: string | undefined;
200
+ Arn?: string | undefined;
201
+ CreatedAt?: Date | undefined;
202
+ }
203
+ export declare class ResourceNotFoundException extends __BaseException {
204
+ readonly name: "ResourceNotFoundException";
205
+ readonly $fault: "client";
206
+ Message?: string | undefined;
207
+ constructor(
208
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
209
+ );
210
+ }
211
+ export declare class UnauthorizedException extends __BaseException {
212
+ readonly name: "UnauthorizedException";
213
+ readonly $fault: "client";
214
+ Message?: string | undefined;
215
+ constructor(
216
+ opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
217
+ );
218
+ }
219
+ export declare const EventType: {
220
+ readonly CONNECTOR_ASSOCIATION: "CONNECTOR_ASSOCIATION";
221
+ readonly CONNECTOR_ERROR_REPORT: "CONNECTOR_ERROR_REPORT";
222
+ readonly DEVICE_COMMAND: "DEVICE_COMMAND";
223
+ readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
224
+ readonly DEVICE_EVENT: "DEVICE_EVENT";
225
+ readonly DEVICE_LIFE_CYCLE: "DEVICE_LIFE_CYCLE";
226
+ readonly DEVICE_OTA: "DEVICE_OTA";
227
+ readonly DEVICE_STATE: "DEVICE_STATE";
228
+ };
229
+ export type EventType = (typeof EventType)[keyof typeof EventType];
230
+ export interface CreateNotificationConfigurationRequest {
231
+ EventType: EventType | undefined;
232
+ DestinationName: string | undefined;
233
+ ClientToken?: string | undefined;
234
+ Tags?: Record<string, string> | undefined;
235
+ }
236
+ export interface CreateNotificationConfigurationResponse {
237
+ EventType?: EventType | undefined;
238
+ }
239
+ export declare const OtaMechanism: {
240
+ readonly PUSH: "PUSH";
241
+ };
242
+ export type OtaMechanism = (typeof OtaMechanism)[keyof typeof OtaMechanism];
243
+ export declare const SchedulingConfigEndBehavior: {
244
+ readonly CANCEL: "CANCEL";
245
+ readonly FORCE_CANCEL: "FORCE_CANCEL";
246
+ readonly STOP_ROLLOUT: "STOP_ROLLOUT";
247
+ };
248
+ export type SchedulingConfigEndBehavior =
249
+ (typeof SchedulingConfigEndBehavior)[keyof typeof SchedulingConfigEndBehavior];
250
+ export interface ScheduleMaintenanceWindow {
251
+ DurationInMinutes?: number | undefined;
252
+ StartTime?: string | undefined;
253
+ }
254
+ export interface OtaTaskSchedulingConfig {
255
+ EndBehavior?: SchedulingConfigEndBehavior | undefined;
256
+ EndTime?: string | undefined;
257
+ MaintenanceWindows?: ScheduleMaintenanceWindow[] | undefined;
258
+ StartTime?: string | undefined;
259
+ }
260
+ export declare const RetryCriteriaFailureType: {
261
+ readonly ALL: "ALL";
262
+ readonly FAILED: "FAILED";
263
+ readonly TIMED_OUT: "TIMED_OUT";
264
+ };
265
+ export type RetryCriteriaFailureType =
266
+ (typeof RetryCriteriaFailureType)[keyof typeof RetryCriteriaFailureType];
267
+ export interface RetryConfigCriteria {
268
+ FailureType?: RetryCriteriaFailureType | undefined;
269
+ MinNumberOfRetries?: number | undefined;
270
+ }
271
+ export interface OtaTaskExecutionRetryConfig {
272
+ RetryConfigCriteria?: RetryConfigCriteria[] | undefined;
273
+ }
274
+ export declare const OtaType: {
275
+ readonly CONTINUOUS: "CONTINUOUS";
276
+ readonly ONE_TIME: "ONE_TIME";
277
+ };
278
+ export type OtaType = (typeof OtaType)[keyof typeof OtaType];
279
+ export declare const OtaProtocol: {
280
+ readonly HTTP: "HTTP";
281
+ };
282
+ export type OtaProtocol = (typeof OtaProtocol)[keyof typeof OtaProtocol];
283
+ export interface CreateOtaTaskRequest {
284
+ Description?: string | undefined;
285
+ S3Url: string | undefined;
286
+ Protocol?: OtaProtocol | undefined;
287
+ Target?: string[] | undefined;
288
+ TaskConfigurationId?: string | undefined;
289
+ OtaMechanism?: OtaMechanism | undefined;
290
+ OtaType: OtaType | undefined;
291
+ OtaTargetQueryString?: string | undefined;
292
+ ClientToken?: string | undefined;
293
+ OtaSchedulingConfig?: OtaTaskSchedulingConfig | undefined;
294
+ OtaTaskExecutionRetryConfig?: OtaTaskExecutionRetryConfig | undefined;
295
+ Tags?: Record<string, string> | undefined;
296
+ }
297
+ export interface CreateOtaTaskResponse {
298
+ TaskId?: string | undefined;
299
+ TaskArn?: string | undefined;
300
+ Description?: string | undefined;
301
+ }
302
+ export interface OtaTaskAbortConfig {
303
+ AbortConfigCriteriaList?: AbortConfigCriteria[] | undefined;
304
+ }
305
+ export interface RolloutRateIncreaseCriteria {
306
+ numberOfNotifiedThings?: number | undefined;
307
+ numberOfSucceededThings?: number | undefined;
308
+ }
309
+ export interface ExponentialRolloutRate {
310
+ BaseRatePerMinute?: number | undefined;
311
+ IncrementFactor?: number | undefined;
312
+ RateIncreaseCriteria?: RolloutRateIncreaseCriteria | undefined;
313
+ }
314
+ export interface OtaTaskExecutionRolloutConfig {
315
+ ExponentialRolloutRate?: ExponentialRolloutRate | undefined;
316
+ MaximumPerMinute?: number | undefined;
317
+ }
318
+ export interface OtaTaskTimeoutConfig {
319
+ InProgressTimeoutInMinutes?: number | undefined;
320
+ }
321
+ export interface PushConfig {
322
+ AbortConfig?: OtaTaskAbortConfig | undefined;
323
+ RolloutConfig?: OtaTaskExecutionRolloutConfig | undefined;
324
+ TimeoutConfig?: OtaTaskTimeoutConfig | undefined;
325
+ }
326
+ export interface CreateOtaTaskConfigurationRequest {
327
+ Description?: string | undefined;
328
+ Name?: string | undefined;
329
+ PushConfig?: PushConfig | undefined;
330
+ ClientToken?: string | undefined;
331
+ }
332
+ export interface CreateOtaTaskConfigurationResponse {
333
+ TaskConfigurationId?: string | undefined;
334
+ }
335
+ export declare const ProvisioningType: {
336
+ readonly FLEET_PROVISIONING: "FLEET_PROVISIONING";
337
+ readonly JITR: "JITR";
338
+ };
339
+ export type ProvisioningType =
340
+ (typeof ProvisioningType)[keyof typeof ProvisioningType];
341
+ export interface CreateProvisioningProfileRequest {
342
+ ProvisioningType: ProvisioningType | undefined;
343
+ CaCertificate?: string | undefined;
344
+ Name?: string | undefined;
345
+ ClientToken?: string | undefined;
346
+ Tags?: Record<string, string> | undefined;
347
+ }
348
+ export interface CreateProvisioningProfileResponse {
349
+ Arn?: string | undefined;
350
+ Name?: string | undefined;
351
+ ProvisioningType?: ProvisioningType | undefined;
352
+ Id?: string | undefined;
353
+ ClaimCertificate?: string | undefined;
354
+ ClaimCertificatePrivateKey?: string | undefined;
355
+ }
356
+ export interface CredentialLockerSummary {
357
+ Id?: string | undefined;
358
+ Arn?: string | undefined;
359
+ Name?: string | undefined;
360
+ CreatedAt?: Date | undefined;
361
+ }
362
+ export interface DeleteCredentialLockerRequest {
363
+ Identifier: string | undefined;
364
+ }
365
+ export interface GetCredentialLockerRequest {
366
+ Identifier: string | undefined;
367
+ }
368
+ export interface GetCredentialLockerResponse {
369
+ Id?: string | undefined;
370
+ Arn?: string | undefined;
371
+ Name?: string | undefined;
372
+ CreatedAt?: Date | undefined;
373
+ Tags?: Record<string, string> | undefined;
374
+ }
375
+ export interface ListCredentialLockersRequest {
376
+ NextToken?: string | undefined;
377
+ MaxResults?: number | undefined;
378
+ }
379
+ export interface ListCredentialLockersResponse {
380
+ Items?: CredentialLockerSummary[] | undefined;
381
+ NextToken?: string | undefined;
382
+ }
383
+ export interface DeleteDestinationRequest {
384
+ Name: string | undefined;
385
+ }
386
+ export interface DeleteEventLogConfigurationRequest {
387
+ Id: string | undefined;
388
+ }
389
+ export interface DeleteManagedThingRequest {
390
+ Identifier: string | undefined;
391
+ Force?: boolean | undefined;
392
+ }
393
+ export interface DeleteNotificationConfigurationRequest {
394
+ EventType: EventType | undefined;
395
+ }
396
+ export interface DeleteOtaTaskRequest {
397
+ Identifier: string | undefined;
398
+ }
399
+ export interface DeleteOtaTaskConfigurationRequest {
400
+ Identifier: string | undefined;
401
+ }
402
+ export interface DeleteProvisioningProfileRequest {
403
+ Identifier: string | undefined;
404
+ }
405
+ export interface DestinationSummary {
406
+ Description?: string | undefined;
407
+ DeliveryDestinationArn?: string | undefined;
408
+ DeliveryDestinationType?: DeliveryDestinationType | undefined;
409
+ Name?: string | undefined;
410
+ RoleArn?: string | undefined;
411
+ }
412
+ export interface GetDestinationRequest {
413
+ Name: string | undefined;
414
+ }
415
+ export interface GetDestinationResponse {
416
+ Description?: string | undefined;
417
+ DeliveryDestinationArn?: string | undefined;
418
+ DeliveryDestinationType?: DeliveryDestinationType | undefined;
419
+ Name?: string | undefined;
420
+ RoleArn?: string | undefined;
421
+ CreatedAt?: Date | undefined;
422
+ UpdatedAt?: Date | undefined;
423
+ Tags?: Record<string, string> | undefined;
424
+ }
425
+ export interface ListDestinationsRequest {
426
+ NextToken?: string | undefined;
427
+ MaxResults?: number | undefined;
428
+ }
429
+ export interface ListDestinationsResponse {
430
+ DestinationList?: DestinationSummary[] | undefined;
431
+ NextToken?: string | undefined;
432
+ }
433
+ export interface UpdateDestinationRequest {
434
+ Name: string | undefined;
435
+ DeliveryDestinationArn?: string | undefined;
436
+ DeliveryDestinationType?: DeliveryDestinationType | undefined;
437
+ RoleArn?: string | undefined;
438
+ Description?: string | undefined;
439
+ }
440
+ export interface GetDeviceDiscoveryRequest {
441
+ Identifier: string | undefined;
442
+ }
443
+ export declare const DiscoveryType: {
444
+ readonly CLOUD: "CLOUD";
445
+ readonly ZIGBEE: "ZIGBEE";
446
+ readonly ZWAVE: "ZWAVE";
447
+ };
448
+ export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
449
+ export declare const DeviceDiscoveryStatus: {
450
+ readonly FAILED: "FAILED";
451
+ readonly RUNNING: "RUNNING";
452
+ readonly SUCCEEDED: "SUCCEEDED";
453
+ readonly TIMED_OUT: "TIMED_OUT";
454
+ };
455
+ export type DeviceDiscoveryStatus =
456
+ (typeof DeviceDiscoveryStatus)[keyof typeof DeviceDiscoveryStatus];
457
+ export interface GetDeviceDiscoveryResponse {
458
+ Id: string | undefined;
459
+ Arn: string | undefined;
460
+ DiscoveryType: DiscoveryType | undefined;
461
+ Status: DeviceDiscoveryStatus | undefined;
462
+ StartedAt: Date | undefined;
463
+ ControllerId?: string | undefined;
464
+ ConnectorAssociationId?: string | undefined;
465
+ FinishedAt?: Date | undefined;
466
+ Tags?: Record<string, string> | undefined;
467
+ }
468
+ export declare const DiscoveryAuthMaterialType: {
469
+ readonly ZWAVE_INSTALL_CODE: "ZWAVE_INSTALL_CODE";
470
+ };
471
+ export type DiscoveryAuthMaterialType =
472
+ (typeof DiscoveryAuthMaterialType)[keyof typeof DiscoveryAuthMaterialType];
473
+ export interface StartDeviceDiscoveryRequest {
474
+ DiscoveryType: DiscoveryType | undefined;
475
+ ControllerIdentifier?: string | undefined;
476
+ ConnectorAssociationIdentifier?: string | undefined;
477
+ AuthenticationMaterial?: string | undefined;
478
+ AuthenticationMaterialType?: DiscoveryAuthMaterialType | undefined;
479
+ ClientToken?: string | undefined;
480
+ Tags?: Record<string, string> | undefined;
481
+ }
482
+ export interface StartDeviceDiscoveryResponse {
483
+ Id?: string | undefined;
484
+ StartedAt?: Date | undefined;
485
+ }
486
+ export declare const DisconnectReasonValue: {
487
+ readonly AUTH_ERROR: "AUTH_ERROR";
488
+ readonly CLIENT_ERROR: "CLIENT_ERROR";
489
+ readonly CLIENT_INITIATED_DISCONNECT: "CLIENT_INITIATED_DISCONNECT";
490
+ readonly CONNECTION_LOST: "CONNECTION_LOST";
491
+ readonly CUSTOMAUTH_TTL_EXPIRATION: "CUSTOMAUTH_TTL_EXPIRATION";
492
+ readonly DUPLICATE_CLIENTID: "DUPLICATE_CLIENTID";
493
+ readonly FORBIDDEN_ACCESS: "FORBIDDEN_ACCESS";
494
+ readonly MQTT_KEEP_ALIVE_TIMEOUT: "MQTT_KEEP_ALIVE_TIMEOUT";
495
+ readonly NONE: "NONE";
496
+ readonly SERVER_ERROR: "SERVER_ERROR";
497
+ readonly SERVER_INITIATED_DISCONNECT: "SERVER_INITIATED_DISCONNECT";
498
+ readonly THROTTLED: "THROTTLED";
499
+ readonly UNKNOWN: "UNKNOWN";
500
+ readonly WEBSOCKET_TTL_EXPIRATION: "WEBSOCKET_TTL_EXPIRATION";
501
+ };
502
+ export type DisconnectReasonValue =
503
+ (typeof DisconnectReasonValue)[keyof typeof DisconnectReasonValue];
504
+ export declare const EncryptionType: {
505
+ readonly CUSTOMER_KEY_ENCRYPTION: "CUSTOMER_KEY_ENCRYPTION";
506
+ readonly MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION: "MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION";
507
+ };
508
+ export type EncryptionType =
509
+ (typeof EncryptionType)[keyof typeof EncryptionType];
510
+ export interface EventLogConfigurationSummary {
511
+ Id?: string | undefined;
512
+ ResourceType?: string | undefined;
513
+ ResourceId?: string | undefined;
514
+ EventLogLevel?: LogLevel | undefined;
515
+ }
516
+ export interface GetEventLogConfigurationRequest {
517
+ Id: string | undefined;
518
+ }
519
+ export interface GetEventLogConfigurationResponse {
520
+ Id?: string | undefined;
521
+ ResourceType?: string | undefined;
522
+ ResourceId?: string | undefined;
523
+ EventLogLevel?: LogLevel | undefined;
524
+ }
525
+ export interface ListEventLogConfigurationsRequest {
526
+ NextToken?: string | undefined;
527
+ MaxResults?: number | undefined;
528
+ }
529
+ export interface ListEventLogConfigurationsResponse {
530
+ EventLogConfigurationList?: EventLogConfigurationSummary[] | undefined;
531
+ NextToken?: string | undefined;
532
+ }
533
+ export interface UpdateEventLogConfigurationRequest {
534
+ Id: string | undefined;
535
+ EventLogLevel: LogLevel | undefined;
536
+ }
537
+ export interface GetCustomEndpointRequest {}
538
+ export interface GetCustomEndpointResponse {
539
+ EndpointAddress: string | undefined;
540
+ }
541
+ export interface GetDefaultEncryptionConfigurationRequest {}
542
+ export interface GetDefaultEncryptionConfigurationResponse {
543
+ configurationStatus: ConfigurationStatus | undefined;
544
+ encryptionType: EncryptionType | undefined;
545
+ kmsKeyArn?: string | undefined;
546
+ }
547
+ export declare class InternalFailureException extends __BaseException {
548
+ readonly name: "InternalFailureException";
549
+ readonly $fault: "server";
550
+ Message?: string | undefined;
551
+ constructor(
552
+ opts: __ExceptionOptionType<InternalFailureException, __BaseException>
553
+ );
554
+ }
555
+ export interface GetHubConfigurationRequest {}
556
+ export interface GetHubConfigurationResponse {
557
+ HubTokenTimerExpirySettingInSeconds?: number | undefined;
558
+ UpdatedAt?: Date | undefined;
559
+ }
560
+ export interface GetManagedThingRequest {
561
+ Identifier: string | undefined;
562
+ }
563
+ export declare const HubNetworkMode: {
564
+ readonly NETWORK_WIDE_EXCLUSION: "NETWORK_WIDE_EXCLUSION";
565
+ readonly STANDARD: "STANDARD";
566
+ };
567
+ export type HubNetworkMode =
568
+ (typeof HubNetworkMode)[keyof typeof HubNetworkMode];
569
+ export declare const ProvisioningStatus: {
570
+ readonly ACTIVATED: "ACTIVATED";
571
+ readonly DELETED: "DELETED";
572
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
573
+ readonly DELETION_FAILED: "DELETION_FAILED";
574
+ readonly DISCOVERED: "DISCOVERED";
575
+ readonly ISOLATED: "ISOLATED";
576
+ readonly PRE_ASSOCIATED: "PRE_ASSOCIATED";
577
+ readonly UNASSOCIATED: "UNASSOCIATED";
578
+ };
579
+ export type ProvisioningStatus =
580
+ (typeof ProvisioningStatus)[keyof typeof ProvisioningStatus];
581
+ export interface GetManagedThingResponse {
582
+ Id?: string | undefined;
583
+ Arn?: string | undefined;
584
+ Owner?: string | undefined;
585
+ CredentialLockerId?: string | undefined;
586
+ AdvertisedProductId?: string | undefined;
587
+ Role?: Role | undefined;
588
+ ProvisioningStatus?: ProvisioningStatus | undefined;
589
+ Name?: string | undefined;
590
+ Model?: string | undefined;
591
+ Brand?: string | undefined;
592
+ SerialNumber?: string | undefined;
593
+ UniversalProductCode?: string | undefined;
594
+ InternationalArticleNumber?: string | undefined;
595
+ ConnectorPolicyId?: string | undefined;
596
+ ConnectorDeviceId?: string | undefined;
597
+ DeviceSpecificKey?: string | undefined;
598
+ MacAddress?: string | undefined;
599
+ ParentControllerId?: string | undefined;
600
+ Classification?: string | undefined;
601
+ CreatedAt?: Date | undefined;
602
+ UpdatedAt?: Date | undefined;
603
+ ActivatedAt?: Date | undefined;
604
+ HubNetworkMode?: HubNetworkMode | undefined;
605
+ MetaData?: Record<string, string> | undefined;
606
+ Tags?: Record<string, string> | undefined;
607
+ }
608
+ export interface GetManagedThingCapabilitiesRequest {
609
+ Identifier: string | undefined;
610
+ }
611
+ export interface GetManagedThingCapabilitiesResponse {
612
+ ManagedThingId?: string | undefined;
613
+ Capabilities?: string | undefined;
614
+ CapabilityReport?: CapabilityReport | undefined;
615
+ }
616
+ export interface GetManagedThingConnectivityDataRequest {
617
+ Identifier: string | undefined;
618
+ }
619
+ export interface GetManagedThingConnectivityDataResponse {
620
+ ManagedThingId?: string | undefined;
621
+ Connected?: boolean | undefined;
622
+ Timestamp?: Date | undefined;
623
+ DisconnectReason?: DisconnectReasonValue | undefined;
624
+ }
625
+ export interface GetManagedThingMetaDataRequest {
626
+ Identifier: string | undefined;
627
+ }
628
+ export interface GetManagedThingMetaDataResponse {
629
+ ManagedThingId?: string | undefined;
630
+ MetaData?: Record<string, string> | undefined;
631
+ }
632
+ export interface GetManagedThingStateRequest {
633
+ ManagedThingId: string | undefined;
634
+ }
635
+ export interface StateCapability {
636
+ id: string | undefined;
637
+ name: string | undefined;
638
+ version: string | undefined;
639
+ properties?: __DocumentType | undefined;
640
+ }
641
+ export interface StateEndpoint {
642
+ endpointId: string | undefined;
643
+ capabilities: StateCapability[] | undefined;
644
+ }
645
+ export interface GetManagedThingStateResponse {
646
+ Endpoints: StateEndpoint[] | undefined;
647
+ }
648
+ export interface GetNotificationConfigurationRequest {
649
+ EventType: EventType | undefined;
650
+ }
651
+ export interface GetNotificationConfigurationResponse {
652
+ EventType?: EventType | undefined;
653
+ DestinationName?: string | undefined;
654
+ CreatedAt?: Date | undefined;
655
+ UpdatedAt?: Date | undefined;
656
+ Tags?: Record<string, string> | undefined;
657
+ }
658
+ export interface GetOtaTaskRequest {
659
+ Identifier: string | undefined;
660
+ }
661
+ export declare const OtaStatus: {
662
+ readonly CANCELED: "CANCELED";
663
+ readonly COMPLETED: "COMPLETED";
664
+ readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
665
+ readonly IN_PROGRESS: "IN_PROGRESS";
666
+ readonly SCHEDULED: "SCHEDULED";
667
+ };
668
+ export type OtaStatus = (typeof OtaStatus)[keyof typeof OtaStatus];
669
+ export interface TaskProcessingDetails {
670
+ NumberOfCanceledThings?: number | undefined;
671
+ NumberOfFailedThings?: number | undefined;
672
+ NumberOfInProgressThings?: number | undefined;
673
+ numberOfQueuedThings?: number | undefined;
674
+ numberOfRejectedThings?: number | undefined;
675
+ numberOfRemovedThings?: number | undefined;
676
+ numberOfSucceededThings?: number | undefined;
677
+ numberOfTimedOutThings?: number | undefined;
678
+ processingTargets?: string[] | undefined;
679
+ }
680
+ export interface GetOtaTaskResponse {
681
+ TaskId?: string | undefined;
682
+ TaskArn?: string | undefined;
683
+ Description?: string | undefined;
684
+ S3Url?: string | undefined;
685
+ Protocol?: OtaProtocol | undefined;
686
+ OtaType?: OtaType | undefined;
687
+ OtaTargetQueryString?: string | undefined;
688
+ OtaMechanism?: OtaMechanism | undefined;
689
+ Target?: string[] | undefined;
690
+ CreatedAt?: Date | undefined;
691
+ LastUpdatedAt?: Date | undefined;
692
+ TaskConfigurationId?: string | undefined;
693
+ TaskProcessingDetails?: TaskProcessingDetails | undefined;
694
+ OtaSchedulingConfig?: OtaTaskSchedulingConfig | undefined;
695
+ OtaTaskExecutionRetryConfig?: OtaTaskExecutionRetryConfig | undefined;
696
+ Status?: OtaStatus | undefined;
697
+ }
698
+ export interface GetOtaTaskConfigurationRequest {
699
+ Identifier: string | undefined;
700
+ }
701
+ export interface GetOtaTaskConfigurationResponse {
702
+ TaskConfigurationId?: string | undefined;
703
+ Name?: string | undefined;
704
+ PushConfig?: PushConfig | undefined;
705
+ Description?: string | undefined;
706
+ CreatedAt?: Date | undefined;
707
+ }
708
+ export interface GetProvisioningProfileRequest {
709
+ Identifier: string | undefined;
710
+ }
711
+ export interface GetProvisioningProfileResponse {
712
+ Arn?: string | undefined;
713
+ Name?: string | undefined;
714
+ ProvisioningType?: ProvisioningType | undefined;
715
+ Id?: string | undefined;
716
+ ClaimCertificate?: string | undefined;
717
+ Tags?: Record<string, string> | undefined;
718
+ }
719
+ export interface GetRuntimeLogConfigurationRequest {
720
+ ManagedThingId: string | undefined;
721
+ }
722
+ export interface RuntimeLogConfigurations {
723
+ LogLevel?: LogLevel | undefined;
724
+ LogFlushLevel?: LogLevel | undefined;
725
+ LocalStoreLocation?: string | undefined;
726
+ LocalStoreFileRotationMaxFiles?: number | undefined;
727
+ LocalStoreFileRotationMaxBytes?: number | undefined;
728
+ UploadLog?: boolean | undefined;
729
+ UploadPeriodMinutes?: number | undefined;
730
+ DeleteLocalStoreAfterUpload?: boolean | undefined;
731
+ }
732
+ export interface GetRuntimeLogConfigurationResponse {
733
+ ManagedThingId?: string | undefined;
734
+ RuntimeLogConfigurations?: RuntimeLogConfigurations | undefined;
735
+ }
736
+ export declare const SchemaVersionFormat: {
737
+ readonly AWS: "AWS";
738
+ readonly CONNECTOR: "CONNECTOR";
739
+ readonly ZCL: "ZCL";
740
+ };
741
+ export type SchemaVersionFormat =
742
+ (typeof SchemaVersionFormat)[keyof typeof SchemaVersionFormat];
743
+ export declare const SchemaVersionType: {
744
+ readonly CAPABILITY: "capability";
745
+ readonly DEFINITION: "definition";
746
+ };
747
+ export type SchemaVersionType =
748
+ (typeof SchemaVersionType)[keyof typeof SchemaVersionType];
749
+ export interface GetSchemaVersionRequest {
750
+ Type: SchemaVersionType | undefined;
751
+ SchemaVersionedId: string | undefined;
752
+ Format?: SchemaVersionFormat | undefined;
753
+ }
754
+ export declare const SchemaVersionVisibility: {
755
+ readonly PRIVATE: "PRIVATE";
756
+ readonly PUBLIC: "PUBLIC";
757
+ };
758
+ export type SchemaVersionVisibility =
759
+ (typeof SchemaVersionVisibility)[keyof typeof SchemaVersionVisibility];
760
+ export interface GetSchemaVersionResponse {
761
+ SchemaId?: string | undefined;
762
+ Type?: SchemaVersionType | undefined;
763
+ Description?: string | undefined;
764
+ Namespace?: string | undefined;
765
+ SemanticVersion?: string | undefined;
766
+ Visibility?: SchemaVersionVisibility | undefined;
767
+ Schema?: __DocumentType | undefined;
768
+ }
769
+ export interface PutHubConfigurationRequest {
770
+ HubTokenTimerExpirySettingInSeconds: number | undefined;
771
+ }
772
+ export interface PutHubConfigurationResponse {
773
+ HubTokenTimerExpirySettingInSeconds?: number | undefined;
774
+ }
775
+ export interface PutDefaultEncryptionConfigurationRequest {
776
+ encryptionType: EncryptionType | undefined;
777
+ kmsKeyArn?: string | undefined;
778
+ }
779
+ export interface PutDefaultEncryptionConfigurationResponse {
780
+ configurationStatus: ConfigurationStatus | undefined;
781
+ encryptionType: EncryptionType | undefined;
782
+ kmsKeyArn?: string | undefined;
783
+ }
784
+ export interface SendManagedThingCommandRequest {
785
+ ManagedThingId: string | undefined;
786
+ Endpoints: CommandEndpoint[] | undefined;
787
+ ConnectorAssociationId?: string | undefined;
788
+ }
789
+ export interface SendManagedThingCommandResponse {
790
+ TraceId?: string | undefined;
791
+ }
792
+ export interface ListManagedThingsRequest {
793
+ OwnerFilter?: string | undefined;
794
+ CredentialLockerFilter?: string | undefined;
795
+ RoleFilter?: Role | undefined;
796
+ ParentControllerIdentifierFilter?: string | undefined;
797
+ ConnectorPolicyIdFilter?: string | undefined;
798
+ SerialNumberFilter?: string | undefined;
799
+ ProvisioningStatusFilter?: ProvisioningStatus | undefined;
800
+ NextToken?: string | undefined;
801
+ MaxResults?: number | undefined;
802
+ }
803
+ export interface ManagedThingSummary {
804
+ Id?: string | undefined;
805
+ Arn?: string | undefined;
806
+ AdvertisedProductId?: string | undefined;
807
+ Brand?: string | undefined;
808
+ Classification?: string | undefined;
809
+ ConnectorDeviceId?: string | undefined;
810
+ ConnectorPolicyId?: string | undefined;
811
+ Model?: string | undefined;
812
+ Name?: string | undefined;
813
+ Owner?: string | undefined;
814
+ CredentialLockerId?: string | undefined;
815
+ ParentControllerId?: string | undefined;
816
+ ProvisioningStatus?: ProvisioningStatus | undefined;
817
+ Role?: Role | undefined;
818
+ SerialNumber?: string | undefined;
819
+ CreatedAt?: Date | undefined;
820
+ UpdatedAt?: Date | undefined;
821
+ ActivatedAt?: Date | undefined;
822
+ }
823
+ export interface ListManagedThingsResponse {
824
+ Items?: ManagedThingSummary[] | undefined;
825
+ NextToken?: string | undefined;
826
+ }
827
+ export interface ListManagedThingSchemasRequest {
828
+ Identifier: string | undefined;
829
+ EndpointIdFilter?: string | undefined;
830
+ CapabilityIdFilter?: string | undefined;
831
+ NextToken?: string | undefined;
832
+ MaxResults?: number | undefined;
833
+ }
834
+ export interface ManagedThingSchemaListItem {
835
+ EndpointId?: string | undefined;
836
+ CapabilityId?: string | undefined;
837
+ Schema?: __DocumentType | undefined;
838
+ }
839
+ export interface ListManagedThingSchemasResponse {
840
+ Items?: ManagedThingSchemaListItem[] | undefined;
841
+ NextToken?: string | undefined;
842
+ }
843
+ export interface UpdateManagedThingRequest {
844
+ Identifier: string | undefined;
845
+ Owner?: string | undefined;
846
+ CredentialLockerId?: string | undefined;
847
+ SerialNumber?: string | undefined;
848
+ Brand?: string | undefined;
849
+ Model?: string | undefined;
850
+ Name?: string | undefined;
851
+ CapabilityReport?: CapabilityReport | undefined;
852
+ Capabilities?: string | undefined;
853
+ Classification?: string | undefined;
854
+ HubNetworkMode?: HubNetworkMode | undefined;
855
+ MetaData?: Record<string, string> | undefined;
856
+ }
857
+ export interface ListNotificationConfigurationsRequest {
858
+ MaxResults?: number | undefined;
859
+ NextToken?: string | undefined;
860
+ }
861
+ export interface NotificationConfigurationSummary {
862
+ EventType?: EventType | undefined;
863
+ DestinationName?: string | undefined;
864
+ }
865
+ export interface ListNotificationConfigurationsResponse {
866
+ NotificationConfigurationList?:
867
+ | NotificationConfigurationSummary[]
868
+ | undefined;
869
+ NextToken?: string | undefined;
870
+ }
871
+ export interface UpdateNotificationConfigurationRequest {
872
+ EventType: EventType | undefined;
873
+ DestinationName: string | undefined;
874
+ }
875
+ export interface ListOtaTaskConfigurationsRequest {
876
+ NextToken?: string | undefined;
877
+ MaxResults?: number | undefined;
878
+ }
879
+ export interface OtaTaskConfigurationSummary {
880
+ TaskConfigurationId?: string | undefined;
881
+ Name?: string | undefined;
882
+ CreatedAt?: Date | undefined;
883
+ }
884
+ export interface ListOtaTaskConfigurationsResponse {
885
+ Items?: OtaTaskConfigurationSummary[] | undefined;
886
+ NextToken?: string | undefined;
887
+ }
888
+ export interface ListOtaTaskExecutionsRequest {
889
+ Identifier: string | undefined;
890
+ NextToken?: string | undefined;
891
+ MaxResults?: number | undefined;
892
+ }
893
+ export declare const OtaTaskExecutionStatus: {
894
+ readonly CANCELED: "CANCELED";
895
+ readonly FAILED: "FAILED";
896
+ readonly IN_PROGRESS: "IN_PROGRESS";
897
+ readonly QUEUED: "QUEUED";
898
+ readonly REJECTED: "REJECTED";
899
+ readonly REMOVED: "REMOVED";
900
+ readonly SUCCEEDED: "SUCCEEDED";
901
+ readonly TIMED_OUT: "TIMED_OUT";
902
+ };
903
+ export type OtaTaskExecutionStatus =
904
+ (typeof OtaTaskExecutionStatus)[keyof typeof OtaTaskExecutionStatus];
905
+ export interface OtaTaskExecutionSummary {
906
+ ExecutionNumber?: number | undefined;
907
+ LastUpdatedAt?: Date | undefined;
908
+ QueuedAt?: Date | undefined;
909
+ RetryAttempt?: number | undefined;
910
+ StartedAt?: Date | undefined;
911
+ Status?: OtaTaskExecutionStatus | undefined;
912
+ }
913
+ export interface OtaTaskExecutionSummaries {
914
+ TaskExecutionSummary?: OtaTaskExecutionSummary | undefined;
915
+ ManagedThingId?: string | undefined;
916
+ }
917
+ export interface ListOtaTaskExecutionsResponse {
918
+ ExecutionSummaries?: OtaTaskExecutionSummaries[] | undefined;
919
+ NextToken?: string | undefined;
920
+ }
921
+ export interface ListOtaTasksRequest {
922
+ NextToken?: string | undefined;
923
+ MaxResults?: number | undefined;
924
+ }
925
+ export interface OtaTaskSummary {
926
+ TaskId?: string | undefined;
927
+ TaskArn?: string | undefined;
928
+ CreatedAt?: Date | undefined;
929
+ LastUpdatedAt?: Date | undefined;
930
+ TaskConfigurationId?: string | undefined;
931
+ Status?: OtaStatus | undefined;
932
+ }
933
+ export interface ListOtaTasksResponse {
934
+ Tasks?: OtaTaskSummary[] | undefined;
935
+ NextToken?: string | undefined;
936
+ }
937
+ export interface UpdateOtaTaskRequest {
938
+ Identifier: string | undefined;
939
+ Description?: string | undefined;
940
+ TaskConfigurationId?: string | undefined;
941
+ }
942
+ export interface ListProvisioningProfilesRequest {
943
+ NextToken?: string | undefined;
944
+ MaxResults?: number | undefined;
945
+ }
946
+ export interface ProvisioningProfileSummary {
947
+ Name?: string | undefined;
948
+ Id?: string | undefined;
949
+ Arn?: string | undefined;
950
+ ProvisioningType?: ProvisioningType | undefined;
951
+ }
952
+ export interface ListProvisioningProfilesResponse {
953
+ Items?: ProvisioningProfileSummary[] | undefined;
954
+ NextToken?: string | undefined;
955
+ }
956
+ export interface RegisterCustomEndpointRequest {}
957
+ export interface RegisterCustomEndpointResponse {
958
+ EndpointAddress: string | undefined;
959
+ }
960
+ export interface PutRuntimeLogConfigurationRequest {
961
+ ManagedThingId: string | undefined;
962
+ RuntimeLogConfigurations: RuntimeLogConfigurations | undefined;
963
+ }
964
+ export interface ResetRuntimeLogConfigurationRequest {
965
+ ManagedThingId: string | undefined;
966
+ }
967
+ export interface ListSchemaVersionsRequest {
968
+ Type: SchemaVersionType | undefined;
969
+ MaxResults?: number | undefined;
970
+ NextToken?: string | undefined;
971
+ SchemaId?: string | undefined;
972
+ Namespace?: string | undefined;
973
+ Visibility?: SchemaVersionVisibility | undefined;
974
+ SemanticVersion?: string | undefined;
975
+ }
976
+ export interface SchemaVersionListItem {
977
+ SchemaId?: string | undefined;
978
+ Type?: SchemaVersionType | undefined;
979
+ Description?: string | undefined;
980
+ Namespace?: string | undefined;
981
+ SemanticVersion?: string | undefined;
982
+ Visibility?: SchemaVersionVisibility | undefined;
983
+ }
984
+ export interface ListSchemaVersionsResponse {
985
+ Items?: SchemaVersionListItem[] | undefined;
986
+ NextToken?: string | undefined;
987
+ }
988
+ export declare const CapabilityActionFilterSensitiveLog: (
989
+ obj: CapabilityAction
990
+ ) => any;
991
+ export declare const CommandCapabilityFilterSensitiveLog: (
992
+ obj: CommandCapability
993
+ ) => any;
994
+ export declare const CommandEndpointFilterSensitiveLog: (
995
+ obj: CommandEndpoint
996
+ ) => any;
997
+ export declare const CreateCredentialLockerRequestFilterSensitiveLog: (
998
+ obj: CreateCredentialLockerRequest
999
+ ) => any;
1000
+ export declare const CreateDestinationRequestFilterSensitiveLog: (
1001
+ obj: CreateDestinationRequest
1002
+ ) => any;
1003
+ export declare const CreateManagedThingRequestFilterSensitiveLog: (
1004
+ obj: CreateManagedThingRequest
1005
+ ) => any;
1006
+ export declare const CreateNotificationConfigurationRequestFilterSensitiveLog: (
1007
+ obj: CreateNotificationConfigurationRequest
1008
+ ) => any;
1009
+ export declare const CreateOtaTaskRequestFilterSensitiveLog: (
1010
+ obj: CreateOtaTaskRequest
1011
+ ) => any;
1012
+ export declare const CreateOtaTaskConfigurationRequestFilterSensitiveLog: (
1013
+ obj: CreateOtaTaskConfigurationRequest
1014
+ ) => any;
1015
+ export declare const CreateProvisioningProfileRequestFilterSensitiveLog: (
1016
+ obj: CreateProvisioningProfileRequest
1017
+ ) => any;
1018
+ export declare const CreateProvisioningProfileResponseFilterSensitiveLog: (
1019
+ obj: CreateProvisioningProfileResponse
1020
+ ) => any;
1021
+ export declare const CredentialLockerSummaryFilterSensitiveLog: (
1022
+ obj: CredentialLockerSummary
1023
+ ) => any;
1024
+ export declare const GetCredentialLockerResponseFilterSensitiveLog: (
1025
+ obj: GetCredentialLockerResponse
1026
+ ) => any;
1027
+ export declare const ListCredentialLockersResponseFilterSensitiveLog: (
1028
+ obj: ListCredentialLockersResponse
1029
+ ) => any;
1030
+ export declare const GetDestinationResponseFilterSensitiveLog: (
1031
+ obj: GetDestinationResponse
1032
+ ) => any;
1033
+ export declare const GetDeviceDiscoveryResponseFilterSensitiveLog: (
1034
+ obj: GetDeviceDiscoveryResponse
1035
+ ) => any;
1036
+ export declare const StartDeviceDiscoveryRequestFilterSensitiveLog: (
1037
+ obj: StartDeviceDiscoveryRequest
1038
+ ) => any;
1039
+ export declare const GetManagedThingResponseFilterSensitiveLog: (
1040
+ obj: GetManagedThingResponse
1041
+ ) => any;
1042
+ export declare const StateCapabilityFilterSensitiveLog: (
1043
+ obj: StateCapability
1044
+ ) => any;
1045
+ export declare const StateEndpointFilterSensitiveLog: (
1046
+ obj: StateEndpoint
1047
+ ) => any;
1048
+ export declare const GetManagedThingStateResponseFilterSensitiveLog: (
1049
+ obj: GetManagedThingStateResponse
1050
+ ) => any;
1051
+ export declare const GetNotificationConfigurationResponseFilterSensitiveLog: (
1052
+ obj: GetNotificationConfigurationResponse
1053
+ ) => any;
1054
+ export declare const GetOtaTaskConfigurationResponseFilterSensitiveLog: (
1055
+ obj: GetOtaTaskConfigurationResponse
1056
+ ) => any;
1057
+ export declare const GetProvisioningProfileResponseFilterSensitiveLog: (
1058
+ obj: GetProvisioningProfileResponse
1059
+ ) => any;
1060
+ export declare const SendManagedThingCommandRequestFilterSensitiveLog: (
1061
+ obj: SendManagedThingCommandRequest
1062
+ ) => any;
1063
+ export declare const ListManagedThingsRequestFilterSensitiveLog: (
1064
+ obj: ListManagedThingsRequest
1065
+ ) => any;
1066
+ export declare const ManagedThingSummaryFilterSensitiveLog: (
1067
+ obj: ManagedThingSummary
1068
+ ) => any;
1069
+ export declare const ListManagedThingsResponseFilterSensitiveLog: (
1070
+ obj: ListManagedThingsResponse
1071
+ ) => any;
1072
+ export declare const UpdateManagedThingRequestFilterSensitiveLog: (
1073
+ obj: UpdateManagedThingRequest
1074
+ ) => any;
1075
+ export declare const OtaTaskConfigurationSummaryFilterSensitiveLog: (
1076
+ obj: OtaTaskConfigurationSummary
1077
+ ) => any;
1078
+ export declare const ListOtaTaskConfigurationsResponseFilterSensitiveLog: (
1079
+ obj: ListOtaTaskConfigurationsResponse
1080
+ ) => any;