@aws-sdk/client-iot 3.431.0 → 3.433.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-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +3 -3
- package/dist-types/models/models_2.d.ts +4 -4
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +4 -5
- package/dist-types/ts3.4/models/models_2.d.ts +5 -6
- package/package.json +31 -31
|
@@ -5820,7 +5820,7 @@ export interface CreateSecurityProfileRequest {
|
|
|
5820
5820
|
* <p>Specifies the destinations to which alerts are sent. (Alerts are always sent to the
|
|
5821
5821
|
* console.) Alerts are generated when a device (thing) violates a behavior.</p>
|
|
5822
5822
|
*/
|
|
5823
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
5823
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
5824
5824
|
/**
|
|
5825
5825
|
* @public
|
|
5826
5826
|
* @deprecated
|
|
@@ -515,7 +515,7 @@ export interface DescribeAccountAuditConfigurationResponse {
|
|
|
515
515
|
* <p>Information about the targets to which audit notifications are sent for
|
|
516
516
|
* this account.</p>
|
|
517
517
|
*/
|
|
518
|
-
auditNotificationTargetConfigurations?: Record<AuditNotificationType, AuditNotificationTarget
|
|
518
|
+
auditNotificationTargetConfigurations?: Partial<Record<AuditNotificationType, AuditNotificationTarget>>;
|
|
519
519
|
/**
|
|
520
520
|
* @public
|
|
521
521
|
* <p>Which audit checks are enabled and disabled for this account.</p>
|
|
@@ -1691,7 +1691,7 @@ export interface DescribeEventConfigurationsResponse {
|
|
|
1691
1691
|
* @public
|
|
1692
1692
|
* <p>The event configurations.</p>
|
|
1693
1693
|
*/
|
|
1694
|
-
eventConfigurations?: Record<EventType, Configuration
|
|
1694
|
+
eventConfigurations?: Partial<Record<EventType, Configuration>>;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* @public
|
|
1697
1697
|
* <p>The creation date of the event configuration.</p>
|
|
@@ -2788,7 +2788,7 @@ export interface DescribeSecurityProfileResponse {
|
|
|
2788
2788
|
* @public
|
|
2789
2789
|
* <p>Where the alerts are sent. (Alerts are always sent to the console.)</p>
|
|
2790
2790
|
*/
|
|
2791
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
2791
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
2792
2792
|
/**
|
|
2793
2793
|
* @public
|
|
2794
2794
|
* @deprecated
|
|
@@ -2638,7 +2638,7 @@ export interface UpdateAccountAuditConfigurationRequest {
|
|
|
2638
2638
|
* @public
|
|
2639
2639
|
* <p>Information about the targets to which audit notifications are sent.</p>
|
|
2640
2640
|
*/
|
|
2641
|
-
auditNotificationTargetConfigurations?: Record<AuditNotificationType, AuditNotificationTarget
|
|
2641
|
+
auditNotificationTargetConfigurations?: Partial<Record<AuditNotificationType, AuditNotificationTarget>>;
|
|
2642
2642
|
/**
|
|
2643
2643
|
* @public
|
|
2644
2644
|
* <p>Specifies which audit checks are enabled and disabled for this account. Use
|
|
@@ -3078,7 +3078,7 @@ export interface UpdateEventConfigurationsRequest {
|
|
|
3078
3078
|
* @public
|
|
3079
3079
|
* <p>The new event configuration values.</p>
|
|
3080
3080
|
*/
|
|
3081
|
-
eventConfigurations?: Record<EventType, Configuration
|
|
3081
|
+
eventConfigurations?: Partial<Record<EventType, Configuration>>;
|
|
3082
3082
|
}
|
|
3083
3083
|
/**
|
|
3084
3084
|
* @public
|
|
@@ -3538,7 +3538,7 @@ export interface UpdateSecurityProfileRequest {
|
|
|
3538
3538
|
* @public
|
|
3539
3539
|
* <p>Where the alerts are sent. (Alerts are always sent to the console.)</p>
|
|
3540
3540
|
*/
|
|
3541
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
3541
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
3542
3542
|
/**
|
|
3543
3543
|
* @public
|
|
3544
3544
|
* @deprecated
|
|
@@ -3615,7 +3615,7 @@ export interface UpdateSecurityProfileResponse {
|
|
|
3615
3615
|
* @public
|
|
3616
3616
|
* <p>Where the alerts are sent. (Alerts are always sent to the console.)</p>
|
|
3617
3617
|
*/
|
|
3618
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
3618
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
3619
3619
|
/**
|
|
3620
3620
|
* @public
|
|
3621
3621
|
* @deprecated
|
|
@@ -1550,7 +1550,7 @@ export interface CreateSecurityProfileRequest {
|
|
|
1550
1550
|
securityProfileName: string | undefined;
|
|
1551
1551
|
securityProfileDescription?: string;
|
|
1552
1552
|
behaviors?: Behavior[];
|
|
1553
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
1553
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
1554
1554
|
additionalMetricsToRetain?: string[];
|
|
1555
1555
|
additionalMetricsToRetainV2?: MetricToRetain[];
|
|
1556
1556
|
tags?: Tag[];
|
|
@@ -183,9 +183,8 @@ export interface DeprecateThingTypeResponse {}
|
|
|
183
183
|
export interface DescribeAccountAuditConfigurationRequest {}
|
|
184
184
|
export interface DescribeAccountAuditConfigurationResponse {
|
|
185
185
|
roleArn?: string;
|
|
186
|
-
auditNotificationTargetConfigurations?:
|
|
187
|
-
AuditNotificationType,
|
|
188
|
-
AuditNotificationTarget
|
|
186
|
+
auditNotificationTargetConfigurations?: Partial<
|
|
187
|
+
Record<AuditNotificationType, AuditNotificationTarget>
|
|
189
188
|
>;
|
|
190
189
|
auditCheckConfigurations?: Record<string, AuditCheckConfiguration>;
|
|
191
190
|
}
|
|
@@ -474,7 +473,7 @@ export interface Configuration {
|
|
|
474
473
|
Enabled?: boolean;
|
|
475
474
|
}
|
|
476
475
|
export interface DescribeEventConfigurationsResponse {
|
|
477
|
-
eventConfigurations?: Record<EventType, Configuration
|
|
476
|
+
eventConfigurations?: Partial<Record<EventType, Configuration>>;
|
|
478
477
|
creationDate?: Date;
|
|
479
478
|
lastModifiedDate?: Date;
|
|
480
479
|
}
|
|
@@ -723,7 +722,7 @@ export interface DescribeSecurityProfileResponse {
|
|
|
723
722
|
securityProfileArn?: string;
|
|
724
723
|
securityProfileDescription?: string;
|
|
725
724
|
behaviors?: Behavior[];
|
|
726
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
725
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
727
726
|
additionalMetricsToRetain?: string[];
|
|
728
727
|
additionalMetricsToRetainV2?: MetricToRetain[];
|
|
729
728
|
version?: number;
|
|
@@ -702,9 +702,8 @@ export interface UntagResourceRequest {
|
|
|
702
702
|
export interface UntagResourceResponse {}
|
|
703
703
|
export interface UpdateAccountAuditConfigurationRequest {
|
|
704
704
|
roleArn?: string;
|
|
705
|
-
auditNotificationTargetConfigurations?:
|
|
706
|
-
AuditNotificationType,
|
|
707
|
-
AuditNotificationTarget
|
|
705
|
+
auditNotificationTargetConfigurations?: Partial<
|
|
706
|
+
Record<AuditNotificationType, AuditNotificationTarget>
|
|
708
707
|
>;
|
|
709
708
|
auditCheckConfigurations?: Record<string, AuditCheckConfiguration>;
|
|
710
709
|
}
|
|
@@ -795,7 +794,7 @@ export interface UpdateDynamicThingGroupResponse {
|
|
|
795
794
|
version?: number;
|
|
796
795
|
}
|
|
797
796
|
export interface UpdateEventConfigurationsRequest {
|
|
798
|
-
eventConfigurations?: Record<EventType, Configuration
|
|
797
|
+
eventConfigurations?: Partial<Record<EventType, Configuration>>;
|
|
799
798
|
}
|
|
800
799
|
export interface UpdateEventConfigurationsResponse {}
|
|
801
800
|
export interface UpdateFleetMetricRequest {
|
|
@@ -895,7 +894,7 @@ export interface UpdateSecurityProfileRequest {
|
|
|
895
894
|
securityProfileName: string | undefined;
|
|
896
895
|
securityProfileDescription?: string;
|
|
897
896
|
behaviors?: Behavior[];
|
|
898
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
897
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
899
898
|
additionalMetricsToRetain?: string[];
|
|
900
899
|
additionalMetricsToRetainV2?: MetricToRetain[];
|
|
901
900
|
deleteBehaviors?: boolean;
|
|
@@ -908,7 +907,7 @@ export interface UpdateSecurityProfileResponse {
|
|
|
908
907
|
securityProfileArn?: string;
|
|
909
908
|
securityProfileDescription?: string;
|
|
910
909
|
behaviors?: Behavior[];
|
|
911
|
-
alertTargets?: Record<AlertTargetType, AlertTarget
|
|
910
|
+
alertTargets?: Partial<Record<AlertTargetType, AlertTarget>>;
|
|
912
911
|
additionalMetricsToRetain?: string[];
|
|
913
912
|
additionalMetricsToRetainV2?: MetricToRetain[];
|
|
914
913
|
version?: number;
|
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.433.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,39 +21,39 @@
|
|
|
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/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.433.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.433.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.433.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.433.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.433.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
32
|
+
"@aws-sdk/types": "3.433.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.433.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.433.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.433.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.16",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.4",
|
|
38
|
+
"@smithy/hash-node": "^2.0.12",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.12",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.18",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.12",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.6",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.3",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.8",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.8",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.12",
|
|
49
|
+
"@smithy/types": "^2.4.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.12",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.16",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.21",
|
|
56
|
+
"@smithy/util-retry": "^2.0.5",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|