@aws-sdk/client-location 3.855.0 → 3.856.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 +370 -36
- package/dist-es/commands/BatchEvaluateGeofencesCommand.js +2 -2
- package/dist-es/commands/BatchPutGeofenceCommand.js +2 -2
- package/dist-es/commands/BatchUpdateDevicePositionCommand.js +2 -2
- package/dist-es/commands/CreateGeofenceCollectionCommand.js +2 -1
- package/dist-es/commands/CreateKeyCommand.js +2 -2
- package/dist-es/commands/CreateMapCommand.js +2 -1
- package/dist-es/commands/CreatePlaceIndexCommand.js +2 -1
- package/dist-es/commands/CreateRouteCalculatorCommand.js +2 -1
- package/dist-es/commands/CreateTrackerCommand.js +2 -1
- package/dist-es/commands/DescribeGeofenceCollectionCommand.js +2 -1
- package/dist-es/commands/DescribeMapCommand.js +2 -1
- package/dist-es/commands/DescribePlaceIndexCommand.js +2 -1
- package/dist-es/commands/DescribeRouteCalculatorCommand.js +2 -1
- package/dist-es/commands/DescribeTrackerCommand.js +2 -1
- package/dist-es/commands/GetDevicePositionHistoryCommand.js +2 -2
- package/dist-es/commands/ListGeofenceCollectionsCommand.js +2 -1
- package/dist-es/commands/ListKeysCommand.js +2 -1
- package/dist-es/commands/ListMapsCommand.js +2 -1
- package/dist-es/commands/ListPlaceIndexesCommand.js +2 -1
- package/dist-es/commands/ListRouteCalculatorsCommand.js +2 -1
- package/dist-es/commands/ListTrackersCommand.js +2 -1
- package/dist-es/commands/PutGeofenceCommand.js +2 -2
- package/dist-es/commands/UpdateGeofenceCollectionCommand.js +2 -1
- package/dist-es/commands/UpdateKeyCommand.js +2 -1
- package/dist-es/commands/UpdateMapCommand.js +2 -1
- package/dist-es/commands/UpdatePlaceIndexCommand.js +2 -1
- package/dist-es/commands/UpdateRouteCalculatorCommand.js +2 -1
- package/dist-es/commands/UpdateTrackerCommand.js +2 -1
- package/dist-es/models/models_0.js +233 -0
- package/dist-es/protocols/Aws_restJson1.js +17 -0
- package/dist-types/commands/AssociateTrackerConsumerCommand.d.ts +1 -1
- package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +2 -1
- package/dist-types/commands/BatchPutGeofenceCommand.d.ts +9 -1
- package/dist-types/commands/CalculateRouteCommand.d.ts +3 -3
- package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +3 -3
- package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateKeyCommand.d.ts +2 -2
- package/dist-types/commands/CreateMapCommand.d.ts +1 -1
- package/dist-types/commands/CreatePlaceIndexCommand.d.ts +1 -1
- package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrackerCommand.d.ts +1 -1
- package/dist-types/commands/ForecastGeofenceEventsCommand.d.ts +17 -6
- package/dist-types/commands/GetGeofenceCommand.d.ts +9 -1
- package/dist-types/commands/GetPlaceCommand.d.ts +6 -0
- package/dist-types/commands/ListGeofencesCommand.d.ts +7 -0
- package/dist-types/commands/PutGeofenceCommand.d.ts +7 -0
- package/dist-types/commands/VerifyDevicePositionCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +481 -136
- package/dist-types/ts3.4/models/models_0.d.ts +133 -0
- package/package.json +5 -5
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { BatchEvaluateGeofencesRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { BatchEvaluateGeofencesRequestFilterSensitiveLog, BatchEvaluateGeofencesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { de_BatchEvaluateGeofencesCommand, se_BatchEvaluateGeofencesCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class BatchEvaluateGeofencesCommand extends $Command
|
|
@@ -16,7 +16,7 @@ export class BatchEvaluateGeofencesCommand extends $Command
|
|
|
16
16
|
})
|
|
17
17
|
.s("LocationService", "BatchEvaluateGeofences", {})
|
|
18
18
|
.n("LocationClient", "BatchEvaluateGeofencesCommand")
|
|
19
|
-
.f(BatchEvaluateGeofencesRequestFilterSensitiveLog,
|
|
19
|
+
.f(BatchEvaluateGeofencesRequestFilterSensitiveLog, BatchEvaluateGeofencesResponseFilterSensitiveLog)
|
|
20
20
|
.ser(se_BatchEvaluateGeofencesCommand)
|
|
21
21
|
.de(de_BatchEvaluateGeofencesCommand)
|
|
22
22
|
.build() {
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { BatchPutGeofenceRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { BatchPutGeofenceRequestFilterSensitiveLog, BatchPutGeofenceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { de_BatchPutGeofenceCommand, se_BatchPutGeofenceCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class BatchPutGeofenceCommand extends $Command
|
|
@@ -16,7 +16,7 @@ export class BatchPutGeofenceCommand extends $Command
|
|
|
16
16
|
})
|
|
17
17
|
.s("LocationService", "BatchPutGeofence", {})
|
|
18
18
|
.n("LocationClient", "BatchPutGeofenceCommand")
|
|
19
|
-
.f(BatchPutGeofenceRequestFilterSensitiveLog,
|
|
19
|
+
.f(BatchPutGeofenceRequestFilterSensitiveLog, BatchPutGeofenceResponseFilterSensitiveLog)
|
|
20
20
|
.ser(se_BatchPutGeofenceCommand)
|
|
21
21
|
.de(de_BatchPutGeofenceCommand)
|
|
22
22
|
.build() {
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { BatchUpdateDevicePositionRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { BatchUpdateDevicePositionRequestFilterSensitiveLog, BatchUpdateDevicePositionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { de_BatchUpdateDevicePositionCommand, se_BatchUpdateDevicePositionCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class BatchUpdateDevicePositionCommand extends $Command
|
|
@@ -16,7 +16,7 @@ export class BatchUpdateDevicePositionCommand extends $Command
|
|
|
16
16
|
})
|
|
17
17
|
.s("LocationService", "BatchUpdateDevicePosition", {})
|
|
18
18
|
.n("LocationClient", "BatchUpdateDevicePositionCommand")
|
|
19
|
-
.f(BatchUpdateDevicePositionRequestFilterSensitiveLog,
|
|
19
|
+
.f(BatchUpdateDevicePositionRequestFilterSensitiveLog, BatchUpdateDevicePositionResponseFilterSensitiveLog)
|
|
20
20
|
.ser(se_BatchUpdateDevicePositionCommand)
|
|
21
21
|
.de(de_BatchUpdateDevicePositionCommand)
|
|
22
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateGeofenceCollectionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_CreateGeofenceCollectionCommand, se_CreateGeofenceCollectionCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreateGeofenceCollectionCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class CreateGeofenceCollectionCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "CreateGeofenceCollection", {})
|
|
17
18
|
.n("LocationClient", "CreateGeofenceCollectionCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, CreateGeofenceCollectionResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_CreateGeofenceCollectionCommand)
|
|
20
21
|
.de(de_CreateGeofenceCollectionCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { CreateKeyResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
|
+
import { CreateKeyRequestFilterSensitiveLog, CreateKeyResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { de_CreateKeyCommand, se_CreateKeyCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreateKeyCommand extends $Command
|
|
@@ -16,7 +16,7 @@ export class CreateKeyCommand extends $Command
|
|
|
16
16
|
})
|
|
17
17
|
.s("LocationService", "CreateKey", {})
|
|
18
18
|
.n("LocationClient", "CreateKeyCommand")
|
|
19
|
-
.f(
|
|
19
|
+
.f(CreateKeyRequestFilterSensitiveLog, CreateKeyResponseFilterSensitiveLog)
|
|
20
20
|
.ser(se_CreateKeyCommand)
|
|
21
21
|
.de(de_CreateKeyCommand)
|
|
22
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateMapRequestFilterSensitiveLog, CreateMapResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_CreateMapCommand, se_CreateMapCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreateMapCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class CreateMapCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "CreateMap", {})
|
|
17
18
|
.n("LocationClient", "CreateMapCommand")
|
|
18
|
-
.f(
|
|
19
|
+
.f(CreateMapRequestFilterSensitiveLog, CreateMapResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_CreateMapCommand)
|
|
20
21
|
.de(de_CreateMapCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreatePlaceIndexResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_CreatePlaceIndexCommand, se_CreatePlaceIndexCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreatePlaceIndexCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class CreatePlaceIndexCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "CreatePlaceIndex", {})
|
|
17
18
|
.n("LocationClient", "CreatePlaceIndexCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, CreatePlaceIndexResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_CreatePlaceIndexCommand)
|
|
20
21
|
.de(de_CreatePlaceIndexCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateRouteCalculatorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_CreateRouteCalculatorCommand, se_CreateRouteCalculatorCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreateRouteCalculatorCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class CreateRouteCalculatorCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "CreateRouteCalculator", {})
|
|
17
18
|
.n("LocationClient", "CreateRouteCalculatorCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, CreateRouteCalculatorResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_CreateRouteCalculatorCommand)
|
|
20
21
|
.de(de_CreateRouteCalculatorCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateTrackerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_CreateTrackerCommand, se_CreateTrackerCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreateTrackerCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class CreateTrackerCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "CreateTracker", {})
|
|
17
18
|
.n("LocationClient", "CreateTrackerCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, CreateTrackerResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_CreateTrackerCommand)
|
|
20
21
|
.de(de_CreateTrackerCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { DescribeGeofenceCollectionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_DescribeGeofenceCollectionCommand, se_DescribeGeofenceCollectionCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribeGeofenceCollectionCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class DescribeGeofenceCollectionCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "DescribeGeofenceCollection", {})
|
|
17
18
|
.n("LocationClient", "DescribeGeofenceCollectionCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, DescribeGeofenceCollectionResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_DescribeGeofenceCollectionCommand)
|
|
20
21
|
.de(de_DescribeGeofenceCollectionCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { DescribeMapResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
6
|
import { de_DescribeMapCommand, se_DescribeMapCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribeMapCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class DescribeMapCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "DescribeMap", {})
|
|
17
18
|
.n("LocationClient", "DescribeMapCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, DescribeMapResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_DescribeMapCommand)
|
|
20
21
|
.de(de_DescribeMapCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { DescribePlaceIndexResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_DescribePlaceIndexCommand, se_DescribePlaceIndexCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribePlaceIndexCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class DescribePlaceIndexCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "DescribePlaceIndex", {})
|
|
17
18
|
.n("LocationClient", "DescribePlaceIndexCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, DescribePlaceIndexResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_DescribePlaceIndexCommand)
|
|
20
21
|
.de(de_DescribePlaceIndexCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { DescribeRouteCalculatorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_DescribeRouteCalculatorCommand, se_DescribeRouteCalculatorCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribeRouteCalculatorCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class DescribeRouteCalculatorCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "DescribeRouteCalculator", {})
|
|
17
18
|
.n("LocationClient", "DescribeRouteCalculatorCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, DescribeRouteCalculatorResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_DescribeRouteCalculatorCommand)
|
|
20
21
|
.de(de_DescribeRouteCalculatorCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { DescribeTrackerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_DescribeTrackerCommand, se_DescribeTrackerCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribeTrackerCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class DescribeTrackerCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "DescribeTracker", {})
|
|
17
18
|
.n("LocationClient", "DescribeTrackerCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, DescribeTrackerResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_DescribeTrackerCommand)
|
|
20
21
|
.de(de_DescribeTrackerCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { GetDevicePositionHistoryResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { GetDevicePositionHistoryRequestFilterSensitiveLog, GetDevicePositionHistoryResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { de_GetDevicePositionHistoryCommand, se_GetDevicePositionHistoryCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetDevicePositionHistoryCommand extends $Command
|
|
@@ -16,7 +16,7 @@ export class GetDevicePositionHistoryCommand extends $Command
|
|
|
16
16
|
})
|
|
17
17
|
.s("LocationService", "GetDevicePositionHistory", {})
|
|
18
18
|
.n("LocationClient", "GetDevicePositionHistoryCommand")
|
|
19
|
-
.f(
|
|
19
|
+
.f(GetDevicePositionHistoryRequestFilterSensitiveLog, GetDevicePositionHistoryResponseFilterSensitiveLog)
|
|
20
20
|
.ser(se_GetDevicePositionHistoryCommand)
|
|
21
21
|
.de(de_GetDevicePositionHistoryCommand)
|
|
22
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListGeofenceCollectionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_ListGeofenceCollectionsCommand, se_ListGeofenceCollectionsCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListGeofenceCollectionsCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class ListGeofenceCollectionsCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "ListGeofenceCollections", {})
|
|
17
18
|
.n("LocationClient", "ListGeofenceCollectionsCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, ListGeofenceCollectionsResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_ListGeofenceCollectionsCommand)
|
|
20
21
|
.de(de_ListGeofenceCollectionsCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListKeysResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
6
|
import { de_ListKeysCommand, se_ListKeysCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListKeysCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class ListKeysCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "ListKeys", {})
|
|
17
18
|
.n("LocationClient", "ListKeysCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, ListKeysResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_ListKeysCommand)
|
|
20
21
|
.de(de_ListKeysCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListMapsResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
6
|
import { de_ListMapsCommand, se_ListMapsCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListMapsCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class ListMapsCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "ListMaps", {})
|
|
17
18
|
.n("LocationClient", "ListMapsCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, ListMapsResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_ListMapsCommand)
|
|
20
21
|
.de(de_ListMapsCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListPlaceIndexesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_ListPlaceIndexesCommand, se_ListPlaceIndexesCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListPlaceIndexesCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class ListPlaceIndexesCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "ListPlaceIndexes", {})
|
|
17
18
|
.n("LocationClient", "ListPlaceIndexesCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, ListPlaceIndexesResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_ListPlaceIndexesCommand)
|
|
20
21
|
.de(de_ListPlaceIndexesCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListRouteCalculatorsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_ListRouteCalculatorsCommand, se_ListRouteCalculatorsCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListRouteCalculatorsCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class ListRouteCalculatorsCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "ListRouteCalculators", {})
|
|
17
18
|
.n("LocationClient", "ListRouteCalculatorsCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, ListRouteCalculatorsResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_ListRouteCalculatorsCommand)
|
|
20
21
|
.de(de_ListRouteCalculatorsCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListTrackersResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
6
|
import { de_ListTrackersCommand, se_ListTrackersCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListTrackersCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class ListTrackersCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "ListTrackers", {})
|
|
17
18
|
.n("LocationClient", "ListTrackersCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, ListTrackersResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_ListTrackersCommand)
|
|
20
21
|
.de(de_ListTrackersCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { PutGeofenceRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
|
+
import { PutGeofenceRequestFilterSensitiveLog, PutGeofenceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { de_PutGeofenceCommand, se_PutGeofenceCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class PutGeofenceCommand extends $Command
|
|
@@ -16,7 +16,7 @@ export class PutGeofenceCommand extends $Command
|
|
|
16
16
|
})
|
|
17
17
|
.s("LocationService", "PutGeofence", {})
|
|
18
18
|
.n("LocationClient", "PutGeofenceCommand")
|
|
19
|
-
.f(PutGeofenceRequestFilterSensitiveLog,
|
|
19
|
+
.f(PutGeofenceRequestFilterSensitiveLog, PutGeofenceResponseFilterSensitiveLog)
|
|
20
20
|
.ser(se_PutGeofenceCommand)
|
|
21
21
|
.de(de_PutGeofenceCommand)
|
|
22
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateGeofenceCollectionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_UpdateGeofenceCollectionCommand, se_UpdateGeofenceCollectionCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateGeofenceCollectionCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdateGeofenceCollectionCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "UpdateGeofenceCollection", {})
|
|
17
18
|
.n("LocationClient", "UpdateGeofenceCollectionCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, UpdateGeofenceCollectionResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_UpdateGeofenceCollectionCommand)
|
|
20
21
|
.de(de_UpdateGeofenceCollectionCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateKeyRequestFilterSensitiveLog, UpdateKeyResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_UpdateKeyCommand, se_UpdateKeyCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateKeyCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdateKeyCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "UpdateKey", {})
|
|
17
18
|
.n("LocationClient", "UpdateKeyCommand")
|
|
18
|
-
.f(
|
|
19
|
+
.f(UpdateKeyRequestFilterSensitiveLog, UpdateKeyResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_UpdateKeyCommand)
|
|
20
21
|
.de(de_UpdateKeyCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateMapRequestFilterSensitiveLog, UpdateMapResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_UpdateMapCommand, se_UpdateMapCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateMapCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdateMapCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "UpdateMap", {})
|
|
17
18
|
.n("LocationClient", "UpdateMapCommand")
|
|
18
|
-
.f(
|
|
19
|
+
.f(UpdateMapRequestFilterSensitiveLog, UpdateMapResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_UpdateMapCommand)
|
|
20
21
|
.de(de_UpdateMapCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdatePlaceIndexResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_UpdatePlaceIndexCommand, se_UpdatePlaceIndexCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdatePlaceIndexCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdatePlaceIndexCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "UpdatePlaceIndex", {})
|
|
17
18
|
.n("LocationClient", "UpdatePlaceIndexCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, UpdatePlaceIndexResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_UpdatePlaceIndexCommand)
|
|
20
21
|
.de(de_UpdatePlaceIndexCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateRouteCalculatorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_UpdateRouteCalculatorCommand, se_UpdateRouteCalculatorCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateRouteCalculatorCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdateRouteCalculatorCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "UpdateRouteCalculator", {})
|
|
17
18
|
.n("LocationClient", "UpdateRouteCalculatorCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, UpdateRouteCalculatorResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_UpdateRouteCalculatorCommand)
|
|
20
21
|
.de(de_UpdateRouteCalculatorCommand)
|
|
21
22
|
.build() {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateTrackerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_UpdateTrackerCommand, se_UpdateTrackerCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateTrackerCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdateTrackerCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("LocationService", "UpdateTracker", {})
|
|
17
18
|
.n("LocationClient", "UpdateTrackerCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, UpdateTrackerResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_UpdateTrackerCommand)
|
|
20
21
|
.de(de_UpdateTrackerCommand)
|
|
21
22
|
.build() {
|