@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,1002 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateCredentialLockerCommandInput,
4
+ CreateCredentialLockerCommandOutput,
5
+ } from "./commands/CreateCredentialLockerCommand";
6
+ import {
7
+ CreateDestinationCommandInput,
8
+ CreateDestinationCommandOutput,
9
+ } from "./commands/CreateDestinationCommand";
10
+ import {
11
+ CreateEventLogConfigurationCommandInput,
12
+ CreateEventLogConfigurationCommandOutput,
13
+ } from "./commands/CreateEventLogConfigurationCommand";
14
+ import {
15
+ CreateManagedThingCommandInput,
16
+ CreateManagedThingCommandOutput,
17
+ } from "./commands/CreateManagedThingCommand";
18
+ import {
19
+ CreateNotificationConfigurationCommandInput,
20
+ CreateNotificationConfigurationCommandOutput,
21
+ } from "./commands/CreateNotificationConfigurationCommand";
22
+ import {
23
+ CreateOtaTaskCommandInput,
24
+ CreateOtaTaskCommandOutput,
25
+ } from "./commands/CreateOtaTaskCommand";
26
+ import {
27
+ CreateOtaTaskConfigurationCommandInput,
28
+ CreateOtaTaskConfigurationCommandOutput,
29
+ } from "./commands/CreateOtaTaskConfigurationCommand";
30
+ import {
31
+ CreateProvisioningProfileCommandInput,
32
+ CreateProvisioningProfileCommandOutput,
33
+ } from "./commands/CreateProvisioningProfileCommand";
34
+ import {
35
+ DeleteCredentialLockerCommandInput,
36
+ DeleteCredentialLockerCommandOutput,
37
+ } from "./commands/DeleteCredentialLockerCommand";
38
+ import {
39
+ DeleteDestinationCommandInput,
40
+ DeleteDestinationCommandOutput,
41
+ } from "./commands/DeleteDestinationCommand";
42
+ import {
43
+ DeleteEventLogConfigurationCommandInput,
44
+ DeleteEventLogConfigurationCommandOutput,
45
+ } from "./commands/DeleteEventLogConfigurationCommand";
46
+ import {
47
+ DeleteManagedThingCommandInput,
48
+ DeleteManagedThingCommandOutput,
49
+ } from "./commands/DeleteManagedThingCommand";
50
+ import {
51
+ DeleteNotificationConfigurationCommandInput,
52
+ DeleteNotificationConfigurationCommandOutput,
53
+ } from "./commands/DeleteNotificationConfigurationCommand";
54
+ import {
55
+ DeleteOtaTaskCommandInput,
56
+ DeleteOtaTaskCommandOutput,
57
+ } from "./commands/DeleteOtaTaskCommand";
58
+ import {
59
+ DeleteOtaTaskConfigurationCommandInput,
60
+ DeleteOtaTaskConfigurationCommandOutput,
61
+ } from "./commands/DeleteOtaTaskConfigurationCommand";
62
+ import {
63
+ DeleteProvisioningProfileCommandInput,
64
+ DeleteProvisioningProfileCommandOutput,
65
+ } from "./commands/DeleteProvisioningProfileCommand";
66
+ import {
67
+ GetCredentialLockerCommandInput,
68
+ GetCredentialLockerCommandOutput,
69
+ } from "./commands/GetCredentialLockerCommand";
70
+ import {
71
+ GetCustomEndpointCommandInput,
72
+ GetCustomEndpointCommandOutput,
73
+ } from "./commands/GetCustomEndpointCommand";
74
+ import {
75
+ GetDefaultEncryptionConfigurationCommandInput,
76
+ GetDefaultEncryptionConfigurationCommandOutput,
77
+ } from "./commands/GetDefaultEncryptionConfigurationCommand";
78
+ import {
79
+ GetDestinationCommandInput,
80
+ GetDestinationCommandOutput,
81
+ } from "./commands/GetDestinationCommand";
82
+ import {
83
+ GetDeviceDiscoveryCommandInput,
84
+ GetDeviceDiscoveryCommandOutput,
85
+ } from "./commands/GetDeviceDiscoveryCommand";
86
+ import {
87
+ GetEventLogConfigurationCommandInput,
88
+ GetEventLogConfigurationCommandOutput,
89
+ } from "./commands/GetEventLogConfigurationCommand";
90
+ import {
91
+ GetHubConfigurationCommandInput,
92
+ GetHubConfigurationCommandOutput,
93
+ } from "./commands/GetHubConfigurationCommand";
94
+ import {
95
+ GetManagedThingCapabilitiesCommandInput,
96
+ GetManagedThingCapabilitiesCommandOutput,
97
+ } from "./commands/GetManagedThingCapabilitiesCommand";
98
+ import {
99
+ GetManagedThingCommandInput,
100
+ GetManagedThingCommandOutput,
101
+ } from "./commands/GetManagedThingCommand";
102
+ import {
103
+ GetManagedThingConnectivityDataCommandInput,
104
+ GetManagedThingConnectivityDataCommandOutput,
105
+ } from "./commands/GetManagedThingConnectivityDataCommand";
106
+ import {
107
+ GetManagedThingMetaDataCommandInput,
108
+ GetManagedThingMetaDataCommandOutput,
109
+ } from "./commands/GetManagedThingMetaDataCommand";
110
+ import {
111
+ GetManagedThingStateCommandInput,
112
+ GetManagedThingStateCommandOutput,
113
+ } from "./commands/GetManagedThingStateCommand";
114
+ import {
115
+ GetNotificationConfigurationCommandInput,
116
+ GetNotificationConfigurationCommandOutput,
117
+ } from "./commands/GetNotificationConfigurationCommand";
118
+ import {
119
+ GetOtaTaskCommandInput,
120
+ GetOtaTaskCommandOutput,
121
+ } from "./commands/GetOtaTaskCommand";
122
+ import {
123
+ GetOtaTaskConfigurationCommandInput,
124
+ GetOtaTaskConfigurationCommandOutput,
125
+ } from "./commands/GetOtaTaskConfigurationCommand";
126
+ import {
127
+ GetProvisioningProfileCommandInput,
128
+ GetProvisioningProfileCommandOutput,
129
+ } from "./commands/GetProvisioningProfileCommand";
130
+ import {
131
+ GetRuntimeLogConfigurationCommandInput,
132
+ GetRuntimeLogConfigurationCommandOutput,
133
+ } from "./commands/GetRuntimeLogConfigurationCommand";
134
+ import {
135
+ GetSchemaVersionCommandInput,
136
+ GetSchemaVersionCommandOutput,
137
+ } from "./commands/GetSchemaVersionCommand";
138
+ import {
139
+ ListCredentialLockersCommandInput,
140
+ ListCredentialLockersCommandOutput,
141
+ } from "./commands/ListCredentialLockersCommand";
142
+ import {
143
+ ListDestinationsCommandInput,
144
+ ListDestinationsCommandOutput,
145
+ } from "./commands/ListDestinationsCommand";
146
+ import {
147
+ ListEventLogConfigurationsCommandInput,
148
+ ListEventLogConfigurationsCommandOutput,
149
+ } from "./commands/ListEventLogConfigurationsCommand";
150
+ import {
151
+ ListManagedThingSchemasCommandInput,
152
+ ListManagedThingSchemasCommandOutput,
153
+ } from "./commands/ListManagedThingSchemasCommand";
154
+ import {
155
+ ListManagedThingsCommandInput,
156
+ ListManagedThingsCommandOutput,
157
+ } from "./commands/ListManagedThingsCommand";
158
+ import {
159
+ ListNotificationConfigurationsCommandInput,
160
+ ListNotificationConfigurationsCommandOutput,
161
+ } from "./commands/ListNotificationConfigurationsCommand";
162
+ import {
163
+ ListOtaTaskConfigurationsCommandInput,
164
+ ListOtaTaskConfigurationsCommandOutput,
165
+ } from "./commands/ListOtaTaskConfigurationsCommand";
166
+ import {
167
+ ListOtaTaskExecutionsCommandInput,
168
+ ListOtaTaskExecutionsCommandOutput,
169
+ } from "./commands/ListOtaTaskExecutionsCommand";
170
+ import {
171
+ ListOtaTasksCommandInput,
172
+ ListOtaTasksCommandOutput,
173
+ } from "./commands/ListOtaTasksCommand";
174
+ import {
175
+ ListProvisioningProfilesCommandInput,
176
+ ListProvisioningProfilesCommandOutput,
177
+ } from "./commands/ListProvisioningProfilesCommand";
178
+ import {
179
+ ListSchemaVersionsCommandInput,
180
+ ListSchemaVersionsCommandOutput,
181
+ } from "./commands/ListSchemaVersionsCommand";
182
+ import {
183
+ PutDefaultEncryptionConfigurationCommandInput,
184
+ PutDefaultEncryptionConfigurationCommandOutput,
185
+ } from "./commands/PutDefaultEncryptionConfigurationCommand";
186
+ import {
187
+ PutHubConfigurationCommandInput,
188
+ PutHubConfigurationCommandOutput,
189
+ } from "./commands/PutHubConfigurationCommand";
190
+ import {
191
+ PutRuntimeLogConfigurationCommandInput,
192
+ PutRuntimeLogConfigurationCommandOutput,
193
+ } from "./commands/PutRuntimeLogConfigurationCommand";
194
+ import {
195
+ RegisterCustomEndpointCommandInput,
196
+ RegisterCustomEndpointCommandOutput,
197
+ } from "./commands/RegisterCustomEndpointCommand";
198
+ import {
199
+ ResetRuntimeLogConfigurationCommandInput,
200
+ ResetRuntimeLogConfigurationCommandOutput,
201
+ } from "./commands/ResetRuntimeLogConfigurationCommand";
202
+ import {
203
+ SendManagedThingCommandCommandInput,
204
+ SendManagedThingCommandCommandOutput,
205
+ } from "./commands/SendManagedThingCommandCommand";
206
+ import {
207
+ StartDeviceDiscoveryCommandInput,
208
+ StartDeviceDiscoveryCommandOutput,
209
+ } from "./commands/StartDeviceDiscoveryCommand";
210
+ import {
211
+ UpdateDestinationCommandInput,
212
+ UpdateDestinationCommandOutput,
213
+ } from "./commands/UpdateDestinationCommand";
214
+ import {
215
+ UpdateEventLogConfigurationCommandInput,
216
+ UpdateEventLogConfigurationCommandOutput,
217
+ } from "./commands/UpdateEventLogConfigurationCommand";
218
+ import {
219
+ UpdateManagedThingCommandInput,
220
+ UpdateManagedThingCommandOutput,
221
+ } from "./commands/UpdateManagedThingCommand";
222
+ import {
223
+ UpdateNotificationConfigurationCommandInput,
224
+ UpdateNotificationConfigurationCommandOutput,
225
+ } from "./commands/UpdateNotificationConfigurationCommand";
226
+ import {
227
+ UpdateOtaTaskCommandInput,
228
+ UpdateOtaTaskCommandOutput,
229
+ } from "./commands/UpdateOtaTaskCommand";
230
+ import { IoTManagedIntegrationsClient } from "./IoTManagedIntegrationsClient";
231
+ export interface IoTManagedIntegrations {
232
+ createCredentialLocker(): Promise<CreateCredentialLockerCommandOutput>;
233
+ createCredentialLocker(
234
+ args: CreateCredentialLockerCommandInput,
235
+ options?: __HttpHandlerOptions
236
+ ): Promise<CreateCredentialLockerCommandOutput>;
237
+ createCredentialLocker(
238
+ args: CreateCredentialLockerCommandInput,
239
+ cb: (err: any, data?: CreateCredentialLockerCommandOutput) => void
240
+ ): void;
241
+ createCredentialLocker(
242
+ args: CreateCredentialLockerCommandInput,
243
+ options: __HttpHandlerOptions,
244
+ cb: (err: any, data?: CreateCredentialLockerCommandOutput) => void
245
+ ): void;
246
+ createDestination(
247
+ args: CreateDestinationCommandInput,
248
+ options?: __HttpHandlerOptions
249
+ ): Promise<CreateDestinationCommandOutput>;
250
+ createDestination(
251
+ args: CreateDestinationCommandInput,
252
+ cb: (err: any, data?: CreateDestinationCommandOutput) => void
253
+ ): void;
254
+ createDestination(
255
+ args: CreateDestinationCommandInput,
256
+ options: __HttpHandlerOptions,
257
+ cb: (err: any, data?: CreateDestinationCommandOutput) => void
258
+ ): void;
259
+ createEventLogConfiguration(
260
+ args: CreateEventLogConfigurationCommandInput,
261
+ options?: __HttpHandlerOptions
262
+ ): Promise<CreateEventLogConfigurationCommandOutput>;
263
+ createEventLogConfiguration(
264
+ args: CreateEventLogConfigurationCommandInput,
265
+ cb: (err: any, data?: CreateEventLogConfigurationCommandOutput) => void
266
+ ): void;
267
+ createEventLogConfiguration(
268
+ args: CreateEventLogConfigurationCommandInput,
269
+ options: __HttpHandlerOptions,
270
+ cb: (err: any, data?: CreateEventLogConfigurationCommandOutput) => void
271
+ ): void;
272
+ createManagedThing(
273
+ args: CreateManagedThingCommandInput,
274
+ options?: __HttpHandlerOptions
275
+ ): Promise<CreateManagedThingCommandOutput>;
276
+ createManagedThing(
277
+ args: CreateManagedThingCommandInput,
278
+ cb: (err: any, data?: CreateManagedThingCommandOutput) => void
279
+ ): void;
280
+ createManagedThing(
281
+ args: CreateManagedThingCommandInput,
282
+ options: __HttpHandlerOptions,
283
+ cb: (err: any, data?: CreateManagedThingCommandOutput) => void
284
+ ): void;
285
+ createNotificationConfiguration(
286
+ args: CreateNotificationConfigurationCommandInput,
287
+ options?: __HttpHandlerOptions
288
+ ): Promise<CreateNotificationConfigurationCommandOutput>;
289
+ createNotificationConfiguration(
290
+ args: CreateNotificationConfigurationCommandInput,
291
+ cb: (err: any, data?: CreateNotificationConfigurationCommandOutput) => void
292
+ ): void;
293
+ createNotificationConfiguration(
294
+ args: CreateNotificationConfigurationCommandInput,
295
+ options: __HttpHandlerOptions,
296
+ cb: (err: any, data?: CreateNotificationConfigurationCommandOutput) => void
297
+ ): void;
298
+ createOtaTask(
299
+ args: CreateOtaTaskCommandInput,
300
+ options?: __HttpHandlerOptions
301
+ ): Promise<CreateOtaTaskCommandOutput>;
302
+ createOtaTask(
303
+ args: CreateOtaTaskCommandInput,
304
+ cb: (err: any, data?: CreateOtaTaskCommandOutput) => void
305
+ ): void;
306
+ createOtaTask(
307
+ args: CreateOtaTaskCommandInput,
308
+ options: __HttpHandlerOptions,
309
+ cb: (err: any, data?: CreateOtaTaskCommandOutput) => void
310
+ ): void;
311
+ createOtaTaskConfiguration(): Promise<CreateOtaTaskConfigurationCommandOutput>;
312
+ createOtaTaskConfiguration(
313
+ args: CreateOtaTaskConfigurationCommandInput,
314
+ options?: __HttpHandlerOptions
315
+ ): Promise<CreateOtaTaskConfigurationCommandOutput>;
316
+ createOtaTaskConfiguration(
317
+ args: CreateOtaTaskConfigurationCommandInput,
318
+ cb: (err: any, data?: CreateOtaTaskConfigurationCommandOutput) => void
319
+ ): void;
320
+ createOtaTaskConfiguration(
321
+ args: CreateOtaTaskConfigurationCommandInput,
322
+ options: __HttpHandlerOptions,
323
+ cb: (err: any, data?: CreateOtaTaskConfigurationCommandOutput) => void
324
+ ): void;
325
+ createProvisioningProfile(
326
+ args: CreateProvisioningProfileCommandInput,
327
+ options?: __HttpHandlerOptions
328
+ ): Promise<CreateProvisioningProfileCommandOutput>;
329
+ createProvisioningProfile(
330
+ args: CreateProvisioningProfileCommandInput,
331
+ cb: (err: any, data?: CreateProvisioningProfileCommandOutput) => void
332
+ ): void;
333
+ createProvisioningProfile(
334
+ args: CreateProvisioningProfileCommandInput,
335
+ options: __HttpHandlerOptions,
336
+ cb: (err: any, data?: CreateProvisioningProfileCommandOutput) => void
337
+ ): void;
338
+ deleteCredentialLocker(
339
+ args: DeleteCredentialLockerCommandInput,
340
+ options?: __HttpHandlerOptions
341
+ ): Promise<DeleteCredentialLockerCommandOutput>;
342
+ deleteCredentialLocker(
343
+ args: DeleteCredentialLockerCommandInput,
344
+ cb: (err: any, data?: DeleteCredentialLockerCommandOutput) => void
345
+ ): void;
346
+ deleteCredentialLocker(
347
+ args: DeleteCredentialLockerCommandInput,
348
+ options: __HttpHandlerOptions,
349
+ cb: (err: any, data?: DeleteCredentialLockerCommandOutput) => void
350
+ ): void;
351
+ deleteDestination(
352
+ args: DeleteDestinationCommandInput,
353
+ options?: __HttpHandlerOptions
354
+ ): Promise<DeleteDestinationCommandOutput>;
355
+ deleteDestination(
356
+ args: DeleteDestinationCommandInput,
357
+ cb: (err: any, data?: DeleteDestinationCommandOutput) => void
358
+ ): void;
359
+ deleteDestination(
360
+ args: DeleteDestinationCommandInput,
361
+ options: __HttpHandlerOptions,
362
+ cb: (err: any, data?: DeleteDestinationCommandOutput) => void
363
+ ): void;
364
+ deleteEventLogConfiguration(
365
+ args: DeleteEventLogConfigurationCommandInput,
366
+ options?: __HttpHandlerOptions
367
+ ): Promise<DeleteEventLogConfigurationCommandOutput>;
368
+ deleteEventLogConfiguration(
369
+ args: DeleteEventLogConfigurationCommandInput,
370
+ cb: (err: any, data?: DeleteEventLogConfigurationCommandOutput) => void
371
+ ): void;
372
+ deleteEventLogConfiguration(
373
+ args: DeleteEventLogConfigurationCommandInput,
374
+ options: __HttpHandlerOptions,
375
+ cb: (err: any, data?: DeleteEventLogConfigurationCommandOutput) => void
376
+ ): void;
377
+ deleteManagedThing(
378
+ args: DeleteManagedThingCommandInput,
379
+ options?: __HttpHandlerOptions
380
+ ): Promise<DeleteManagedThingCommandOutput>;
381
+ deleteManagedThing(
382
+ args: DeleteManagedThingCommandInput,
383
+ cb: (err: any, data?: DeleteManagedThingCommandOutput) => void
384
+ ): void;
385
+ deleteManagedThing(
386
+ args: DeleteManagedThingCommandInput,
387
+ options: __HttpHandlerOptions,
388
+ cb: (err: any, data?: DeleteManagedThingCommandOutput) => void
389
+ ): void;
390
+ deleteNotificationConfiguration(
391
+ args: DeleteNotificationConfigurationCommandInput,
392
+ options?: __HttpHandlerOptions
393
+ ): Promise<DeleteNotificationConfigurationCommandOutput>;
394
+ deleteNotificationConfiguration(
395
+ args: DeleteNotificationConfigurationCommandInput,
396
+ cb: (err: any, data?: DeleteNotificationConfigurationCommandOutput) => void
397
+ ): void;
398
+ deleteNotificationConfiguration(
399
+ args: DeleteNotificationConfigurationCommandInput,
400
+ options: __HttpHandlerOptions,
401
+ cb: (err: any, data?: DeleteNotificationConfigurationCommandOutput) => void
402
+ ): void;
403
+ deleteOtaTask(
404
+ args: DeleteOtaTaskCommandInput,
405
+ options?: __HttpHandlerOptions
406
+ ): Promise<DeleteOtaTaskCommandOutput>;
407
+ deleteOtaTask(
408
+ args: DeleteOtaTaskCommandInput,
409
+ cb: (err: any, data?: DeleteOtaTaskCommandOutput) => void
410
+ ): void;
411
+ deleteOtaTask(
412
+ args: DeleteOtaTaskCommandInput,
413
+ options: __HttpHandlerOptions,
414
+ cb: (err: any, data?: DeleteOtaTaskCommandOutput) => void
415
+ ): void;
416
+ deleteOtaTaskConfiguration(
417
+ args: DeleteOtaTaskConfigurationCommandInput,
418
+ options?: __HttpHandlerOptions
419
+ ): Promise<DeleteOtaTaskConfigurationCommandOutput>;
420
+ deleteOtaTaskConfiguration(
421
+ args: DeleteOtaTaskConfigurationCommandInput,
422
+ cb: (err: any, data?: DeleteOtaTaskConfigurationCommandOutput) => void
423
+ ): void;
424
+ deleteOtaTaskConfiguration(
425
+ args: DeleteOtaTaskConfigurationCommandInput,
426
+ options: __HttpHandlerOptions,
427
+ cb: (err: any, data?: DeleteOtaTaskConfigurationCommandOutput) => void
428
+ ): void;
429
+ deleteProvisioningProfile(
430
+ args: DeleteProvisioningProfileCommandInput,
431
+ options?: __HttpHandlerOptions
432
+ ): Promise<DeleteProvisioningProfileCommandOutput>;
433
+ deleteProvisioningProfile(
434
+ args: DeleteProvisioningProfileCommandInput,
435
+ cb: (err: any, data?: DeleteProvisioningProfileCommandOutput) => void
436
+ ): void;
437
+ deleteProvisioningProfile(
438
+ args: DeleteProvisioningProfileCommandInput,
439
+ options: __HttpHandlerOptions,
440
+ cb: (err: any, data?: DeleteProvisioningProfileCommandOutput) => void
441
+ ): void;
442
+ getCredentialLocker(
443
+ args: GetCredentialLockerCommandInput,
444
+ options?: __HttpHandlerOptions
445
+ ): Promise<GetCredentialLockerCommandOutput>;
446
+ getCredentialLocker(
447
+ args: GetCredentialLockerCommandInput,
448
+ cb: (err: any, data?: GetCredentialLockerCommandOutput) => void
449
+ ): void;
450
+ getCredentialLocker(
451
+ args: GetCredentialLockerCommandInput,
452
+ options: __HttpHandlerOptions,
453
+ cb: (err: any, data?: GetCredentialLockerCommandOutput) => void
454
+ ): void;
455
+ getCustomEndpoint(): Promise<GetCustomEndpointCommandOutput>;
456
+ getCustomEndpoint(
457
+ args: GetCustomEndpointCommandInput,
458
+ options?: __HttpHandlerOptions
459
+ ): Promise<GetCustomEndpointCommandOutput>;
460
+ getCustomEndpoint(
461
+ args: GetCustomEndpointCommandInput,
462
+ cb: (err: any, data?: GetCustomEndpointCommandOutput) => void
463
+ ): void;
464
+ getCustomEndpoint(
465
+ args: GetCustomEndpointCommandInput,
466
+ options: __HttpHandlerOptions,
467
+ cb: (err: any, data?: GetCustomEndpointCommandOutput) => void
468
+ ): void;
469
+ getDefaultEncryptionConfiguration(): Promise<GetDefaultEncryptionConfigurationCommandOutput>;
470
+ getDefaultEncryptionConfiguration(
471
+ args: GetDefaultEncryptionConfigurationCommandInput,
472
+ options?: __HttpHandlerOptions
473
+ ): Promise<GetDefaultEncryptionConfigurationCommandOutput>;
474
+ getDefaultEncryptionConfiguration(
475
+ args: GetDefaultEncryptionConfigurationCommandInput,
476
+ cb: (
477
+ err: any,
478
+ data?: GetDefaultEncryptionConfigurationCommandOutput
479
+ ) => void
480
+ ): void;
481
+ getDefaultEncryptionConfiguration(
482
+ args: GetDefaultEncryptionConfigurationCommandInput,
483
+ options: __HttpHandlerOptions,
484
+ cb: (
485
+ err: any,
486
+ data?: GetDefaultEncryptionConfigurationCommandOutput
487
+ ) => void
488
+ ): void;
489
+ getDestination(
490
+ args: GetDestinationCommandInput,
491
+ options?: __HttpHandlerOptions
492
+ ): Promise<GetDestinationCommandOutput>;
493
+ getDestination(
494
+ args: GetDestinationCommandInput,
495
+ cb: (err: any, data?: GetDestinationCommandOutput) => void
496
+ ): void;
497
+ getDestination(
498
+ args: GetDestinationCommandInput,
499
+ options: __HttpHandlerOptions,
500
+ cb: (err: any, data?: GetDestinationCommandOutput) => void
501
+ ): void;
502
+ getDeviceDiscovery(
503
+ args: GetDeviceDiscoveryCommandInput,
504
+ options?: __HttpHandlerOptions
505
+ ): Promise<GetDeviceDiscoveryCommandOutput>;
506
+ getDeviceDiscovery(
507
+ args: GetDeviceDiscoveryCommandInput,
508
+ cb: (err: any, data?: GetDeviceDiscoveryCommandOutput) => void
509
+ ): void;
510
+ getDeviceDiscovery(
511
+ args: GetDeviceDiscoveryCommandInput,
512
+ options: __HttpHandlerOptions,
513
+ cb: (err: any, data?: GetDeviceDiscoveryCommandOutput) => void
514
+ ): void;
515
+ getEventLogConfiguration(
516
+ args: GetEventLogConfigurationCommandInput,
517
+ options?: __HttpHandlerOptions
518
+ ): Promise<GetEventLogConfigurationCommandOutput>;
519
+ getEventLogConfiguration(
520
+ args: GetEventLogConfigurationCommandInput,
521
+ cb: (err: any, data?: GetEventLogConfigurationCommandOutput) => void
522
+ ): void;
523
+ getEventLogConfiguration(
524
+ args: GetEventLogConfigurationCommandInput,
525
+ options: __HttpHandlerOptions,
526
+ cb: (err: any, data?: GetEventLogConfigurationCommandOutput) => void
527
+ ): void;
528
+ getHubConfiguration(): Promise<GetHubConfigurationCommandOutput>;
529
+ getHubConfiguration(
530
+ args: GetHubConfigurationCommandInput,
531
+ options?: __HttpHandlerOptions
532
+ ): Promise<GetHubConfigurationCommandOutput>;
533
+ getHubConfiguration(
534
+ args: GetHubConfigurationCommandInput,
535
+ cb: (err: any, data?: GetHubConfigurationCommandOutput) => void
536
+ ): void;
537
+ getHubConfiguration(
538
+ args: GetHubConfigurationCommandInput,
539
+ options: __HttpHandlerOptions,
540
+ cb: (err: any, data?: GetHubConfigurationCommandOutput) => void
541
+ ): void;
542
+ getManagedThing(
543
+ args: GetManagedThingCommandInput,
544
+ options?: __HttpHandlerOptions
545
+ ): Promise<GetManagedThingCommandOutput>;
546
+ getManagedThing(
547
+ args: GetManagedThingCommandInput,
548
+ cb: (err: any, data?: GetManagedThingCommandOutput) => void
549
+ ): void;
550
+ getManagedThing(
551
+ args: GetManagedThingCommandInput,
552
+ options: __HttpHandlerOptions,
553
+ cb: (err: any, data?: GetManagedThingCommandOutput) => void
554
+ ): void;
555
+ getManagedThingCapabilities(
556
+ args: GetManagedThingCapabilitiesCommandInput,
557
+ options?: __HttpHandlerOptions
558
+ ): Promise<GetManagedThingCapabilitiesCommandOutput>;
559
+ getManagedThingCapabilities(
560
+ args: GetManagedThingCapabilitiesCommandInput,
561
+ cb: (err: any, data?: GetManagedThingCapabilitiesCommandOutput) => void
562
+ ): void;
563
+ getManagedThingCapabilities(
564
+ args: GetManagedThingCapabilitiesCommandInput,
565
+ options: __HttpHandlerOptions,
566
+ cb: (err: any, data?: GetManagedThingCapabilitiesCommandOutput) => void
567
+ ): void;
568
+ getManagedThingConnectivityData(
569
+ args: GetManagedThingConnectivityDataCommandInput,
570
+ options?: __HttpHandlerOptions
571
+ ): Promise<GetManagedThingConnectivityDataCommandOutput>;
572
+ getManagedThingConnectivityData(
573
+ args: GetManagedThingConnectivityDataCommandInput,
574
+ cb: (err: any, data?: GetManagedThingConnectivityDataCommandOutput) => void
575
+ ): void;
576
+ getManagedThingConnectivityData(
577
+ args: GetManagedThingConnectivityDataCommandInput,
578
+ options: __HttpHandlerOptions,
579
+ cb: (err: any, data?: GetManagedThingConnectivityDataCommandOutput) => void
580
+ ): void;
581
+ getManagedThingMetaData(
582
+ args: GetManagedThingMetaDataCommandInput,
583
+ options?: __HttpHandlerOptions
584
+ ): Promise<GetManagedThingMetaDataCommandOutput>;
585
+ getManagedThingMetaData(
586
+ args: GetManagedThingMetaDataCommandInput,
587
+ cb: (err: any, data?: GetManagedThingMetaDataCommandOutput) => void
588
+ ): void;
589
+ getManagedThingMetaData(
590
+ args: GetManagedThingMetaDataCommandInput,
591
+ options: __HttpHandlerOptions,
592
+ cb: (err: any, data?: GetManagedThingMetaDataCommandOutput) => void
593
+ ): void;
594
+ getManagedThingState(
595
+ args: GetManagedThingStateCommandInput,
596
+ options?: __HttpHandlerOptions
597
+ ): Promise<GetManagedThingStateCommandOutput>;
598
+ getManagedThingState(
599
+ args: GetManagedThingStateCommandInput,
600
+ cb: (err: any, data?: GetManagedThingStateCommandOutput) => void
601
+ ): void;
602
+ getManagedThingState(
603
+ args: GetManagedThingStateCommandInput,
604
+ options: __HttpHandlerOptions,
605
+ cb: (err: any, data?: GetManagedThingStateCommandOutput) => void
606
+ ): void;
607
+ getNotificationConfiguration(
608
+ args: GetNotificationConfigurationCommandInput,
609
+ options?: __HttpHandlerOptions
610
+ ): Promise<GetNotificationConfigurationCommandOutput>;
611
+ getNotificationConfiguration(
612
+ args: GetNotificationConfigurationCommandInput,
613
+ cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void
614
+ ): void;
615
+ getNotificationConfiguration(
616
+ args: GetNotificationConfigurationCommandInput,
617
+ options: __HttpHandlerOptions,
618
+ cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void
619
+ ): void;
620
+ getOtaTask(
621
+ args: GetOtaTaskCommandInput,
622
+ options?: __HttpHandlerOptions
623
+ ): Promise<GetOtaTaskCommandOutput>;
624
+ getOtaTask(
625
+ args: GetOtaTaskCommandInput,
626
+ cb: (err: any, data?: GetOtaTaskCommandOutput) => void
627
+ ): void;
628
+ getOtaTask(
629
+ args: GetOtaTaskCommandInput,
630
+ options: __HttpHandlerOptions,
631
+ cb: (err: any, data?: GetOtaTaskCommandOutput) => void
632
+ ): void;
633
+ getOtaTaskConfiguration(
634
+ args: GetOtaTaskConfigurationCommandInput,
635
+ options?: __HttpHandlerOptions
636
+ ): Promise<GetOtaTaskConfigurationCommandOutput>;
637
+ getOtaTaskConfiguration(
638
+ args: GetOtaTaskConfigurationCommandInput,
639
+ cb: (err: any, data?: GetOtaTaskConfigurationCommandOutput) => void
640
+ ): void;
641
+ getOtaTaskConfiguration(
642
+ args: GetOtaTaskConfigurationCommandInput,
643
+ options: __HttpHandlerOptions,
644
+ cb: (err: any, data?: GetOtaTaskConfigurationCommandOutput) => void
645
+ ): void;
646
+ getProvisioningProfile(
647
+ args: GetProvisioningProfileCommandInput,
648
+ options?: __HttpHandlerOptions
649
+ ): Promise<GetProvisioningProfileCommandOutput>;
650
+ getProvisioningProfile(
651
+ args: GetProvisioningProfileCommandInput,
652
+ cb: (err: any, data?: GetProvisioningProfileCommandOutput) => void
653
+ ): void;
654
+ getProvisioningProfile(
655
+ args: GetProvisioningProfileCommandInput,
656
+ options: __HttpHandlerOptions,
657
+ cb: (err: any, data?: GetProvisioningProfileCommandOutput) => void
658
+ ): void;
659
+ getRuntimeLogConfiguration(
660
+ args: GetRuntimeLogConfigurationCommandInput,
661
+ options?: __HttpHandlerOptions
662
+ ): Promise<GetRuntimeLogConfigurationCommandOutput>;
663
+ getRuntimeLogConfiguration(
664
+ args: GetRuntimeLogConfigurationCommandInput,
665
+ cb: (err: any, data?: GetRuntimeLogConfigurationCommandOutput) => void
666
+ ): void;
667
+ getRuntimeLogConfiguration(
668
+ args: GetRuntimeLogConfigurationCommandInput,
669
+ options: __HttpHandlerOptions,
670
+ cb: (err: any, data?: GetRuntimeLogConfigurationCommandOutput) => void
671
+ ): void;
672
+ getSchemaVersion(
673
+ args: GetSchemaVersionCommandInput,
674
+ options?: __HttpHandlerOptions
675
+ ): Promise<GetSchemaVersionCommandOutput>;
676
+ getSchemaVersion(
677
+ args: GetSchemaVersionCommandInput,
678
+ cb: (err: any, data?: GetSchemaVersionCommandOutput) => void
679
+ ): void;
680
+ getSchemaVersion(
681
+ args: GetSchemaVersionCommandInput,
682
+ options: __HttpHandlerOptions,
683
+ cb: (err: any, data?: GetSchemaVersionCommandOutput) => void
684
+ ): void;
685
+ listCredentialLockers(): Promise<ListCredentialLockersCommandOutput>;
686
+ listCredentialLockers(
687
+ args: ListCredentialLockersCommandInput,
688
+ options?: __HttpHandlerOptions
689
+ ): Promise<ListCredentialLockersCommandOutput>;
690
+ listCredentialLockers(
691
+ args: ListCredentialLockersCommandInput,
692
+ cb: (err: any, data?: ListCredentialLockersCommandOutput) => void
693
+ ): void;
694
+ listCredentialLockers(
695
+ args: ListCredentialLockersCommandInput,
696
+ options: __HttpHandlerOptions,
697
+ cb: (err: any, data?: ListCredentialLockersCommandOutput) => void
698
+ ): void;
699
+ listDestinations(): Promise<ListDestinationsCommandOutput>;
700
+ listDestinations(
701
+ args: ListDestinationsCommandInput,
702
+ options?: __HttpHandlerOptions
703
+ ): Promise<ListDestinationsCommandOutput>;
704
+ listDestinations(
705
+ args: ListDestinationsCommandInput,
706
+ cb: (err: any, data?: ListDestinationsCommandOutput) => void
707
+ ): void;
708
+ listDestinations(
709
+ args: ListDestinationsCommandInput,
710
+ options: __HttpHandlerOptions,
711
+ cb: (err: any, data?: ListDestinationsCommandOutput) => void
712
+ ): void;
713
+ listEventLogConfigurations(): Promise<ListEventLogConfigurationsCommandOutput>;
714
+ listEventLogConfigurations(
715
+ args: ListEventLogConfigurationsCommandInput,
716
+ options?: __HttpHandlerOptions
717
+ ): Promise<ListEventLogConfigurationsCommandOutput>;
718
+ listEventLogConfigurations(
719
+ args: ListEventLogConfigurationsCommandInput,
720
+ cb: (err: any, data?: ListEventLogConfigurationsCommandOutput) => void
721
+ ): void;
722
+ listEventLogConfigurations(
723
+ args: ListEventLogConfigurationsCommandInput,
724
+ options: __HttpHandlerOptions,
725
+ cb: (err: any, data?: ListEventLogConfigurationsCommandOutput) => void
726
+ ): void;
727
+ listManagedThings(): Promise<ListManagedThingsCommandOutput>;
728
+ listManagedThings(
729
+ args: ListManagedThingsCommandInput,
730
+ options?: __HttpHandlerOptions
731
+ ): Promise<ListManagedThingsCommandOutput>;
732
+ listManagedThings(
733
+ args: ListManagedThingsCommandInput,
734
+ cb: (err: any, data?: ListManagedThingsCommandOutput) => void
735
+ ): void;
736
+ listManagedThings(
737
+ args: ListManagedThingsCommandInput,
738
+ options: __HttpHandlerOptions,
739
+ cb: (err: any, data?: ListManagedThingsCommandOutput) => void
740
+ ): void;
741
+ listManagedThingSchemas(
742
+ args: ListManagedThingSchemasCommandInput,
743
+ options?: __HttpHandlerOptions
744
+ ): Promise<ListManagedThingSchemasCommandOutput>;
745
+ listManagedThingSchemas(
746
+ args: ListManagedThingSchemasCommandInput,
747
+ cb: (err: any, data?: ListManagedThingSchemasCommandOutput) => void
748
+ ): void;
749
+ listManagedThingSchemas(
750
+ args: ListManagedThingSchemasCommandInput,
751
+ options: __HttpHandlerOptions,
752
+ cb: (err: any, data?: ListManagedThingSchemasCommandOutput) => void
753
+ ): void;
754
+ listNotificationConfigurations(): Promise<ListNotificationConfigurationsCommandOutput>;
755
+ listNotificationConfigurations(
756
+ args: ListNotificationConfigurationsCommandInput,
757
+ options?: __HttpHandlerOptions
758
+ ): Promise<ListNotificationConfigurationsCommandOutput>;
759
+ listNotificationConfigurations(
760
+ args: ListNotificationConfigurationsCommandInput,
761
+ cb: (err: any, data?: ListNotificationConfigurationsCommandOutput) => void
762
+ ): void;
763
+ listNotificationConfigurations(
764
+ args: ListNotificationConfigurationsCommandInput,
765
+ options: __HttpHandlerOptions,
766
+ cb: (err: any, data?: ListNotificationConfigurationsCommandOutput) => void
767
+ ): void;
768
+ listOtaTaskConfigurations(): Promise<ListOtaTaskConfigurationsCommandOutput>;
769
+ listOtaTaskConfigurations(
770
+ args: ListOtaTaskConfigurationsCommandInput,
771
+ options?: __HttpHandlerOptions
772
+ ): Promise<ListOtaTaskConfigurationsCommandOutput>;
773
+ listOtaTaskConfigurations(
774
+ args: ListOtaTaskConfigurationsCommandInput,
775
+ cb: (err: any, data?: ListOtaTaskConfigurationsCommandOutput) => void
776
+ ): void;
777
+ listOtaTaskConfigurations(
778
+ args: ListOtaTaskConfigurationsCommandInput,
779
+ options: __HttpHandlerOptions,
780
+ cb: (err: any, data?: ListOtaTaskConfigurationsCommandOutput) => void
781
+ ): void;
782
+ listOtaTaskExecutions(
783
+ args: ListOtaTaskExecutionsCommandInput,
784
+ options?: __HttpHandlerOptions
785
+ ): Promise<ListOtaTaskExecutionsCommandOutput>;
786
+ listOtaTaskExecutions(
787
+ args: ListOtaTaskExecutionsCommandInput,
788
+ cb: (err: any, data?: ListOtaTaskExecutionsCommandOutput) => void
789
+ ): void;
790
+ listOtaTaskExecutions(
791
+ args: ListOtaTaskExecutionsCommandInput,
792
+ options: __HttpHandlerOptions,
793
+ cb: (err: any, data?: ListOtaTaskExecutionsCommandOutput) => void
794
+ ): void;
795
+ listOtaTasks(): Promise<ListOtaTasksCommandOutput>;
796
+ listOtaTasks(
797
+ args: ListOtaTasksCommandInput,
798
+ options?: __HttpHandlerOptions
799
+ ): Promise<ListOtaTasksCommandOutput>;
800
+ listOtaTasks(
801
+ args: ListOtaTasksCommandInput,
802
+ cb: (err: any, data?: ListOtaTasksCommandOutput) => void
803
+ ): void;
804
+ listOtaTasks(
805
+ args: ListOtaTasksCommandInput,
806
+ options: __HttpHandlerOptions,
807
+ cb: (err: any, data?: ListOtaTasksCommandOutput) => void
808
+ ): void;
809
+ listProvisioningProfiles(): Promise<ListProvisioningProfilesCommandOutput>;
810
+ listProvisioningProfiles(
811
+ args: ListProvisioningProfilesCommandInput,
812
+ options?: __HttpHandlerOptions
813
+ ): Promise<ListProvisioningProfilesCommandOutput>;
814
+ listProvisioningProfiles(
815
+ args: ListProvisioningProfilesCommandInput,
816
+ cb: (err: any, data?: ListProvisioningProfilesCommandOutput) => void
817
+ ): void;
818
+ listProvisioningProfiles(
819
+ args: ListProvisioningProfilesCommandInput,
820
+ options: __HttpHandlerOptions,
821
+ cb: (err: any, data?: ListProvisioningProfilesCommandOutput) => void
822
+ ): void;
823
+ listSchemaVersions(
824
+ args: ListSchemaVersionsCommandInput,
825
+ options?: __HttpHandlerOptions
826
+ ): Promise<ListSchemaVersionsCommandOutput>;
827
+ listSchemaVersions(
828
+ args: ListSchemaVersionsCommandInput,
829
+ cb: (err: any, data?: ListSchemaVersionsCommandOutput) => void
830
+ ): void;
831
+ listSchemaVersions(
832
+ args: ListSchemaVersionsCommandInput,
833
+ options: __HttpHandlerOptions,
834
+ cb: (err: any, data?: ListSchemaVersionsCommandOutput) => void
835
+ ): void;
836
+ putDefaultEncryptionConfiguration(
837
+ args: PutDefaultEncryptionConfigurationCommandInput,
838
+ options?: __HttpHandlerOptions
839
+ ): Promise<PutDefaultEncryptionConfigurationCommandOutput>;
840
+ putDefaultEncryptionConfiguration(
841
+ args: PutDefaultEncryptionConfigurationCommandInput,
842
+ cb: (
843
+ err: any,
844
+ data?: PutDefaultEncryptionConfigurationCommandOutput
845
+ ) => void
846
+ ): void;
847
+ putDefaultEncryptionConfiguration(
848
+ args: PutDefaultEncryptionConfigurationCommandInput,
849
+ options: __HttpHandlerOptions,
850
+ cb: (
851
+ err: any,
852
+ data?: PutDefaultEncryptionConfigurationCommandOutput
853
+ ) => void
854
+ ): void;
855
+ putHubConfiguration(
856
+ args: PutHubConfigurationCommandInput,
857
+ options?: __HttpHandlerOptions
858
+ ): Promise<PutHubConfigurationCommandOutput>;
859
+ putHubConfiguration(
860
+ args: PutHubConfigurationCommandInput,
861
+ cb: (err: any, data?: PutHubConfigurationCommandOutput) => void
862
+ ): void;
863
+ putHubConfiguration(
864
+ args: PutHubConfigurationCommandInput,
865
+ options: __HttpHandlerOptions,
866
+ cb: (err: any, data?: PutHubConfigurationCommandOutput) => void
867
+ ): void;
868
+ putRuntimeLogConfiguration(
869
+ args: PutRuntimeLogConfigurationCommandInput,
870
+ options?: __HttpHandlerOptions
871
+ ): Promise<PutRuntimeLogConfigurationCommandOutput>;
872
+ putRuntimeLogConfiguration(
873
+ args: PutRuntimeLogConfigurationCommandInput,
874
+ cb: (err: any, data?: PutRuntimeLogConfigurationCommandOutput) => void
875
+ ): void;
876
+ putRuntimeLogConfiguration(
877
+ args: PutRuntimeLogConfigurationCommandInput,
878
+ options: __HttpHandlerOptions,
879
+ cb: (err: any, data?: PutRuntimeLogConfigurationCommandOutput) => void
880
+ ): void;
881
+ registerCustomEndpoint(): Promise<RegisterCustomEndpointCommandOutput>;
882
+ registerCustomEndpoint(
883
+ args: RegisterCustomEndpointCommandInput,
884
+ options?: __HttpHandlerOptions
885
+ ): Promise<RegisterCustomEndpointCommandOutput>;
886
+ registerCustomEndpoint(
887
+ args: RegisterCustomEndpointCommandInput,
888
+ cb: (err: any, data?: RegisterCustomEndpointCommandOutput) => void
889
+ ): void;
890
+ registerCustomEndpoint(
891
+ args: RegisterCustomEndpointCommandInput,
892
+ options: __HttpHandlerOptions,
893
+ cb: (err: any, data?: RegisterCustomEndpointCommandOutput) => void
894
+ ): void;
895
+ resetRuntimeLogConfiguration(
896
+ args: ResetRuntimeLogConfigurationCommandInput,
897
+ options?: __HttpHandlerOptions
898
+ ): Promise<ResetRuntimeLogConfigurationCommandOutput>;
899
+ resetRuntimeLogConfiguration(
900
+ args: ResetRuntimeLogConfigurationCommandInput,
901
+ cb: (err: any, data?: ResetRuntimeLogConfigurationCommandOutput) => void
902
+ ): void;
903
+ resetRuntimeLogConfiguration(
904
+ args: ResetRuntimeLogConfigurationCommandInput,
905
+ options: __HttpHandlerOptions,
906
+ cb: (err: any, data?: ResetRuntimeLogConfigurationCommandOutput) => void
907
+ ): void;
908
+ sendManagedThingCommand(
909
+ args: SendManagedThingCommandCommandInput,
910
+ options?: __HttpHandlerOptions
911
+ ): Promise<SendManagedThingCommandCommandOutput>;
912
+ sendManagedThingCommand(
913
+ args: SendManagedThingCommandCommandInput,
914
+ cb: (err: any, data?: SendManagedThingCommandCommandOutput) => void
915
+ ): void;
916
+ sendManagedThingCommand(
917
+ args: SendManagedThingCommandCommandInput,
918
+ options: __HttpHandlerOptions,
919
+ cb: (err: any, data?: SendManagedThingCommandCommandOutput) => void
920
+ ): void;
921
+ startDeviceDiscovery(
922
+ args: StartDeviceDiscoveryCommandInput,
923
+ options?: __HttpHandlerOptions
924
+ ): Promise<StartDeviceDiscoveryCommandOutput>;
925
+ startDeviceDiscovery(
926
+ args: StartDeviceDiscoveryCommandInput,
927
+ cb: (err: any, data?: StartDeviceDiscoveryCommandOutput) => void
928
+ ): void;
929
+ startDeviceDiscovery(
930
+ args: StartDeviceDiscoveryCommandInput,
931
+ options: __HttpHandlerOptions,
932
+ cb: (err: any, data?: StartDeviceDiscoveryCommandOutput) => void
933
+ ): void;
934
+ updateDestination(
935
+ args: UpdateDestinationCommandInput,
936
+ options?: __HttpHandlerOptions
937
+ ): Promise<UpdateDestinationCommandOutput>;
938
+ updateDestination(
939
+ args: UpdateDestinationCommandInput,
940
+ cb: (err: any, data?: UpdateDestinationCommandOutput) => void
941
+ ): void;
942
+ updateDestination(
943
+ args: UpdateDestinationCommandInput,
944
+ options: __HttpHandlerOptions,
945
+ cb: (err: any, data?: UpdateDestinationCommandOutput) => void
946
+ ): void;
947
+ updateEventLogConfiguration(
948
+ args: UpdateEventLogConfigurationCommandInput,
949
+ options?: __HttpHandlerOptions
950
+ ): Promise<UpdateEventLogConfigurationCommandOutput>;
951
+ updateEventLogConfiguration(
952
+ args: UpdateEventLogConfigurationCommandInput,
953
+ cb: (err: any, data?: UpdateEventLogConfigurationCommandOutput) => void
954
+ ): void;
955
+ updateEventLogConfiguration(
956
+ args: UpdateEventLogConfigurationCommandInput,
957
+ options: __HttpHandlerOptions,
958
+ cb: (err: any, data?: UpdateEventLogConfigurationCommandOutput) => void
959
+ ): void;
960
+ updateManagedThing(
961
+ args: UpdateManagedThingCommandInput,
962
+ options?: __HttpHandlerOptions
963
+ ): Promise<UpdateManagedThingCommandOutput>;
964
+ updateManagedThing(
965
+ args: UpdateManagedThingCommandInput,
966
+ cb: (err: any, data?: UpdateManagedThingCommandOutput) => void
967
+ ): void;
968
+ updateManagedThing(
969
+ args: UpdateManagedThingCommandInput,
970
+ options: __HttpHandlerOptions,
971
+ cb: (err: any, data?: UpdateManagedThingCommandOutput) => void
972
+ ): void;
973
+ updateNotificationConfiguration(
974
+ args: UpdateNotificationConfigurationCommandInput,
975
+ options?: __HttpHandlerOptions
976
+ ): Promise<UpdateNotificationConfigurationCommandOutput>;
977
+ updateNotificationConfiguration(
978
+ args: UpdateNotificationConfigurationCommandInput,
979
+ cb: (err: any, data?: UpdateNotificationConfigurationCommandOutput) => void
980
+ ): void;
981
+ updateNotificationConfiguration(
982
+ args: UpdateNotificationConfigurationCommandInput,
983
+ options: __HttpHandlerOptions,
984
+ cb: (err: any, data?: UpdateNotificationConfigurationCommandOutput) => void
985
+ ): void;
986
+ updateOtaTask(
987
+ args: UpdateOtaTaskCommandInput,
988
+ options?: __HttpHandlerOptions
989
+ ): Promise<UpdateOtaTaskCommandOutput>;
990
+ updateOtaTask(
991
+ args: UpdateOtaTaskCommandInput,
992
+ cb: (err: any, data?: UpdateOtaTaskCommandOutput) => void
993
+ ): void;
994
+ updateOtaTask(
995
+ args: UpdateOtaTaskCommandInput,
996
+ options: __HttpHandlerOptions,
997
+ cb: (err: any, data?: UpdateOtaTaskCommandOutput) => void
998
+ ): void;
999
+ }
1000
+ export declare class IoTManagedIntegrations
1001
+ extends IoTManagedIntegrationsClient
1002
+ implements IoTManagedIntegrations {}