@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,689 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateCredentialLockerCommandInput,
8
+ CreateCredentialLockerCommandOutput,
9
+ } from "../commands/CreateCredentialLockerCommand";
10
+ import {
11
+ CreateDestinationCommandInput,
12
+ CreateDestinationCommandOutput,
13
+ } from "../commands/CreateDestinationCommand";
14
+ import {
15
+ CreateEventLogConfigurationCommandInput,
16
+ CreateEventLogConfigurationCommandOutput,
17
+ } from "../commands/CreateEventLogConfigurationCommand";
18
+ import {
19
+ CreateManagedThingCommandInput,
20
+ CreateManagedThingCommandOutput,
21
+ } from "../commands/CreateManagedThingCommand";
22
+ import {
23
+ CreateNotificationConfigurationCommandInput,
24
+ CreateNotificationConfigurationCommandOutput,
25
+ } from "../commands/CreateNotificationConfigurationCommand";
26
+ import {
27
+ CreateOtaTaskCommandInput,
28
+ CreateOtaTaskCommandOutput,
29
+ } from "../commands/CreateOtaTaskCommand";
30
+ import {
31
+ CreateOtaTaskConfigurationCommandInput,
32
+ CreateOtaTaskConfigurationCommandOutput,
33
+ } from "../commands/CreateOtaTaskConfigurationCommand";
34
+ import {
35
+ CreateProvisioningProfileCommandInput,
36
+ CreateProvisioningProfileCommandOutput,
37
+ } from "../commands/CreateProvisioningProfileCommand";
38
+ import {
39
+ DeleteCredentialLockerCommandInput,
40
+ DeleteCredentialLockerCommandOutput,
41
+ } from "../commands/DeleteCredentialLockerCommand";
42
+ import {
43
+ DeleteDestinationCommandInput,
44
+ DeleteDestinationCommandOutput,
45
+ } from "../commands/DeleteDestinationCommand";
46
+ import {
47
+ DeleteEventLogConfigurationCommandInput,
48
+ DeleteEventLogConfigurationCommandOutput,
49
+ } from "../commands/DeleteEventLogConfigurationCommand";
50
+ import {
51
+ DeleteManagedThingCommandInput,
52
+ DeleteManagedThingCommandOutput,
53
+ } from "../commands/DeleteManagedThingCommand";
54
+ import {
55
+ DeleteNotificationConfigurationCommandInput,
56
+ DeleteNotificationConfigurationCommandOutput,
57
+ } from "../commands/DeleteNotificationConfigurationCommand";
58
+ import {
59
+ DeleteOtaTaskCommandInput,
60
+ DeleteOtaTaskCommandOutput,
61
+ } from "../commands/DeleteOtaTaskCommand";
62
+ import {
63
+ DeleteOtaTaskConfigurationCommandInput,
64
+ DeleteOtaTaskConfigurationCommandOutput,
65
+ } from "../commands/DeleteOtaTaskConfigurationCommand";
66
+ import {
67
+ DeleteProvisioningProfileCommandInput,
68
+ DeleteProvisioningProfileCommandOutput,
69
+ } from "../commands/DeleteProvisioningProfileCommand";
70
+ import {
71
+ GetCredentialLockerCommandInput,
72
+ GetCredentialLockerCommandOutput,
73
+ } from "../commands/GetCredentialLockerCommand";
74
+ import {
75
+ GetCustomEndpointCommandInput,
76
+ GetCustomEndpointCommandOutput,
77
+ } from "../commands/GetCustomEndpointCommand";
78
+ import {
79
+ GetDefaultEncryptionConfigurationCommandInput,
80
+ GetDefaultEncryptionConfigurationCommandOutput,
81
+ } from "../commands/GetDefaultEncryptionConfigurationCommand";
82
+ import {
83
+ GetDestinationCommandInput,
84
+ GetDestinationCommandOutput,
85
+ } from "../commands/GetDestinationCommand";
86
+ import {
87
+ GetDeviceDiscoveryCommandInput,
88
+ GetDeviceDiscoveryCommandOutput,
89
+ } from "../commands/GetDeviceDiscoveryCommand";
90
+ import {
91
+ GetEventLogConfigurationCommandInput,
92
+ GetEventLogConfigurationCommandOutput,
93
+ } from "../commands/GetEventLogConfigurationCommand";
94
+ import {
95
+ GetHubConfigurationCommandInput,
96
+ GetHubConfigurationCommandOutput,
97
+ } from "../commands/GetHubConfigurationCommand";
98
+ import {
99
+ GetManagedThingCapabilitiesCommandInput,
100
+ GetManagedThingCapabilitiesCommandOutput,
101
+ } from "../commands/GetManagedThingCapabilitiesCommand";
102
+ import {
103
+ GetManagedThingCommandInput,
104
+ GetManagedThingCommandOutput,
105
+ } from "../commands/GetManagedThingCommand";
106
+ import {
107
+ GetManagedThingConnectivityDataCommandInput,
108
+ GetManagedThingConnectivityDataCommandOutput,
109
+ } from "../commands/GetManagedThingConnectivityDataCommand";
110
+ import {
111
+ GetManagedThingMetaDataCommandInput,
112
+ GetManagedThingMetaDataCommandOutput,
113
+ } from "../commands/GetManagedThingMetaDataCommand";
114
+ import {
115
+ GetManagedThingStateCommandInput,
116
+ GetManagedThingStateCommandOutput,
117
+ } from "../commands/GetManagedThingStateCommand";
118
+ import {
119
+ GetNotificationConfigurationCommandInput,
120
+ GetNotificationConfigurationCommandOutput,
121
+ } from "../commands/GetNotificationConfigurationCommand";
122
+ import {
123
+ GetOtaTaskCommandInput,
124
+ GetOtaTaskCommandOutput,
125
+ } from "../commands/GetOtaTaskCommand";
126
+ import {
127
+ GetOtaTaskConfigurationCommandInput,
128
+ GetOtaTaskConfigurationCommandOutput,
129
+ } from "../commands/GetOtaTaskConfigurationCommand";
130
+ import {
131
+ GetProvisioningProfileCommandInput,
132
+ GetProvisioningProfileCommandOutput,
133
+ } from "../commands/GetProvisioningProfileCommand";
134
+ import {
135
+ GetRuntimeLogConfigurationCommandInput,
136
+ GetRuntimeLogConfigurationCommandOutput,
137
+ } from "../commands/GetRuntimeLogConfigurationCommand";
138
+ import {
139
+ GetSchemaVersionCommandInput,
140
+ GetSchemaVersionCommandOutput,
141
+ } from "../commands/GetSchemaVersionCommand";
142
+ import {
143
+ ListCredentialLockersCommandInput,
144
+ ListCredentialLockersCommandOutput,
145
+ } from "../commands/ListCredentialLockersCommand";
146
+ import {
147
+ ListDestinationsCommandInput,
148
+ ListDestinationsCommandOutput,
149
+ } from "../commands/ListDestinationsCommand";
150
+ import {
151
+ ListEventLogConfigurationsCommandInput,
152
+ ListEventLogConfigurationsCommandOutput,
153
+ } from "../commands/ListEventLogConfigurationsCommand";
154
+ import {
155
+ ListManagedThingSchemasCommandInput,
156
+ ListManagedThingSchemasCommandOutput,
157
+ } from "../commands/ListManagedThingSchemasCommand";
158
+ import {
159
+ ListManagedThingsCommandInput,
160
+ ListManagedThingsCommandOutput,
161
+ } from "../commands/ListManagedThingsCommand";
162
+ import {
163
+ ListNotificationConfigurationsCommandInput,
164
+ ListNotificationConfigurationsCommandOutput,
165
+ } from "../commands/ListNotificationConfigurationsCommand";
166
+ import {
167
+ ListOtaTaskConfigurationsCommandInput,
168
+ ListOtaTaskConfigurationsCommandOutput,
169
+ } from "../commands/ListOtaTaskConfigurationsCommand";
170
+ import {
171
+ ListOtaTaskExecutionsCommandInput,
172
+ ListOtaTaskExecutionsCommandOutput,
173
+ } from "../commands/ListOtaTaskExecutionsCommand";
174
+ import {
175
+ ListOtaTasksCommandInput,
176
+ ListOtaTasksCommandOutput,
177
+ } from "../commands/ListOtaTasksCommand";
178
+ import {
179
+ ListProvisioningProfilesCommandInput,
180
+ ListProvisioningProfilesCommandOutput,
181
+ } from "../commands/ListProvisioningProfilesCommand";
182
+ import {
183
+ ListSchemaVersionsCommandInput,
184
+ ListSchemaVersionsCommandOutput,
185
+ } from "../commands/ListSchemaVersionsCommand";
186
+ import {
187
+ PutDefaultEncryptionConfigurationCommandInput,
188
+ PutDefaultEncryptionConfigurationCommandOutput,
189
+ } from "../commands/PutDefaultEncryptionConfigurationCommand";
190
+ import {
191
+ PutHubConfigurationCommandInput,
192
+ PutHubConfigurationCommandOutput,
193
+ } from "../commands/PutHubConfigurationCommand";
194
+ import {
195
+ PutRuntimeLogConfigurationCommandInput,
196
+ PutRuntimeLogConfigurationCommandOutput,
197
+ } from "../commands/PutRuntimeLogConfigurationCommand";
198
+ import {
199
+ RegisterCustomEndpointCommandInput,
200
+ RegisterCustomEndpointCommandOutput,
201
+ } from "../commands/RegisterCustomEndpointCommand";
202
+ import {
203
+ ResetRuntimeLogConfigurationCommandInput,
204
+ ResetRuntimeLogConfigurationCommandOutput,
205
+ } from "../commands/ResetRuntimeLogConfigurationCommand";
206
+ import {
207
+ SendManagedThingCommandCommandInput,
208
+ SendManagedThingCommandCommandOutput,
209
+ } from "../commands/SendManagedThingCommandCommand";
210
+ import {
211
+ StartDeviceDiscoveryCommandInput,
212
+ StartDeviceDiscoveryCommandOutput,
213
+ } from "../commands/StartDeviceDiscoveryCommand";
214
+ import {
215
+ UpdateDestinationCommandInput,
216
+ UpdateDestinationCommandOutput,
217
+ } from "../commands/UpdateDestinationCommand";
218
+ import {
219
+ UpdateEventLogConfigurationCommandInput,
220
+ UpdateEventLogConfigurationCommandOutput,
221
+ } from "../commands/UpdateEventLogConfigurationCommand";
222
+ import {
223
+ UpdateManagedThingCommandInput,
224
+ UpdateManagedThingCommandOutput,
225
+ } from "../commands/UpdateManagedThingCommand";
226
+ import {
227
+ UpdateNotificationConfigurationCommandInput,
228
+ UpdateNotificationConfigurationCommandOutput,
229
+ } from "../commands/UpdateNotificationConfigurationCommand";
230
+ import {
231
+ UpdateOtaTaskCommandInput,
232
+ UpdateOtaTaskCommandOutput,
233
+ } from "../commands/UpdateOtaTaskCommand";
234
+ export declare const se_CreateCredentialLockerCommand: (
235
+ input: CreateCredentialLockerCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const se_CreateDestinationCommand: (
239
+ input: CreateDestinationCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const se_CreateEventLogConfigurationCommand: (
243
+ input: CreateEventLogConfigurationCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const se_CreateManagedThingCommand: (
247
+ input: CreateManagedThingCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
250
+ export declare const se_CreateNotificationConfigurationCommand: (
251
+ input: CreateNotificationConfigurationCommandInput,
252
+ context: __SerdeContext
253
+ ) => Promise<__HttpRequest>;
254
+ export declare const se_CreateOtaTaskCommand: (
255
+ input: CreateOtaTaskCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
258
+ export declare const se_CreateOtaTaskConfigurationCommand: (
259
+ input: CreateOtaTaskConfigurationCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
262
+ export declare const se_CreateProvisioningProfileCommand: (
263
+ input: CreateProvisioningProfileCommandInput,
264
+ context: __SerdeContext
265
+ ) => Promise<__HttpRequest>;
266
+ export declare const se_DeleteCredentialLockerCommand: (
267
+ input: DeleteCredentialLockerCommandInput,
268
+ context: __SerdeContext
269
+ ) => Promise<__HttpRequest>;
270
+ export declare const se_DeleteDestinationCommand: (
271
+ input: DeleteDestinationCommandInput,
272
+ context: __SerdeContext
273
+ ) => Promise<__HttpRequest>;
274
+ export declare const se_DeleteEventLogConfigurationCommand: (
275
+ input: DeleteEventLogConfigurationCommandInput,
276
+ context: __SerdeContext
277
+ ) => Promise<__HttpRequest>;
278
+ export declare const se_DeleteManagedThingCommand: (
279
+ input: DeleteManagedThingCommandInput,
280
+ context: __SerdeContext
281
+ ) => Promise<__HttpRequest>;
282
+ export declare const se_DeleteNotificationConfigurationCommand: (
283
+ input: DeleteNotificationConfigurationCommandInput,
284
+ context: __SerdeContext
285
+ ) => Promise<__HttpRequest>;
286
+ export declare const se_DeleteOtaTaskCommand: (
287
+ input: DeleteOtaTaskCommandInput,
288
+ context: __SerdeContext
289
+ ) => Promise<__HttpRequest>;
290
+ export declare const se_DeleteOtaTaskConfigurationCommand: (
291
+ input: DeleteOtaTaskConfigurationCommandInput,
292
+ context: __SerdeContext
293
+ ) => Promise<__HttpRequest>;
294
+ export declare const se_DeleteProvisioningProfileCommand: (
295
+ input: DeleteProvisioningProfileCommandInput,
296
+ context: __SerdeContext
297
+ ) => Promise<__HttpRequest>;
298
+ export declare const se_GetCredentialLockerCommand: (
299
+ input: GetCredentialLockerCommandInput,
300
+ context: __SerdeContext
301
+ ) => Promise<__HttpRequest>;
302
+ export declare const se_GetCustomEndpointCommand: (
303
+ input: GetCustomEndpointCommandInput,
304
+ context: __SerdeContext
305
+ ) => Promise<__HttpRequest>;
306
+ export declare const se_GetDefaultEncryptionConfigurationCommand: (
307
+ input: GetDefaultEncryptionConfigurationCommandInput,
308
+ context: __SerdeContext
309
+ ) => Promise<__HttpRequest>;
310
+ export declare const se_GetDestinationCommand: (
311
+ input: GetDestinationCommandInput,
312
+ context: __SerdeContext
313
+ ) => Promise<__HttpRequest>;
314
+ export declare const se_GetDeviceDiscoveryCommand: (
315
+ input: GetDeviceDiscoveryCommandInput,
316
+ context: __SerdeContext
317
+ ) => Promise<__HttpRequest>;
318
+ export declare const se_GetEventLogConfigurationCommand: (
319
+ input: GetEventLogConfigurationCommandInput,
320
+ context: __SerdeContext
321
+ ) => Promise<__HttpRequest>;
322
+ export declare const se_GetHubConfigurationCommand: (
323
+ input: GetHubConfigurationCommandInput,
324
+ context: __SerdeContext
325
+ ) => Promise<__HttpRequest>;
326
+ export declare const se_GetManagedThingCommand: (
327
+ input: GetManagedThingCommandInput,
328
+ context: __SerdeContext
329
+ ) => Promise<__HttpRequest>;
330
+ export declare const se_GetManagedThingCapabilitiesCommand: (
331
+ input: GetManagedThingCapabilitiesCommandInput,
332
+ context: __SerdeContext
333
+ ) => Promise<__HttpRequest>;
334
+ export declare const se_GetManagedThingConnectivityDataCommand: (
335
+ input: GetManagedThingConnectivityDataCommandInput,
336
+ context: __SerdeContext
337
+ ) => Promise<__HttpRequest>;
338
+ export declare const se_GetManagedThingMetaDataCommand: (
339
+ input: GetManagedThingMetaDataCommandInput,
340
+ context: __SerdeContext
341
+ ) => Promise<__HttpRequest>;
342
+ export declare const se_GetManagedThingStateCommand: (
343
+ input: GetManagedThingStateCommandInput,
344
+ context: __SerdeContext
345
+ ) => Promise<__HttpRequest>;
346
+ export declare const se_GetNotificationConfigurationCommand: (
347
+ input: GetNotificationConfigurationCommandInput,
348
+ context: __SerdeContext
349
+ ) => Promise<__HttpRequest>;
350
+ export declare const se_GetOtaTaskCommand: (
351
+ input: GetOtaTaskCommandInput,
352
+ context: __SerdeContext
353
+ ) => Promise<__HttpRequest>;
354
+ export declare const se_GetOtaTaskConfigurationCommand: (
355
+ input: GetOtaTaskConfigurationCommandInput,
356
+ context: __SerdeContext
357
+ ) => Promise<__HttpRequest>;
358
+ export declare const se_GetProvisioningProfileCommand: (
359
+ input: GetProvisioningProfileCommandInput,
360
+ context: __SerdeContext
361
+ ) => Promise<__HttpRequest>;
362
+ export declare const se_GetRuntimeLogConfigurationCommand: (
363
+ input: GetRuntimeLogConfigurationCommandInput,
364
+ context: __SerdeContext
365
+ ) => Promise<__HttpRequest>;
366
+ export declare const se_GetSchemaVersionCommand: (
367
+ input: GetSchemaVersionCommandInput,
368
+ context: __SerdeContext
369
+ ) => Promise<__HttpRequest>;
370
+ export declare const se_ListCredentialLockersCommand: (
371
+ input: ListCredentialLockersCommandInput,
372
+ context: __SerdeContext
373
+ ) => Promise<__HttpRequest>;
374
+ export declare const se_ListDestinationsCommand: (
375
+ input: ListDestinationsCommandInput,
376
+ context: __SerdeContext
377
+ ) => Promise<__HttpRequest>;
378
+ export declare const se_ListEventLogConfigurationsCommand: (
379
+ input: ListEventLogConfigurationsCommandInput,
380
+ context: __SerdeContext
381
+ ) => Promise<__HttpRequest>;
382
+ export declare const se_ListManagedThingsCommand: (
383
+ input: ListManagedThingsCommandInput,
384
+ context: __SerdeContext
385
+ ) => Promise<__HttpRequest>;
386
+ export declare const se_ListManagedThingSchemasCommand: (
387
+ input: ListManagedThingSchemasCommandInput,
388
+ context: __SerdeContext
389
+ ) => Promise<__HttpRequest>;
390
+ export declare const se_ListNotificationConfigurationsCommand: (
391
+ input: ListNotificationConfigurationsCommandInput,
392
+ context: __SerdeContext
393
+ ) => Promise<__HttpRequest>;
394
+ export declare const se_ListOtaTaskConfigurationsCommand: (
395
+ input: ListOtaTaskConfigurationsCommandInput,
396
+ context: __SerdeContext
397
+ ) => Promise<__HttpRequest>;
398
+ export declare const se_ListOtaTaskExecutionsCommand: (
399
+ input: ListOtaTaskExecutionsCommandInput,
400
+ context: __SerdeContext
401
+ ) => Promise<__HttpRequest>;
402
+ export declare const se_ListOtaTasksCommand: (
403
+ input: ListOtaTasksCommandInput,
404
+ context: __SerdeContext
405
+ ) => Promise<__HttpRequest>;
406
+ export declare const se_ListProvisioningProfilesCommand: (
407
+ input: ListProvisioningProfilesCommandInput,
408
+ context: __SerdeContext
409
+ ) => Promise<__HttpRequest>;
410
+ export declare const se_ListSchemaVersionsCommand: (
411
+ input: ListSchemaVersionsCommandInput,
412
+ context: __SerdeContext
413
+ ) => Promise<__HttpRequest>;
414
+ export declare const se_PutDefaultEncryptionConfigurationCommand: (
415
+ input: PutDefaultEncryptionConfigurationCommandInput,
416
+ context: __SerdeContext
417
+ ) => Promise<__HttpRequest>;
418
+ export declare const se_PutHubConfigurationCommand: (
419
+ input: PutHubConfigurationCommandInput,
420
+ context: __SerdeContext
421
+ ) => Promise<__HttpRequest>;
422
+ export declare const se_PutRuntimeLogConfigurationCommand: (
423
+ input: PutRuntimeLogConfigurationCommandInput,
424
+ context: __SerdeContext
425
+ ) => Promise<__HttpRequest>;
426
+ export declare const se_RegisterCustomEndpointCommand: (
427
+ input: RegisterCustomEndpointCommandInput,
428
+ context: __SerdeContext
429
+ ) => Promise<__HttpRequest>;
430
+ export declare const se_ResetRuntimeLogConfigurationCommand: (
431
+ input: ResetRuntimeLogConfigurationCommandInput,
432
+ context: __SerdeContext
433
+ ) => Promise<__HttpRequest>;
434
+ export declare const se_SendManagedThingCommandCommand: (
435
+ input: SendManagedThingCommandCommandInput,
436
+ context: __SerdeContext
437
+ ) => Promise<__HttpRequest>;
438
+ export declare const se_StartDeviceDiscoveryCommand: (
439
+ input: StartDeviceDiscoveryCommandInput,
440
+ context: __SerdeContext
441
+ ) => Promise<__HttpRequest>;
442
+ export declare const se_UpdateDestinationCommand: (
443
+ input: UpdateDestinationCommandInput,
444
+ context: __SerdeContext
445
+ ) => Promise<__HttpRequest>;
446
+ export declare const se_UpdateEventLogConfigurationCommand: (
447
+ input: UpdateEventLogConfigurationCommandInput,
448
+ context: __SerdeContext
449
+ ) => Promise<__HttpRequest>;
450
+ export declare const se_UpdateManagedThingCommand: (
451
+ input: UpdateManagedThingCommandInput,
452
+ context: __SerdeContext
453
+ ) => Promise<__HttpRequest>;
454
+ export declare const se_UpdateNotificationConfigurationCommand: (
455
+ input: UpdateNotificationConfigurationCommandInput,
456
+ context: __SerdeContext
457
+ ) => Promise<__HttpRequest>;
458
+ export declare const se_UpdateOtaTaskCommand: (
459
+ input: UpdateOtaTaskCommandInput,
460
+ context: __SerdeContext
461
+ ) => Promise<__HttpRequest>;
462
+ export declare const de_CreateCredentialLockerCommand: (
463
+ output: __HttpResponse,
464
+ context: __SerdeContext
465
+ ) => Promise<CreateCredentialLockerCommandOutput>;
466
+ export declare const de_CreateDestinationCommand: (
467
+ output: __HttpResponse,
468
+ context: __SerdeContext
469
+ ) => Promise<CreateDestinationCommandOutput>;
470
+ export declare const de_CreateEventLogConfigurationCommand: (
471
+ output: __HttpResponse,
472
+ context: __SerdeContext
473
+ ) => Promise<CreateEventLogConfigurationCommandOutput>;
474
+ export declare const de_CreateManagedThingCommand: (
475
+ output: __HttpResponse,
476
+ context: __SerdeContext
477
+ ) => Promise<CreateManagedThingCommandOutput>;
478
+ export declare const de_CreateNotificationConfigurationCommand: (
479
+ output: __HttpResponse,
480
+ context: __SerdeContext
481
+ ) => Promise<CreateNotificationConfigurationCommandOutput>;
482
+ export declare const de_CreateOtaTaskCommand: (
483
+ output: __HttpResponse,
484
+ context: __SerdeContext
485
+ ) => Promise<CreateOtaTaskCommandOutput>;
486
+ export declare const de_CreateOtaTaskConfigurationCommand: (
487
+ output: __HttpResponse,
488
+ context: __SerdeContext
489
+ ) => Promise<CreateOtaTaskConfigurationCommandOutput>;
490
+ export declare const de_CreateProvisioningProfileCommand: (
491
+ output: __HttpResponse,
492
+ context: __SerdeContext
493
+ ) => Promise<CreateProvisioningProfileCommandOutput>;
494
+ export declare const de_DeleteCredentialLockerCommand: (
495
+ output: __HttpResponse,
496
+ context: __SerdeContext
497
+ ) => Promise<DeleteCredentialLockerCommandOutput>;
498
+ export declare const de_DeleteDestinationCommand: (
499
+ output: __HttpResponse,
500
+ context: __SerdeContext
501
+ ) => Promise<DeleteDestinationCommandOutput>;
502
+ export declare const de_DeleteEventLogConfigurationCommand: (
503
+ output: __HttpResponse,
504
+ context: __SerdeContext
505
+ ) => Promise<DeleteEventLogConfigurationCommandOutput>;
506
+ export declare const de_DeleteManagedThingCommand: (
507
+ output: __HttpResponse,
508
+ context: __SerdeContext
509
+ ) => Promise<DeleteManagedThingCommandOutput>;
510
+ export declare const de_DeleteNotificationConfigurationCommand: (
511
+ output: __HttpResponse,
512
+ context: __SerdeContext
513
+ ) => Promise<DeleteNotificationConfigurationCommandOutput>;
514
+ export declare const de_DeleteOtaTaskCommand: (
515
+ output: __HttpResponse,
516
+ context: __SerdeContext
517
+ ) => Promise<DeleteOtaTaskCommandOutput>;
518
+ export declare const de_DeleteOtaTaskConfigurationCommand: (
519
+ output: __HttpResponse,
520
+ context: __SerdeContext
521
+ ) => Promise<DeleteOtaTaskConfigurationCommandOutput>;
522
+ export declare const de_DeleteProvisioningProfileCommand: (
523
+ output: __HttpResponse,
524
+ context: __SerdeContext
525
+ ) => Promise<DeleteProvisioningProfileCommandOutput>;
526
+ export declare const de_GetCredentialLockerCommand: (
527
+ output: __HttpResponse,
528
+ context: __SerdeContext
529
+ ) => Promise<GetCredentialLockerCommandOutput>;
530
+ export declare const de_GetCustomEndpointCommand: (
531
+ output: __HttpResponse,
532
+ context: __SerdeContext
533
+ ) => Promise<GetCustomEndpointCommandOutput>;
534
+ export declare const de_GetDefaultEncryptionConfigurationCommand: (
535
+ output: __HttpResponse,
536
+ context: __SerdeContext
537
+ ) => Promise<GetDefaultEncryptionConfigurationCommandOutput>;
538
+ export declare const de_GetDestinationCommand: (
539
+ output: __HttpResponse,
540
+ context: __SerdeContext
541
+ ) => Promise<GetDestinationCommandOutput>;
542
+ export declare const de_GetDeviceDiscoveryCommand: (
543
+ output: __HttpResponse,
544
+ context: __SerdeContext
545
+ ) => Promise<GetDeviceDiscoveryCommandOutput>;
546
+ export declare const de_GetEventLogConfigurationCommand: (
547
+ output: __HttpResponse,
548
+ context: __SerdeContext
549
+ ) => Promise<GetEventLogConfigurationCommandOutput>;
550
+ export declare const de_GetHubConfigurationCommand: (
551
+ output: __HttpResponse,
552
+ context: __SerdeContext
553
+ ) => Promise<GetHubConfigurationCommandOutput>;
554
+ export declare const de_GetManagedThingCommand: (
555
+ output: __HttpResponse,
556
+ context: __SerdeContext
557
+ ) => Promise<GetManagedThingCommandOutput>;
558
+ export declare const de_GetManagedThingCapabilitiesCommand: (
559
+ output: __HttpResponse,
560
+ context: __SerdeContext
561
+ ) => Promise<GetManagedThingCapabilitiesCommandOutput>;
562
+ export declare const de_GetManagedThingConnectivityDataCommand: (
563
+ output: __HttpResponse,
564
+ context: __SerdeContext
565
+ ) => Promise<GetManagedThingConnectivityDataCommandOutput>;
566
+ export declare const de_GetManagedThingMetaDataCommand: (
567
+ output: __HttpResponse,
568
+ context: __SerdeContext
569
+ ) => Promise<GetManagedThingMetaDataCommandOutput>;
570
+ export declare const de_GetManagedThingStateCommand: (
571
+ output: __HttpResponse,
572
+ context: __SerdeContext
573
+ ) => Promise<GetManagedThingStateCommandOutput>;
574
+ export declare const de_GetNotificationConfigurationCommand: (
575
+ output: __HttpResponse,
576
+ context: __SerdeContext
577
+ ) => Promise<GetNotificationConfigurationCommandOutput>;
578
+ export declare const de_GetOtaTaskCommand: (
579
+ output: __HttpResponse,
580
+ context: __SerdeContext
581
+ ) => Promise<GetOtaTaskCommandOutput>;
582
+ export declare const de_GetOtaTaskConfigurationCommand: (
583
+ output: __HttpResponse,
584
+ context: __SerdeContext
585
+ ) => Promise<GetOtaTaskConfigurationCommandOutput>;
586
+ export declare const de_GetProvisioningProfileCommand: (
587
+ output: __HttpResponse,
588
+ context: __SerdeContext
589
+ ) => Promise<GetProvisioningProfileCommandOutput>;
590
+ export declare const de_GetRuntimeLogConfigurationCommand: (
591
+ output: __HttpResponse,
592
+ context: __SerdeContext
593
+ ) => Promise<GetRuntimeLogConfigurationCommandOutput>;
594
+ export declare const de_GetSchemaVersionCommand: (
595
+ output: __HttpResponse,
596
+ context: __SerdeContext
597
+ ) => Promise<GetSchemaVersionCommandOutput>;
598
+ export declare const de_ListCredentialLockersCommand: (
599
+ output: __HttpResponse,
600
+ context: __SerdeContext
601
+ ) => Promise<ListCredentialLockersCommandOutput>;
602
+ export declare const de_ListDestinationsCommand: (
603
+ output: __HttpResponse,
604
+ context: __SerdeContext
605
+ ) => Promise<ListDestinationsCommandOutput>;
606
+ export declare const de_ListEventLogConfigurationsCommand: (
607
+ output: __HttpResponse,
608
+ context: __SerdeContext
609
+ ) => Promise<ListEventLogConfigurationsCommandOutput>;
610
+ export declare const de_ListManagedThingsCommand: (
611
+ output: __HttpResponse,
612
+ context: __SerdeContext
613
+ ) => Promise<ListManagedThingsCommandOutput>;
614
+ export declare const de_ListManagedThingSchemasCommand: (
615
+ output: __HttpResponse,
616
+ context: __SerdeContext
617
+ ) => Promise<ListManagedThingSchemasCommandOutput>;
618
+ export declare const de_ListNotificationConfigurationsCommand: (
619
+ output: __HttpResponse,
620
+ context: __SerdeContext
621
+ ) => Promise<ListNotificationConfigurationsCommandOutput>;
622
+ export declare const de_ListOtaTaskConfigurationsCommand: (
623
+ output: __HttpResponse,
624
+ context: __SerdeContext
625
+ ) => Promise<ListOtaTaskConfigurationsCommandOutput>;
626
+ export declare const de_ListOtaTaskExecutionsCommand: (
627
+ output: __HttpResponse,
628
+ context: __SerdeContext
629
+ ) => Promise<ListOtaTaskExecutionsCommandOutput>;
630
+ export declare const de_ListOtaTasksCommand: (
631
+ output: __HttpResponse,
632
+ context: __SerdeContext
633
+ ) => Promise<ListOtaTasksCommandOutput>;
634
+ export declare const de_ListProvisioningProfilesCommand: (
635
+ output: __HttpResponse,
636
+ context: __SerdeContext
637
+ ) => Promise<ListProvisioningProfilesCommandOutput>;
638
+ export declare const de_ListSchemaVersionsCommand: (
639
+ output: __HttpResponse,
640
+ context: __SerdeContext
641
+ ) => Promise<ListSchemaVersionsCommandOutput>;
642
+ export declare const de_PutDefaultEncryptionConfigurationCommand: (
643
+ output: __HttpResponse,
644
+ context: __SerdeContext
645
+ ) => Promise<PutDefaultEncryptionConfigurationCommandOutput>;
646
+ export declare const de_PutHubConfigurationCommand: (
647
+ output: __HttpResponse,
648
+ context: __SerdeContext
649
+ ) => Promise<PutHubConfigurationCommandOutput>;
650
+ export declare const de_PutRuntimeLogConfigurationCommand: (
651
+ output: __HttpResponse,
652
+ context: __SerdeContext
653
+ ) => Promise<PutRuntimeLogConfigurationCommandOutput>;
654
+ export declare const de_RegisterCustomEndpointCommand: (
655
+ output: __HttpResponse,
656
+ context: __SerdeContext
657
+ ) => Promise<RegisterCustomEndpointCommandOutput>;
658
+ export declare const de_ResetRuntimeLogConfigurationCommand: (
659
+ output: __HttpResponse,
660
+ context: __SerdeContext
661
+ ) => Promise<ResetRuntimeLogConfigurationCommandOutput>;
662
+ export declare const de_SendManagedThingCommandCommand: (
663
+ output: __HttpResponse,
664
+ context: __SerdeContext
665
+ ) => Promise<SendManagedThingCommandCommandOutput>;
666
+ export declare const de_StartDeviceDiscoveryCommand: (
667
+ output: __HttpResponse,
668
+ context: __SerdeContext
669
+ ) => Promise<StartDeviceDiscoveryCommandOutput>;
670
+ export declare const de_UpdateDestinationCommand: (
671
+ output: __HttpResponse,
672
+ context: __SerdeContext
673
+ ) => Promise<UpdateDestinationCommandOutput>;
674
+ export declare const de_UpdateEventLogConfigurationCommand: (
675
+ output: __HttpResponse,
676
+ context: __SerdeContext
677
+ ) => Promise<UpdateEventLogConfigurationCommandOutput>;
678
+ export declare const de_UpdateManagedThingCommand: (
679
+ output: __HttpResponse,
680
+ context: __SerdeContext
681
+ ) => Promise<UpdateManagedThingCommandOutput>;
682
+ export declare const de_UpdateNotificationConfigurationCommand: (
683
+ output: __HttpResponse,
684
+ context: __SerdeContext
685
+ ) => Promise<UpdateNotificationConfigurationCommandOutput>;
686
+ export declare const de_UpdateOtaTaskCommand: (
687
+ output: __HttpResponse,
688
+ context: __SerdeContext
689
+ ) => Promise<UpdateOtaTaskCommandOutput>;