@aws-sdk/client-iot-managed-integrations 3.934.0 → 3.936.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.
- package/dist-cjs/index.js +182 -181
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +181 -0
- package/dist-es/models/errors.js +173 -0
- package/dist-es/models/models_0.js +1 -354
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +445 -0
- package/dist-types/models/errors.d.ts +168 -0
- package/dist-types/models/models_0.d.ts +1 -613
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +237 -0
- package/dist-types/ts3.4/models/errors.d.ts +98 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -335
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,42 +1,45 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
import {
|
|
3
|
+
AbortCriteriaAction,
|
|
4
|
+
AbortCriteriaFailureType,
|
|
5
|
+
AssociationState,
|
|
6
|
+
AuthMaterialType,
|
|
7
|
+
AuthType,
|
|
8
|
+
CloudConnectorType,
|
|
9
|
+
ConfigurationState,
|
|
10
|
+
ConnectorEventOperation,
|
|
11
|
+
DeliveryDestinationType,
|
|
12
|
+
DeviceDiscoveryStatus,
|
|
13
|
+
DisconnectReasonValue,
|
|
14
|
+
DiscoveryAuthMaterialType,
|
|
15
|
+
DiscoveryModification,
|
|
16
|
+
DiscoveryType,
|
|
17
|
+
EncryptionType,
|
|
18
|
+
EndpointType,
|
|
19
|
+
EventType,
|
|
20
|
+
HubNetworkMode,
|
|
21
|
+
LogLevel,
|
|
22
|
+
OtaMechanism,
|
|
23
|
+
OtaProtocol,
|
|
24
|
+
OtaStatus,
|
|
25
|
+
OtaTaskExecutionStatus,
|
|
26
|
+
OtaType,
|
|
27
|
+
ProvisioningStatus,
|
|
28
|
+
ProvisioningType,
|
|
29
|
+
RetryCriteriaFailureType,
|
|
30
|
+
Role,
|
|
31
|
+
SchedulingConfigEndBehavior,
|
|
32
|
+
SchemaVersionFormat,
|
|
33
|
+
SchemaVersionType,
|
|
34
|
+
SchemaVersionVisibility,
|
|
35
|
+
TokenEndpointAuthenticationScheme,
|
|
36
|
+
} from "./enums";
|
|
17
37
|
export interface AbortConfigCriteria {
|
|
18
38
|
Action?: AbortCriteriaAction | undefined;
|
|
19
39
|
FailureType?: AbortCriteriaFailureType | undefined;
|
|
20
40
|
MinNumberOfExecutedThings?: number | undefined;
|
|
21
41
|
ThresholdPercentage?: number | undefined;
|
|
22
42
|
}
|
|
23
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
24
|
-
readonly name: "AccessDeniedException";
|
|
25
|
-
readonly $fault: "client";
|
|
26
|
-
Message?: string | undefined;
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
29
|
-
);
|
|
30
|
-
}
|
|
31
|
-
export declare const AssociationState: {
|
|
32
|
-
readonly ASSOCIATION_DELETING: "ASSOCIATION_DELETING";
|
|
33
|
-
readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
|
|
34
|
-
readonly ASSOCIATION_IN_PROGRESS: "ASSOCIATION_IN_PROGRESS";
|
|
35
|
-
readonly ASSOCIATION_SUCCEEDED: "ASSOCIATION_SUCCEEDED";
|
|
36
|
-
readonly REFRESH_TOKEN_EXPIRED: "REFRESH_TOKEN_EXPIRED";
|
|
37
|
-
};
|
|
38
|
-
export type AssociationState =
|
|
39
|
-
(typeof AssociationState)[keyof typeof AssociationState];
|
|
40
43
|
export interface AccountAssociationItem {
|
|
41
44
|
AccountAssociationId: string | undefined;
|
|
42
45
|
AssociationState: AssociationState | undefined;
|
|
@@ -46,12 +49,6 @@ export interface AccountAssociationItem {
|
|
|
46
49
|
Description?: string | undefined;
|
|
47
50
|
Arn?: string | undefined;
|
|
48
51
|
}
|
|
49
|
-
export declare class ConflictException extends __BaseException {
|
|
50
|
-
readonly name: "ConflictException";
|
|
51
|
-
readonly $fault: "client";
|
|
52
|
-
Message?: string | undefined;
|
|
53
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
54
|
-
}
|
|
55
52
|
export interface CreateAccountAssociationRequest {
|
|
56
53
|
ClientToken?: string | undefined;
|
|
57
54
|
ConnectorDestinationId: string | undefined;
|
|
@@ -65,56 +62,6 @@ export interface CreateAccountAssociationResponse {
|
|
|
65
62
|
AssociationState: AssociationState | undefined;
|
|
66
63
|
Arn?: string | undefined;
|
|
67
64
|
}
|
|
68
|
-
export declare class InternalServerException extends __BaseException {
|
|
69
|
-
readonly name: "InternalServerException";
|
|
70
|
-
readonly $fault: "server";
|
|
71
|
-
Message?: string | undefined;
|
|
72
|
-
constructor(
|
|
73
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
74
|
-
);
|
|
75
|
-
}
|
|
76
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
77
|
-
readonly name: "ResourceNotFoundException";
|
|
78
|
-
readonly $fault: "client";
|
|
79
|
-
Message?: string | undefined;
|
|
80
|
-
ResourceId?: string | undefined;
|
|
81
|
-
ResourceType?: string | undefined;
|
|
82
|
-
constructor(
|
|
83
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
87
|
-
readonly name: "ServiceUnavailableException";
|
|
88
|
-
readonly $fault: "server";
|
|
89
|
-
Message?: string | undefined;
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
export declare class ThrottlingException extends __BaseException {
|
|
95
|
-
readonly name: "ThrottlingException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
Message?: string | undefined;
|
|
98
|
-
constructor(
|
|
99
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
100
|
-
);
|
|
101
|
-
}
|
|
102
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
103
|
-
readonly name: "UnauthorizedException";
|
|
104
|
-
readonly $fault: "client";
|
|
105
|
-
Message?: string | undefined;
|
|
106
|
-
constructor(
|
|
107
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
108
|
-
);
|
|
109
|
-
}
|
|
110
|
-
export declare class ValidationException extends __BaseException {
|
|
111
|
-
readonly name: "ValidationException";
|
|
112
|
-
readonly $fault: "client";
|
|
113
|
-
Message?: string | undefined;
|
|
114
|
-
constructor(
|
|
115
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
116
|
-
);
|
|
117
|
-
}
|
|
118
65
|
export interface DeleteAccountAssociationRequest {
|
|
119
66
|
AccountAssociationId: string | undefined;
|
|
120
67
|
}
|
|
@@ -156,12 +103,6 @@ export interface ProactiveRefreshTokenRenewal {
|
|
|
156
103
|
enabled?: boolean | undefined;
|
|
157
104
|
DaysBeforeRenewal?: number | undefined;
|
|
158
105
|
}
|
|
159
|
-
export declare const TokenEndpointAuthenticationScheme: {
|
|
160
|
-
readonly HTTP_BASIC: "HTTP_BASIC";
|
|
161
|
-
readonly REQUEST_BODY_CREDENTIALS: "REQUEST_BODY_CREDENTIALS";
|
|
162
|
-
};
|
|
163
|
-
export type TokenEndpointAuthenticationScheme =
|
|
164
|
-
(typeof TokenEndpointAuthenticationScheme)[keyof typeof TokenEndpointAuthenticationScheme];
|
|
165
106
|
export interface OAuthConfig {
|
|
166
107
|
authUrl: string | undefined;
|
|
167
108
|
tokenUrl: string | undefined;
|
|
@@ -182,19 +123,6 @@ export interface OAuthUpdate {
|
|
|
182
123
|
export interface AuthConfigUpdate {
|
|
183
124
|
oAuthUpdate?: OAuthUpdate | undefined;
|
|
184
125
|
}
|
|
185
|
-
export declare const AuthMaterialType: {
|
|
186
|
-
readonly CUSTOM_PROTOCOL_QR_BAR_CODE: "CUSTOM_PROTOCOL_QR_BAR_CODE";
|
|
187
|
-
readonly DISCOVERED_DEVICE: "DISCOVERED_DEVICE";
|
|
188
|
-
readonly WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE";
|
|
189
|
-
readonly ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE";
|
|
190
|
-
readonly ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE";
|
|
191
|
-
};
|
|
192
|
-
export type AuthMaterialType =
|
|
193
|
-
(typeof AuthMaterialType)[keyof typeof AuthMaterialType];
|
|
194
|
-
export declare const AuthType: {
|
|
195
|
-
readonly OAUTH: "OAUTH";
|
|
196
|
-
};
|
|
197
|
-
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
198
126
|
export interface CapabilityAction {
|
|
199
127
|
name: string | undefined;
|
|
200
128
|
ref?: string | undefined;
|
|
@@ -219,13 +147,6 @@ export interface CapabilityReport {
|
|
|
219
147
|
nodeId?: string | undefined;
|
|
220
148
|
endpoints: CapabilityReportEndpoint[] | undefined;
|
|
221
149
|
}
|
|
222
|
-
export declare const SchemaVersionFormat: {
|
|
223
|
-
readonly AWS: "AWS";
|
|
224
|
-
readonly CONNECTOR: "CONNECTOR";
|
|
225
|
-
readonly ZCL: "ZCL";
|
|
226
|
-
};
|
|
227
|
-
export type SchemaVersionFormat =
|
|
228
|
-
(typeof SchemaVersionFormat)[keyof typeof SchemaVersionFormat];
|
|
229
150
|
export interface CapabilitySchemaItem {
|
|
230
151
|
Format: SchemaVersionFormat | undefined;
|
|
231
152
|
CapabilityId: string | undefined;
|
|
@@ -239,10 +160,6 @@ export interface LambdaConfig {
|
|
|
239
160
|
export interface EndpointConfig {
|
|
240
161
|
lambda?: LambdaConfig | undefined;
|
|
241
162
|
}
|
|
242
|
-
export declare const EndpointType: {
|
|
243
|
-
readonly LAMBDA: "LAMBDA";
|
|
244
|
-
};
|
|
245
|
-
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
246
163
|
export interface CreateCloudConnectorRequest {
|
|
247
164
|
Name: string | undefined;
|
|
248
165
|
EndpointConfig: EndpointConfig | undefined;
|
|
@@ -259,12 +176,6 @@ export interface DeleteCloudConnectorRequest {
|
|
|
259
176
|
export interface GetCloudConnectorRequest {
|
|
260
177
|
Identifier: string | undefined;
|
|
261
178
|
}
|
|
262
|
-
export declare const CloudConnectorType: {
|
|
263
|
-
readonly LISTED: "LISTED";
|
|
264
|
-
readonly UNLISTED: "UNLISTED";
|
|
265
|
-
};
|
|
266
|
-
export type CloudConnectorType =
|
|
267
|
-
(typeof CloudConnectorType)[keyof typeof CloudConnectorType];
|
|
268
179
|
export interface GetCloudConnectorResponse {
|
|
269
180
|
Name: string | undefined;
|
|
270
181
|
EndpointConfig: EndpointConfig | undefined;
|
|
@@ -310,13 +221,6 @@ export interface ConfigurationError {
|
|
|
310
221
|
code?: string | undefined;
|
|
311
222
|
message?: string | undefined;
|
|
312
223
|
}
|
|
313
|
-
export declare const ConfigurationState: {
|
|
314
|
-
readonly ENABLED: "ENABLED";
|
|
315
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
316
|
-
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
317
|
-
};
|
|
318
|
-
export type ConfigurationState =
|
|
319
|
-
(typeof ConfigurationState)[keyof typeof ConfigurationState];
|
|
320
224
|
export interface ConfigurationStatus {
|
|
321
225
|
error?: ConfigurationError | undefined;
|
|
322
226
|
state: ConfigurationState | undefined;
|
|
@@ -376,14 +280,6 @@ export interface UpdateConnectorDestinationRequest {
|
|
|
376
280
|
AuthConfig?: AuthConfigUpdate | undefined;
|
|
377
281
|
SecretsManager?: SecretsManager | undefined;
|
|
378
282
|
}
|
|
379
|
-
export declare const ConnectorEventOperation: {
|
|
380
|
-
readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
|
|
381
|
-
readonly DEVICE_COMMAND_RESPONSE: "DEVICE_COMMAND_RESPONSE";
|
|
382
|
-
readonly DEVICE_DISCOVERY: "DEVICE_DISCOVERY";
|
|
383
|
-
readonly DEVICE_EVENT: "DEVICE_EVENT";
|
|
384
|
-
};
|
|
385
|
-
export type ConnectorEventOperation =
|
|
386
|
-
(typeof ConnectorEventOperation)[keyof typeof ConnectorEventOperation];
|
|
387
283
|
export interface CreateCredentialLockerRequest {
|
|
388
284
|
Name?: string | undefined;
|
|
389
285
|
ClientToken?: string | undefined;
|
|
@@ -394,19 +290,6 @@ export interface CreateCredentialLockerResponse {
|
|
|
394
290
|
Arn?: string | undefined;
|
|
395
291
|
CreatedAt?: Date | undefined;
|
|
396
292
|
}
|
|
397
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
398
|
-
readonly name: "ServiceQuotaExceededException";
|
|
399
|
-
readonly $fault: "client";
|
|
400
|
-
Message?: string | undefined;
|
|
401
|
-
constructor(
|
|
402
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
403
|
-
);
|
|
404
|
-
}
|
|
405
|
-
export declare const DeliveryDestinationType: {
|
|
406
|
-
readonly KINESIS: "KINESIS";
|
|
407
|
-
};
|
|
408
|
-
export type DeliveryDestinationType =
|
|
409
|
-
(typeof DeliveryDestinationType)[keyof typeof DeliveryDestinationType];
|
|
410
293
|
export interface CreateDestinationRequest {
|
|
411
294
|
DeliveryDestinationArn: string | undefined;
|
|
412
295
|
DeliveryDestinationType: DeliveryDestinationType | undefined;
|
|
@@ -419,13 +302,6 @@ export interface CreateDestinationRequest {
|
|
|
419
302
|
export interface CreateDestinationResponse {
|
|
420
303
|
Name?: string | undefined;
|
|
421
304
|
}
|
|
422
|
-
export declare const LogLevel: {
|
|
423
|
-
readonly DEBUG: "DEBUG";
|
|
424
|
-
readonly ERROR: "ERROR";
|
|
425
|
-
readonly INFO: "INFO";
|
|
426
|
-
readonly WARN: "WARN";
|
|
427
|
-
};
|
|
428
|
-
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
429
305
|
export interface CreateEventLogConfigurationRequest {
|
|
430
306
|
ResourceType: string | undefined;
|
|
431
307
|
ResourceId?: string | undefined;
|
|
@@ -435,11 +311,6 @@ export interface CreateEventLogConfigurationRequest {
|
|
|
435
311
|
export interface CreateEventLogConfigurationResponse {
|
|
436
312
|
Id?: string | undefined;
|
|
437
313
|
}
|
|
438
|
-
export declare const Role: {
|
|
439
|
-
readonly CONTROLLER: "CONTROLLER";
|
|
440
|
-
readonly DEVICE: "DEVICE";
|
|
441
|
-
};
|
|
442
|
-
export type Role = (typeof Role)[keyof typeof Role];
|
|
443
314
|
export interface CreateManagedThingRequest {
|
|
444
315
|
Role: Role | undefined;
|
|
445
316
|
Owner?: string | undefined;
|
|
@@ -463,19 +334,6 @@ export interface CreateManagedThingResponse {
|
|
|
463
334
|
Arn?: string | undefined;
|
|
464
335
|
CreatedAt?: Date | undefined;
|
|
465
336
|
}
|
|
466
|
-
export declare const EventType: {
|
|
467
|
-
readonly ACCOUNT_ASSOCIATION: "ACCOUNT_ASSOCIATION";
|
|
468
|
-
readonly CONNECTOR_ASSOCIATION: "CONNECTOR_ASSOCIATION";
|
|
469
|
-
readonly CONNECTOR_ERROR_REPORT: "CONNECTOR_ERROR_REPORT";
|
|
470
|
-
readonly DEVICE_COMMAND: "DEVICE_COMMAND";
|
|
471
|
-
readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
|
|
472
|
-
readonly DEVICE_DISCOVERY_STATUS: "DEVICE_DISCOVERY_STATUS";
|
|
473
|
-
readonly DEVICE_EVENT: "DEVICE_EVENT";
|
|
474
|
-
readonly DEVICE_LIFE_CYCLE: "DEVICE_LIFE_CYCLE";
|
|
475
|
-
readonly DEVICE_OTA: "DEVICE_OTA";
|
|
476
|
-
readonly DEVICE_STATE: "DEVICE_STATE";
|
|
477
|
-
};
|
|
478
|
-
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
479
337
|
export interface CreateNotificationConfigurationRequest {
|
|
480
338
|
EventType: EventType | undefined;
|
|
481
339
|
DestinationName: string | undefined;
|
|
@@ -485,17 +343,6 @@ export interface CreateNotificationConfigurationRequest {
|
|
|
485
343
|
export interface CreateNotificationConfigurationResponse {
|
|
486
344
|
EventType?: EventType | undefined;
|
|
487
345
|
}
|
|
488
|
-
export declare const OtaMechanism: {
|
|
489
|
-
readonly PUSH: "PUSH";
|
|
490
|
-
};
|
|
491
|
-
export type OtaMechanism = (typeof OtaMechanism)[keyof typeof OtaMechanism];
|
|
492
|
-
export declare const SchedulingConfigEndBehavior: {
|
|
493
|
-
readonly CANCEL: "CANCEL";
|
|
494
|
-
readonly FORCE_CANCEL: "FORCE_CANCEL";
|
|
495
|
-
readonly STOP_ROLLOUT: "STOP_ROLLOUT";
|
|
496
|
-
};
|
|
497
|
-
export type SchedulingConfigEndBehavior =
|
|
498
|
-
(typeof SchedulingConfigEndBehavior)[keyof typeof SchedulingConfigEndBehavior];
|
|
499
346
|
export interface ScheduleMaintenanceWindow {
|
|
500
347
|
DurationInMinutes?: number | undefined;
|
|
501
348
|
StartTime?: string | undefined;
|
|
@@ -506,13 +353,6 @@ export interface OtaTaskSchedulingConfig {
|
|
|
506
353
|
MaintenanceWindows?: ScheduleMaintenanceWindow[] | undefined;
|
|
507
354
|
StartTime?: string | undefined;
|
|
508
355
|
}
|
|
509
|
-
export declare const RetryCriteriaFailureType: {
|
|
510
|
-
readonly ALL: "ALL";
|
|
511
|
-
readonly FAILED: "FAILED";
|
|
512
|
-
readonly TIMED_OUT: "TIMED_OUT";
|
|
513
|
-
};
|
|
514
|
-
export type RetryCriteriaFailureType =
|
|
515
|
-
(typeof RetryCriteriaFailureType)[keyof typeof RetryCriteriaFailureType];
|
|
516
356
|
export interface RetryConfigCriteria {
|
|
517
357
|
FailureType?: RetryCriteriaFailureType | undefined;
|
|
518
358
|
MinNumberOfRetries?: number | undefined;
|
|
@@ -520,15 +360,6 @@ export interface RetryConfigCriteria {
|
|
|
520
360
|
export interface OtaTaskExecutionRetryConfig {
|
|
521
361
|
RetryConfigCriteria?: RetryConfigCriteria[] | undefined;
|
|
522
362
|
}
|
|
523
|
-
export declare const OtaType: {
|
|
524
|
-
readonly CONTINUOUS: "CONTINUOUS";
|
|
525
|
-
readonly ONE_TIME: "ONE_TIME";
|
|
526
|
-
};
|
|
527
|
-
export type OtaType = (typeof OtaType)[keyof typeof OtaType];
|
|
528
|
-
export declare const OtaProtocol: {
|
|
529
|
-
readonly HTTP: "HTTP";
|
|
530
|
-
};
|
|
531
|
-
export type OtaProtocol = (typeof OtaProtocol)[keyof typeof OtaProtocol];
|
|
532
363
|
export interface CreateOtaTaskRequest {
|
|
533
364
|
Description?: string | undefined;
|
|
534
365
|
S3Url: string | undefined;
|
|
@@ -581,12 +412,6 @@ export interface CreateOtaTaskConfigurationRequest {
|
|
|
581
412
|
export interface CreateOtaTaskConfigurationResponse {
|
|
582
413
|
TaskConfigurationId?: string | undefined;
|
|
583
414
|
}
|
|
584
|
-
export declare const ProvisioningType: {
|
|
585
|
-
readonly FLEET_PROVISIONING: "FLEET_PROVISIONING";
|
|
586
|
-
readonly JITR: "JITR";
|
|
587
|
-
};
|
|
588
|
-
export type ProvisioningType =
|
|
589
|
-
(typeof ProvisioningType)[keyof typeof ProvisioningType];
|
|
590
415
|
export interface CreateProvisioningProfileRequest {
|
|
591
416
|
ProvisioningType: ProvisioningType | undefined;
|
|
592
417
|
CaCertificate?: string | undefined;
|
|
@@ -645,14 +470,6 @@ export interface DeleteNotificationConfigurationRequest {
|
|
|
645
470
|
export interface DeleteOtaTaskRequest {
|
|
646
471
|
Identifier: string | undefined;
|
|
647
472
|
}
|
|
648
|
-
export declare class LimitExceededException extends __BaseException {
|
|
649
|
-
readonly name: "LimitExceededException";
|
|
650
|
-
readonly $fault: "client";
|
|
651
|
-
Message?: string | undefined;
|
|
652
|
-
constructor(
|
|
653
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
654
|
-
);
|
|
655
|
-
}
|
|
656
473
|
export interface DeleteOtaTaskConfigurationRequest {
|
|
657
474
|
Identifier: string | undefined;
|
|
658
475
|
}
|
|
@@ -736,21 +553,6 @@ export interface Device {
|
|
|
736
553
|
CapabilitySchemas?: CapabilitySchemaItem[] | undefined;
|
|
737
554
|
DeviceMetadata?: __DocumentType | undefined;
|
|
738
555
|
}
|
|
739
|
-
export declare const DiscoveryType: {
|
|
740
|
-
readonly CLOUD: "CLOUD";
|
|
741
|
-
readonly CUSTOM: "CUSTOM";
|
|
742
|
-
readonly ZIGBEE: "ZIGBEE";
|
|
743
|
-
readonly ZWAVE: "ZWAVE";
|
|
744
|
-
};
|
|
745
|
-
export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
|
|
746
|
-
export declare const DeviceDiscoveryStatus: {
|
|
747
|
-
readonly FAILED: "FAILED";
|
|
748
|
-
readonly RUNNING: "RUNNING";
|
|
749
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
750
|
-
readonly TIMED_OUT: "TIMED_OUT";
|
|
751
|
-
};
|
|
752
|
-
export type DeviceDiscoveryStatus =
|
|
753
|
-
(typeof DeviceDiscoveryStatus)[keyof typeof DeviceDiscoveryStatus];
|
|
754
556
|
export interface DeviceDiscoverySummary {
|
|
755
557
|
Id?: string | undefined;
|
|
756
558
|
DiscoveryType?: DiscoveryType | undefined;
|
|
@@ -786,13 +588,6 @@ export interface ListDiscoveredDevicesRequest {
|
|
|
786
588
|
NextToken?: string | undefined;
|
|
787
589
|
MaxResults?: number | undefined;
|
|
788
590
|
}
|
|
789
|
-
export declare const DiscoveryModification: {
|
|
790
|
-
readonly DISCOVERED: "DISCOVERED";
|
|
791
|
-
readonly NO_CHANGE: "NO_CHANGE";
|
|
792
|
-
readonly UPDATED: "UPDATED";
|
|
793
|
-
};
|
|
794
|
-
export type DiscoveryModification =
|
|
795
|
-
(typeof DiscoveryModification)[keyof typeof DiscoveryModification];
|
|
796
591
|
export interface DiscoveredDeviceSummary {
|
|
797
592
|
ConnectorDeviceId?: string | undefined;
|
|
798
593
|
ConnectorDeviceName?: string | undefined;
|
|
@@ -808,11 +603,6 @@ export interface ListDiscoveredDevicesResponse {
|
|
|
808
603
|
Items?: DiscoveredDeviceSummary[] | undefined;
|
|
809
604
|
NextToken?: string | undefined;
|
|
810
605
|
}
|
|
811
|
-
export declare const DiscoveryAuthMaterialType: {
|
|
812
|
-
readonly ZWAVE_INSTALL_CODE: "ZWAVE_INSTALL_CODE";
|
|
813
|
-
};
|
|
814
|
-
export type DiscoveryAuthMaterialType =
|
|
815
|
-
(typeof DiscoveryAuthMaterialType)[keyof typeof DiscoveryAuthMaterialType];
|
|
816
606
|
export interface StartDeviceDiscoveryRequest {
|
|
817
607
|
DiscoveryType: DiscoveryType | undefined;
|
|
818
608
|
CustomProtocolDetail?: Record<string, string> | undefined;
|
|
@@ -828,30 +618,6 @@ export interface StartDeviceDiscoveryResponse {
|
|
|
828
618
|
Id?: string | undefined;
|
|
829
619
|
StartedAt?: Date | undefined;
|
|
830
620
|
}
|
|
831
|
-
export declare const DisconnectReasonValue: {
|
|
832
|
-
readonly AUTH_ERROR: "AUTH_ERROR";
|
|
833
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
834
|
-
readonly CLIENT_INITIATED_DISCONNECT: "CLIENT_INITIATED_DISCONNECT";
|
|
835
|
-
readonly CONNECTION_LOST: "CONNECTION_LOST";
|
|
836
|
-
readonly CUSTOMAUTH_TTL_EXPIRATION: "CUSTOMAUTH_TTL_EXPIRATION";
|
|
837
|
-
readonly DUPLICATE_CLIENTID: "DUPLICATE_CLIENTID";
|
|
838
|
-
readonly FORBIDDEN_ACCESS: "FORBIDDEN_ACCESS";
|
|
839
|
-
readonly MQTT_KEEP_ALIVE_TIMEOUT: "MQTT_KEEP_ALIVE_TIMEOUT";
|
|
840
|
-
readonly NONE: "NONE";
|
|
841
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
842
|
-
readonly SERVER_INITIATED_DISCONNECT: "SERVER_INITIATED_DISCONNECT";
|
|
843
|
-
readonly THROTTLED: "THROTTLED";
|
|
844
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
845
|
-
readonly WEBSOCKET_TTL_EXPIRATION: "WEBSOCKET_TTL_EXPIRATION";
|
|
846
|
-
};
|
|
847
|
-
export type DisconnectReasonValue =
|
|
848
|
-
(typeof DisconnectReasonValue)[keyof typeof DisconnectReasonValue];
|
|
849
|
-
export declare const EncryptionType: {
|
|
850
|
-
readonly CUSTOMER_KEY_ENCRYPTION: "CUSTOMER_KEY_ENCRYPTION";
|
|
851
|
-
readonly MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION: "MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION";
|
|
852
|
-
};
|
|
853
|
-
export type EncryptionType =
|
|
854
|
-
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
855
621
|
export interface EventLogConfigurationSummary {
|
|
856
622
|
Id?: string | undefined;
|
|
857
623
|
ResourceType?: string | undefined;
|
|
@@ -889,14 +655,6 @@ export interface GetDefaultEncryptionConfigurationResponse {
|
|
|
889
655
|
encryptionType: EncryptionType | undefined;
|
|
890
656
|
kmsKeyArn?: string | undefined;
|
|
891
657
|
}
|
|
892
|
-
export declare class InternalFailureException extends __BaseException {
|
|
893
|
-
readonly name: "InternalFailureException";
|
|
894
|
-
readonly $fault: "server";
|
|
895
|
-
Message?: string | undefined;
|
|
896
|
-
constructor(
|
|
897
|
-
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
898
|
-
);
|
|
899
|
-
}
|
|
900
658
|
export interface GetHubConfigurationRequest {}
|
|
901
659
|
export interface GetHubConfigurationResponse {
|
|
902
660
|
HubTokenTimerExpirySettingInSeconds?: number | undefined;
|
|
@@ -905,24 +663,6 @@ export interface GetHubConfigurationResponse {
|
|
|
905
663
|
export interface GetManagedThingRequest {
|
|
906
664
|
Identifier: string | undefined;
|
|
907
665
|
}
|
|
908
|
-
export declare const HubNetworkMode: {
|
|
909
|
-
readonly NETWORK_WIDE_EXCLUSION: "NETWORK_WIDE_EXCLUSION";
|
|
910
|
-
readonly STANDARD: "STANDARD";
|
|
911
|
-
};
|
|
912
|
-
export type HubNetworkMode =
|
|
913
|
-
(typeof HubNetworkMode)[keyof typeof HubNetworkMode];
|
|
914
|
-
export declare const ProvisioningStatus: {
|
|
915
|
-
readonly ACTIVATED: "ACTIVATED";
|
|
916
|
-
readonly DELETED: "DELETED";
|
|
917
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
918
|
-
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
919
|
-
readonly DISCOVERED: "DISCOVERED";
|
|
920
|
-
readonly ISOLATED: "ISOLATED";
|
|
921
|
-
readonly PRE_ASSOCIATED: "PRE_ASSOCIATED";
|
|
922
|
-
readonly UNASSOCIATED: "UNASSOCIATED";
|
|
923
|
-
};
|
|
924
|
-
export type ProvisioningStatus =
|
|
925
|
-
(typeof ProvisioningStatus)[keyof typeof ProvisioningStatus];
|
|
926
666
|
export interface GetManagedThingResponse {
|
|
927
667
|
Id?: string | undefined;
|
|
928
668
|
Arn?: string | undefined;
|
|
@@ -1011,14 +751,6 @@ export interface GetNotificationConfigurationResponse {
|
|
|
1011
751
|
export interface GetOtaTaskRequest {
|
|
1012
752
|
Identifier: string | undefined;
|
|
1013
753
|
}
|
|
1014
|
-
export declare const OtaStatus: {
|
|
1015
|
-
readonly CANCELED: "CANCELED";
|
|
1016
|
-
readonly COMPLETED: "COMPLETED";
|
|
1017
|
-
readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
|
|
1018
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1019
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
1020
|
-
};
|
|
1021
|
-
export type OtaStatus = (typeof OtaStatus)[keyof typeof OtaStatus];
|
|
1022
754
|
export interface TaskProcessingDetails {
|
|
1023
755
|
NumberOfCanceledThings?: number | undefined;
|
|
1024
756
|
NumberOfFailedThings?: number | undefined;
|
|
@@ -1087,23 +819,11 @@ export interface GetRuntimeLogConfigurationResponse {
|
|
|
1087
819
|
ManagedThingId?: string | undefined;
|
|
1088
820
|
RuntimeLogConfigurations?: RuntimeLogConfigurations | undefined;
|
|
1089
821
|
}
|
|
1090
|
-
export declare const SchemaVersionType: {
|
|
1091
|
-
readonly CAPABILITY: "capability";
|
|
1092
|
-
readonly DEFINITION: "definition";
|
|
1093
|
-
};
|
|
1094
|
-
export type SchemaVersionType =
|
|
1095
|
-
(typeof SchemaVersionType)[keyof typeof SchemaVersionType];
|
|
1096
822
|
export interface GetSchemaVersionRequest {
|
|
1097
823
|
Type: SchemaVersionType | undefined;
|
|
1098
824
|
SchemaVersionedId: string | undefined;
|
|
1099
825
|
Format?: SchemaVersionFormat | undefined;
|
|
1100
826
|
}
|
|
1101
|
-
export declare const SchemaVersionVisibility: {
|
|
1102
|
-
readonly PRIVATE: "PRIVATE";
|
|
1103
|
-
readonly PUBLIC: "PUBLIC";
|
|
1104
|
-
};
|
|
1105
|
-
export type SchemaVersionVisibility =
|
|
1106
|
-
(typeof SchemaVersionVisibility)[keyof typeof SchemaVersionVisibility];
|
|
1107
827
|
export interface GetSchemaVersionResponse {
|
|
1108
828
|
SchemaId?: string | undefined;
|
|
1109
829
|
Type?: SchemaVersionType | undefined;
|
|
@@ -1119,14 +839,6 @@ export interface PutHubConfigurationRequest {
|
|
|
1119
839
|
export interface PutHubConfigurationResponse {
|
|
1120
840
|
HubTokenTimerExpirySettingInSeconds?: number | undefined;
|
|
1121
841
|
}
|
|
1122
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
1123
|
-
readonly name: "InvalidRequestException";
|
|
1124
|
-
readonly $fault: "client";
|
|
1125
|
-
Message?: string | undefined;
|
|
1126
|
-
constructor(
|
|
1127
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
1128
|
-
);
|
|
1129
|
-
}
|
|
1130
842
|
export interface PutDefaultEncryptionConfigurationRequest {
|
|
1131
843
|
encryptionType: EncryptionType | undefined;
|
|
1132
844
|
kmsKeyArn?: string | undefined;
|
|
@@ -1280,18 +992,6 @@ export interface ListOtaTaskExecutionsRequest {
|
|
|
1280
992
|
NextToken?: string | undefined;
|
|
1281
993
|
MaxResults?: number | undefined;
|
|
1282
994
|
}
|
|
1283
|
-
export declare const OtaTaskExecutionStatus: {
|
|
1284
|
-
readonly CANCELED: "CANCELED";
|
|
1285
|
-
readonly FAILED: "FAILED";
|
|
1286
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1287
|
-
readonly QUEUED: "QUEUED";
|
|
1288
|
-
readonly REJECTED: "REJECTED";
|
|
1289
|
-
readonly REMOVED: "REMOVED";
|
|
1290
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1291
|
-
readonly TIMED_OUT: "TIMED_OUT";
|
|
1292
|
-
};
|
|
1293
|
-
export type OtaTaskExecutionStatus =
|
|
1294
|
-
(typeof OtaTaskExecutionStatus)[keyof typeof OtaTaskExecutionStatus];
|
|
1295
995
|
export interface OtaTaskExecutionSummary {
|
|
1296
996
|
ExecutionNumber?: number | undefined;
|
|
1297
997
|
LastUpdatedAt?: Date | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-managed-integrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Managed Integrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iot-managed-integrations",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|