@aws-sdk/client-iot 3.451.0 → 3.453.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_1.js +5 -1
- package/dist-es/models/models_1.js +4 -0
- package/dist-types/commands/AttachSecurityProfileCommand.d.ts +1 -1
- package/dist-types/commands/CancelAuditMitigationActionsTaskCommand.d.ts +3 -2
- package/dist-types/commands/CancelAuditTaskCommand.d.ts +1 -2
- package/dist-types/commands/CancelDetectMitigationActionsTaskCommand.d.ts +3 -1
- package/dist-types/commands/CreateCustomMetricCommand.d.ts +4 -1
- package/dist-types/commands/CreateDimensionCommand.d.ts +2 -4
- package/dist-types/commands/CreateMitigationActionCommand.d.ts +2 -4
- package/dist-types/commands/CreateScheduledAuditCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAccountAuditConfigurationCommand.d.ts +2 -3
- package/dist-types/commands/DeleteCustomMetricCommand.d.ts +8 -4
- package/dist-types/commands/DescribeAccountAuditConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/DescribeAuditFindingCommand.d.ts +3 -1
- package/dist-types/commands/DescribeAuditMitigationActionsTaskCommand.d.ts +1 -3
- package/dist-types/commands/DescribeCustomMetricCommand.d.ts +3 -1
- package/dist-types/commands/DescribeDetectMitigationActionsTaskCommand.d.ts +3 -1
- package/dist-types/commands/DetachSecurityProfileCommand.d.ts +1 -2
- package/dist-types/commands/GetBehaviorModelTrainingSummariesCommand.d.ts +3 -1
- package/dist-types/commands/GetIndexingConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/ListAuditFindingsCommand.d.ts +2 -2
- package/dist-types/commands/ListAuditMitigationActionsExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/ListAuditTasksCommand.d.ts +2 -2
- package/dist-types/commands/ListCustomMetricsCommand.d.ts +3 -1
- package/dist-types/commands/ListDetectMitigationActionsExecutionsCommand.d.ts +3 -1
- package/dist-types/commands/ListDetectMitigationActionsTasksCommand.d.ts +3 -1
- package/dist-types/commands/ListMetricValuesCommand.d.ts +2 -2
- package/dist-types/commands/ListPolicyPrincipalsCommand.d.ts +1 -1
- package/dist-types/commands/ListRelatedResourcesForAuditFindingCommand.d.ts +6 -6
- package/dist-types/commands/ListSecurityProfilesCommand.d.ts +4 -4
- package/dist-types/commands/ListTargetsForSecurityProfileCommand.d.ts +1 -2
- package/dist-types/commands/ListViolationEventsCommand.d.ts +3 -3
- package/dist-types/commands/StartDetectMitigationActionsTaskCommand.d.ts +3 -1
- package/dist-types/commands/UpdateAccountAuditConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/UpdateCustomMetricCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDimensionCommand.d.ts +6 -2
- package/dist-types/commands/UpdateIndexingConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateScheduledAuditCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +64 -50
- package/dist-types/models/models_1.d.ts +272 -192
- package/dist-types/models/models_2.d.ts +216 -136
- package/dist-types/ts3.4/commands/ListPolicyPrincipalsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +11 -10
- package/dist-types/ts3.4/models/models_2.d.ts +10 -0
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
ListPolicyPrincipalsRequest,
|
|
16
16
|
ListPolicyPrincipalsResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_2";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface ListPolicyPrincipalsCommandInput
|
|
20
20
|
extends ListPolicyPrincipalsRequest {}
|
|
@@ -953,8 +953,19 @@ export declare const DeviceDefenderIndexingMode: {
|
|
|
953
953
|
};
|
|
954
954
|
export type DeviceDefenderIndexingMode =
|
|
955
955
|
(typeof DeviceDefenderIndexingMode)[keyof typeof DeviceDefenderIndexingMode];
|
|
956
|
+
export declare const TargetFieldOrder: {
|
|
957
|
+
readonly LatLon: "LatLon";
|
|
958
|
+
readonly LonLat: "LonLat";
|
|
959
|
+
};
|
|
960
|
+
export type TargetFieldOrder =
|
|
961
|
+
(typeof TargetFieldOrder)[keyof typeof TargetFieldOrder];
|
|
962
|
+
export interface GeoLocationTarget {
|
|
963
|
+
name?: string;
|
|
964
|
+
order?: TargetFieldOrder;
|
|
965
|
+
}
|
|
956
966
|
export interface IndexingFilter {
|
|
957
967
|
namedShadowNames?: string[];
|
|
968
|
+
geoLocations?: GeoLocationTarget[];
|
|
958
969
|
}
|
|
959
970
|
export declare const NamedShadowIndexingMode: {
|
|
960
971
|
readonly OFF: "OFF";
|
|
@@ -1599,16 +1610,6 @@ export interface ListPoliciesResponse {
|
|
|
1599
1610
|
policies?: Policy[];
|
|
1600
1611
|
nextMarker?: string;
|
|
1601
1612
|
}
|
|
1602
|
-
export interface ListPolicyPrincipalsRequest {
|
|
1603
|
-
policyName: string | undefined;
|
|
1604
|
-
marker?: string;
|
|
1605
|
-
pageSize?: number;
|
|
1606
|
-
ascendingOrder?: boolean;
|
|
1607
|
-
}
|
|
1608
|
-
export interface ListPolicyPrincipalsResponse {
|
|
1609
|
-
principals?: string[];
|
|
1610
|
-
nextMarker?: string;
|
|
1611
|
-
}
|
|
1612
1613
|
export declare const GetPackageResponseFilterSensitiveLog: (
|
|
1613
1614
|
obj: GetPackageResponse
|
|
1614
1615
|
) => any;
|
|
@@ -65,6 +65,16 @@ import {
|
|
|
65
65
|
VersionUpdateByJobsConfig,
|
|
66
66
|
ViolationEventOccurrenceRange,
|
|
67
67
|
} from "./models_1";
|
|
68
|
+
export interface ListPolicyPrincipalsRequest {
|
|
69
|
+
policyName: string | undefined;
|
|
70
|
+
marker?: string;
|
|
71
|
+
pageSize?: number;
|
|
72
|
+
ascendingOrder?: boolean;
|
|
73
|
+
}
|
|
74
|
+
export interface ListPolicyPrincipalsResponse {
|
|
75
|
+
principals?: string[];
|
|
76
|
+
nextMarker?: string;
|
|
77
|
+
}
|
|
68
78
|
export interface ListPolicyVersionsRequest {
|
|
69
79
|
policyName: string | undefined;
|
|
70
80
|
}
|
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.453.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",
|