@aws-sdk/client-iot-managed-integrations 3.934.0 → 3.935.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.
@@ -1,31 +1,5 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { DocumentType as __DocumentType } from "@smithy/types";
3
- import { IoTManagedIntegrationsServiceException as __BaseException } from "./IoTManagedIntegrationsServiceException";
4
- /**
5
- * @public
6
- * @enum
7
- */
8
- export declare const AbortCriteriaAction: {
9
- readonly CANCEL: "CANCEL";
10
- };
11
- /**
12
- * @public
13
- */
14
- export type AbortCriteriaAction = (typeof AbortCriteriaAction)[keyof typeof AbortCriteriaAction];
15
- /**
16
- * @public
17
- * @enum
18
- */
19
- export declare const AbortCriteriaFailureType: {
20
- readonly ALL: "ALL";
21
- readonly FAILED: "FAILED";
22
- readonly REJECTED: "REJECTED";
23
- readonly TIMED_OUT: "TIMED_OUT";
24
- };
25
- /**
26
- * @public
27
- */
28
- export type AbortCriteriaFailureType = (typeof AbortCriteriaFailureType)[keyof typeof AbortCriteriaFailureType];
2
+ import { AbortCriteriaAction, AbortCriteriaFailureType, AssociationState, AuthMaterialType, AuthType, CloudConnectorType, ConfigurationState, ConnectorEventOperation, DeliveryDestinationType, DeviceDiscoveryStatus, DisconnectReasonValue, DiscoveryAuthMaterialType, DiscoveryModification, DiscoveryType, EncryptionType, EndpointType, EventType, HubNetworkMode, LogLevel, OtaMechanism, OtaProtocol, OtaStatus, OtaTaskExecutionStatus, OtaType, ProvisioningStatus, ProvisioningType, RetryCriteriaFailureType, Role, SchedulingConfigEndBehavior, SchemaVersionFormat, SchemaVersionType, SchemaVersionVisibility, TokenEndpointAuthenticationScheme } from "./enums";
29
3
  /**
30
4
  * <p>Structure representing one abort config criteria.</p>
31
5
  * @public
@@ -52,34 +26,6 @@ export interface AbortConfigCriteria {
52
26
  */
53
27
  ThresholdPercentage?: number | undefined;
54
28
  }
55
- /**
56
- * <p>User is not authorized.</p>
57
- * @public
58
- */
59
- export declare class AccessDeniedException extends __BaseException {
60
- readonly name: "AccessDeniedException";
61
- readonly $fault: "client";
62
- Message?: string | undefined;
63
- /**
64
- * @internal
65
- */
66
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
67
- }
68
- /**
69
- * @public
70
- * @enum
71
- */
72
- export declare const AssociationState: {
73
- readonly ASSOCIATION_DELETING: "ASSOCIATION_DELETING";
74
- readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
75
- readonly ASSOCIATION_IN_PROGRESS: "ASSOCIATION_IN_PROGRESS";
76
- readonly ASSOCIATION_SUCCEEDED: "ASSOCIATION_SUCCEEDED";
77
- readonly REFRESH_TOKEN_EXPIRED: "REFRESH_TOKEN_EXPIRED";
78
- };
79
- /**
80
- * @public
81
- */
82
- export type AssociationState = (typeof AssociationState)[keyof typeof AssociationState];
83
29
  /**
84
30
  * <p>Structure containing information about an account association, including its identifier, state, and related metadata.</p>
85
31
  * @public
@@ -121,19 +67,6 @@ export interface AccountAssociationItem {
121
67
  */
122
68
  Arn?: string | undefined;
123
69
  }
124
- /**
125
- * <p>There is a conflict with the request.</p>
126
- * @public
127
- */
128
- export declare class ConflictException extends __BaseException {
129
- readonly name: "ConflictException";
130
- readonly $fault: "client";
131
- Message?: string | undefined;
132
- /**
133
- * @internal
134
- */
135
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
136
- }
137
70
  /**
138
71
  * @public
139
72
  */
@@ -189,94 +122,6 @@ export interface CreateAccountAssociationResponse {
189
122
  */
190
123
  Arn?: string | undefined;
191
124
  }
192
- /**
193
- * <p>Internal error from the service that indicates an unexpected error or that the service is unavailable.</p>
194
- * @public
195
- */
196
- export declare class InternalServerException extends __BaseException {
197
- readonly name: "InternalServerException";
198
- readonly $fault: "server";
199
- Message?: string | undefined;
200
- /**
201
- * @internal
202
- */
203
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
204
- }
205
- /**
206
- * <p>The specified resource does not exist.</p>
207
- * @public
208
- */
209
- export declare class ResourceNotFoundException extends __BaseException {
210
- readonly name: "ResourceNotFoundException";
211
- readonly $fault: "client";
212
- Message?: string | undefined;
213
- /**
214
- * Id of the affected resource
215
- * @public
216
- */
217
- ResourceId?: string | undefined;
218
- /**
219
- * Type of the affected resource
220
- * @public
221
- */
222
- ResourceType?: string | undefined;
223
- /**
224
- * @internal
225
- */
226
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
227
- }
228
- /**
229
- * <p>The service is temporarily unavailable.</p>
230
- * @public
231
- */
232
- export declare class ServiceUnavailableException extends __BaseException {
233
- readonly name: "ServiceUnavailableException";
234
- readonly $fault: "server";
235
- Message?: string | undefined;
236
- /**
237
- * @internal
238
- */
239
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
240
- }
241
- /**
242
- * <p>The rate exceeds the limit.</p>
243
- * @public
244
- */
245
- export declare class ThrottlingException extends __BaseException {
246
- readonly name: "ThrottlingException";
247
- readonly $fault: "client";
248
- Message?: string | undefined;
249
- /**
250
- * @internal
251
- */
252
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
253
- }
254
- /**
255
- * <p>You are not authorized to perform this operation.</p>
256
- * @public
257
- */
258
- export declare class UnauthorizedException extends __BaseException {
259
- readonly name: "UnauthorizedException";
260
- readonly $fault: "client";
261
- Message?: string | undefined;
262
- /**
263
- * @internal
264
- */
265
- constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
266
- }
267
- /**
268
- * <p>A validation error occurred when performing the API request.</p>
269
- * @public
270
- */
271
- export declare class ValidationException extends __BaseException {
272
- readonly name: "ValidationException";
273
- readonly $fault: "client";
274
- Message?: string | undefined;
275
- /**
276
- * @internal
277
- */
278
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
279
- }
280
125
  /**
281
126
  * @public
282
127
  */
@@ -438,18 +283,6 @@ export interface ProactiveRefreshTokenRenewal {
438
283
  */
439
284
  DaysBeforeRenewal?: number | undefined;
440
285
  }
441
- /**
442
- * @public
443
- * @enum
444
- */
445
- export declare const TokenEndpointAuthenticationScheme: {
446
- readonly HTTP_BASIC: "HTTP_BASIC";
447
- readonly REQUEST_BODY_CREDENTIALS: "REQUEST_BODY_CREDENTIALS";
448
- };
449
- /**
450
- * @public
451
- */
452
- export type TokenEndpointAuthenticationScheme = (typeof TokenEndpointAuthenticationScheme)[keyof typeof TokenEndpointAuthenticationScheme];
453
286
  /**
454
287
  * <p>Configuration details for OAuth authentication with a third-party service.</p>
455
288
  * @public
@@ -524,32 +357,6 @@ export interface AuthConfigUpdate {
524
357
  */
525
358
  oAuthUpdate?: OAuthUpdate | undefined;
526
359
  }
527
- /**
528
- * @public
529
- * @enum
530
- */
531
- export declare const AuthMaterialType: {
532
- readonly CUSTOM_PROTOCOL_QR_BAR_CODE: "CUSTOM_PROTOCOL_QR_BAR_CODE";
533
- readonly DISCOVERED_DEVICE: "DISCOVERED_DEVICE";
534
- readonly WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE";
535
- readonly ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE";
536
- readonly ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE";
537
- };
538
- /**
539
- * @public
540
- */
541
- export type AuthMaterialType = (typeof AuthMaterialType)[keyof typeof AuthMaterialType];
542
- /**
543
- * @public
544
- * @enum
545
- */
546
- export declare const AuthType: {
547
- readonly OAUTH: "OAUTH";
548
- };
549
- /**
550
- * @public
551
- */
552
- export type AuthType = (typeof AuthType)[keyof typeof AuthType];
553
360
  /**
554
361
  * <p>Action for an Amazon Web Services capability, containing the action parameters for control.</p>
555
362
  * @public
@@ -654,19 +461,6 @@ export interface CapabilityReport {
654
461
  */
655
462
  endpoints: CapabilityReportEndpoint[] | undefined;
656
463
  }
657
- /**
658
- * @public
659
- * @enum
660
- */
661
- export declare const SchemaVersionFormat: {
662
- readonly AWS: "AWS";
663
- readonly CONNECTOR: "CONNECTOR";
664
- readonly ZCL: "ZCL";
665
- };
666
- /**
667
- * @public
668
- */
669
- export type SchemaVersionFormat = (typeof SchemaVersionFormat)[keyof typeof SchemaVersionFormat];
670
464
  /**
671
465
  * <p>Structure representing a capability schema item that defines the functionality and features supported by a managed thing.</p>
672
466
  * @public
@@ -720,17 +514,6 @@ export interface EndpointConfig {
720
514
  */
721
515
  lambda?: LambdaConfig | undefined;
722
516
  }
723
- /**
724
- * @public
725
- * @enum
726
- */
727
- export declare const EndpointType: {
728
- readonly LAMBDA: "LAMBDA";
729
- };
730
- /**
731
- * @public
732
- */
733
- export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
734
517
  /**
735
518
  * @public
736
519
  */
@@ -791,18 +574,6 @@ export interface GetCloudConnectorRequest {
791
574
  */
792
575
  Identifier: string | undefined;
793
576
  }
794
- /**
795
- * @public
796
- * @enum
797
- */
798
- export declare const CloudConnectorType: {
799
- readonly LISTED: "LISTED";
800
- readonly UNLISTED: "UNLISTED";
801
- };
802
- /**
803
- * @public
804
- */
805
- export type CloudConnectorType = (typeof CloudConnectorType)[keyof typeof CloudConnectorType];
806
577
  /**
807
578
  * @public
808
579
  */
@@ -992,19 +763,6 @@ export interface ConfigurationError {
992
763
  */
993
764
  message?: string | undefined;
994
765
  }
995
- /**
996
- * @public
997
- * @enum
998
- */
999
- export declare const ConfigurationState: {
1000
- readonly ENABLED: "ENABLED";
1001
- readonly UPDATE_FAILED: "UPDATE_FAILED";
1002
- readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
1003
- };
1004
- /**
1005
- * @public
1006
- */
1007
- export type ConfigurationState = (typeof ConfigurationState)[keyof typeof ConfigurationState];
1008
766
  /**
1009
767
  * <p>Provides the status of the default encryption configuration for an Amazon Web Services account.</p>
1010
768
  * @public
@@ -1248,20 +1006,6 @@ export interface UpdateConnectorDestinationRequest {
1248
1006
  */
1249
1007
  SecretsManager?: SecretsManager | undefined;
1250
1008
  }
1251
- /**
1252
- * @public
1253
- * @enum
1254
- */
1255
- export declare const ConnectorEventOperation: {
1256
- readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
1257
- readonly DEVICE_COMMAND_RESPONSE: "DEVICE_COMMAND_RESPONSE";
1258
- readonly DEVICE_DISCOVERY: "DEVICE_DISCOVERY";
1259
- readonly DEVICE_EVENT: "DEVICE_EVENT";
1260
- };
1261
- /**
1262
- * @public
1263
- */
1264
- export type ConnectorEventOperation = (typeof ConnectorEventOperation)[keyof typeof ConnectorEventOperation];
1265
1009
  /**
1266
1010
  * @public
1267
1011
  */
@@ -1302,30 +1046,6 @@ export interface CreateCredentialLockerResponse {
1302
1046
  */
1303
1047
  CreatedAt?: Date | undefined;
1304
1048
  }
1305
- /**
1306
- * <p>The service quota has been exceeded for this request.</p>
1307
- * @public
1308
- */
1309
- export declare class ServiceQuotaExceededException extends __BaseException {
1310
- readonly name: "ServiceQuotaExceededException";
1311
- readonly $fault: "client";
1312
- Message?: string | undefined;
1313
- /**
1314
- * @internal
1315
- */
1316
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
1317
- }
1318
- /**
1319
- * @public
1320
- * @enum
1321
- */
1322
- export declare const DeliveryDestinationType: {
1323
- readonly KINESIS: "KINESIS";
1324
- };
1325
- /**
1326
- * @public
1327
- */
1328
- export type DeliveryDestinationType = (typeof DeliveryDestinationType)[keyof typeof DeliveryDestinationType];
1329
1049
  /**
1330
1050
  * @public
1331
1051
  */
@@ -1378,20 +1098,6 @@ export interface CreateDestinationResponse {
1378
1098
  */
1379
1099
  Name?: string | undefined;
1380
1100
  }
1381
- /**
1382
- * @public
1383
- * @enum
1384
- */
1385
- export declare const LogLevel: {
1386
- readonly DEBUG: "DEBUG";
1387
- readonly ERROR: "ERROR";
1388
- readonly INFO: "INFO";
1389
- readonly WARN: "WARN";
1390
- };
1391
- /**
1392
- * @public
1393
- */
1394
- export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
1395
1101
  /**
1396
1102
  * @public
1397
1103
  */
@@ -1427,18 +1133,6 @@ export interface CreateEventLogConfigurationResponse {
1427
1133
  */
1428
1134
  Id?: string | undefined;
1429
1135
  }
1430
- /**
1431
- * @public
1432
- * @enum
1433
- */
1434
- export declare const Role: {
1435
- readonly CONTROLLER: "CONTROLLER";
1436
- readonly DEVICE: "DEVICE";
1437
- };
1438
- /**
1439
- * @public
1440
- */
1441
- export type Role = (typeof Role)[keyof typeof Role];
1442
1136
  /**
1443
1137
  * @public
1444
1138
  */
@@ -1544,26 +1238,6 @@ export interface CreateManagedThingResponse {
1544
1238
  */
1545
1239
  CreatedAt?: Date | undefined;
1546
1240
  }
1547
- /**
1548
- * @public
1549
- * @enum
1550
- */
1551
- export declare const EventType: {
1552
- readonly ACCOUNT_ASSOCIATION: "ACCOUNT_ASSOCIATION";
1553
- readonly CONNECTOR_ASSOCIATION: "CONNECTOR_ASSOCIATION";
1554
- readonly CONNECTOR_ERROR_REPORT: "CONNECTOR_ERROR_REPORT";
1555
- readonly DEVICE_COMMAND: "DEVICE_COMMAND";
1556
- readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
1557
- readonly DEVICE_DISCOVERY_STATUS: "DEVICE_DISCOVERY_STATUS";
1558
- readonly DEVICE_EVENT: "DEVICE_EVENT";
1559
- readonly DEVICE_LIFE_CYCLE: "DEVICE_LIFE_CYCLE";
1560
- readonly DEVICE_OTA: "DEVICE_OTA";
1561
- readonly DEVICE_STATE: "DEVICE_STATE";
1562
- };
1563
- /**
1564
- * @public
1565
- */
1566
- export type EventType = (typeof EventType)[keyof typeof EventType];
1567
1241
  /**
1568
1242
  * @public
1569
1243
  */
@@ -1601,30 +1275,6 @@ export interface CreateNotificationConfigurationResponse {
1601
1275
  */
1602
1276
  EventType?: EventType | undefined;
1603
1277
  }
1604
- /**
1605
- * @public
1606
- * @enum
1607
- */
1608
- export declare const OtaMechanism: {
1609
- readonly PUSH: "PUSH";
1610
- };
1611
- /**
1612
- * @public
1613
- */
1614
- export type OtaMechanism = (typeof OtaMechanism)[keyof typeof OtaMechanism];
1615
- /**
1616
- * @public
1617
- * @enum
1618
- */
1619
- export declare const SchedulingConfigEndBehavior: {
1620
- readonly CANCEL: "CANCEL";
1621
- readonly FORCE_CANCEL: "FORCE_CANCEL";
1622
- readonly STOP_ROLLOUT: "STOP_ROLLOUT";
1623
- };
1624
- /**
1625
- * @public
1626
- */
1627
- export type SchedulingConfigEndBehavior = (typeof SchedulingConfigEndBehavior)[keyof typeof SchedulingConfigEndBehavior];
1628
1278
  /**
1629
1279
  * <p>Structure representing scheduling maintenance window.</p>
1630
1280
  * @public
@@ -1667,19 +1317,6 @@ export interface OtaTaskSchedulingConfig {
1667
1317
  */
1668
1318
  StartTime?: string | undefined;
1669
1319
  }
1670
- /**
1671
- * @public
1672
- * @enum
1673
- */
1674
- export declare const RetryCriteriaFailureType: {
1675
- readonly ALL: "ALL";
1676
- readonly FAILED: "FAILED";
1677
- readonly TIMED_OUT: "TIMED_OUT";
1678
- };
1679
- /**
1680
- * @public
1681
- */
1682
- export type RetryCriteriaFailureType = (typeof RetryCriteriaFailureType)[keyof typeof RetryCriteriaFailureType];
1683
1320
  /**
1684
1321
  * <p>Structure representing one retry config criteria.</p>
1685
1322
  * @public
@@ -1707,29 +1344,6 @@ export interface OtaTaskExecutionRetryConfig {
1707
1344
  */
1708
1345
  RetryConfigCriteria?: RetryConfigCriteria[] | undefined;
1709
1346
  }
1710
- /**
1711
- * @public
1712
- * @enum
1713
- */
1714
- export declare const OtaType: {
1715
- readonly CONTINUOUS: "CONTINUOUS";
1716
- readonly ONE_TIME: "ONE_TIME";
1717
- };
1718
- /**
1719
- * @public
1720
- */
1721
- export type OtaType = (typeof OtaType)[keyof typeof OtaType];
1722
- /**
1723
- * @public
1724
- * @enum
1725
- */
1726
- export declare const OtaProtocol: {
1727
- readonly HTTP: "HTTP";
1728
- };
1729
- /**
1730
- * @public
1731
- */
1732
- export type OtaProtocol = (typeof OtaProtocol)[keyof typeof OtaProtocol];
1733
1347
  /**
1734
1348
  * @public
1735
1349
  */
@@ -1946,18 +1560,6 @@ export interface CreateOtaTaskConfigurationResponse {
1946
1560
  */
1947
1561
  TaskConfigurationId?: string | undefined;
1948
1562
  }
1949
- /**
1950
- * @public
1951
- * @enum
1952
- */
1953
- export declare const ProvisioningType: {
1954
- readonly FLEET_PROVISIONING: "FLEET_PROVISIONING";
1955
- readonly JITR: "JITR";
1956
- };
1957
- /**
1958
- * @public
1959
- */
1960
- export type ProvisioningType = (typeof ProvisioningType)[keyof typeof ProvisioningType];
1961
1563
  /**
1962
1564
  * @public
1963
1565
  */
@@ -2184,19 +1786,6 @@ export interface DeleteOtaTaskRequest {
2184
1786
  */
2185
1787
  Identifier: string | undefined;
2186
1788
  }
2187
- /**
2188
- * <p>The request exceeds a service limit or quota. Adjust your request parameters and try again.</p>
2189
- * @public
2190
- */
2191
- export declare class LimitExceededException extends __BaseException {
2192
- readonly name: "LimitExceededException";
2193
- readonly $fault: "client";
2194
- Message?: string | undefined;
2195
- /**
2196
- * @internal
2197
- */
2198
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
2199
- }
2200
1789
  /**
2201
1790
  * @public
2202
1791
  */
@@ -2551,34 +2140,6 @@ export interface Device {
2551
2140
  */
2552
2141
  DeviceMetadata?: __DocumentType | undefined;
2553
2142
  }
2554
- /**
2555
- * @public
2556
- * @enum
2557
- */
2558
- export declare const DiscoveryType: {
2559
- readonly CLOUD: "CLOUD";
2560
- readonly CUSTOM: "CUSTOM";
2561
- readonly ZIGBEE: "ZIGBEE";
2562
- readonly ZWAVE: "ZWAVE";
2563
- };
2564
- /**
2565
- * @public
2566
- */
2567
- export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
2568
- /**
2569
- * @public
2570
- * @enum
2571
- */
2572
- export declare const DeviceDiscoveryStatus: {
2573
- readonly FAILED: "FAILED";
2574
- readonly RUNNING: "RUNNING";
2575
- readonly SUCCEEDED: "SUCCEEDED";
2576
- readonly TIMED_OUT: "TIMED_OUT";
2577
- };
2578
- /**
2579
- * @public
2580
- */
2581
- export type DeviceDiscoveryStatus = (typeof DeviceDiscoveryStatus)[keyof typeof DeviceDiscoveryStatus];
2582
2143
  /**
2583
2144
  * <p>Structure containing summary information about a device discovery job, including its identifier, type, and status.</p>
2584
2145
  * @public
@@ -2729,19 +2290,6 @@ export interface ListDiscoveredDevicesRequest {
2729
2290
  */
2730
2291
  MaxResults?: number | undefined;
2731
2292
  }
2732
- /**
2733
- * @public
2734
- * @enum
2735
- */
2736
- export declare const DiscoveryModification: {
2737
- readonly DISCOVERED: "DISCOVERED";
2738
- readonly NO_CHANGE: "NO_CHANGE";
2739
- readonly UPDATED: "UPDATED";
2740
- };
2741
- /**
2742
- * @public
2743
- */
2744
- export type DiscoveryModification = (typeof DiscoveryModification)[keyof typeof DiscoveryModification];
2745
2293
  /**
2746
2294
  * <p>Structure containing summary information about a device discovered during a device discovery job.</p>
2747
2295
  * @public
@@ -2808,17 +2356,6 @@ export interface ListDiscoveredDevicesResponse {
2808
2356
  */
2809
2357
  NextToken?: string | undefined;
2810
2358
  }
2811
- /**
2812
- * @public
2813
- * @enum
2814
- */
2815
- export declare const DiscoveryAuthMaterialType: {
2816
- readonly ZWAVE_INSTALL_CODE: "ZWAVE_INSTALL_CODE";
2817
- };
2818
- /**
2819
- * @public
2820
- */
2821
- export type DiscoveryAuthMaterialType = (typeof DiscoveryAuthMaterialType)[keyof typeof DiscoveryAuthMaterialType];
2822
2359
  /**
2823
2360
  * @public
2824
2361
  */
@@ -2888,42 +2425,6 @@ export interface StartDeviceDiscoveryResponse {
2888
2425
  */
2889
2426
  StartedAt?: Date | undefined;
2890
2427
  }
2891
- /**
2892
- * @public
2893
- * @enum
2894
- */
2895
- export declare const DisconnectReasonValue: {
2896
- readonly AUTH_ERROR: "AUTH_ERROR";
2897
- readonly CLIENT_ERROR: "CLIENT_ERROR";
2898
- readonly CLIENT_INITIATED_DISCONNECT: "CLIENT_INITIATED_DISCONNECT";
2899
- readonly CONNECTION_LOST: "CONNECTION_LOST";
2900
- readonly CUSTOMAUTH_TTL_EXPIRATION: "CUSTOMAUTH_TTL_EXPIRATION";
2901
- readonly DUPLICATE_CLIENTID: "DUPLICATE_CLIENTID";
2902
- readonly FORBIDDEN_ACCESS: "FORBIDDEN_ACCESS";
2903
- readonly MQTT_KEEP_ALIVE_TIMEOUT: "MQTT_KEEP_ALIVE_TIMEOUT";
2904
- readonly NONE: "NONE";
2905
- readonly SERVER_ERROR: "SERVER_ERROR";
2906
- readonly SERVER_INITIATED_DISCONNECT: "SERVER_INITIATED_DISCONNECT";
2907
- readonly THROTTLED: "THROTTLED";
2908
- readonly UNKNOWN: "UNKNOWN";
2909
- readonly WEBSOCKET_TTL_EXPIRATION: "WEBSOCKET_TTL_EXPIRATION";
2910
- };
2911
- /**
2912
- * @public
2913
- */
2914
- export type DisconnectReasonValue = (typeof DisconnectReasonValue)[keyof typeof DisconnectReasonValue];
2915
- /**
2916
- * @public
2917
- * @enum
2918
- */
2919
- export declare const EncryptionType: {
2920
- readonly CUSTOMER_KEY_ENCRYPTION: "CUSTOMER_KEY_ENCRYPTION";
2921
- readonly MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION: "MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION";
2922
- };
2923
- /**
2924
- * @public
2925
- */
2926
- export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
2927
2428
  /**
2928
2429
  * <p>List of event log configurations.</p>
2929
2430
  * @public
@@ -3070,19 +2571,6 @@ export interface GetDefaultEncryptionConfigurationResponse {
3070
2571
  */
3071
2572
  kmsKeyArn?: string | undefined;
3072
2573
  }
3073
- /**
3074
- * <p>An unexpected error has occurred.</p>
3075
- * @public
3076
- */
3077
- export declare class InternalFailureException extends __BaseException {
3078
- readonly name: "InternalFailureException";
3079
- readonly $fault: "server";
3080
- Message?: string | undefined;
3081
- /**
3082
- * @internal
3083
- */
3084
- constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
3085
- }
3086
2574
  /**
3087
2575
  * @public
3088
2576
  */
@@ -3113,36 +2601,6 @@ export interface GetManagedThingRequest {
3113
2601
  */
3114
2602
  Identifier: string | undefined;
3115
2603
  }
3116
- /**
3117
- * @public
3118
- * @enum
3119
- */
3120
- export declare const HubNetworkMode: {
3121
- readonly NETWORK_WIDE_EXCLUSION: "NETWORK_WIDE_EXCLUSION";
3122
- readonly STANDARD: "STANDARD";
3123
- };
3124
- /**
3125
- * @public
3126
- */
3127
- export type HubNetworkMode = (typeof HubNetworkMode)[keyof typeof HubNetworkMode];
3128
- /**
3129
- * @public
3130
- * @enum
3131
- */
3132
- export declare const ProvisioningStatus: {
3133
- readonly ACTIVATED: "ACTIVATED";
3134
- readonly DELETED: "DELETED";
3135
- readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
3136
- readonly DELETION_FAILED: "DELETION_FAILED";
3137
- readonly DISCOVERED: "DISCOVERED";
3138
- readonly ISOLATED: "ISOLATED";
3139
- readonly PRE_ASSOCIATED: "PRE_ASSOCIATED";
3140
- readonly UNASSOCIATED: "UNASSOCIATED";
3141
- };
3142
- /**
3143
- * @public
3144
- */
3145
- export type ProvisioningStatus = (typeof ProvisioningStatus)[keyof typeof ProvisioningStatus];
3146
2604
  /**
3147
2605
  * @public
3148
2606
  */
@@ -3509,21 +2967,6 @@ export interface GetOtaTaskRequest {
3509
2967
  */
3510
2968
  Identifier: string | undefined;
3511
2969
  }
3512
- /**
3513
- * @public
3514
- * @enum
3515
- */
3516
- export declare const OtaStatus: {
3517
- readonly CANCELED: "CANCELED";
3518
- readonly COMPLETED: "COMPLETED";
3519
- readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
3520
- readonly IN_PROGRESS: "IN_PROGRESS";
3521
- readonly SCHEDULED: "SCHEDULED";
3522
- };
3523
- /**
3524
- * @public
3525
- */
3526
- export type OtaStatus = (typeof OtaStatus)[keyof typeof OtaStatus];
3527
2970
  /**
3528
2971
  * <p>Details about the over-the-air (OTA) task process.</p>
3529
2972
  * @public
@@ -3821,18 +3264,6 @@ export interface GetRuntimeLogConfigurationResponse {
3821
3264
  */
3822
3265
  RuntimeLogConfigurations?: RuntimeLogConfigurations | undefined;
3823
3266
  }
3824
- /**
3825
- * @public
3826
- * @enum
3827
- */
3828
- export declare const SchemaVersionType: {
3829
- readonly CAPABILITY: "capability";
3830
- readonly DEFINITION: "definition";
3831
- };
3832
- /**
3833
- * @public
3834
- */
3835
- export type SchemaVersionType = (typeof SchemaVersionType)[keyof typeof SchemaVersionType];
3836
3267
  /**
3837
3268
  * @public
3838
3269
  */
@@ -3853,18 +3284,6 @@ export interface GetSchemaVersionRequest {
3853
3284
  */
3854
3285
  Format?: SchemaVersionFormat | undefined;
3855
3286
  }
3856
- /**
3857
- * @public
3858
- * @enum
3859
- */
3860
- export declare const SchemaVersionVisibility: {
3861
- readonly PRIVATE: "PRIVATE";
3862
- readonly PUBLIC: "PUBLIC";
3863
- };
3864
- /**
3865
- * @public
3866
- */
3867
- export type SchemaVersionVisibility = (typeof SchemaVersionVisibility)[keyof typeof SchemaVersionVisibility];
3868
3287
  /**
3869
3288
  * @public
3870
3289
  */
@@ -3925,19 +3344,6 @@ export interface PutHubConfigurationResponse {
3925
3344
  */
3926
3345
  HubTokenTimerExpirySettingInSeconds?: number | undefined;
3927
3346
  }
3928
- /**
3929
- * <p>The request is not valid.</p>
3930
- * @public
3931
- */
3932
- export declare class InvalidRequestException extends __BaseException {
3933
- readonly name: "InvalidRequestException";
3934
- readonly $fault: "client";
3935
- Message?: string | undefined;
3936
- /**
3937
- * @internal
3938
- */
3939
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
3940
- }
3941
3347
  /**
3942
3348
  * @public
3943
3349
  */
@@ -4574,24 +3980,6 @@ export interface ListOtaTaskExecutionsRequest {
4574
3980
  */
4575
3981
  MaxResults?: number | undefined;
4576
3982
  }
4577
- /**
4578
- * @public
4579
- * @enum
4580
- */
4581
- export declare const OtaTaskExecutionStatus: {
4582
- readonly CANCELED: "CANCELED";
4583
- readonly FAILED: "FAILED";
4584
- readonly IN_PROGRESS: "IN_PROGRESS";
4585
- readonly QUEUED: "QUEUED";
4586
- readonly REJECTED: "REJECTED";
4587
- readonly REMOVED: "REMOVED";
4588
- readonly SUCCEEDED: "SUCCEEDED";
4589
- readonly TIMED_OUT: "TIMED_OUT";
4590
- };
4591
- /**
4592
- * @public
4593
- */
4594
- export type OtaTaskExecutionStatus = (typeof OtaTaskExecutionStatus)[keyof typeof OtaTaskExecutionStatus];
4595
3983
  /**
4596
3984
  * <p>Structure representing one over-the-air (OTA) task execution summary.</p>
4597
3985
  * @public