@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,7 @@
1
1
  import { createAggregatedClient } from "@smithy/smithy-client";
2
+ import { CreateAccountAssociationCommand, } from "./commands/CreateAccountAssociationCommand";
3
+ import { CreateCloudConnectorCommand, } from "./commands/CreateCloudConnectorCommand";
4
+ import { CreateConnectorDestinationCommand, } from "./commands/CreateConnectorDestinationCommand";
2
5
  import { CreateCredentialLockerCommand, } from "./commands/CreateCredentialLockerCommand";
3
6
  import { CreateDestinationCommand, } from "./commands/CreateDestinationCommand";
4
7
  import { CreateEventLogConfigurationCommand, } from "./commands/CreateEventLogConfigurationCommand";
@@ -7,6 +10,9 @@ import { CreateNotificationConfigurationCommand, } from "./commands/CreateNotifi
7
10
  import { CreateOtaTaskCommand, } from "./commands/CreateOtaTaskCommand";
8
11
  import { CreateOtaTaskConfigurationCommand, } from "./commands/CreateOtaTaskConfigurationCommand";
9
12
  import { CreateProvisioningProfileCommand, } from "./commands/CreateProvisioningProfileCommand";
13
+ import { DeleteAccountAssociationCommand, } from "./commands/DeleteAccountAssociationCommand";
14
+ import { DeleteCloudConnectorCommand, } from "./commands/DeleteCloudConnectorCommand";
15
+ import { DeleteConnectorDestinationCommand, } from "./commands/DeleteConnectorDestinationCommand";
10
16
  import { DeleteCredentialLockerCommand, } from "./commands/DeleteCredentialLockerCommand";
11
17
  import { DeleteDestinationCommand, } from "./commands/DeleteDestinationCommand";
12
18
  import { DeleteEventLogConfigurationCommand, } from "./commands/DeleteEventLogConfigurationCommand";
@@ -15,6 +21,10 @@ import { DeleteNotificationConfigurationCommand, } from "./commands/DeleteNotifi
15
21
  import { DeleteOtaTaskCommand, } from "./commands/DeleteOtaTaskCommand";
16
22
  import { DeleteOtaTaskConfigurationCommand, } from "./commands/DeleteOtaTaskConfigurationCommand";
17
23
  import { DeleteProvisioningProfileCommand, } from "./commands/DeleteProvisioningProfileCommand";
24
+ import { DeregisterAccountAssociationCommand, } from "./commands/DeregisterAccountAssociationCommand";
25
+ import { GetAccountAssociationCommand, } from "./commands/GetAccountAssociationCommand";
26
+ import { GetCloudConnectorCommand, } from "./commands/GetCloudConnectorCommand";
27
+ import { GetConnectorDestinationCommand, } from "./commands/GetConnectorDestinationCommand";
18
28
  import { GetCredentialLockerCommand, } from "./commands/GetCredentialLockerCommand";
19
29
  import { GetCustomEndpointCommand, } from "./commands/GetCustomEndpointCommand";
20
30
  import { GetDefaultEncryptionConfigurationCommand, } from "./commands/GetDefaultEncryptionConfigurationCommand";
@@ -33,9 +43,15 @@ import { GetOtaTaskConfigurationCommand, } from "./commands/GetOtaTaskConfigurat
33
43
  import { GetProvisioningProfileCommand, } from "./commands/GetProvisioningProfileCommand";
34
44
  import { GetRuntimeLogConfigurationCommand, } from "./commands/GetRuntimeLogConfigurationCommand";
35
45
  import { GetSchemaVersionCommand, } from "./commands/GetSchemaVersionCommand";
46
+ import { ListAccountAssociationsCommand, } from "./commands/ListAccountAssociationsCommand";
47
+ import { ListCloudConnectorsCommand, } from "./commands/ListCloudConnectorsCommand";
48
+ import { ListConnectorDestinationsCommand, } from "./commands/ListConnectorDestinationsCommand";
36
49
  import { ListCredentialLockersCommand, } from "./commands/ListCredentialLockersCommand";
37
50
  import { ListDestinationsCommand, } from "./commands/ListDestinationsCommand";
51
+ import { ListDeviceDiscoveriesCommand, } from "./commands/ListDeviceDiscoveriesCommand";
52
+ import { ListDiscoveredDevicesCommand, } from "./commands/ListDiscoveredDevicesCommand";
38
53
  import { ListEventLogConfigurationsCommand, } from "./commands/ListEventLogConfigurationsCommand";
54
+ import { ListManagedThingAccountAssociationsCommand, } from "./commands/ListManagedThingAccountAssociationsCommand";
39
55
  import { ListManagedThingSchemasCommand, } from "./commands/ListManagedThingSchemasCommand";
40
56
  import { ListManagedThingsCommand, } from "./commands/ListManagedThingsCommand";
41
57
  import { ListNotificationConfigurationsCommand, } from "./commands/ListNotificationConfigurationsCommand";
@@ -44,13 +60,22 @@ import { ListOtaTaskExecutionsCommand, } from "./commands/ListOtaTaskExecutionsC
44
60
  import { ListOtaTasksCommand, } from "./commands/ListOtaTasksCommand";
45
61
  import { ListProvisioningProfilesCommand, } from "./commands/ListProvisioningProfilesCommand";
46
62
  import { ListSchemaVersionsCommand, } from "./commands/ListSchemaVersionsCommand";
63
+ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
47
64
  import { PutDefaultEncryptionConfigurationCommand, } from "./commands/PutDefaultEncryptionConfigurationCommand";
48
65
  import { PutHubConfigurationCommand, } from "./commands/PutHubConfigurationCommand";
49
66
  import { PutRuntimeLogConfigurationCommand, } from "./commands/PutRuntimeLogConfigurationCommand";
67
+ import { RegisterAccountAssociationCommand, } from "./commands/RegisterAccountAssociationCommand";
50
68
  import { RegisterCustomEndpointCommand, } from "./commands/RegisterCustomEndpointCommand";
51
69
  import { ResetRuntimeLogConfigurationCommand, } from "./commands/ResetRuntimeLogConfigurationCommand";
70
+ import { SendConnectorEventCommand, } from "./commands/SendConnectorEventCommand";
52
71
  import { SendManagedThingCommandCommand, } from "./commands/SendManagedThingCommandCommand";
72
+ import { StartAccountAssociationRefreshCommand, } from "./commands/StartAccountAssociationRefreshCommand";
53
73
  import { StartDeviceDiscoveryCommand, } from "./commands/StartDeviceDiscoveryCommand";
74
+ import { TagResourceCommand } from "./commands/TagResourceCommand";
75
+ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
76
+ import { UpdateAccountAssociationCommand, } from "./commands/UpdateAccountAssociationCommand";
77
+ import { UpdateCloudConnectorCommand, } from "./commands/UpdateCloudConnectorCommand";
78
+ import { UpdateConnectorDestinationCommand, } from "./commands/UpdateConnectorDestinationCommand";
54
79
  import { UpdateDestinationCommand, } from "./commands/UpdateDestinationCommand";
55
80
  import { UpdateEventLogConfigurationCommand, } from "./commands/UpdateEventLogConfigurationCommand";
56
81
  import { UpdateManagedThingCommand, } from "./commands/UpdateManagedThingCommand";
@@ -58,6 +83,9 @@ import { UpdateNotificationConfigurationCommand, } from "./commands/UpdateNotifi
58
83
  import { UpdateOtaTaskCommand, } from "./commands/UpdateOtaTaskCommand";
59
84
  import { IoTManagedIntegrationsClient } from "./IoTManagedIntegrationsClient";
60
85
  const commands = {
86
+ CreateAccountAssociationCommand,
87
+ CreateCloudConnectorCommand,
88
+ CreateConnectorDestinationCommand,
61
89
  CreateCredentialLockerCommand,
62
90
  CreateDestinationCommand,
63
91
  CreateEventLogConfigurationCommand,
@@ -66,6 +94,9 @@ const commands = {
66
94
  CreateOtaTaskCommand,
67
95
  CreateOtaTaskConfigurationCommand,
68
96
  CreateProvisioningProfileCommand,
97
+ DeleteAccountAssociationCommand,
98
+ DeleteCloudConnectorCommand,
99
+ DeleteConnectorDestinationCommand,
69
100
  DeleteCredentialLockerCommand,
70
101
  DeleteDestinationCommand,
71
102
  DeleteEventLogConfigurationCommand,
@@ -74,6 +105,10 @@ const commands = {
74
105
  DeleteOtaTaskCommand,
75
106
  DeleteOtaTaskConfigurationCommand,
76
107
  DeleteProvisioningProfileCommand,
108
+ DeregisterAccountAssociationCommand,
109
+ GetAccountAssociationCommand,
110
+ GetCloudConnectorCommand,
111
+ GetConnectorDestinationCommand,
77
112
  GetCredentialLockerCommand,
78
113
  GetCustomEndpointCommand,
79
114
  GetDefaultEncryptionConfigurationCommand,
@@ -92,9 +127,15 @@ const commands = {
92
127
  GetProvisioningProfileCommand,
93
128
  GetRuntimeLogConfigurationCommand,
94
129
  GetSchemaVersionCommand,
130
+ ListAccountAssociationsCommand,
131
+ ListCloudConnectorsCommand,
132
+ ListConnectorDestinationsCommand,
95
133
  ListCredentialLockersCommand,
96
134
  ListDestinationsCommand,
135
+ ListDeviceDiscoveriesCommand,
136
+ ListDiscoveredDevicesCommand,
97
137
  ListEventLogConfigurationsCommand,
138
+ ListManagedThingAccountAssociationsCommand,
98
139
  ListManagedThingsCommand,
99
140
  ListManagedThingSchemasCommand,
100
141
  ListNotificationConfigurationsCommand,
@@ -103,13 +144,22 @@ const commands = {
103
144
  ListOtaTasksCommand,
104
145
  ListProvisioningProfilesCommand,
105
146
  ListSchemaVersionsCommand,
147
+ ListTagsForResourceCommand,
106
148
  PutDefaultEncryptionConfigurationCommand,
107
149
  PutHubConfigurationCommand,
108
150
  PutRuntimeLogConfigurationCommand,
151
+ RegisterAccountAssociationCommand,
109
152
  RegisterCustomEndpointCommand,
110
153
  ResetRuntimeLogConfigurationCommand,
154
+ SendConnectorEventCommand,
111
155
  SendManagedThingCommandCommand,
156
+ StartAccountAssociationRefreshCommand,
112
157
  StartDeviceDiscoveryCommand,
158
+ TagResourceCommand,
159
+ UntagResourceCommand,
160
+ UpdateAccountAssociationCommand,
161
+ UpdateCloudConnectorCommand,
162
+ UpdateConnectorDestinationCommand,
113
163
  UpdateDestinationCommand,
114
164
  UpdateEventLogConfigurationCommand,
115
165
  UpdateManagedThingCommand,
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { CreateAccountAssociationRequestFilterSensitiveLog, CreateAccountAssociationResponseFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_CreateAccountAssociationCommand, se_CreateAccountAssociationCommand } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class CreateAccountAssociationCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("IotManagedIntegrations", "CreateAccountAssociation", {})
18
+ .n("IoTManagedIntegrationsClient", "CreateAccountAssociationCommand")
19
+ .f(CreateAccountAssociationRequestFilterSensitiveLog, CreateAccountAssociationResponseFilterSensitiveLog)
20
+ .ser(se_CreateAccountAssociationCommand)
21
+ .de(de_CreateAccountAssociationCommand)
22
+ .build() {
23
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_CreateCloudConnectorCommand, se_CreateCloudConnectorCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class CreateCloudConnectorCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "CreateCloudConnector", {})
17
+ .n("IoTManagedIntegrationsClient", "CreateCloudConnectorCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_CreateCloudConnectorCommand)
20
+ .de(de_CreateCloudConnectorCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_CreateConnectorDestinationCommand, se_CreateConnectorDestinationCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class CreateConnectorDestinationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "CreateConnectorDestination", {})
17
+ .n("IoTManagedIntegrationsClient", "CreateConnectorDestinationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_CreateConnectorDestinationCommand)
20
+ .de(de_CreateConnectorDestinationCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_DeleteAccountAssociationCommand, se_DeleteAccountAssociationCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class DeleteAccountAssociationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "DeleteAccountAssociation", {})
17
+ .n("IoTManagedIntegrationsClient", "DeleteAccountAssociationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_DeleteAccountAssociationCommand)
20
+ .de(de_DeleteAccountAssociationCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_DeleteCloudConnectorCommand, se_DeleteCloudConnectorCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class DeleteCloudConnectorCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "DeleteCloudConnector", {})
17
+ .n("IoTManagedIntegrationsClient", "DeleteCloudConnectorCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_DeleteCloudConnectorCommand)
20
+ .de(de_DeleteCloudConnectorCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_DeleteConnectorDestinationCommand, se_DeleteConnectorDestinationCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class DeleteConnectorDestinationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "DeleteConnectorDestination", {})
17
+ .n("IoTManagedIntegrationsClient", "DeleteConnectorDestinationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_DeleteConnectorDestinationCommand)
20
+ .de(de_DeleteConnectorDestinationCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_DeregisterAccountAssociationCommand, se_DeregisterAccountAssociationCommand, } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class DeregisterAccountAssociationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "DeregisterAccountAssociation", {})
17
+ .n("IoTManagedIntegrationsClient", "DeregisterAccountAssociationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_DeregisterAccountAssociationCommand)
20
+ .de(de_DeregisterAccountAssociationCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { GetAccountAssociationResponseFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_GetAccountAssociationCommand, se_GetAccountAssociationCommand } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class GetAccountAssociationCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("IotManagedIntegrations", "GetAccountAssociation", {})
18
+ .n("IoTManagedIntegrationsClient", "GetAccountAssociationCommand")
19
+ .f(void 0, GetAccountAssociationResponseFilterSensitiveLog)
20
+ .ser(se_GetAccountAssociationCommand)
21
+ .de(de_GetAccountAssociationCommand)
22
+ .build() {
23
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetCloudConnectorCommand, se_GetCloudConnectorCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class GetCloudConnectorCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "GetCloudConnector", {})
17
+ .n("IoTManagedIntegrationsClient", "GetCloudConnectorCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetCloudConnectorCommand)
20
+ .de(de_GetCloudConnectorCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetConnectorDestinationCommand, se_GetConnectorDestinationCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class GetConnectorDestinationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "GetConnectorDestination", {})
17
+ .n("IoTManagedIntegrationsClient", "GetConnectorDestinationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetConnectorDestinationCommand)
20
+ .de(de_GetConnectorDestinationCommand)
21
+ .build() {
22
+ }
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { GetOtaTaskResponseFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_GetOtaTaskCommand, se_GetOtaTaskCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
7
8
  export class GetOtaTaskCommand extends $Command
@@ -15,7 +16,7 @@ export class GetOtaTaskCommand extends $Command
15
16
  })
16
17
  .s("IotManagedIntegrations", "GetOtaTask", {})
17
18
  .n("IoTManagedIntegrationsClient", "GetOtaTaskCommand")
18
- .f(void 0, void 0)
19
+ .f(void 0, GetOtaTaskResponseFilterSensitiveLog)
19
20
  .ser(se_GetOtaTaskCommand)
20
21
  .de(de_GetOtaTaskCommand)
21
22
  .build() {
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListAccountAssociationsCommand, se_ListAccountAssociationsCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListAccountAssociationsCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "ListAccountAssociations", {})
17
+ .n("IoTManagedIntegrationsClient", "ListAccountAssociationsCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListAccountAssociationsCommand)
20
+ .de(de_ListAccountAssociationsCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListCloudConnectorsCommand, se_ListCloudConnectorsCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListCloudConnectorsCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "ListCloudConnectors", {})
17
+ .n("IoTManagedIntegrationsClient", "ListCloudConnectorsCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListCloudConnectorsCommand)
20
+ .de(de_ListCloudConnectorsCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListConnectorDestinationsCommand, se_ListConnectorDestinationsCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListConnectorDestinationsCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "ListConnectorDestinations", {})
17
+ .n("IoTManagedIntegrationsClient", "ListConnectorDestinationsCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListConnectorDestinationsCommand)
20
+ .de(de_ListConnectorDestinationsCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListDeviceDiscoveriesCommand, se_ListDeviceDiscoveriesCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListDeviceDiscoveriesCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "ListDeviceDiscoveries", {})
17
+ .n("IoTManagedIntegrationsClient", "ListDeviceDiscoveriesCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListDeviceDiscoveriesCommand)
20
+ .de(de_ListDeviceDiscoveriesCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { ListDiscoveredDevicesResponseFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_ListDiscoveredDevicesCommand, se_ListDiscoveredDevicesCommand } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class ListDiscoveredDevicesCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("IotManagedIntegrations", "ListDiscoveredDevices", {})
18
+ .n("IoTManagedIntegrationsClient", "ListDiscoveredDevicesCommand")
19
+ .f(void 0, ListDiscoveredDevicesResponseFilterSensitiveLog)
20
+ .ser(se_ListDiscoveredDevicesCommand)
21
+ .de(de_ListDiscoveredDevicesCommand)
22
+ .build() {
23
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListManagedThingAccountAssociationsCommand, se_ListManagedThingAccountAssociationsCommand, } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListManagedThingAccountAssociationsCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "ListManagedThingAccountAssociations", {})
17
+ .n("IoTManagedIntegrationsClient", "ListManagedThingAccountAssociationsCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListManagedThingAccountAssociationsCommand)
20
+ .de(de_ListManagedThingAccountAssociationsCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class ListTagsForResourceCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("IotManagedIntegrations", "ListTagsForResource", {})
18
+ .n("IoTManagedIntegrationsClient", "ListTagsForResourceCommand")
19
+ .f(void 0, ListTagsForResourceResponseFilterSensitiveLog)
20
+ .ser(se_ListTagsForResourceCommand)
21
+ .de(de_ListTagsForResourceCommand)
22
+ .build() {
23
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_RegisterAccountAssociationCommand, se_RegisterAccountAssociationCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class RegisterAccountAssociationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("IotManagedIntegrations", "RegisterAccountAssociation", {})
17
+ .n("IoTManagedIntegrationsClient", "RegisterAccountAssociationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_RegisterAccountAssociationCommand)
20
+ .de(de_RegisterAccountAssociationCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { SendConnectorEventRequestFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_SendConnectorEventCommand, se_SendConnectorEventCommand } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class SendConnectorEventCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("IotManagedIntegrations", "SendConnectorEvent", {})
18
+ .n("IoTManagedIntegrationsClient", "SendConnectorEventCommand")
19
+ .f(SendConnectorEventRequestFilterSensitiveLog, void 0)
20
+ .ser(se_SendConnectorEventCommand)
21
+ .de(de_SendConnectorEventCommand)
22
+ .build() {
23
+ }
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { StartAccountAssociationRefreshResponseFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_StartAccountAssociationRefreshCommand, se_StartAccountAssociationRefreshCommand, } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class StartAccountAssociationRefreshCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("IotManagedIntegrations", "StartAccountAssociationRefresh", {})
18
+ .n("IoTManagedIntegrationsClient", "StartAccountAssociationRefreshCommand")
19
+ .f(void 0, StartAccountAssociationRefreshResponseFilterSensitiveLog)
20
+ .ser(se_StartAccountAssociationRefreshCommand)
21
+ .de(de_StartAccountAssociationRefreshCommand)
22
+ .build() {
23
+ }