@aws-sdk/client-iot 3.301.0 → 3.306.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/models/models_0.js +251 -293
- package/dist-cjs/models/models_1.js +139 -163
- package/dist-cjs/models/models_2.js +9 -11
- package/dist-es/models/models_0.js +251 -293
- package/dist-es/models/models_1.js +139 -163
- package/dist-es/models/models_2.js +9 -11
- package/dist-types/models/models_0.d.ts +461 -251
- package/dist-types/models/models_1.d.ts +259 -139
- package/dist-types/models/models_2.d.ts +19 -9
- package/dist-types/ts3.4/models/models_0.d.ts +322 -251
- package/dist-types/ts3.4/models/models_1.d.ts +179 -139
- package/dist-types/ts3.4/models/models_2.d.ts +12 -9
- package/package.json +34 -34
|
@@ -114,13 +114,14 @@ export interface DeleteTopicRuleDestinationRequest {
|
|
|
114
114
|
arn: string | undefined;
|
|
115
115
|
}
|
|
116
116
|
export interface DeleteTopicRuleDestinationResponse {}
|
|
117
|
-
export declare
|
|
118
|
-
CLIENT_ID
|
|
119
|
-
DEFAULT
|
|
120
|
-
PRINCIPAL_ID
|
|
121
|
-
SOURCE_IP
|
|
122
|
-
THING_GROUP
|
|
123
|
-
}
|
|
117
|
+
export declare const LogTargetType: {
|
|
118
|
+
readonly CLIENT_ID: "CLIENT_ID";
|
|
119
|
+
readonly DEFAULT: "DEFAULT";
|
|
120
|
+
readonly PRINCIPAL_ID: "PRINCIPAL_ID";
|
|
121
|
+
readonly SOURCE_IP: "SOURCE_IP";
|
|
122
|
+
readonly THING_GROUP: "THING_GROUP";
|
|
123
|
+
};
|
|
124
|
+
export type LogTargetType = (typeof LogTargetType)[keyof typeof LogTargetType];
|
|
124
125
|
export interface DeleteV2LoggingLevelRequest {
|
|
125
126
|
targetType: LogTargetType | string | undefined;
|
|
126
127
|
targetName: string | undefined;
|
|
@@ -217,14 +218,18 @@ export interface DescribeBillingGroupResponse {
|
|
|
217
218
|
export interface DescribeCACertificateRequest {
|
|
218
219
|
certificateId: string | undefined;
|
|
219
220
|
}
|
|
220
|
-
export declare
|
|
221
|
-
DEFAULT
|
|
222
|
-
SNI_ONLY
|
|
223
|
-
}
|
|
224
|
-
export
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
221
|
+
export declare const CertificateMode: {
|
|
222
|
+
readonly DEFAULT: "DEFAULT";
|
|
223
|
+
readonly SNI_ONLY: "SNI_ONLY";
|
|
224
|
+
};
|
|
225
|
+
export type CertificateMode =
|
|
226
|
+
(typeof CertificateMode)[keyof typeof CertificateMode];
|
|
227
|
+
export declare const CACertificateStatus: {
|
|
228
|
+
readonly ACTIVE: "ACTIVE";
|
|
229
|
+
readonly INACTIVE: "INACTIVE";
|
|
230
|
+
};
|
|
231
|
+
export type CACertificateStatus =
|
|
232
|
+
(typeof CACertificateStatus)[keyof typeof CACertificateStatus];
|
|
228
233
|
export interface CertificateValidity {
|
|
229
234
|
notBefore?: Date;
|
|
230
235
|
notAfter?: Date;
|
|
@@ -255,14 +260,16 @@ export interface DescribeCACertificateResponse {
|
|
|
255
260
|
export interface DescribeCertificateRequest {
|
|
256
261
|
certificateId: string | undefined;
|
|
257
262
|
}
|
|
258
|
-
export declare
|
|
259
|
-
ACTIVE
|
|
260
|
-
INACTIVE
|
|
261
|
-
PENDING_ACTIVATION
|
|
262
|
-
PENDING_TRANSFER
|
|
263
|
-
REGISTER_INACTIVE
|
|
264
|
-
REVOKED
|
|
265
|
-
}
|
|
263
|
+
export declare const CertificateStatus: {
|
|
264
|
+
readonly ACTIVE: "ACTIVE";
|
|
265
|
+
readonly INACTIVE: "INACTIVE";
|
|
266
|
+
readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
|
|
267
|
+
readonly PENDING_TRANSFER: "PENDING_TRANSFER";
|
|
268
|
+
readonly REGISTER_INACTIVE: "REGISTER_INACTIVE";
|
|
269
|
+
readonly REVOKED: "REVOKED";
|
|
270
|
+
};
|
|
271
|
+
export type CertificateStatus =
|
|
272
|
+
(typeof CertificateStatus)[keyof typeof CertificateStatus];
|
|
266
273
|
export interface TransferData {
|
|
267
274
|
transferMessage?: string;
|
|
268
275
|
rejectReason?: string;
|
|
@@ -317,12 +324,14 @@ export interface DetectMitigationActionsTaskStatistics {
|
|
|
317
324
|
actionsSkipped?: number;
|
|
318
325
|
actionsFailed?: number;
|
|
319
326
|
}
|
|
320
|
-
export declare
|
|
321
|
-
CANCELED
|
|
322
|
-
FAILED
|
|
323
|
-
IN_PROGRESS
|
|
324
|
-
SUCCESSFUL
|
|
325
|
-
}
|
|
327
|
+
export declare const DetectMitigationActionsTaskStatus: {
|
|
328
|
+
readonly CANCELED: "CANCELED";
|
|
329
|
+
readonly FAILED: "FAILED";
|
|
330
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
331
|
+
readonly SUCCESSFUL: "SUCCESSFUL";
|
|
332
|
+
};
|
|
333
|
+
export type DetectMitigationActionsTaskStatus =
|
|
334
|
+
(typeof DetectMitigationActionsTaskStatus)[keyof typeof DetectMitigationActionsTaskStatus];
|
|
326
335
|
export interface ViolationEventOccurrenceRange {
|
|
327
336
|
startTime: Date | undefined;
|
|
328
337
|
endTime: Date | undefined;
|
|
@@ -356,19 +365,24 @@ export interface DescribeDimensionResponse {
|
|
|
356
365
|
export interface DescribeDomainConfigurationRequest {
|
|
357
366
|
domainConfigurationName: string | undefined;
|
|
358
367
|
}
|
|
359
|
-
export declare
|
|
360
|
-
DISABLED
|
|
361
|
-
ENABLED
|
|
362
|
-
}
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
368
|
+
export declare const DomainConfigurationStatus: {
|
|
369
|
+
readonly DISABLED: "DISABLED";
|
|
370
|
+
readonly ENABLED: "ENABLED";
|
|
371
|
+
};
|
|
372
|
+
export type DomainConfigurationStatus =
|
|
373
|
+
(typeof DomainConfigurationStatus)[keyof typeof DomainConfigurationStatus];
|
|
374
|
+
export declare const DomainType: {
|
|
375
|
+
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
376
|
+
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
377
|
+
readonly ENDPOINT: "ENDPOINT";
|
|
378
|
+
};
|
|
379
|
+
export type DomainType = (typeof DomainType)[keyof typeof DomainType];
|
|
380
|
+
export declare const ServerCertificateStatus: {
|
|
381
|
+
readonly INVALID: "INVALID";
|
|
382
|
+
readonly VALID: "VALID";
|
|
383
|
+
};
|
|
384
|
+
export type ServerCertificateStatus =
|
|
385
|
+
(typeof ServerCertificateStatus)[keyof typeof ServerCertificateStatus];
|
|
372
386
|
export interface ServerCertificateSummary {
|
|
373
387
|
serverCertificateArn?: string;
|
|
374
388
|
serverCertificateStatus?: ServerCertificateStatus | string;
|
|
@@ -392,19 +406,20 @@ export interface DescribeEndpointResponse {
|
|
|
392
406
|
endpointAddress?: string;
|
|
393
407
|
}
|
|
394
408
|
export interface DescribeEventConfigurationsRequest {}
|
|
395
|
-
export declare
|
|
396
|
-
CA_CERTIFICATE
|
|
397
|
-
CERTIFICATE
|
|
398
|
-
JOB
|
|
399
|
-
JOB_EXECUTION
|
|
400
|
-
POLICY
|
|
401
|
-
THING
|
|
402
|
-
THING_GROUP
|
|
403
|
-
THING_GROUP_HIERARCHY
|
|
404
|
-
THING_GROUP_MEMBERSHIP
|
|
405
|
-
THING_TYPE
|
|
406
|
-
THING_TYPE_ASSOCIATION
|
|
407
|
-
}
|
|
409
|
+
export declare const EventType: {
|
|
410
|
+
readonly CA_CERTIFICATE: "CA_CERTIFICATE";
|
|
411
|
+
readonly CERTIFICATE: "CERTIFICATE";
|
|
412
|
+
readonly JOB: "JOB";
|
|
413
|
+
readonly JOB_EXECUTION: "JOB_EXECUTION";
|
|
414
|
+
readonly POLICY: "POLICY";
|
|
415
|
+
readonly THING: "THING";
|
|
416
|
+
readonly THING_GROUP: "THING_GROUP";
|
|
417
|
+
readonly THING_GROUP_HIERARCHY: "THING_GROUP_HIERARCHY";
|
|
418
|
+
readonly THING_GROUP_MEMBERSHIP: "THING_GROUP_MEMBERSHIP";
|
|
419
|
+
readonly THING_TYPE: "THING_TYPE";
|
|
420
|
+
readonly THING_TYPE_ASSOCIATION: "THING_TYPE_ASSOCIATION";
|
|
421
|
+
};
|
|
422
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
408
423
|
export interface Configuration {
|
|
409
424
|
Enabled?: boolean;
|
|
410
425
|
}
|
|
@@ -434,11 +449,12 @@ export interface DescribeFleetMetricResponse {
|
|
|
434
449
|
export interface DescribeIndexRequest {
|
|
435
450
|
indexName: string | undefined;
|
|
436
451
|
}
|
|
437
|
-
export declare
|
|
438
|
-
ACTIVE
|
|
439
|
-
BUILDING
|
|
440
|
-
REBUILDING
|
|
441
|
-
}
|
|
452
|
+
export declare const IndexStatus: {
|
|
453
|
+
readonly ACTIVE: "ACTIVE";
|
|
454
|
+
readonly BUILDING: "BUILDING";
|
|
455
|
+
readonly REBUILDING: "REBUILDING";
|
|
456
|
+
};
|
|
457
|
+
export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
|
|
442
458
|
export interface DescribeIndexResponse {
|
|
443
459
|
indexName?: string;
|
|
444
460
|
indexStatus?: IndexStatus | string;
|
|
@@ -461,13 +477,14 @@ export interface JobProcessDetails {
|
|
|
461
477
|
export interface ScheduledJobRollout {
|
|
462
478
|
startTime?: string;
|
|
463
479
|
}
|
|
464
|
-
export declare
|
|
465
|
-
CANCELED
|
|
466
|
-
COMPLETED
|
|
467
|
-
DELETION_IN_PROGRESS
|
|
468
|
-
IN_PROGRESS
|
|
469
|
-
SCHEDULED
|
|
470
|
-
}
|
|
480
|
+
export declare const JobStatus: {
|
|
481
|
+
readonly CANCELED: "CANCELED";
|
|
482
|
+
readonly COMPLETED: "COMPLETED";
|
|
483
|
+
readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
|
|
484
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
485
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
486
|
+
};
|
|
487
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
471
488
|
export interface Job {
|
|
472
489
|
jobArn?: string;
|
|
473
490
|
jobId?: string;
|
|
@@ -503,16 +520,18 @@ export interface DescribeJobExecutionRequest {
|
|
|
503
520
|
thingName: string | undefined;
|
|
504
521
|
executionNumber?: number;
|
|
505
522
|
}
|
|
506
|
-
export declare
|
|
507
|
-
CANCELED
|
|
508
|
-
FAILED
|
|
509
|
-
IN_PROGRESS
|
|
510
|
-
QUEUED
|
|
511
|
-
REJECTED
|
|
512
|
-
REMOVED
|
|
513
|
-
SUCCEEDED
|
|
514
|
-
TIMED_OUT
|
|
515
|
-
}
|
|
523
|
+
export declare const JobExecutionStatus: {
|
|
524
|
+
readonly CANCELED: "CANCELED";
|
|
525
|
+
readonly FAILED: "FAILED";
|
|
526
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
527
|
+
readonly QUEUED: "QUEUED";
|
|
528
|
+
readonly REJECTED: "REJECTED";
|
|
529
|
+
readonly REMOVED: "REMOVED";
|
|
530
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
531
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
532
|
+
};
|
|
533
|
+
export type JobExecutionStatus =
|
|
534
|
+
(typeof JobExecutionStatus)[keyof typeof JobExecutionStatus];
|
|
516
535
|
export interface JobExecutionStatusDetails {
|
|
517
536
|
detailsMap?: Record<string, string>;
|
|
518
537
|
}
|
|
@@ -579,14 +598,16 @@ export declare class InternalServerException extends __BaseException {
|
|
|
579
598
|
export interface DescribeMitigationActionRequest {
|
|
580
599
|
actionName: string | undefined;
|
|
581
600
|
}
|
|
582
|
-
export declare
|
|
583
|
-
ADD_THINGS_TO_THING_GROUP
|
|
584
|
-
ENABLE_IOT_LOGGING
|
|
585
|
-
PUBLISH_FINDING_TO_SNS
|
|
586
|
-
REPLACE_DEFAULT_POLICY_VERSION
|
|
587
|
-
UPDATE_CA_CERTIFICATE
|
|
588
|
-
UPDATE_DEVICE_CERTIFICATE
|
|
589
|
-
}
|
|
601
|
+
export declare const MitigationActionType: {
|
|
602
|
+
readonly ADD_THINGS_TO_THING_GROUP: "ADD_THINGS_TO_THING_GROUP";
|
|
603
|
+
readonly ENABLE_IOT_LOGGING: "ENABLE_IOT_LOGGING";
|
|
604
|
+
readonly PUBLISH_FINDING_TO_SNS: "PUBLISH_FINDING_TO_SNS";
|
|
605
|
+
readonly REPLACE_DEFAULT_POLICY_VERSION: "REPLACE_DEFAULT_POLICY_VERSION";
|
|
606
|
+
readonly UPDATE_CA_CERTIFICATE: "UPDATE_CA_CERTIFICATE";
|
|
607
|
+
readonly UPDATE_DEVICE_CERTIFICATE: "UPDATE_DEVICE_CERTIFICATE";
|
|
608
|
+
};
|
|
609
|
+
export type MitigationActionType =
|
|
610
|
+
(typeof MitigationActionType)[keyof typeof MitigationActionType];
|
|
590
611
|
export interface DescribeMitigationActionResponse {
|
|
591
612
|
actionName?: string;
|
|
592
613
|
actionType?: MitigationActionType | string;
|
|
@@ -696,11 +717,13 @@ export interface DescribeThingResponse {
|
|
|
696
717
|
export interface DescribeThingGroupRequest {
|
|
697
718
|
thingGroupName: string | undefined;
|
|
698
719
|
}
|
|
699
|
-
export declare
|
|
700
|
-
ACTIVE
|
|
701
|
-
BUILDING
|
|
702
|
-
REBUILDING
|
|
703
|
-
}
|
|
720
|
+
export declare const DynamicGroupStatus: {
|
|
721
|
+
readonly ACTIVE: "ACTIVE";
|
|
722
|
+
readonly BUILDING: "BUILDING";
|
|
723
|
+
readonly REBUILDING: "REBUILDING";
|
|
724
|
+
};
|
|
725
|
+
export type DynamicGroupStatus =
|
|
726
|
+
(typeof DynamicGroupStatus)[keyof typeof DynamicGroupStatus];
|
|
704
727
|
export interface GroupNameAndArn {
|
|
705
728
|
groupName?: string;
|
|
706
729
|
groupArn?: string;
|
|
@@ -725,13 +748,14 @@ export interface DescribeThingGroupResponse {
|
|
|
725
748
|
export interface DescribeThingRegistrationTaskRequest {
|
|
726
749
|
taskId: string | undefined;
|
|
727
750
|
}
|
|
728
|
-
export declare
|
|
729
|
-
Cancelled
|
|
730
|
-
Cancelling
|
|
731
|
-
Completed
|
|
732
|
-
Failed
|
|
733
|
-
InProgress
|
|
734
|
-
}
|
|
751
|
+
export declare const Status: {
|
|
752
|
+
readonly Cancelled: "Cancelled";
|
|
753
|
+
readonly Cancelling: "Cancelling";
|
|
754
|
+
readonly Completed: "Completed";
|
|
755
|
+
readonly Failed: "Failed";
|
|
756
|
+
readonly InProgress: "InProgress";
|
|
757
|
+
};
|
|
758
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
735
759
|
export interface DescribeThingRegistrationTaskResponse {
|
|
736
760
|
taskId?: string;
|
|
737
761
|
creationDate?: Date;
|
|
@@ -790,11 +814,12 @@ export interface GetBehaviorModelTrainingSummariesRequest {
|
|
|
790
814
|
maxResults?: number;
|
|
791
815
|
nextToken?: string;
|
|
792
816
|
}
|
|
793
|
-
export declare
|
|
794
|
-
ACTIVE
|
|
795
|
-
EXPIRED
|
|
796
|
-
PENDING_BUILD
|
|
797
|
-
}
|
|
817
|
+
export declare const ModelStatus: {
|
|
818
|
+
readonly ACTIVE: "ACTIVE";
|
|
819
|
+
readonly EXPIRED: "EXPIRED";
|
|
820
|
+
readonly PENDING_BUILD: "PENDING_BUILD";
|
|
821
|
+
};
|
|
822
|
+
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
798
823
|
export interface BehaviorModelTrainingSummary {
|
|
799
824
|
securityProfileName?: string;
|
|
800
825
|
behaviorName?: string;
|
|
@@ -851,44 +876,55 @@ export interface GetEffectivePoliciesResponse {
|
|
|
851
876
|
effectivePolicies?: EffectivePolicy[];
|
|
852
877
|
}
|
|
853
878
|
export interface GetIndexingConfigurationRequest {}
|
|
854
|
-
export declare
|
|
855
|
-
BOOLEAN
|
|
856
|
-
NUMBER
|
|
857
|
-
STRING
|
|
858
|
-
}
|
|
879
|
+
export declare const FieldType: {
|
|
880
|
+
readonly BOOLEAN: "Boolean";
|
|
881
|
+
readonly NUMBER: "Number";
|
|
882
|
+
readonly STRING: "String";
|
|
883
|
+
};
|
|
884
|
+
export type FieldType = (typeof FieldType)[keyof typeof FieldType];
|
|
859
885
|
export interface Field {
|
|
860
886
|
name?: string;
|
|
861
887
|
type?: FieldType | string;
|
|
862
888
|
}
|
|
863
|
-
export declare
|
|
864
|
-
OFF
|
|
865
|
-
ON
|
|
866
|
-
}
|
|
889
|
+
export declare const ThingGroupIndexingMode: {
|
|
890
|
+
readonly OFF: "OFF";
|
|
891
|
+
readonly ON: "ON";
|
|
892
|
+
};
|
|
893
|
+
export type ThingGroupIndexingMode =
|
|
894
|
+
(typeof ThingGroupIndexingMode)[keyof typeof ThingGroupIndexingMode];
|
|
867
895
|
export interface ThingGroupIndexingConfiguration {
|
|
868
896
|
thingGroupIndexingMode: ThingGroupIndexingMode | string | undefined;
|
|
869
897
|
managedFields?: Field[];
|
|
870
898
|
customFields?: Field[];
|
|
871
899
|
}
|
|
872
|
-
export declare
|
|
873
|
-
OFF
|
|
874
|
-
VIOLATIONS
|
|
875
|
-
}
|
|
900
|
+
export declare const DeviceDefenderIndexingMode: {
|
|
901
|
+
readonly OFF: "OFF";
|
|
902
|
+
readonly VIOLATIONS: "VIOLATIONS";
|
|
903
|
+
};
|
|
904
|
+
export type DeviceDefenderIndexingMode =
|
|
905
|
+
(typeof DeviceDefenderIndexingMode)[keyof typeof DeviceDefenderIndexingMode];
|
|
876
906
|
export interface IndexingFilter {
|
|
877
907
|
namedShadowNames?: string[];
|
|
878
908
|
}
|
|
879
|
-
export declare
|
|
880
|
-
OFF
|
|
881
|
-
ON
|
|
882
|
-
}
|
|
883
|
-
export
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
909
|
+
export declare const NamedShadowIndexingMode: {
|
|
910
|
+
readonly OFF: "OFF";
|
|
911
|
+
readonly ON: "ON";
|
|
912
|
+
};
|
|
913
|
+
export type NamedShadowIndexingMode =
|
|
914
|
+
(typeof NamedShadowIndexingMode)[keyof typeof NamedShadowIndexingMode];
|
|
915
|
+
export declare const ThingConnectivityIndexingMode: {
|
|
916
|
+
readonly OFF: "OFF";
|
|
917
|
+
readonly STATUS: "STATUS";
|
|
918
|
+
};
|
|
919
|
+
export type ThingConnectivityIndexingMode =
|
|
920
|
+
(typeof ThingConnectivityIndexingMode)[keyof typeof ThingConnectivityIndexingMode];
|
|
921
|
+
export declare const ThingIndexingMode: {
|
|
922
|
+
readonly OFF: "OFF";
|
|
923
|
+
readonly REGISTRY: "REGISTRY";
|
|
924
|
+
readonly REGISTRY_AND_SHADOW: "REGISTRY_AND_SHADOW";
|
|
925
|
+
};
|
|
926
|
+
export type ThingIndexingMode =
|
|
927
|
+
(typeof ThingIndexingMode)[keyof typeof ThingIndexingMode];
|
|
892
928
|
export interface ThingIndexingConfiguration {
|
|
893
929
|
thingIndexingMode: ThingIndexingMode | string | undefined;
|
|
894
930
|
thingConnectivityIndexingMode?: ThingConnectivityIndexingMode | string;
|
|
@@ -1040,11 +1076,13 @@ export declare class NotConfiguredException extends __BaseException {
|
|
|
1040
1076
|
opts: __ExceptionOptionType<NotConfiguredException, __BaseException>
|
|
1041
1077
|
);
|
|
1042
1078
|
}
|
|
1043
|
-
export declare
|
|
1044
|
-
MACHINE_LEARNING
|
|
1045
|
-
STATIC
|
|
1046
|
-
STATISTICAL
|
|
1047
|
-
}
|
|
1079
|
+
export declare const BehaviorCriteriaType: {
|
|
1080
|
+
readonly MACHINE_LEARNING: "MACHINE_LEARNING";
|
|
1081
|
+
readonly STATIC: "STATIC";
|
|
1082
|
+
readonly STATISTICAL: "STATISTICAL";
|
|
1083
|
+
};
|
|
1084
|
+
export type BehaviorCriteriaType =
|
|
1085
|
+
(typeof BehaviorCriteriaType)[keyof typeof BehaviorCriteriaType];
|
|
1048
1086
|
export interface ListActiveViolationsRequest {
|
|
1049
1087
|
thingName?: string;
|
|
1050
1088
|
securityProfileName?: string;
|
|
@@ -1207,12 +1245,14 @@ export interface ListDetectMitigationActionsExecutionsRequest {
|
|
|
1207
1245
|
maxResults?: number;
|
|
1208
1246
|
nextToken?: string;
|
|
1209
1247
|
}
|
|
1210
|
-
export declare
|
|
1211
|
-
FAILED
|
|
1212
|
-
IN_PROGRESS
|
|
1213
|
-
SKIPPED
|
|
1214
|
-
SUCCESSFUL
|
|
1215
|
-
}
|
|
1248
|
+
export declare const DetectMitigationActionExecutionStatus: {
|
|
1249
|
+
readonly FAILED: "FAILED";
|
|
1250
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1251
|
+
readonly SKIPPED: "SKIPPED";
|
|
1252
|
+
readonly SUCCESSFUL: "SUCCESSFUL";
|
|
1253
|
+
};
|
|
1254
|
+
export type DetectMitigationActionExecutionStatus =
|
|
1255
|
+
(typeof DetectMitigationActionExecutionStatus)[keyof typeof DetectMitigationActionExecutionStatus];
|
|
1216
1256
|
export interface DetectMitigationActionExecution {
|
|
1217
1257
|
taskId?: string;
|
|
1218
1258
|
violationId?: string;
|
|
@@ -127,10 +127,11 @@ export interface ListThingPrincipalsResponse {
|
|
|
127
127
|
principals?: string[];
|
|
128
128
|
nextToken?: string;
|
|
129
129
|
}
|
|
130
|
-
export declare
|
|
131
|
-
ERRORS
|
|
132
|
-
RESULTS
|
|
133
|
-
}
|
|
130
|
+
export declare const ReportType: {
|
|
131
|
+
readonly ERRORS: "ERRORS";
|
|
132
|
+
readonly RESULTS: "RESULTS";
|
|
133
|
+
};
|
|
134
|
+
export type ReportType = (typeof ReportType)[keyof typeof ReportType];
|
|
134
135
|
export interface ListThingRegistrationTaskReportsRequest {
|
|
135
136
|
taskId: string | undefined;
|
|
136
137
|
reportType: ReportType | string | undefined;
|
|
@@ -275,11 +276,13 @@ export interface ListViolationEventsRequest {
|
|
|
275
276
|
nextToken?: string;
|
|
276
277
|
maxResults?: number;
|
|
277
278
|
}
|
|
278
|
-
export declare
|
|
279
|
-
ALARM_CLEARED
|
|
280
|
-
ALARM_INVALIDATED
|
|
281
|
-
IN_ALARM
|
|
282
|
-
}
|
|
279
|
+
export declare const ViolationEventType: {
|
|
280
|
+
readonly ALARM_CLEARED: "alarm-cleared";
|
|
281
|
+
readonly ALARM_INVALIDATED: "alarm-invalidated";
|
|
282
|
+
readonly IN_ALARM: "in-alarm";
|
|
283
|
+
};
|
|
284
|
+
export type ViolationEventType =
|
|
285
|
+
(typeof ViolationEventType)[keyof typeof ViolationEventType];
|
|
283
286
|
export interface ViolationEvent {
|
|
284
287
|
violationId?: string;
|
|
285
288
|
thingName?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.306.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|