@aws-sdk/client-iot-managed-integrations 3.835.0 → 3.838.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 (206) hide show
  1. package/README.md +200 -0
  2. package/dist-cjs/IoTManagedIntegrations.js +50 -0
  3. package/dist-cjs/commands/CreateAccountAssociationCommand.js +27 -0
  4. package/dist-cjs/commands/CreateCloudConnectorCommand.js +26 -0
  5. package/dist-cjs/commands/CreateConnectorDestinationCommand.js +26 -0
  6. package/dist-cjs/commands/DeleteAccountAssociationCommand.js +26 -0
  7. package/dist-cjs/commands/DeleteCloudConnectorCommand.js +26 -0
  8. package/dist-cjs/commands/DeleteConnectorDestinationCommand.js +26 -0
  9. package/dist-cjs/commands/DeregisterAccountAssociationCommand.js +26 -0
  10. package/dist-cjs/commands/GetAccountAssociationCommand.js +27 -0
  11. package/dist-cjs/commands/GetCloudConnectorCommand.js +26 -0
  12. package/dist-cjs/commands/GetConnectorDestinationCommand.js +26 -0
  13. package/dist-cjs/commands/GetOtaTaskCommand.js +2 -1
  14. package/dist-cjs/commands/ListAccountAssociationsCommand.js +26 -0
  15. package/dist-cjs/commands/ListCloudConnectorsCommand.js +26 -0
  16. package/dist-cjs/commands/ListConnectorDestinationsCommand.js +26 -0
  17. package/dist-cjs/commands/ListDeviceDiscoveriesCommand.js +26 -0
  18. package/dist-cjs/commands/ListDiscoveredDevicesCommand.js +27 -0
  19. package/dist-cjs/commands/ListManagedThingAccountAssociationsCommand.js +26 -0
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +27 -0
  21. package/dist-cjs/commands/RegisterAccountAssociationCommand.js +26 -0
  22. package/dist-cjs/commands/SendConnectorEventCommand.js +27 -0
  23. package/dist-cjs/commands/StartAccountAssociationRefreshCommand.js +27 -0
  24. package/dist-cjs/commands/TagResourceCommand.js +27 -0
  25. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  26. package/dist-cjs/commands/UpdateAccountAssociationCommand.js +26 -0
  27. package/dist-cjs/commands/UpdateCloudConnectorCommand.js +26 -0
  28. package/dist-cjs/commands/UpdateConnectorDestinationCommand.js +26 -0
  29. package/dist-cjs/commands/index.js +25 -0
  30. package/dist-cjs/models/models_0.js +187 -36
  31. package/dist-cjs/pagination/ListAccountAssociationsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListCloudConnectorsPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListConnectorDestinationsPaginator.js +7 -0
  34. package/dist-cjs/pagination/ListDeviceDiscoveriesPaginator.js +7 -0
  35. package/dist-cjs/pagination/ListDiscoveredDevicesPaginator.js +7 -0
  36. package/dist-cjs/pagination/ListManagedThingAccountAssociationsPaginator.js +7 -0
  37. package/dist-cjs/pagination/index.js +6 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +974 -22
  39. package/dist-es/IoTManagedIntegrations.js +50 -0
  40. package/dist-es/commands/CreateAccountAssociationCommand.js +23 -0
  41. package/dist-es/commands/CreateCloudConnectorCommand.js +22 -0
  42. package/dist-es/commands/CreateConnectorDestinationCommand.js +22 -0
  43. package/dist-es/commands/DeleteAccountAssociationCommand.js +22 -0
  44. package/dist-es/commands/DeleteCloudConnectorCommand.js +22 -0
  45. package/dist-es/commands/DeleteConnectorDestinationCommand.js +22 -0
  46. package/dist-es/commands/DeregisterAccountAssociationCommand.js +22 -0
  47. package/dist-es/commands/GetAccountAssociationCommand.js +23 -0
  48. package/dist-es/commands/GetCloudConnectorCommand.js +22 -0
  49. package/dist-es/commands/GetConnectorDestinationCommand.js +22 -0
  50. package/dist-es/commands/GetOtaTaskCommand.js +2 -1
  51. package/dist-es/commands/ListAccountAssociationsCommand.js +22 -0
  52. package/dist-es/commands/ListCloudConnectorsCommand.js +22 -0
  53. package/dist-es/commands/ListConnectorDestinationsCommand.js +22 -0
  54. package/dist-es/commands/ListDeviceDiscoveriesCommand.js +22 -0
  55. package/dist-es/commands/ListDiscoveredDevicesCommand.js +23 -0
  56. package/dist-es/commands/ListManagedThingAccountAssociationsCommand.js +22 -0
  57. package/dist-es/commands/ListTagsForResourceCommand.js +23 -0
  58. package/dist-es/commands/RegisterAccountAssociationCommand.js +22 -0
  59. package/dist-es/commands/SendConnectorEventCommand.js +23 -0
  60. package/dist-es/commands/StartAccountAssociationRefreshCommand.js +23 -0
  61. package/dist-es/commands/TagResourceCommand.js +23 -0
  62. package/dist-es/commands/UntagResourceCommand.js +22 -0
  63. package/dist-es/commands/UpdateAccountAssociationCommand.js +22 -0
  64. package/dist-es/commands/UpdateCloudConnectorCommand.js +22 -0
  65. package/dist-es/commands/UpdateConnectorDestinationCommand.js +22 -0
  66. package/dist-es/commands/index.js +25 -0
  67. package/dist-es/models/models_0.js +168 -32
  68. package/dist-es/pagination/ListAccountAssociationsPaginator.js +4 -0
  69. package/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
  70. package/dist-es/pagination/ListConnectorDestinationsPaginator.js +4 -0
  71. package/dist-es/pagination/ListDeviceDiscoveriesPaginator.js +4 -0
  72. package/dist-es/pagination/ListDiscoveredDevicesPaginator.js +4 -0
  73. package/dist-es/pagination/ListManagedThingAccountAssociationsPaginator.js +4 -0
  74. package/dist-es/pagination/index.js +6 -0
  75. package/dist-es/protocols/Aws_restJson1.js +918 -17
  76. package/dist-types/IoTManagedIntegrations.d.ts +180 -0
  77. package/dist-types/IoTManagedIntegrationsClient.d.ts +27 -2
  78. package/dist-types/commands/CreateAccountAssociationCommand.d.ts +102 -0
  79. package/dist-types/commands/CreateCloudConnectorCommand.d.ts +159 -0
  80. package/dist-types/commands/CreateConnectorDestinationCommand.d.ts +108 -0
  81. package/dist-types/commands/CreateCredentialLockerCommand.d.ts +2 -4
  82. package/dist-types/commands/CreateDestinationCommand.d.ts +2 -4
  83. package/dist-types/commands/CreateEventLogConfigurationCommand.d.ts +2 -4
  84. package/dist-types/commands/CreateManagedThingCommand.d.ts +12 -5
  85. package/dist-types/commands/CreateNotificationConfigurationCommand.d.ts +4 -6
  86. package/dist-types/commands/CreateOtaTaskCommand.d.ts +7 -2
  87. package/dist-types/commands/CreateOtaTaskConfigurationCommand.d.ts +1 -2
  88. package/dist-types/commands/CreateProvisioningProfileCommand.d.ts +5 -5
  89. package/dist-types/commands/DeleteAccountAssociationCommand.d.ts +88 -0
  90. package/dist-types/commands/DeleteCloudConnectorCommand.d.ts +85 -0
  91. package/dist-types/commands/DeleteConnectorDestinationCommand.d.ts +85 -0
  92. package/dist-types/commands/DeleteCredentialLockerCommand.d.ts +2 -7
  93. package/dist-types/commands/DeleteDestinationCommand.d.ts +1 -2
  94. package/dist-types/commands/DeleteEventLogConfigurationCommand.d.ts +1 -2
  95. package/dist-types/commands/DeleteManagedThingCommand.d.ts +2 -5
  96. package/dist-types/commands/DeleteNotificationConfigurationCommand.d.ts +2 -3
  97. package/dist-types/commands/DeleteOtaTaskCommand.d.ts +4 -2
  98. package/dist-types/commands/DeleteOtaTaskConfigurationCommand.d.ts +1 -2
  99. package/dist-types/commands/DeleteProvisioningProfileCommand.d.ts +1 -2
  100. package/dist-types/commands/DeregisterAccountAssociationCommand.d.ts +86 -0
  101. package/dist-types/commands/GetAccountAssociationCommand.d.ts +100 -0
  102. package/dist-types/commands/GetCloudConnectorCommand.d.ts +151 -0
  103. package/dist-types/commands/GetConnectorDestinationCommand.d.ts +109 -0
  104. package/dist-types/commands/GetCredentialLockerCommand.d.ts +1 -2
  105. package/dist-types/commands/GetCustomEndpointCommand.d.ts +1 -2
  106. package/dist-types/commands/GetDefaultEncryptionConfigurationCommand.d.ts +1 -3
  107. package/dist-types/commands/GetDestinationCommand.d.ts +1 -2
  108. package/dist-types/commands/GetDeviceDiscoveryCommand.d.ts +3 -3
  109. package/dist-types/commands/GetEventLogConfigurationCommand.d.ts +1 -2
  110. package/dist-types/commands/GetHubConfigurationCommand.d.ts +1 -2
  111. package/dist-types/commands/GetManagedThingCapabilitiesCommand.d.ts +1 -2
  112. package/dist-types/commands/GetManagedThingCommand.d.ts +2 -2
  113. package/dist-types/commands/GetManagedThingConnectivityDataCommand.d.ts +1 -2
  114. package/dist-types/commands/GetManagedThingMetaDataCommand.d.ts +2 -3
  115. package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +3 -4
  116. package/dist-types/commands/GetOtaTaskCommand.d.ts +4 -2
  117. package/dist-types/commands/GetOtaTaskConfigurationCommand.d.ts +1 -2
  118. package/dist-types/commands/GetProvisioningProfileCommand.d.ts +1 -2
  119. package/dist-types/commands/GetRuntimeLogConfigurationCommand.d.ts +2 -4
  120. package/dist-types/commands/GetSchemaVersionCommand.d.ts +7 -14
  121. package/dist-types/commands/ListAccountAssociationsCommand.d.ts +100 -0
  122. package/dist-types/commands/ListCloudConnectorsCommand.d.ts +150 -0
  123. package/dist-types/commands/ListConnectorDestinationsCommand.d.ts +94 -0
  124. package/dist-types/commands/ListCredentialLockersCommand.d.ts +1 -2
  125. package/dist-types/commands/ListDestinationsCommand.d.ts +1 -2
  126. package/dist-types/commands/ListDeviceDiscoveriesCommand.d.ts +100 -0
  127. package/dist-types/commands/ListDiscoveredDevicesCommand.d.ts +110 -0
  128. package/dist-types/commands/ListEventLogConfigurationsCommand.d.ts +1 -2
  129. package/dist-types/commands/ListManagedThingAccountAssociationsCommand.d.ts +93 -0
  130. package/dist-types/commands/ListManagedThingSchemasCommand.d.ts +1 -2
  131. package/dist-types/commands/ListManagedThingsCommand.d.ts +5 -3
  132. package/dist-types/commands/ListNotificationConfigurationsCommand.d.ts +2 -3
  133. package/dist-types/commands/ListOtaTaskConfigurationsCommand.d.ts +1 -2
  134. package/dist-types/commands/ListOtaTaskExecutionsCommand.d.ts +4 -2
  135. package/dist-types/commands/ListOtaTasksCommand.d.ts +4 -2
  136. package/dist-types/commands/ListProvisioningProfilesCommand.d.ts +1 -2
  137. package/dist-types/commands/ListSchemaVersionsCommand.d.ts +7 -8
  138. package/dist-types/commands/ListTagsForResourceCommand.d.ts +86 -0
  139. package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +1 -3
  140. package/dist-types/commands/PutHubConfigurationCommand.d.ts +1 -2
  141. package/dist-types/commands/PutRuntimeLogConfigurationCommand.d.ts +2 -4
  142. package/dist-types/commands/RegisterAccountAssociationCommand.d.ts +94 -0
  143. package/dist-types/commands/RegisterCustomEndpointCommand.d.ts +2 -4
  144. package/dist-types/commands/ResetRuntimeLogConfigurationCommand.d.ts +2 -4
  145. package/dist-types/commands/SendConnectorEventCommand.d.ts +309 -0
  146. package/dist-types/commands/SendManagedThingCommandCommand.d.ts +5 -2
  147. package/dist-types/commands/StartAccountAssociationRefreshCommand.d.ts +90 -0
  148. package/dist-types/commands/StartDeviceDiscoveryCommand.d.ts +7 -6
  149. package/dist-types/commands/TagResourceCommand.d.ts +88 -0
  150. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  151. package/dist-types/commands/UpdateAccountAssociationCommand.d.ts +93 -0
  152. package/dist-types/commands/UpdateCloudConnectorCommand.d.ts +115 -0
  153. package/dist-types/commands/UpdateConnectorDestinationCommand.d.ts +101 -0
  154. package/dist-types/commands/UpdateDestinationCommand.d.ts +1 -2
  155. package/dist-types/commands/UpdateEventLogConfigurationCommand.d.ts +1 -2
  156. package/dist-types/commands/UpdateManagedThingCommand.d.ts +10 -2
  157. package/dist-types/commands/UpdateNotificationConfigurationCommand.d.ts +2 -3
  158. package/dist-types/commands/UpdateOtaTaskCommand.d.ts +1 -2
  159. package/dist-types/commands/index.d.ts +25 -0
  160. package/dist-types/models/models_0.d.ts +1953 -394
  161. package/dist-types/pagination/ListAccountAssociationsPaginator.d.ts +7 -0
  162. package/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
  163. package/dist-types/pagination/ListConnectorDestinationsPaginator.d.ts +7 -0
  164. package/dist-types/pagination/ListDeviceDiscoveriesPaginator.d.ts +7 -0
  165. package/dist-types/pagination/ListDiscoveredDevicesPaginator.d.ts +7 -0
  166. package/dist-types/pagination/ListManagedThingAccountAssociationsPaginator.d.ts +7 -0
  167. package/dist-types/pagination/index.d.ts +6 -0
  168. package/dist-types/protocols/Aws_restJson1.d.ts +225 -0
  169. package/dist-types/ts3.4/IoTManagedIntegrations.d.ts +436 -0
  170. package/dist-types/ts3.4/IoTManagedIntegrationsClient.d.ts +150 -0
  171. package/dist-types/ts3.4/commands/CreateAccountAssociationCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/CreateConnectorDestinationCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/DeleteAccountAssociationCommand.d.ts +47 -0
  175. package/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +46 -0
  176. package/dist-types/ts3.4/commands/DeleteConnectorDestinationCommand.d.ts +47 -0
  177. package/dist-types/ts3.4/commands/DeregisterAccountAssociationCommand.d.ts +47 -0
  178. package/dist-types/ts3.4/commands/GetAccountAssociationCommand.d.ts +51 -0
  179. package/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/GetConnectorDestinationCommand.d.ts +51 -0
  181. package/dist-types/ts3.4/commands/ListAccountAssociationsCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +51 -0
  183. package/dist-types/ts3.4/commands/ListConnectorDestinationsCommand.d.ts +51 -0
  184. package/dist-types/ts3.4/commands/ListDeviceDiscoveriesCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/ListDiscoveredDevicesCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/ListManagedThingAccountAssociationsCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  188. package/dist-types/ts3.4/commands/RegisterAccountAssociationCommand.d.ts +51 -0
  189. package/dist-types/ts3.4/commands/SendConnectorEventCommand.d.ts +51 -0
  190. package/dist-types/ts3.4/commands/StartAccountAssociationRefreshCommand.d.ts +51 -0
  191. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  192. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  193. package/dist-types/ts3.4/commands/UpdateAccountAssociationCommand.d.ts +47 -0
  194. package/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +46 -0
  195. package/dist-types/ts3.4/commands/UpdateConnectorDestinationCommand.d.ts +47 -0
  196. package/dist-types/ts3.4/commands/index.d.ts +25 -0
  197. package/dist-types/ts3.4/models/models_0.d.ts +510 -54
  198. package/dist-types/ts3.4/pagination/ListAccountAssociationsPaginator.d.ts +11 -0
  199. package/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
  200. package/dist-types/ts3.4/pagination/ListConnectorDestinationsPaginator.d.ts +11 -0
  201. package/dist-types/ts3.4/pagination/ListDeviceDiscoveriesPaginator.d.ts +11 -0
  202. package/dist-types/ts3.4/pagination/ListDiscoveredDevicesPaginator.d.ts +11 -0
  203. package/dist-types/ts3.4/pagination/ListManagedThingAccountAssociationsPaginator.d.ts +11 -0
  204. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  205. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +300 -0
  206. package/package.json +1 -1
package/README.md CHANGED
@@ -203,6 +203,30 @@ see LICENSE for more information.
203
203
 
204
204
  ## Client Commands (Operations List)
205
205
 
206
+ <details>
207
+ <summary>
208
+ CreateAccountAssociation
209
+ </summary>
210
+
211
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/CreateAccountAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateAccountAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateAccountAssociationCommandOutput/)
212
+
213
+ </details>
214
+ <details>
215
+ <summary>
216
+ CreateCloudConnector
217
+ </summary>
218
+
219
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/CreateCloudConnectorCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateCloudConnectorCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateCloudConnectorCommandOutput/)
220
+
221
+ </details>
222
+ <details>
223
+ <summary>
224
+ CreateConnectorDestination
225
+ </summary>
226
+
227
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/CreateConnectorDestinationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateConnectorDestinationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateConnectorDestinationCommandOutput/)
228
+
229
+ </details>
206
230
  <details>
207
231
  <summary>
208
232
  CreateCredentialLocker
@@ -266,6 +290,30 @@ CreateProvisioningProfile
266
290
 
267
291
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/CreateProvisioningProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateProvisioningProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/CreateProvisioningProfileCommandOutput/)
268
292
 
293
+ </details>
294
+ <details>
295
+ <summary>
296
+ DeleteAccountAssociation
297
+ </summary>
298
+
299
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/DeleteAccountAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteAccountAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteAccountAssociationCommandOutput/)
300
+
301
+ </details>
302
+ <details>
303
+ <summary>
304
+ DeleteCloudConnector
305
+ </summary>
306
+
307
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/DeleteCloudConnectorCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteCloudConnectorCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteCloudConnectorCommandOutput/)
308
+
309
+ </details>
310
+ <details>
311
+ <summary>
312
+ DeleteConnectorDestination
313
+ </summary>
314
+
315
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/DeleteConnectorDestinationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteConnectorDestinationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteConnectorDestinationCommandOutput/)
316
+
269
317
  </details>
270
318
  <details>
271
319
  <summary>
@@ -330,6 +378,38 @@ DeleteProvisioningProfile
330
378
 
331
379
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/DeleteProvisioningProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteProvisioningProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeleteProvisioningProfileCommandOutput/)
332
380
 
381
+ </details>
382
+ <details>
383
+ <summary>
384
+ DeregisterAccountAssociation
385
+ </summary>
386
+
387
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/DeregisterAccountAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeregisterAccountAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/DeregisterAccountAssociationCommandOutput/)
388
+
389
+ </details>
390
+ <details>
391
+ <summary>
392
+ GetAccountAssociation
393
+ </summary>
394
+
395
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/GetAccountAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetAccountAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetAccountAssociationCommandOutput/)
396
+
397
+ </details>
398
+ <details>
399
+ <summary>
400
+ GetCloudConnector
401
+ </summary>
402
+
403
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/GetCloudConnectorCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetCloudConnectorCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetCloudConnectorCommandOutput/)
404
+
405
+ </details>
406
+ <details>
407
+ <summary>
408
+ GetConnectorDestination
409
+ </summary>
410
+
411
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/GetConnectorDestinationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetConnectorDestinationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetConnectorDestinationCommandOutput/)
412
+
333
413
  </details>
334
414
  <details>
335
415
  <summary>
@@ -474,6 +554,30 @@ GetSchemaVersion
474
554
 
475
555
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/GetSchemaVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetSchemaVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/GetSchemaVersionCommandOutput/)
476
556
 
557
+ </details>
558
+ <details>
559
+ <summary>
560
+ ListAccountAssociations
561
+ </summary>
562
+
563
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListAccountAssociationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListAccountAssociationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListAccountAssociationsCommandOutput/)
564
+
565
+ </details>
566
+ <details>
567
+ <summary>
568
+ ListCloudConnectors
569
+ </summary>
570
+
571
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListCloudConnectorsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListCloudConnectorsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListCloudConnectorsCommandOutput/)
572
+
573
+ </details>
574
+ <details>
575
+ <summary>
576
+ ListConnectorDestinations
577
+ </summary>
578
+
579
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListConnectorDestinationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListConnectorDestinationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListConnectorDestinationsCommandOutput/)
580
+
477
581
  </details>
478
582
  <details>
479
583
  <summary>
@@ -490,6 +594,22 @@ ListDestinations
490
594
 
491
595
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListDestinationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListDestinationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListDestinationsCommandOutput/)
492
596
 
597
+ </details>
598
+ <details>
599
+ <summary>
600
+ ListDeviceDiscoveries
601
+ </summary>
602
+
603
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListDeviceDiscoveriesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListDeviceDiscoveriesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListDeviceDiscoveriesCommandOutput/)
604
+
605
+ </details>
606
+ <details>
607
+ <summary>
608
+ ListDiscoveredDevices
609
+ </summary>
610
+
611
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListDiscoveredDevicesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListDiscoveredDevicesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListDiscoveredDevicesCommandOutput/)
612
+
493
613
  </details>
494
614
  <details>
495
615
  <summary>
@@ -498,6 +618,14 @@ ListEventLogConfigurations
498
618
 
499
619
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListEventLogConfigurationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListEventLogConfigurationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListEventLogConfigurationsCommandOutput/)
500
620
 
621
+ </details>
622
+ <details>
623
+ <summary>
624
+ ListManagedThingAccountAssociations
625
+ </summary>
626
+
627
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListManagedThingAccountAssociationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListManagedThingAccountAssociationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListManagedThingAccountAssociationsCommandOutput/)
628
+
501
629
  </details>
502
630
  <details>
503
631
  <summary>
@@ -562,6 +690,14 @@ ListSchemaVersions
562
690
 
563
691
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListSchemaVersionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListSchemaVersionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListSchemaVersionsCommandOutput/)
564
692
 
693
+ </details>
694
+ <details>
695
+ <summary>
696
+ ListTagsForResource
697
+ </summary>
698
+
699
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ListTagsForResourceCommandOutput/)
700
+
565
701
  </details>
566
702
  <details>
567
703
  <summary>
@@ -586,6 +722,14 @@ PutRuntimeLogConfiguration
586
722
 
587
723
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/PutRuntimeLogConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/PutRuntimeLogConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/PutRuntimeLogConfigurationCommandOutput/)
588
724
 
725
+ </details>
726
+ <details>
727
+ <summary>
728
+ RegisterAccountAssociation
729
+ </summary>
730
+
731
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/RegisterAccountAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/RegisterAccountAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/RegisterAccountAssociationCommandOutput/)
732
+
589
733
  </details>
590
734
  <details>
591
735
  <summary>
@@ -602,6 +746,14 @@ ResetRuntimeLogConfiguration
602
746
 
603
747
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/ResetRuntimeLogConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ResetRuntimeLogConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/ResetRuntimeLogConfigurationCommandOutput/)
604
748
 
749
+ </details>
750
+ <details>
751
+ <summary>
752
+ SendConnectorEvent
753
+ </summary>
754
+
755
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/SendConnectorEventCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/SendConnectorEventCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/SendConnectorEventCommandOutput/)
756
+
605
757
  </details>
606
758
  <details>
607
759
  <summary>
@@ -610,6 +762,14 @@ SendManagedThingCommand
610
762
 
611
763
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/SendManagedThingCommandCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/SendManagedThingCommandCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/SendManagedThingCommandCommandOutput/)
612
764
 
765
+ </details>
766
+ <details>
767
+ <summary>
768
+ StartAccountAssociationRefresh
769
+ </summary>
770
+
771
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/StartAccountAssociationRefreshCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/StartAccountAssociationRefreshCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/StartAccountAssociationRefreshCommandOutput/)
772
+
613
773
  </details>
614
774
  <details>
615
775
  <summary>
@@ -618,6 +778,46 @@ StartDeviceDiscovery
618
778
 
619
779
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/StartDeviceDiscoveryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/StartDeviceDiscoveryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/StartDeviceDiscoveryCommandOutput/)
620
780
 
781
+ </details>
782
+ <details>
783
+ <summary>
784
+ TagResource
785
+ </summary>
786
+
787
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/TagResourceCommandOutput/)
788
+
789
+ </details>
790
+ <details>
791
+ <summary>
792
+ UntagResource
793
+ </summary>
794
+
795
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UntagResourceCommandOutput/)
796
+
797
+ </details>
798
+ <details>
799
+ <summary>
800
+ UpdateAccountAssociation
801
+ </summary>
802
+
803
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/UpdateAccountAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UpdateAccountAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UpdateAccountAssociationCommandOutput/)
804
+
805
+ </details>
806
+ <details>
807
+ <summary>
808
+ UpdateCloudConnector
809
+ </summary>
810
+
811
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/UpdateCloudConnectorCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UpdateCloudConnectorCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UpdateCloudConnectorCommandOutput/)
812
+
813
+ </details>
814
+ <details>
815
+ <summary>
816
+ UpdateConnectorDestination
817
+ </summary>
818
+
819
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/iot-managed-integrations/command/UpdateConnectorDestinationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UpdateConnectorDestinationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-iot-managed-integrations/Interface/UpdateConnectorDestinationCommandOutput/)
820
+
621
821
  </details>
622
822
  <details>
623
823
  <summary>
@@ -2,6 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IoTManagedIntegrations = void 0;
4
4
  const smithy_client_1 = require("@smithy/smithy-client");
5
+ const CreateAccountAssociationCommand_1 = require("./commands/CreateAccountAssociationCommand");
6
+ const CreateCloudConnectorCommand_1 = require("./commands/CreateCloudConnectorCommand");
7
+ const CreateConnectorDestinationCommand_1 = require("./commands/CreateConnectorDestinationCommand");
5
8
  const CreateCredentialLockerCommand_1 = require("./commands/CreateCredentialLockerCommand");
6
9
  const CreateDestinationCommand_1 = require("./commands/CreateDestinationCommand");
7
10
  const CreateEventLogConfigurationCommand_1 = require("./commands/CreateEventLogConfigurationCommand");
@@ -10,6 +13,9 @@ const CreateNotificationConfigurationCommand_1 = require("./commands/CreateNotif
10
13
  const CreateOtaTaskCommand_1 = require("./commands/CreateOtaTaskCommand");
11
14
  const CreateOtaTaskConfigurationCommand_1 = require("./commands/CreateOtaTaskConfigurationCommand");
12
15
  const CreateProvisioningProfileCommand_1 = require("./commands/CreateProvisioningProfileCommand");
16
+ const DeleteAccountAssociationCommand_1 = require("./commands/DeleteAccountAssociationCommand");
17
+ const DeleteCloudConnectorCommand_1 = require("./commands/DeleteCloudConnectorCommand");
18
+ const DeleteConnectorDestinationCommand_1 = require("./commands/DeleteConnectorDestinationCommand");
13
19
  const DeleteCredentialLockerCommand_1 = require("./commands/DeleteCredentialLockerCommand");
14
20
  const DeleteDestinationCommand_1 = require("./commands/DeleteDestinationCommand");
15
21
  const DeleteEventLogConfigurationCommand_1 = require("./commands/DeleteEventLogConfigurationCommand");
@@ -18,6 +24,10 @@ const DeleteNotificationConfigurationCommand_1 = require("./commands/DeleteNotif
18
24
  const DeleteOtaTaskCommand_1 = require("./commands/DeleteOtaTaskCommand");
19
25
  const DeleteOtaTaskConfigurationCommand_1 = require("./commands/DeleteOtaTaskConfigurationCommand");
20
26
  const DeleteProvisioningProfileCommand_1 = require("./commands/DeleteProvisioningProfileCommand");
27
+ const DeregisterAccountAssociationCommand_1 = require("./commands/DeregisterAccountAssociationCommand");
28
+ const GetAccountAssociationCommand_1 = require("./commands/GetAccountAssociationCommand");
29
+ const GetCloudConnectorCommand_1 = require("./commands/GetCloudConnectorCommand");
30
+ const GetConnectorDestinationCommand_1 = require("./commands/GetConnectorDestinationCommand");
21
31
  const GetCredentialLockerCommand_1 = require("./commands/GetCredentialLockerCommand");
22
32
  const GetCustomEndpointCommand_1 = require("./commands/GetCustomEndpointCommand");
23
33
  const GetDefaultEncryptionConfigurationCommand_1 = require("./commands/GetDefaultEncryptionConfigurationCommand");
@@ -36,9 +46,15 @@ const GetOtaTaskConfigurationCommand_1 = require("./commands/GetOtaTaskConfigura
36
46
  const GetProvisioningProfileCommand_1 = require("./commands/GetProvisioningProfileCommand");
37
47
  const GetRuntimeLogConfigurationCommand_1 = require("./commands/GetRuntimeLogConfigurationCommand");
38
48
  const GetSchemaVersionCommand_1 = require("./commands/GetSchemaVersionCommand");
49
+ const ListAccountAssociationsCommand_1 = require("./commands/ListAccountAssociationsCommand");
50
+ const ListCloudConnectorsCommand_1 = require("./commands/ListCloudConnectorsCommand");
51
+ const ListConnectorDestinationsCommand_1 = require("./commands/ListConnectorDestinationsCommand");
39
52
  const ListCredentialLockersCommand_1 = require("./commands/ListCredentialLockersCommand");
40
53
  const ListDestinationsCommand_1 = require("./commands/ListDestinationsCommand");
54
+ const ListDeviceDiscoveriesCommand_1 = require("./commands/ListDeviceDiscoveriesCommand");
55
+ const ListDiscoveredDevicesCommand_1 = require("./commands/ListDiscoveredDevicesCommand");
41
56
  const ListEventLogConfigurationsCommand_1 = require("./commands/ListEventLogConfigurationsCommand");
57
+ const ListManagedThingAccountAssociationsCommand_1 = require("./commands/ListManagedThingAccountAssociationsCommand");
42
58
  const ListManagedThingSchemasCommand_1 = require("./commands/ListManagedThingSchemasCommand");
43
59
  const ListManagedThingsCommand_1 = require("./commands/ListManagedThingsCommand");
44
60
  const ListNotificationConfigurationsCommand_1 = require("./commands/ListNotificationConfigurationsCommand");
@@ -47,13 +63,22 @@ const ListOtaTaskExecutionsCommand_1 = require("./commands/ListOtaTaskExecutions
47
63
  const ListOtaTasksCommand_1 = require("./commands/ListOtaTasksCommand");
48
64
  const ListProvisioningProfilesCommand_1 = require("./commands/ListProvisioningProfilesCommand");
49
65
  const ListSchemaVersionsCommand_1 = require("./commands/ListSchemaVersionsCommand");
66
+ const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
50
67
  const PutDefaultEncryptionConfigurationCommand_1 = require("./commands/PutDefaultEncryptionConfigurationCommand");
51
68
  const PutHubConfigurationCommand_1 = require("./commands/PutHubConfigurationCommand");
52
69
  const PutRuntimeLogConfigurationCommand_1 = require("./commands/PutRuntimeLogConfigurationCommand");
70
+ const RegisterAccountAssociationCommand_1 = require("./commands/RegisterAccountAssociationCommand");
53
71
  const RegisterCustomEndpointCommand_1 = require("./commands/RegisterCustomEndpointCommand");
54
72
  const ResetRuntimeLogConfigurationCommand_1 = require("./commands/ResetRuntimeLogConfigurationCommand");
73
+ const SendConnectorEventCommand_1 = require("./commands/SendConnectorEventCommand");
55
74
  const SendManagedThingCommandCommand_1 = require("./commands/SendManagedThingCommandCommand");
75
+ const StartAccountAssociationRefreshCommand_1 = require("./commands/StartAccountAssociationRefreshCommand");
56
76
  const StartDeviceDiscoveryCommand_1 = require("./commands/StartDeviceDiscoveryCommand");
77
+ const TagResourceCommand_1 = require("./commands/TagResourceCommand");
78
+ const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
79
+ const UpdateAccountAssociationCommand_1 = require("./commands/UpdateAccountAssociationCommand");
80
+ const UpdateCloudConnectorCommand_1 = require("./commands/UpdateCloudConnectorCommand");
81
+ const UpdateConnectorDestinationCommand_1 = require("./commands/UpdateConnectorDestinationCommand");
57
82
  const UpdateDestinationCommand_1 = require("./commands/UpdateDestinationCommand");
58
83
  const UpdateEventLogConfigurationCommand_1 = require("./commands/UpdateEventLogConfigurationCommand");
59
84
  const UpdateManagedThingCommand_1 = require("./commands/UpdateManagedThingCommand");
@@ -61,6 +86,9 @@ const UpdateNotificationConfigurationCommand_1 = require("./commands/UpdateNotif
61
86
  const UpdateOtaTaskCommand_1 = require("./commands/UpdateOtaTaskCommand");
62
87
  const IoTManagedIntegrationsClient_1 = require("./IoTManagedIntegrationsClient");
63
88
  const commands = {
89
+ CreateAccountAssociationCommand: CreateAccountAssociationCommand_1.CreateAccountAssociationCommand,
90
+ CreateCloudConnectorCommand: CreateCloudConnectorCommand_1.CreateCloudConnectorCommand,
91
+ CreateConnectorDestinationCommand: CreateConnectorDestinationCommand_1.CreateConnectorDestinationCommand,
64
92
  CreateCredentialLockerCommand: CreateCredentialLockerCommand_1.CreateCredentialLockerCommand,
65
93
  CreateDestinationCommand: CreateDestinationCommand_1.CreateDestinationCommand,
66
94
  CreateEventLogConfigurationCommand: CreateEventLogConfigurationCommand_1.CreateEventLogConfigurationCommand,
@@ -69,6 +97,9 @@ const commands = {
69
97
  CreateOtaTaskCommand: CreateOtaTaskCommand_1.CreateOtaTaskCommand,
70
98
  CreateOtaTaskConfigurationCommand: CreateOtaTaskConfigurationCommand_1.CreateOtaTaskConfigurationCommand,
71
99
  CreateProvisioningProfileCommand: CreateProvisioningProfileCommand_1.CreateProvisioningProfileCommand,
100
+ DeleteAccountAssociationCommand: DeleteAccountAssociationCommand_1.DeleteAccountAssociationCommand,
101
+ DeleteCloudConnectorCommand: DeleteCloudConnectorCommand_1.DeleteCloudConnectorCommand,
102
+ DeleteConnectorDestinationCommand: DeleteConnectorDestinationCommand_1.DeleteConnectorDestinationCommand,
72
103
  DeleteCredentialLockerCommand: DeleteCredentialLockerCommand_1.DeleteCredentialLockerCommand,
73
104
  DeleteDestinationCommand: DeleteDestinationCommand_1.DeleteDestinationCommand,
74
105
  DeleteEventLogConfigurationCommand: DeleteEventLogConfigurationCommand_1.DeleteEventLogConfigurationCommand,
@@ -77,6 +108,10 @@ const commands = {
77
108
  DeleteOtaTaskCommand: DeleteOtaTaskCommand_1.DeleteOtaTaskCommand,
78
109
  DeleteOtaTaskConfigurationCommand: DeleteOtaTaskConfigurationCommand_1.DeleteOtaTaskConfigurationCommand,
79
110
  DeleteProvisioningProfileCommand: DeleteProvisioningProfileCommand_1.DeleteProvisioningProfileCommand,
111
+ DeregisterAccountAssociationCommand: DeregisterAccountAssociationCommand_1.DeregisterAccountAssociationCommand,
112
+ GetAccountAssociationCommand: GetAccountAssociationCommand_1.GetAccountAssociationCommand,
113
+ GetCloudConnectorCommand: GetCloudConnectorCommand_1.GetCloudConnectorCommand,
114
+ GetConnectorDestinationCommand: GetConnectorDestinationCommand_1.GetConnectorDestinationCommand,
80
115
  GetCredentialLockerCommand: GetCredentialLockerCommand_1.GetCredentialLockerCommand,
81
116
  GetCustomEndpointCommand: GetCustomEndpointCommand_1.GetCustomEndpointCommand,
82
117
  GetDefaultEncryptionConfigurationCommand: GetDefaultEncryptionConfigurationCommand_1.GetDefaultEncryptionConfigurationCommand,
@@ -95,9 +130,15 @@ const commands = {
95
130
  GetProvisioningProfileCommand: GetProvisioningProfileCommand_1.GetProvisioningProfileCommand,
96
131
  GetRuntimeLogConfigurationCommand: GetRuntimeLogConfigurationCommand_1.GetRuntimeLogConfigurationCommand,
97
132
  GetSchemaVersionCommand: GetSchemaVersionCommand_1.GetSchemaVersionCommand,
133
+ ListAccountAssociationsCommand: ListAccountAssociationsCommand_1.ListAccountAssociationsCommand,
134
+ ListCloudConnectorsCommand: ListCloudConnectorsCommand_1.ListCloudConnectorsCommand,
135
+ ListConnectorDestinationsCommand: ListConnectorDestinationsCommand_1.ListConnectorDestinationsCommand,
98
136
  ListCredentialLockersCommand: ListCredentialLockersCommand_1.ListCredentialLockersCommand,
99
137
  ListDestinationsCommand: ListDestinationsCommand_1.ListDestinationsCommand,
138
+ ListDeviceDiscoveriesCommand: ListDeviceDiscoveriesCommand_1.ListDeviceDiscoveriesCommand,
139
+ ListDiscoveredDevicesCommand: ListDiscoveredDevicesCommand_1.ListDiscoveredDevicesCommand,
100
140
  ListEventLogConfigurationsCommand: ListEventLogConfigurationsCommand_1.ListEventLogConfigurationsCommand,
141
+ ListManagedThingAccountAssociationsCommand: ListManagedThingAccountAssociationsCommand_1.ListManagedThingAccountAssociationsCommand,
101
142
  ListManagedThingsCommand: ListManagedThingsCommand_1.ListManagedThingsCommand,
102
143
  ListManagedThingSchemasCommand: ListManagedThingSchemasCommand_1.ListManagedThingSchemasCommand,
103
144
  ListNotificationConfigurationsCommand: ListNotificationConfigurationsCommand_1.ListNotificationConfigurationsCommand,
@@ -106,13 +147,22 @@ const commands = {
106
147
  ListOtaTasksCommand: ListOtaTasksCommand_1.ListOtaTasksCommand,
107
148
  ListProvisioningProfilesCommand: ListProvisioningProfilesCommand_1.ListProvisioningProfilesCommand,
108
149
  ListSchemaVersionsCommand: ListSchemaVersionsCommand_1.ListSchemaVersionsCommand,
150
+ ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
109
151
  PutDefaultEncryptionConfigurationCommand: PutDefaultEncryptionConfigurationCommand_1.PutDefaultEncryptionConfigurationCommand,
110
152
  PutHubConfigurationCommand: PutHubConfigurationCommand_1.PutHubConfigurationCommand,
111
153
  PutRuntimeLogConfigurationCommand: PutRuntimeLogConfigurationCommand_1.PutRuntimeLogConfigurationCommand,
154
+ RegisterAccountAssociationCommand: RegisterAccountAssociationCommand_1.RegisterAccountAssociationCommand,
112
155
  RegisterCustomEndpointCommand: RegisterCustomEndpointCommand_1.RegisterCustomEndpointCommand,
113
156
  ResetRuntimeLogConfigurationCommand: ResetRuntimeLogConfigurationCommand_1.ResetRuntimeLogConfigurationCommand,
157
+ SendConnectorEventCommand: SendConnectorEventCommand_1.SendConnectorEventCommand,
114
158
  SendManagedThingCommandCommand: SendManagedThingCommandCommand_1.SendManagedThingCommandCommand,
159
+ StartAccountAssociationRefreshCommand: StartAccountAssociationRefreshCommand_1.StartAccountAssociationRefreshCommand,
115
160
  StartDeviceDiscoveryCommand: StartDeviceDiscoveryCommand_1.StartDeviceDiscoveryCommand,
161
+ TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
162
+ UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
163
+ UpdateAccountAssociationCommand: UpdateAccountAssociationCommand_1.UpdateAccountAssociationCommand,
164
+ UpdateCloudConnectorCommand: UpdateCloudConnectorCommand_1.UpdateCloudConnectorCommand,
165
+ UpdateConnectorDestinationCommand: UpdateConnectorDestinationCommand_1.UpdateConnectorDestinationCommand,
116
166
  UpdateDestinationCommand: UpdateDestinationCommand_1.UpdateDestinationCommand,
117
167
  UpdateEventLogConfigurationCommand: UpdateEventLogConfigurationCommand_1.UpdateEventLogConfigurationCommand,
118
168
  UpdateManagedThingCommand: UpdateManagedThingCommand_1.UpdateManagedThingCommand,
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateAccountAssociationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const models_0_1 = require("../models/models_0");
10
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
+ class CreateAccountAssociationCommand extends smithy_client_1.Command
12
+ .classBuilder()
13
+ .ep(EndpointParameters_1.commonParams)
14
+ .m(function (Command, cs, config, o) {
15
+ return [
16
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
17
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
18
+ ];
19
+ })
20
+ .s("IotManagedIntegrations", "CreateAccountAssociation", {})
21
+ .n("IoTManagedIntegrationsClient", "CreateAccountAssociationCommand")
22
+ .f(models_0_1.CreateAccountAssociationRequestFilterSensitiveLog, models_0_1.CreateAccountAssociationResponseFilterSensitiveLog)
23
+ .ser(Aws_restJson1_1.se_CreateAccountAssociationCommand)
24
+ .de(Aws_restJson1_1.de_CreateAccountAssociationCommand)
25
+ .build() {
26
+ }
27
+ exports.CreateAccountAssociationCommand = CreateAccountAssociationCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateCloudConnectorCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class CreateCloudConnectorCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("IotManagedIntegrations", "CreateCloudConnector", {})
20
+ .n("IoTManagedIntegrationsClient", "CreateCloudConnectorCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_CreateCloudConnectorCommand)
23
+ .de(Aws_restJson1_1.de_CreateCloudConnectorCommand)
24
+ .build() {
25
+ }
26
+ exports.CreateCloudConnectorCommand = CreateCloudConnectorCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateConnectorDestinationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class CreateConnectorDestinationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("IotManagedIntegrations", "CreateConnectorDestination", {})
20
+ .n("IoTManagedIntegrationsClient", "CreateConnectorDestinationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_CreateConnectorDestinationCommand)
23
+ .de(Aws_restJson1_1.de_CreateConnectorDestinationCommand)
24
+ .build() {
25
+ }
26
+ exports.CreateConnectorDestinationCommand = CreateConnectorDestinationCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteAccountAssociationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeleteAccountAssociationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("IotManagedIntegrations", "DeleteAccountAssociation", {})
20
+ .n("IoTManagedIntegrationsClient", "DeleteAccountAssociationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_DeleteAccountAssociationCommand)
23
+ .de(Aws_restJson1_1.de_DeleteAccountAssociationCommand)
24
+ .build() {
25
+ }
26
+ exports.DeleteAccountAssociationCommand = DeleteAccountAssociationCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteCloudConnectorCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeleteCloudConnectorCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("IotManagedIntegrations", "DeleteCloudConnector", {})
20
+ .n("IoTManagedIntegrationsClient", "DeleteCloudConnectorCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_DeleteCloudConnectorCommand)
23
+ .de(Aws_restJson1_1.de_DeleteCloudConnectorCommand)
24
+ .build() {
25
+ }
26
+ exports.DeleteCloudConnectorCommand = DeleteCloudConnectorCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteConnectorDestinationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeleteConnectorDestinationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("IotManagedIntegrations", "DeleteConnectorDestination", {})
20
+ .n("IoTManagedIntegrationsClient", "DeleteConnectorDestinationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_DeleteConnectorDestinationCommand)
23
+ .de(Aws_restJson1_1.de_DeleteConnectorDestinationCommand)
24
+ .build() {
25
+ }
26
+ exports.DeleteConnectorDestinationCommand = DeleteConnectorDestinationCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeregisterAccountAssociationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeregisterAccountAssociationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("IotManagedIntegrations", "DeregisterAccountAssociation", {})
20
+ .n("IoTManagedIntegrationsClient", "DeregisterAccountAssociationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_DeregisterAccountAssociationCommand)
23
+ .de(Aws_restJson1_1.de_DeregisterAccountAssociationCommand)
24
+ .build() {
25
+ }
26
+ exports.DeregisterAccountAssociationCommand = DeregisterAccountAssociationCommand;