@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,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListCredentialLockersResponseFilterSensitiveLog = exports.GetCredentialLockerResponseFilterSensitiveLog = exports.CredentialLockerSummaryFilterSensitiveLog = exports.CreateProvisioningProfileResponseFilterSensitiveLog = exports.CreateProvisioningProfileRequestFilterSensitiveLog = exports.CreateOtaTaskConfigurationRequestFilterSensitiveLog = exports.CreateOtaTaskRequestFilterSensitiveLog = exports.CreateNotificationConfigurationRequestFilterSensitiveLog = exports.CreateManagedThingRequestFilterSensitiveLog = exports.CreateDestinationRequestFilterSensitiveLog = exports.CreateCredentialLockerRequestFilterSensitiveLog = exports.CommandEndpointFilterSensitiveLog = exports.CommandCapabilityFilterSensitiveLog = exports.CapabilityActionFilterSensitiveLog = exports.OtaTaskExecutionStatus = exports.SchemaVersionVisibility = exports.SchemaVersionType = exports.SchemaVersionFormat = exports.OtaStatus = exports.ProvisioningStatus = exports.HubNetworkMode = exports.InternalFailureException = exports.EncryptionType = exports.DisconnectReasonValue = exports.DiscoveryAuthMaterialType = exports.DeviceDiscoveryStatus = exports.DiscoveryType = exports.ProvisioningType = exports.OtaProtocol = exports.OtaType = exports.RetryCriteriaFailureType = exports.SchedulingConfigEndBehavior = exports.OtaMechanism = exports.EventType = exports.UnauthorizedException = exports.ResourceNotFoundException = exports.Role = exports.LogLevel = exports.DeliveryDestinationType = exports.ValidationException = exports.ThrottlingException = exports.ServiceUnavailableException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.ConflictException = exports.ConfigurationState = exports.AuthMaterialType = exports.AccessDeniedException = exports.AbortCriteriaFailureType = exports.AbortCriteriaAction = void 0;
4
- exports.ListOtaTaskConfigurationsResponseFilterSensitiveLog = exports.OtaTaskConfigurationSummaryFilterSensitiveLog = exports.UpdateManagedThingRequestFilterSensitiveLog = exports.ListManagedThingsResponseFilterSensitiveLog = exports.ManagedThingSummaryFilterSensitiveLog = exports.ListManagedThingsRequestFilterSensitiveLog = exports.SendManagedThingCommandRequestFilterSensitiveLog = exports.GetProvisioningProfileResponseFilterSensitiveLog = exports.GetOtaTaskConfigurationResponseFilterSensitiveLog = exports.GetNotificationConfigurationResponseFilterSensitiveLog = exports.GetManagedThingStateResponseFilterSensitiveLog = exports.StateEndpointFilterSensitiveLog = exports.StateCapabilityFilterSensitiveLog = exports.GetManagedThingResponseFilterSensitiveLog = exports.StartDeviceDiscoveryRequestFilterSensitiveLog = exports.GetDeviceDiscoveryResponseFilterSensitiveLog = exports.GetDestinationResponseFilterSensitiveLog = void 0;
3
+ exports.CapabilityActionFilterSensitiveLog = exports.StartAccountAssociationRefreshResponseFilterSensitiveLog = exports.GetAccountAssociationResponseFilterSensitiveLog = exports.CreateAccountAssociationResponseFilterSensitiveLog = exports.CreateAccountAssociationRequestFilterSensitiveLog = exports.OtaTaskExecutionStatus = exports.InvalidRequestException = exports.SchemaVersionVisibility = exports.SchemaVersionType = exports.OtaStatus = exports.ProvisioningStatus = exports.HubNetworkMode = exports.InternalFailureException = exports.EncryptionType = exports.DisconnectReasonValue = exports.DiscoveryAuthMaterialType = exports.DiscoveryModification = exports.DeviceDiscoveryStatus = exports.DiscoveryType = exports.LimitExceededException = exports.ProvisioningType = exports.OtaProtocol = exports.OtaType = exports.RetryCriteriaFailureType = exports.SchedulingConfigEndBehavior = exports.OtaMechanism = exports.EventType = exports.UnauthorizedException = exports.Role = exports.LogLevel = exports.DeliveryDestinationType = exports.ServiceQuotaExceededException = exports.ConnectorEventOperation = exports.ConfigurationState = exports.CloudConnectorType = exports.EndpointType = exports.SchemaVersionFormat = exports.AuthType = exports.AuthMaterialType = exports.TokenEndpointAuthenticationScheme = exports.ValidationException = exports.ThrottlingException = exports.ServiceUnavailableException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AssociationState = exports.AccessDeniedException = exports.AbortCriteriaFailureType = exports.AbortCriteriaAction = void 0;
4
+ exports.TagResourceRequestFilterSensitiveLog = exports.SendConnectorEventRequestFilterSensitiveLog = exports.MatterEndpointFilterSensitiveLog = exports.MatterClusterFilterSensitiveLog = exports.ListOtaTaskConfigurationsResponseFilterSensitiveLog = exports.OtaTaskConfigurationSummaryFilterSensitiveLog = exports.UpdateManagedThingRequestFilterSensitiveLog = exports.ListManagedThingsResponseFilterSensitiveLog = exports.ManagedThingSummaryFilterSensitiveLog = exports.ListManagedThingsRequestFilterSensitiveLog = exports.SendManagedThingCommandRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.GetProvisioningProfileResponseFilterSensitiveLog = exports.GetOtaTaskConfigurationResponseFilterSensitiveLog = exports.GetOtaTaskResponseFilterSensitiveLog = exports.GetNotificationConfigurationResponseFilterSensitiveLog = exports.GetManagedThingStateResponseFilterSensitiveLog = exports.StateEndpointFilterSensitiveLog = exports.StateCapabilityFilterSensitiveLog = exports.GetManagedThingResponseFilterSensitiveLog = exports.StartDeviceDiscoveryRequestFilterSensitiveLog = exports.ListDiscoveredDevicesResponseFilterSensitiveLog = exports.DiscoveredDeviceSummaryFilterSensitiveLog = exports.GetDeviceDiscoveryResponseFilterSensitiveLog = exports.DeviceFilterSensitiveLog = exports.GetDestinationResponseFilterSensitiveLog = exports.ListCredentialLockersResponseFilterSensitiveLog = exports.GetCredentialLockerResponseFilterSensitiveLog = exports.CredentialLockerSummaryFilterSensitiveLog = exports.CreateProvisioningProfileResponseFilterSensitiveLog = exports.CreateProvisioningProfileRequestFilterSensitiveLog = exports.CreateOtaTaskConfigurationRequestFilterSensitiveLog = exports.CreateOtaTaskRequestFilterSensitiveLog = exports.CreateNotificationConfigurationRequestFilterSensitiveLog = exports.CreateManagedThingRequestFilterSensitiveLog = exports.CreateDestinationRequestFilterSensitiveLog = exports.CreateCredentialLockerRequestFilterSensitiveLog = exports.CommandEndpointFilterSensitiveLog = exports.CommandCapabilityFilterSensitiveLog = void 0;
5
5
  const smithy_client_1 = require("@smithy/smithy-client");
6
6
  const IoTManagedIntegrationsServiceException_1 = require("./IoTManagedIntegrationsServiceException");
7
7
  exports.AbortCriteriaAction = {
@@ -28,15 +28,12 @@ class AccessDeniedException extends IoTManagedIntegrationsServiceException_1.IoT
28
28
  }
29
29
  }
30
30
  exports.AccessDeniedException = AccessDeniedException;
31
- exports.AuthMaterialType = {
32
- WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE",
33
- ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE",
34
- ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE",
35
- };
36
- exports.ConfigurationState = {
37
- ENABLED: "ENABLED",
38
- UPDATE_FAILED: "UPDATE_FAILED",
39
- UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
31
+ exports.AssociationState = {
32
+ ASSOCIATION_DELETING: "ASSOCIATION_DELETING",
33
+ ASSOCIATION_FAILED: "ASSOCIATION_FAILED",
34
+ ASSOCIATION_IN_PROGRESS: "ASSOCIATION_IN_PROGRESS",
35
+ ASSOCIATION_SUCCEEDED: "ASSOCIATION_SUCCEEDED",
36
+ REFRESH_TOKEN_EXPIRED: "REFRESH_TOKEN_EXPIRED",
40
37
  };
41
38
  class ConflictException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
42
39
  name = "ConflictException";
@@ -68,21 +65,25 @@ class InternalServerException extends IoTManagedIntegrationsServiceException_1.I
68
65
  }
69
66
  }
70
67
  exports.InternalServerException = InternalServerException;
71
- class ServiceQuotaExceededException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
72
- name = "ServiceQuotaExceededException";
68
+ class ResourceNotFoundException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
69
+ name = "ResourceNotFoundException";
73
70
  $fault = "client";
74
71
  Message;
72
+ ResourceId;
73
+ ResourceType;
75
74
  constructor(opts) {
76
75
  super({
77
- name: "ServiceQuotaExceededException",
76
+ name: "ResourceNotFoundException",
78
77
  $fault: "client",
79
78
  ...opts,
80
79
  });
81
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
80
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
82
81
  this.Message = opts.Message;
82
+ this.ResourceId = opts.ResourceId;
83
+ this.ResourceType = opts.ResourceType;
83
84
  }
84
85
  }
85
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
86
+ exports.ResourceNotFoundException = ResourceNotFoundException;
86
87
  class ServiceUnavailableException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
87
88
  name = "ServiceUnavailableException";
88
89
  $fault = "server";
@@ -128,34 +129,71 @@ class ValidationException extends IoTManagedIntegrationsServiceException_1.IoTMa
128
129
  }
129
130
  }
130
131
  exports.ValidationException = ValidationException;
131
- exports.DeliveryDestinationType = {
132
- KINESIS: "KINESIS",
132
+ exports.TokenEndpointAuthenticationScheme = {
133
+ HTTP_BASIC: "HTTP_BASIC",
134
+ REQUEST_BODY_CREDENTIALS: "REQUEST_BODY_CREDENTIALS",
133
135
  };
134
- exports.LogLevel = {
135
- DEBUG: "DEBUG",
136
- ERROR: "ERROR",
137
- INFO: "INFO",
138
- WARN: "WARN",
136
+ exports.AuthMaterialType = {
137
+ CUSTOM_PROTOCOL_QR_BAR_CODE: "CUSTOM_PROTOCOL_QR_BAR_CODE",
138
+ DISCOVERED_DEVICE: "DISCOVERED_DEVICE",
139
+ WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE",
140
+ ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE",
141
+ ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE",
139
142
  };
140
- exports.Role = {
141
- CONTROLLER: "CONTROLLER",
142
- DEVICE: "DEVICE",
143
+ exports.AuthType = {
144
+ OAUTH: "OAUTH",
143
145
  };
144
- class ResourceNotFoundException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
145
- name = "ResourceNotFoundException";
146
+ exports.SchemaVersionFormat = {
147
+ AWS: "AWS",
148
+ CONNECTOR: "CONNECTOR",
149
+ ZCL: "ZCL",
150
+ };
151
+ exports.EndpointType = {
152
+ LAMBDA: "LAMBDA",
153
+ };
154
+ exports.CloudConnectorType = {
155
+ LISTED: "LISTED",
156
+ UNLISTED: "UNLISTED",
157
+ };
158
+ exports.ConfigurationState = {
159
+ ENABLED: "ENABLED",
160
+ UPDATE_FAILED: "UPDATE_FAILED",
161
+ UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
162
+ };
163
+ exports.ConnectorEventOperation = {
164
+ DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST",
165
+ DEVICE_COMMAND_RESPONSE: "DEVICE_COMMAND_RESPONSE",
166
+ DEVICE_DISCOVERY: "DEVICE_DISCOVERY",
167
+ DEVICE_EVENT: "DEVICE_EVENT",
168
+ };
169
+ class ServiceQuotaExceededException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
170
+ name = "ServiceQuotaExceededException";
146
171
  $fault = "client";
147
172
  Message;
148
173
  constructor(opts) {
149
174
  super({
150
- name: "ResourceNotFoundException",
175
+ name: "ServiceQuotaExceededException",
151
176
  $fault: "client",
152
177
  ...opts,
153
178
  });
154
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
179
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
155
180
  this.Message = opts.Message;
156
181
  }
157
182
  }
158
- exports.ResourceNotFoundException = ResourceNotFoundException;
183
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
184
+ exports.DeliveryDestinationType = {
185
+ KINESIS: "KINESIS",
186
+ };
187
+ exports.LogLevel = {
188
+ DEBUG: "DEBUG",
189
+ ERROR: "ERROR",
190
+ INFO: "INFO",
191
+ WARN: "WARN",
192
+ };
193
+ exports.Role = {
194
+ CONTROLLER: "CONTROLLER",
195
+ DEVICE: "DEVICE",
196
+ };
159
197
  class UnauthorizedException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
160
198
  name = "UnauthorizedException";
161
199
  $fault = "client";
@@ -172,10 +210,12 @@ class UnauthorizedException extends IoTManagedIntegrationsServiceException_1.IoT
172
210
  }
173
211
  exports.UnauthorizedException = UnauthorizedException;
174
212
  exports.EventType = {
213
+ ACCOUNT_ASSOCIATION: "ACCOUNT_ASSOCIATION",
175
214
  CONNECTOR_ASSOCIATION: "CONNECTOR_ASSOCIATION",
176
215
  CONNECTOR_ERROR_REPORT: "CONNECTOR_ERROR_REPORT",
177
216
  DEVICE_COMMAND: "DEVICE_COMMAND",
178
217
  DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST",
218
+ DEVICE_DISCOVERY_STATUS: "DEVICE_DISCOVERY_STATUS",
179
219
  DEVICE_EVENT: "DEVICE_EVENT",
180
220
  DEVICE_LIFE_CYCLE: "DEVICE_LIFE_CYCLE",
181
221
  DEVICE_OTA: "DEVICE_OTA",
@@ -205,8 +245,24 @@ exports.ProvisioningType = {
205
245
  FLEET_PROVISIONING: "FLEET_PROVISIONING",
206
246
  JITR: "JITR",
207
247
  };
248
+ class LimitExceededException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
249
+ name = "LimitExceededException";
250
+ $fault = "client";
251
+ Message;
252
+ constructor(opts) {
253
+ super({
254
+ name: "LimitExceededException",
255
+ $fault: "client",
256
+ ...opts,
257
+ });
258
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
259
+ this.Message = opts.Message;
260
+ }
261
+ }
262
+ exports.LimitExceededException = LimitExceededException;
208
263
  exports.DiscoveryType = {
209
264
  CLOUD: "CLOUD",
265
+ CUSTOM: "CUSTOM",
210
266
  ZIGBEE: "ZIGBEE",
211
267
  ZWAVE: "ZWAVE",
212
268
  };
@@ -216,6 +272,11 @@ exports.DeviceDiscoveryStatus = {
216
272
  SUCCEEDED: "SUCCEEDED",
217
273
  TIMED_OUT: "TIMED_OUT",
218
274
  };
275
+ exports.DiscoveryModification = {
276
+ DISCOVERED: "DISCOVERED",
277
+ NO_CHANGE: "NO_CHANGE",
278
+ UPDATED: "UPDATED",
279
+ };
219
280
  exports.DiscoveryAuthMaterialType = {
220
281
  ZWAVE_INSTALL_CODE: "ZWAVE_INSTALL_CODE",
221
282
  };
@@ -275,11 +336,6 @@ exports.OtaStatus = {
275
336
  IN_PROGRESS: "IN_PROGRESS",
276
337
  SCHEDULED: "SCHEDULED",
277
338
  };
278
- exports.SchemaVersionFormat = {
279
- AWS: "AWS",
280
- CONNECTOR: "CONNECTOR",
281
- ZCL: "ZCL",
282
- };
283
339
  exports.SchemaVersionType = {
284
340
  CAPABILITY: "capability",
285
341
  DEFINITION: "definition",
@@ -288,6 +344,21 @@ exports.SchemaVersionVisibility = {
288
344
  PRIVATE: "PRIVATE",
289
345
  PUBLIC: "PUBLIC",
290
346
  };
347
+ class InvalidRequestException extends IoTManagedIntegrationsServiceException_1.IoTManagedIntegrationsServiceException {
348
+ name = "InvalidRequestException";
349
+ $fault = "client";
350
+ Message;
351
+ constructor(opts) {
352
+ super({
353
+ name: "InvalidRequestException",
354
+ $fault: "client",
355
+ ...opts,
356
+ });
357
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
358
+ this.Message = opts.Message;
359
+ }
360
+ }
361
+ exports.InvalidRequestException = InvalidRequestException;
291
362
  exports.OtaTaskExecutionStatus = {
292
363
  CANCELED: "CANCELED",
293
364
  FAILED: "FAILED",
@@ -298,6 +369,27 @@ exports.OtaTaskExecutionStatus = {
298
369
  SUCCEEDED: "SUCCEEDED",
299
370
  TIMED_OUT: "TIMED_OUT",
300
371
  };
372
+ const CreateAccountAssociationRequestFilterSensitiveLog = (obj) => ({
373
+ ...obj,
374
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
375
+ });
376
+ exports.CreateAccountAssociationRequestFilterSensitiveLog = CreateAccountAssociationRequestFilterSensitiveLog;
377
+ const CreateAccountAssociationResponseFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ ...(obj.OAuthAuthorizationUrl && { OAuthAuthorizationUrl: smithy_client_1.SENSITIVE_STRING }),
380
+ });
381
+ exports.CreateAccountAssociationResponseFilterSensitiveLog = CreateAccountAssociationResponseFilterSensitiveLog;
382
+ const GetAccountAssociationResponseFilterSensitiveLog = (obj) => ({
383
+ ...obj,
384
+ ...(obj.OAuthAuthorizationUrl && { OAuthAuthorizationUrl: smithy_client_1.SENSITIVE_STRING }),
385
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
386
+ });
387
+ exports.GetAccountAssociationResponseFilterSensitiveLog = GetAccountAssociationResponseFilterSensitiveLog;
388
+ const StartAccountAssociationRefreshResponseFilterSensitiveLog = (obj) => ({
389
+ ...obj,
390
+ ...(obj.OAuthAuthorizationUrl && { OAuthAuthorizationUrl: smithy_client_1.SENSITIVE_STRING }),
391
+ });
392
+ exports.StartAccountAssociationRefreshResponseFilterSensitiveLog = StartAccountAssociationRefreshResponseFilterSensitiveLog;
301
393
  const CapabilityActionFilterSensitiveLog = (obj) => ({
302
394
  ...obj,
303
395
  ...(obj.parameters && { parameters: smithy_client_1.SENSITIVE_STRING }),
@@ -382,11 +474,31 @@ const GetDestinationResponseFilterSensitiveLog = (obj) => ({
382
474
  ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
383
475
  });
384
476
  exports.GetDestinationResponseFilterSensitiveLog = GetDestinationResponseFilterSensitiveLog;
477
+ const DeviceFilterSensitiveLog = (obj) => ({
478
+ ...obj,
479
+ ...(obj.ConnectorDeviceId && { ConnectorDeviceId: smithy_client_1.SENSITIVE_STRING }),
480
+ ...(obj.ConnectorDeviceName && { ConnectorDeviceName: smithy_client_1.SENSITIVE_STRING }),
481
+ });
482
+ exports.DeviceFilterSensitiveLog = DeviceFilterSensitiveLog;
385
483
  const GetDeviceDiscoveryResponseFilterSensitiveLog = (obj) => ({
386
484
  ...obj,
387
485
  ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
388
486
  });
389
487
  exports.GetDeviceDiscoveryResponseFilterSensitiveLog = GetDeviceDiscoveryResponseFilterSensitiveLog;
488
+ const DiscoveredDeviceSummaryFilterSensitiveLog = (obj) => ({
489
+ ...obj,
490
+ ...(obj.ConnectorDeviceId && { ConnectorDeviceId: smithy_client_1.SENSITIVE_STRING }),
491
+ ...(obj.ConnectorDeviceName && { ConnectorDeviceName: smithy_client_1.SENSITIVE_STRING }),
492
+ ...(obj.Brand && { Brand: smithy_client_1.SENSITIVE_STRING }),
493
+ ...(obj.Model && { Model: smithy_client_1.SENSITIVE_STRING }),
494
+ ...(obj.AuthenticationMaterial && { AuthenticationMaterial: smithy_client_1.SENSITIVE_STRING }),
495
+ });
496
+ exports.DiscoveredDeviceSummaryFilterSensitiveLog = DiscoveredDeviceSummaryFilterSensitiveLog;
497
+ const ListDiscoveredDevicesResponseFilterSensitiveLog = (obj) => ({
498
+ ...obj,
499
+ ...(obj.Items && { Items: obj.Items.map((item) => (0, exports.DiscoveredDeviceSummaryFilterSensitiveLog)(item)) }),
500
+ });
501
+ exports.ListDiscoveredDevicesResponseFilterSensitiveLog = ListDiscoveredDevicesResponseFilterSensitiveLog;
390
502
  const StartDeviceDiscoveryRequestFilterSensitiveLog = (obj) => ({
391
503
  ...obj,
392
504
  ...(obj.AuthenticationMaterial && { AuthenticationMaterial: smithy_client_1.SENSITIVE_STRING }),
@@ -427,6 +539,11 @@ const GetNotificationConfigurationResponseFilterSensitiveLog = (obj) => ({
427
539
  ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
428
540
  });
429
541
  exports.GetNotificationConfigurationResponseFilterSensitiveLog = GetNotificationConfigurationResponseFilterSensitiveLog;
542
+ const GetOtaTaskResponseFilterSensitiveLog = (obj) => ({
543
+ ...obj,
544
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
545
+ });
546
+ exports.GetOtaTaskResponseFilterSensitiveLog = GetOtaTaskResponseFilterSensitiveLog;
430
547
  const GetOtaTaskConfigurationResponseFilterSensitiveLog = (obj) => ({
431
548
  ...obj,
432
549
  ...(obj.Name && { Name: smithy_client_1.SENSITIVE_STRING }),
@@ -438,6 +555,11 @@ const GetProvisioningProfileResponseFilterSensitiveLog = (obj) => ({
438
555
  ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
439
556
  });
440
557
  exports.GetProvisioningProfileResponseFilterSensitiveLog = GetProvisioningProfileResponseFilterSensitiveLog;
558
+ const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
559
+ ...obj,
560
+ ...(obj.tags && { tags: smithy_client_1.SENSITIVE_STRING }),
561
+ });
562
+ exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
441
563
  const SendManagedThingCommandRequestFilterSensitiveLog = (obj) => ({
442
564
  ...obj,
443
565
  });
@@ -445,6 +567,7 @@ exports.SendManagedThingCommandRequestFilterSensitiveLog = SendManagedThingComma
445
567
  const ListManagedThingsRequestFilterSensitiveLog = (obj) => ({
446
568
  ...obj,
447
569
  ...(obj.OwnerFilter && { OwnerFilter: smithy_client_1.SENSITIVE_STRING }),
570
+ ...(obj.ConnectorDeviceIdFilter && { ConnectorDeviceIdFilter: smithy_client_1.SENSITIVE_STRING }),
448
571
  ...(obj.SerialNumberFilter && { SerialNumberFilter: smithy_client_1.SENSITIVE_STRING }),
449
572
  });
450
573
  exports.ListManagedThingsRequestFilterSensitiveLog = ListManagedThingsRequestFilterSensitiveLog;
@@ -482,3 +605,31 @@ const ListOtaTaskConfigurationsResponseFilterSensitiveLog = (obj) => ({
482
605
  ...(obj.Items && { Items: obj.Items.map((item) => (0, exports.OtaTaskConfigurationSummaryFilterSensitiveLog)(item)) }),
483
606
  });
484
607
  exports.ListOtaTaskConfigurationsResponseFilterSensitiveLog = ListOtaTaskConfigurationsResponseFilterSensitiveLog;
608
+ const MatterClusterFilterSensitiveLog = (obj) => ({
609
+ ...obj,
610
+ ...(obj.attributes && { attributes: smithy_client_1.SENSITIVE_STRING }),
611
+ ...(obj.commands && { commands: smithy_client_1.SENSITIVE_STRING }),
612
+ ...(obj.events && { events: smithy_client_1.SENSITIVE_STRING }),
613
+ });
614
+ exports.MatterClusterFilterSensitiveLog = MatterClusterFilterSensitiveLog;
615
+ const MatterEndpointFilterSensitiveLog = (obj) => ({
616
+ ...obj,
617
+ ...(obj.clusters && { clusters: obj.clusters.map((item) => (0, exports.MatterClusterFilterSensitiveLog)(item)) }),
618
+ });
619
+ exports.MatterEndpointFilterSensitiveLog = MatterEndpointFilterSensitiveLog;
620
+ const SendConnectorEventRequestFilterSensitiveLog = (obj) => ({
621
+ ...obj,
622
+ ...(obj.UserId && { UserId: smithy_client_1.SENSITIVE_STRING }),
623
+ ...(obj.OperationVersion && { OperationVersion: smithy_client_1.SENSITIVE_STRING }),
624
+ ...(obj.StatusCode && { StatusCode: smithy_client_1.SENSITIVE_STRING }),
625
+ ...(obj.Message && { Message: smithy_client_1.SENSITIVE_STRING }),
626
+ ...(obj.ConnectorDeviceId && { ConnectorDeviceId: smithy_client_1.SENSITIVE_STRING }),
627
+ ...(obj.Devices && { Devices: obj.Devices.map((item) => (0, exports.DeviceFilterSensitiveLog)(item)) }),
628
+ ...(obj.MatterEndpoint && { MatterEndpoint: (0, exports.MatterEndpointFilterSensitiveLog)(obj.MatterEndpoint) }),
629
+ });
630
+ exports.SendConnectorEventRequestFilterSensitiveLog = SendConnectorEventRequestFilterSensitiveLog;
631
+ const TagResourceRequestFilterSensitiveLog = (obj) => ({
632
+ ...obj,
633
+ ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
634
+ });
635
+ exports.TagResourceRequestFilterSensitiveLog = TagResourceRequestFilterSensitiveLog;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListAccountAssociations = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListAccountAssociationsCommand_1 = require("../commands/ListAccountAssociationsCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListAccountAssociations = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListAccountAssociationsCommand_1.ListAccountAssociationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListCloudConnectors = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListCloudConnectorsCommand_1 = require("../commands/ListCloudConnectorsCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListCloudConnectors = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListCloudConnectorsCommand_1.ListCloudConnectorsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListConnectorDestinations = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListConnectorDestinationsCommand_1 = require("../commands/ListConnectorDestinationsCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListConnectorDestinations = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListConnectorDestinationsCommand_1.ListConnectorDestinationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListDeviceDiscoveries = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListDeviceDiscoveriesCommand_1 = require("../commands/ListDeviceDiscoveriesCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListDeviceDiscoveries = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListDeviceDiscoveriesCommand_1.ListDeviceDiscoveriesCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListDiscoveredDevices = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListDiscoveredDevicesCommand_1 = require("../commands/ListDiscoveredDevicesCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListDiscoveredDevices = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListDiscoveredDevicesCommand_1.ListDiscoveredDevicesCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListManagedThingAccountAssociations = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListManagedThingAccountAssociationsCommand_1 = require("../commands/ListManagedThingAccountAssociationsCommand");
6
+ const IoTManagedIntegrationsClient_1 = require("../IoTManagedIntegrationsClient");
7
+ exports.paginateListManagedThingAccountAssociations = (0, core_1.createPaginator)(IoTManagedIntegrationsClient_1.IoTManagedIntegrationsClient, ListManagedThingAccountAssociationsCommand_1.ListManagedThingAccountAssociationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -2,9 +2,15 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./Interfaces"), exports);
5
+ tslib_1.__exportStar(require("./ListAccountAssociationsPaginator"), exports);
6
+ tslib_1.__exportStar(require("./ListCloudConnectorsPaginator"), exports);
7
+ tslib_1.__exportStar(require("./ListConnectorDestinationsPaginator"), exports);
5
8
  tslib_1.__exportStar(require("./ListCredentialLockersPaginator"), exports);
6
9
  tslib_1.__exportStar(require("./ListDestinationsPaginator"), exports);
10
+ tslib_1.__exportStar(require("./ListDeviceDiscoveriesPaginator"), exports);
11
+ tslib_1.__exportStar(require("./ListDiscoveredDevicesPaginator"), exports);
7
12
  tslib_1.__exportStar(require("./ListEventLogConfigurationsPaginator"), exports);
13
+ tslib_1.__exportStar(require("./ListManagedThingAccountAssociationsPaginator"), exports);
8
14
  tslib_1.__exportStar(require("./ListManagedThingSchemasPaginator"), exports);
9
15
  tslib_1.__exportStar(require("./ListManagedThingsPaginator"), exports);
10
16
  tslib_1.__exportStar(require("./ListNotificationConfigurationsPaginator"), exports);