@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
@@ -1,4 +1,16 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateAccountAssociationCommandInput,
4
+ CreateAccountAssociationCommandOutput,
5
+ } from "./commands/CreateAccountAssociationCommand";
6
+ import {
7
+ CreateCloudConnectorCommandInput,
8
+ CreateCloudConnectorCommandOutput,
9
+ } from "./commands/CreateCloudConnectorCommand";
10
+ import {
11
+ CreateConnectorDestinationCommandInput,
12
+ CreateConnectorDestinationCommandOutput,
13
+ } from "./commands/CreateConnectorDestinationCommand";
2
14
  import {
3
15
  CreateCredentialLockerCommandInput,
4
16
  CreateCredentialLockerCommandOutput,
@@ -31,6 +43,18 @@ import {
31
43
  CreateProvisioningProfileCommandInput,
32
44
  CreateProvisioningProfileCommandOutput,
33
45
  } from "./commands/CreateProvisioningProfileCommand";
46
+ import {
47
+ DeleteAccountAssociationCommandInput,
48
+ DeleteAccountAssociationCommandOutput,
49
+ } from "./commands/DeleteAccountAssociationCommand";
50
+ import {
51
+ DeleteCloudConnectorCommandInput,
52
+ DeleteCloudConnectorCommandOutput,
53
+ } from "./commands/DeleteCloudConnectorCommand";
54
+ import {
55
+ DeleteConnectorDestinationCommandInput,
56
+ DeleteConnectorDestinationCommandOutput,
57
+ } from "./commands/DeleteConnectorDestinationCommand";
34
58
  import {
35
59
  DeleteCredentialLockerCommandInput,
36
60
  DeleteCredentialLockerCommandOutput,
@@ -63,6 +87,22 @@ import {
63
87
  DeleteProvisioningProfileCommandInput,
64
88
  DeleteProvisioningProfileCommandOutput,
65
89
  } from "./commands/DeleteProvisioningProfileCommand";
90
+ import {
91
+ DeregisterAccountAssociationCommandInput,
92
+ DeregisterAccountAssociationCommandOutput,
93
+ } from "./commands/DeregisterAccountAssociationCommand";
94
+ import {
95
+ GetAccountAssociationCommandInput,
96
+ GetAccountAssociationCommandOutput,
97
+ } from "./commands/GetAccountAssociationCommand";
98
+ import {
99
+ GetCloudConnectorCommandInput,
100
+ GetCloudConnectorCommandOutput,
101
+ } from "./commands/GetCloudConnectorCommand";
102
+ import {
103
+ GetConnectorDestinationCommandInput,
104
+ GetConnectorDestinationCommandOutput,
105
+ } from "./commands/GetConnectorDestinationCommand";
66
106
  import {
67
107
  GetCredentialLockerCommandInput,
68
108
  GetCredentialLockerCommandOutput,
@@ -135,6 +175,18 @@ import {
135
175
  GetSchemaVersionCommandInput,
136
176
  GetSchemaVersionCommandOutput,
137
177
  } from "./commands/GetSchemaVersionCommand";
178
+ import {
179
+ ListAccountAssociationsCommandInput,
180
+ ListAccountAssociationsCommandOutput,
181
+ } from "./commands/ListAccountAssociationsCommand";
182
+ import {
183
+ ListCloudConnectorsCommandInput,
184
+ ListCloudConnectorsCommandOutput,
185
+ } from "./commands/ListCloudConnectorsCommand";
186
+ import {
187
+ ListConnectorDestinationsCommandInput,
188
+ ListConnectorDestinationsCommandOutput,
189
+ } from "./commands/ListConnectorDestinationsCommand";
138
190
  import {
139
191
  ListCredentialLockersCommandInput,
140
192
  ListCredentialLockersCommandOutput,
@@ -143,10 +195,22 @@ import {
143
195
  ListDestinationsCommandInput,
144
196
  ListDestinationsCommandOutput,
145
197
  } from "./commands/ListDestinationsCommand";
198
+ import {
199
+ ListDeviceDiscoveriesCommandInput,
200
+ ListDeviceDiscoveriesCommandOutput,
201
+ } from "./commands/ListDeviceDiscoveriesCommand";
202
+ import {
203
+ ListDiscoveredDevicesCommandInput,
204
+ ListDiscoveredDevicesCommandOutput,
205
+ } from "./commands/ListDiscoveredDevicesCommand";
146
206
  import {
147
207
  ListEventLogConfigurationsCommandInput,
148
208
  ListEventLogConfigurationsCommandOutput,
149
209
  } from "./commands/ListEventLogConfigurationsCommand";
210
+ import {
211
+ ListManagedThingAccountAssociationsCommandInput,
212
+ ListManagedThingAccountAssociationsCommandOutput,
213
+ } from "./commands/ListManagedThingAccountAssociationsCommand";
150
214
  import {
151
215
  ListManagedThingSchemasCommandInput,
152
216
  ListManagedThingSchemasCommandOutput,
@@ -179,6 +243,10 @@ import {
179
243
  ListSchemaVersionsCommandInput,
180
244
  ListSchemaVersionsCommandOutput,
181
245
  } from "./commands/ListSchemaVersionsCommand";
246
+ import {
247
+ ListTagsForResourceCommandInput,
248
+ ListTagsForResourceCommandOutput,
249
+ } from "./commands/ListTagsForResourceCommand";
182
250
  import {
183
251
  PutDefaultEncryptionConfigurationCommandInput,
184
252
  PutDefaultEncryptionConfigurationCommandOutput,
@@ -191,6 +259,10 @@ import {
191
259
  PutRuntimeLogConfigurationCommandInput,
192
260
  PutRuntimeLogConfigurationCommandOutput,
193
261
  } from "./commands/PutRuntimeLogConfigurationCommand";
262
+ import {
263
+ RegisterAccountAssociationCommandInput,
264
+ RegisterAccountAssociationCommandOutput,
265
+ } from "./commands/RegisterAccountAssociationCommand";
194
266
  import {
195
267
  RegisterCustomEndpointCommandInput,
196
268
  RegisterCustomEndpointCommandOutput,
@@ -199,14 +271,42 @@ import {
199
271
  ResetRuntimeLogConfigurationCommandInput,
200
272
  ResetRuntimeLogConfigurationCommandOutput,
201
273
  } from "./commands/ResetRuntimeLogConfigurationCommand";
274
+ import {
275
+ SendConnectorEventCommandInput,
276
+ SendConnectorEventCommandOutput,
277
+ } from "./commands/SendConnectorEventCommand";
202
278
  import {
203
279
  SendManagedThingCommandCommandInput,
204
280
  SendManagedThingCommandCommandOutput,
205
281
  } from "./commands/SendManagedThingCommandCommand";
282
+ import {
283
+ StartAccountAssociationRefreshCommandInput,
284
+ StartAccountAssociationRefreshCommandOutput,
285
+ } from "./commands/StartAccountAssociationRefreshCommand";
206
286
  import {
207
287
  StartDeviceDiscoveryCommandInput,
208
288
  StartDeviceDiscoveryCommandOutput,
209
289
  } from "./commands/StartDeviceDiscoveryCommand";
290
+ import {
291
+ TagResourceCommandInput,
292
+ TagResourceCommandOutput,
293
+ } from "./commands/TagResourceCommand";
294
+ import {
295
+ UntagResourceCommandInput,
296
+ UntagResourceCommandOutput,
297
+ } from "./commands/UntagResourceCommand";
298
+ import {
299
+ UpdateAccountAssociationCommandInput,
300
+ UpdateAccountAssociationCommandOutput,
301
+ } from "./commands/UpdateAccountAssociationCommand";
302
+ import {
303
+ UpdateCloudConnectorCommandInput,
304
+ UpdateCloudConnectorCommandOutput,
305
+ } from "./commands/UpdateCloudConnectorCommand";
306
+ import {
307
+ UpdateConnectorDestinationCommandInput,
308
+ UpdateConnectorDestinationCommandOutput,
309
+ } from "./commands/UpdateConnectorDestinationCommand";
210
310
  import {
211
311
  UpdateDestinationCommandInput,
212
312
  UpdateDestinationCommandOutput,
@@ -229,6 +329,45 @@ import {
229
329
  } from "./commands/UpdateOtaTaskCommand";
230
330
  import { IoTManagedIntegrationsClient } from "./IoTManagedIntegrationsClient";
231
331
  export interface IoTManagedIntegrations {
332
+ createAccountAssociation(
333
+ args: CreateAccountAssociationCommandInput,
334
+ options?: __HttpHandlerOptions
335
+ ): Promise<CreateAccountAssociationCommandOutput>;
336
+ createAccountAssociation(
337
+ args: CreateAccountAssociationCommandInput,
338
+ cb: (err: any, data?: CreateAccountAssociationCommandOutput) => void
339
+ ): void;
340
+ createAccountAssociation(
341
+ args: CreateAccountAssociationCommandInput,
342
+ options: __HttpHandlerOptions,
343
+ cb: (err: any, data?: CreateAccountAssociationCommandOutput) => void
344
+ ): void;
345
+ createCloudConnector(
346
+ args: CreateCloudConnectorCommandInput,
347
+ options?: __HttpHandlerOptions
348
+ ): Promise<CreateCloudConnectorCommandOutput>;
349
+ createCloudConnector(
350
+ args: CreateCloudConnectorCommandInput,
351
+ cb: (err: any, data?: CreateCloudConnectorCommandOutput) => void
352
+ ): void;
353
+ createCloudConnector(
354
+ args: CreateCloudConnectorCommandInput,
355
+ options: __HttpHandlerOptions,
356
+ cb: (err: any, data?: CreateCloudConnectorCommandOutput) => void
357
+ ): void;
358
+ createConnectorDestination(
359
+ args: CreateConnectorDestinationCommandInput,
360
+ options?: __HttpHandlerOptions
361
+ ): Promise<CreateConnectorDestinationCommandOutput>;
362
+ createConnectorDestination(
363
+ args: CreateConnectorDestinationCommandInput,
364
+ cb: (err: any, data?: CreateConnectorDestinationCommandOutput) => void
365
+ ): void;
366
+ createConnectorDestination(
367
+ args: CreateConnectorDestinationCommandInput,
368
+ options: __HttpHandlerOptions,
369
+ cb: (err: any, data?: CreateConnectorDestinationCommandOutput) => void
370
+ ): void;
232
371
  createCredentialLocker(): Promise<CreateCredentialLockerCommandOutput>;
233
372
  createCredentialLocker(
234
373
  args: CreateCredentialLockerCommandInput,
@@ -335,6 +474,45 @@ export interface IoTManagedIntegrations {
335
474
  options: __HttpHandlerOptions,
336
475
  cb: (err: any, data?: CreateProvisioningProfileCommandOutput) => void
337
476
  ): void;
477
+ deleteAccountAssociation(
478
+ args: DeleteAccountAssociationCommandInput,
479
+ options?: __HttpHandlerOptions
480
+ ): Promise<DeleteAccountAssociationCommandOutput>;
481
+ deleteAccountAssociation(
482
+ args: DeleteAccountAssociationCommandInput,
483
+ cb: (err: any, data?: DeleteAccountAssociationCommandOutput) => void
484
+ ): void;
485
+ deleteAccountAssociation(
486
+ args: DeleteAccountAssociationCommandInput,
487
+ options: __HttpHandlerOptions,
488
+ cb: (err: any, data?: DeleteAccountAssociationCommandOutput) => void
489
+ ): void;
490
+ deleteCloudConnector(
491
+ args: DeleteCloudConnectorCommandInput,
492
+ options?: __HttpHandlerOptions
493
+ ): Promise<DeleteCloudConnectorCommandOutput>;
494
+ deleteCloudConnector(
495
+ args: DeleteCloudConnectorCommandInput,
496
+ cb: (err: any, data?: DeleteCloudConnectorCommandOutput) => void
497
+ ): void;
498
+ deleteCloudConnector(
499
+ args: DeleteCloudConnectorCommandInput,
500
+ options: __HttpHandlerOptions,
501
+ cb: (err: any, data?: DeleteCloudConnectorCommandOutput) => void
502
+ ): void;
503
+ deleteConnectorDestination(
504
+ args: DeleteConnectorDestinationCommandInput,
505
+ options?: __HttpHandlerOptions
506
+ ): Promise<DeleteConnectorDestinationCommandOutput>;
507
+ deleteConnectorDestination(
508
+ args: DeleteConnectorDestinationCommandInput,
509
+ cb: (err: any, data?: DeleteConnectorDestinationCommandOutput) => void
510
+ ): void;
511
+ deleteConnectorDestination(
512
+ args: DeleteConnectorDestinationCommandInput,
513
+ options: __HttpHandlerOptions,
514
+ cb: (err: any, data?: DeleteConnectorDestinationCommandOutput) => void
515
+ ): void;
338
516
  deleteCredentialLocker(
339
517
  args: DeleteCredentialLockerCommandInput,
340
518
  options?: __HttpHandlerOptions
@@ -439,6 +617,58 @@ export interface IoTManagedIntegrations {
439
617
  options: __HttpHandlerOptions,
440
618
  cb: (err: any, data?: DeleteProvisioningProfileCommandOutput) => void
441
619
  ): void;
620
+ deregisterAccountAssociation(
621
+ args: DeregisterAccountAssociationCommandInput,
622
+ options?: __HttpHandlerOptions
623
+ ): Promise<DeregisterAccountAssociationCommandOutput>;
624
+ deregisterAccountAssociation(
625
+ args: DeregisterAccountAssociationCommandInput,
626
+ cb: (err: any, data?: DeregisterAccountAssociationCommandOutput) => void
627
+ ): void;
628
+ deregisterAccountAssociation(
629
+ args: DeregisterAccountAssociationCommandInput,
630
+ options: __HttpHandlerOptions,
631
+ cb: (err: any, data?: DeregisterAccountAssociationCommandOutput) => void
632
+ ): void;
633
+ getAccountAssociation(
634
+ args: GetAccountAssociationCommandInput,
635
+ options?: __HttpHandlerOptions
636
+ ): Promise<GetAccountAssociationCommandOutput>;
637
+ getAccountAssociation(
638
+ args: GetAccountAssociationCommandInput,
639
+ cb: (err: any, data?: GetAccountAssociationCommandOutput) => void
640
+ ): void;
641
+ getAccountAssociation(
642
+ args: GetAccountAssociationCommandInput,
643
+ options: __HttpHandlerOptions,
644
+ cb: (err: any, data?: GetAccountAssociationCommandOutput) => void
645
+ ): void;
646
+ getCloudConnector(
647
+ args: GetCloudConnectorCommandInput,
648
+ options?: __HttpHandlerOptions
649
+ ): Promise<GetCloudConnectorCommandOutput>;
650
+ getCloudConnector(
651
+ args: GetCloudConnectorCommandInput,
652
+ cb: (err: any, data?: GetCloudConnectorCommandOutput) => void
653
+ ): void;
654
+ getCloudConnector(
655
+ args: GetCloudConnectorCommandInput,
656
+ options: __HttpHandlerOptions,
657
+ cb: (err: any, data?: GetCloudConnectorCommandOutput) => void
658
+ ): void;
659
+ getConnectorDestination(
660
+ args: GetConnectorDestinationCommandInput,
661
+ options?: __HttpHandlerOptions
662
+ ): Promise<GetConnectorDestinationCommandOutput>;
663
+ getConnectorDestination(
664
+ args: GetConnectorDestinationCommandInput,
665
+ cb: (err: any, data?: GetConnectorDestinationCommandOutput) => void
666
+ ): void;
667
+ getConnectorDestination(
668
+ args: GetConnectorDestinationCommandInput,
669
+ options: __HttpHandlerOptions,
670
+ cb: (err: any, data?: GetConnectorDestinationCommandOutput) => void
671
+ ): void;
442
672
  getCredentialLocker(
443
673
  args: GetCredentialLockerCommandInput,
444
674
  options?: __HttpHandlerOptions
@@ -682,6 +912,48 @@ export interface IoTManagedIntegrations {
682
912
  options: __HttpHandlerOptions,
683
913
  cb: (err: any, data?: GetSchemaVersionCommandOutput) => void
684
914
  ): void;
915
+ listAccountAssociations(): Promise<ListAccountAssociationsCommandOutput>;
916
+ listAccountAssociations(
917
+ args: ListAccountAssociationsCommandInput,
918
+ options?: __HttpHandlerOptions
919
+ ): Promise<ListAccountAssociationsCommandOutput>;
920
+ listAccountAssociations(
921
+ args: ListAccountAssociationsCommandInput,
922
+ cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void
923
+ ): void;
924
+ listAccountAssociations(
925
+ args: ListAccountAssociationsCommandInput,
926
+ options: __HttpHandlerOptions,
927
+ cb: (err: any, data?: ListAccountAssociationsCommandOutput) => void
928
+ ): void;
929
+ listCloudConnectors(): Promise<ListCloudConnectorsCommandOutput>;
930
+ listCloudConnectors(
931
+ args: ListCloudConnectorsCommandInput,
932
+ options?: __HttpHandlerOptions
933
+ ): Promise<ListCloudConnectorsCommandOutput>;
934
+ listCloudConnectors(
935
+ args: ListCloudConnectorsCommandInput,
936
+ cb: (err: any, data?: ListCloudConnectorsCommandOutput) => void
937
+ ): void;
938
+ listCloudConnectors(
939
+ args: ListCloudConnectorsCommandInput,
940
+ options: __HttpHandlerOptions,
941
+ cb: (err: any, data?: ListCloudConnectorsCommandOutput) => void
942
+ ): void;
943
+ listConnectorDestinations(): Promise<ListConnectorDestinationsCommandOutput>;
944
+ listConnectorDestinations(
945
+ args: ListConnectorDestinationsCommandInput,
946
+ options?: __HttpHandlerOptions
947
+ ): Promise<ListConnectorDestinationsCommandOutput>;
948
+ listConnectorDestinations(
949
+ args: ListConnectorDestinationsCommandInput,
950
+ cb: (err: any, data?: ListConnectorDestinationsCommandOutput) => void
951
+ ): void;
952
+ listConnectorDestinations(
953
+ args: ListConnectorDestinationsCommandInput,
954
+ options: __HttpHandlerOptions,
955
+ cb: (err: any, data?: ListConnectorDestinationsCommandOutput) => void
956
+ ): void;
685
957
  listCredentialLockers(): Promise<ListCredentialLockersCommandOutput>;
686
958
  listCredentialLockers(
687
959
  args: ListCredentialLockersCommandInput,
@@ -710,6 +982,33 @@ export interface IoTManagedIntegrations {
710
982
  options: __HttpHandlerOptions,
711
983
  cb: (err: any, data?: ListDestinationsCommandOutput) => void
712
984
  ): void;
985
+ listDeviceDiscoveries(): Promise<ListDeviceDiscoveriesCommandOutput>;
986
+ listDeviceDiscoveries(
987
+ args: ListDeviceDiscoveriesCommandInput,
988
+ options?: __HttpHandlerOptions
989
+ ): Promise<ListDeviceDiscoveriesCommandOutput>;
990
+ listDeviceDiscoveries(
991
+ args: ListDeviceDiscoveriesCommandInput,
992
+ cb: (err: any, data?: ListDeviceDiscoveriesCommandOutput) => void
993
+ ): void;
994
+ listDeviceDiscoveries(
995
+ args: ListDeviceDiscoveriesCommandInput,
996
+ options: __HttpHandlerOptions,
997
+ cb: (err: any, data?: ListDeviceDiscoveriesCommandOutput) => void
998
+ ): void;
999
+ listDiscoveredDevices(
1000
+ args: ListDiscoveredDevicesCommandInput,
1001
+ options?: __HttpHandlerOptions
1002
+ ): Promise<ListDiscoveredDevicesCommandOutput>;
1003
+ listDiscoveredDevices(
1004
+ args: ListDiscoveredDevicesCommandInput,
1005
+ cb: (err: any, data?: ListDiscoveredDevicesCommandOutput) => void
1006
+ ): void;
1007
+ listDiscoveredDevices(
1008
+ args: ListDiscoveredDevicesCommandInput,
1009
+ options: __HttpHandlerOptions,
1010
+ cb: (err: any, data?: ListDiscoveredDevicesCommandOutput) => void
1011
+ ): void;
713
1012
  listEventLogConfigurations(): Promise<ListEventLogConfigurationsCommandOutput>;
714
1013
  listEventLogConfigurations(
715
1014
  args: ListEventLogConfigurationsCommandInput,
@@ -724,6 +1023,26 @@ export interface IoTManagedIntegrations {
724
1023
  options: __HttpHandlerOptions,
725
1024
  cb: (err: any, data?: ListEventLogConfigurationsCommandOutput) => void
726
1025
  ): void;
1026
+ listManagedThingAccountAssociations(): Promise<ListManagedThingAccountAssociationsCommandOutput>;
1027
+ listManagedThingAccountAssociations(
1028
+ args: ListManagedThingAccountAssociationsCommandInput,
1029
+ options?: __HttpHandlerOptions
1030
+ ): Promise<ListManagedThingAccountAssociationsCommandOutput>;
1031
+ listManagedThingAccountAssociations(
1032
+ args: ListManagedThingAccountAssociationsCommandInput,
1033
+ cb: (
1034
+ err: any,
1035
+ data?: ListManagedThingAccountAssociationsCommandOutput
1036
+ ) => void
1037
+ ): void;
1038
+ listManagedThingAccountAssociations(
1039
+ args: ListManagedThingAccountAssociationsCommandInput,
1040
+ options: __HttpHandlerOptions,
1041
+ cb: (
1042
+ err: any,
1043
+ data?: ListManagedThingAccountAssociationsCommandOutput
1044
+ ) => void
1045
+ ): void;
727
1046
  listManagedThings(): Promise<ListManagedThingsCommandOutput>;
728
1047
  listManagedThings(
729
1048
  args: ListManagedThingsCommandInput,
@@ -833,6 +1152,19 @@ export interface IoTManagedIntegrations {
833
1152
  options: __HttpHandlerOptions,
834
1153
  cb: (err: any, data?: ListSchemaVersionsCommandOutput) => void
835
1154
  ): void;
1155
+ listTagsForResource(
1156
+ args: ListTagsForResourceCommandInput,
1157
+ options?: __HttpHandlerOptions
1158
+ ): Promise<ListTagsForResourceCommandOutput>;
1159
+ listTagsForResource(
1160
+ args: ListTagsForResourceCommandInput,
1161
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
1162
+ ): void;
1163
+ listTagsForResource(
1164
+ args: ListTagsForResourceCommandInput,
1165
+ options: __HttpHandlerOptions,
1166
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
1167
+ ): void;
836
1168
  putDefaultEncryptionConfiguration(
837
1169
  args: PutDefaultEncryptionConfigurationCommandInput,
838
1170
  options?: __HttpHandlerOptions
@@ -878,6 +1210,19 @@ export interface IoTManagedIntegrations {
878
1210
  options: __HttpHandlerOptions,
879
1211
  cb: (err: any, data?: PutRuntimeLogConfigurationCommandOutput) => void
880
1212
  ): void;
1213
+ registerAccountAssociation(
1214
+ args: RegisterAccountAssociationCommandInput,
1215
+ options?: __HttpHandlerOptions
1216
+ ): Promise<RegisterAccountAssociationCommandOutput>;
1217
+ registerAccountAssociation(
1218
+ args: RegisterAccountAssociationCommandInput,
1219
+ cb: (err: any, data?: RegisterAccountAssociationCommandOutput) => void
1220
+ ): void;
1221
+ registerAccountAssociation(
1222
+ args: RegisterAccountAssociationCommandInput,
1223
+ options: __HttpHandlerOptions,
1224
+ cb: (err: any, data?: RegisterAccountAssociationCommandOutput) => void
1225
+ ): void;
881
1226
  registerCustomEndpoint(): Promise<RegisterCustomEndpointCommandOutput>;
882
1227
  registerCustomEndpoint(
883
1228
  args: RegisterCustomEndpointCommandInput,
@@ -905,6 +1250,19 @@ export interface IoTManagedIntegrations {
905
1250
  options: __HttpHandlerOptions,
906
1251
  cb: (err: any, data?: ResetRuntimeLogConfigurationCommandOutput) => void
907
1252
  ): void;
1253
+ sendConnectorEvent(
1254
+ args: SendConnectorEventCommandInput,
1255
+ options?: __HttpHandlerOptions
1256
+ ): Promise<SendConnectorEventCommandOutput>;
1257
+ sendConnectorEvent(
1258
+ args: SendConnectorEventCommandInput,
1259
+ cb: (err: any, data?: SendConnectorEventCommandOutput) => void
1260
+ ): void;
1261
+ sendConnectorEvent(
1262
+ args: SendConnectorEventCommandInput,
1263
+ options: __HttpHandlerOptions,
1264
+ cb: (err: any, data?: SendConnectorEventCommandOutput) => void
1265
+ ): void;
908
1266
  sendManagedThingCommand(
909
1267
  args: SendManagedThingCommandCommandInput,
910
1268
  options?: __HttpHandlerOptions
@@ -918,6 +1276,19 @@ export interface IoTManagedIntegrations {
918
1276
  options: __HttpHandlerOptions,
919
1277
  cb: (err: any, data?: SendManagedThingCommandCommandOutput) => void
920
1278
  ): void;
1279
+ startAccountAssociationRefresh(
1280
+ args: StartAccountAssociationRefreshCommandInput,
1281
+ options?: __HttpHandlerOptions
1282
+ ): Promise<StartAccountAssociationRefreshCommandOutput>;
1283
+ startAccountAssociationRefresh(
1284
+ args: StartAccountAssociationRefreshCommandInput,
1285
+ cb: (err: any, data?: StartAccountAssociationRefreshCommandOutput) => void
1286
+ ): void;
1287
+ startAccountAssociationRefresh(
1288
+ args: StartAccountAssociationRefreshCommandInput,
1289
+ options: __HttpHandlerOptions,
1290
+ cb: (err: any, data?: StartAccountAssociationRefreshCommandOutput) => void
1291
+ ): void;
921
1292
  startDeviceDiscovery(
922
1293
  args: StartDeviceDiscoveryCommandInput,
923
1294
  options?: __HttpHandlerOptions
@@ -931,6 +1302,71 @@ export interface IoTManagedIntegrations {
931
1302
  options: __HttpHandlerOptions,
932
1303
  cb: (err: any, data?: StartDeviceDiscoveryCommandOutput) => void
933
1304
  ): void;
1305
+ tagResource(
1306
+ args: TagResourceCommandInput,
1307
+ options?: __HttpHandlerOptions
1308
+ ): Promise<TagResourceCommandOutput>;
1309
+ tagResource(
1310
+ args: TagResourceCommandInput,
1311
+ cb: (err: any, data?: TagResourceCommandOutput) => void
1312
+ ): void;
1313
+ tagResource(
1314
+ args: TagResourceCommandInput,
1315
+ options: __HttpHandlerOptions,
1316
+ cb: (err: any, data?: TagResourceCommandOutput) => void
1317
+ ): void;
1318
+ untagResource(
1319
+ args: UntagResourceCommandInput,
1320
+ options?: __HttpHandlerOptions
1321
+ ): Promise<UntagResourceCommandOutput>;
1322
+ untagResource(
1323
+ args: UntagResourceCommandInput,
1324
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
1325
+ ): void;
1326
+ untagResource(
1327
+ args: UntagResourceCommandInput,
1328
+ options: __HttpHandlerOptions,
1329
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
1330
+ ): void;
1331
+ updateAccountAssociation(
1332
+ args: UpdateAccountAssociationCommandInput,
1333
+ options?: __HttpHandlerOptions
1334
+ ): Promise<UpdateAccountAssociationCommandOutput>;
1335
+ updateAccountAssociation(
1336
+ args: UpdateAccountAssociationCommandInput,
1337
+ cb: (err: any, data?: UpdateAccountAssociationCommandOutput) => void
1338
+ ): void;
1339
+ updateAccountAssociation(
1340
+ args: UpdateAccountAssociationCommandInput,
1341
+ options: __HttpHandlerOptions,
1342
+ cb: (err: any, data?: UpdateAccountAssociationCommandOutput) => void
1343
+ ): void;
1344
+ updateCloudConnector(
1345
+ args: UpdateCloudConnectorCommandInput,
1346
+ options?: __HttpHandlerOptions
1347
+ ): Promise<UpdateCloudConnectorCommandOutput>;
1348
+ updateCloudConnector(
1349
+ args: UpdateCloudConnectorCommandInput,
1350
+ cb: (err: any, data?: UpdateCloudConnectorCommandOutput) => void
1351
+ ): void;
1352
+ updateCloudConnector(
1353
+ args: UpdateCloudConnectorCommandInput,
1354
+ options: __HttpHandlerOptions,
1355
+ cb: (err: any, data?: UpdateCloudConnectorCommandOutput) => void
1356
+ ): void;
1357
+ updateConnectorDestination(
1358
+ args: UpdateConnectorDestinationCommandInput,
1359
+ options?: __HttpHandlerOptions
1360
+ ): Promise<UpdateConnectorDestinationCommandOutput>;
1361
+ updateConnectorDestination(
1362
+ args: UpdateConnectorDestinationCommandInput,
1363
+ cb: (err: any, data?: UpdateConnectorDestinationCommandOutput) => void
1364
+ ): void;
1365
+ updateConnectorDestination(
1366
+ args: UpdateConnectorDestinationCommandInput,
1367
+ options: __HttpHandlerOptions,
1368
+ cb: (err: any, data?: UpdateConnectorDestinationCommandOutput) => void
1369
+ ): void;
934
1370
  updateDestination(
935
1371
  args: UpdateDestinationCommandInput,
936
1372
  options?: __HttpHandlerOptions