@aws-sdk/client-iotfleetwise 3.926.0 → 3.928.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 +2589 -2539
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/IoTFleetWiseClient.js +2 -0
- package/dist-es/commands/AssociateVehicleFleetCommand.js +3 -9
- package/dist-es/commands/BatchCreateVehicleCommand.js +3 -9
- package/dist-es/commands/BatchUpdateVehicleCommand.js +3 -9
- package/dist-es/commands/CreateCampaignCommand.js +3 -10
- package/dist-es/commands/CreateDecoderManifestCommand.js +3 -9
- package/dist-es/commands/CreateFleetCommand.js +3 -9
- package/dist-es/commands/CreateModelManifestCommand.js +3 -9
- package/dist-es/commands/CreateSignalCatalogCommand.js +3 -9
- package/dist-es/commands/CreateStateTemplateCommand.js +3 -9
- package/dist-es/commands/CreateVehicleCommand.js +3 -9
- package/dist-es/commands/DeleteCampaignCommand.js +3 -9
- package/dist-es/commands/DeleteDecoderManifestCommand.js +3 -9
- package/dist-es/commands/DeleteFleetCommand.js +3 -9
- package/dist-es/commands/DeleteModelManifestCommand.js +3 -9
- package/dist-es/commands/DeleteSignalCatalogCommand.js +3 -9
- package/dist-es/commands/DeleteStateTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteVehicleCommand.js +3 -9
- package/dist-es/commands/DisassociateVehicleFleetCommand.js +3 -9
- package/dist-es/commands/GetCampaignCommand.js +3 -10
- package/dist-es/commands/GetDecoderManifestCommand.js +3 -9
- package/dist-es/commands/GetEncryptionConfigurationCommand.js +3 -9
- package/dist-es/commands/GetFleetCommand.js +3 -9
- package/dist-es/commands/GetLoggingOptionsCommand.js +3 -9
- package/dist-es/commands/GetModelManifestCommand.js +3 -9
- package/dist-es/commands/GetRegisterAccountStatusCommand.js +3 -9
- package/dist-es/commands/GetSignalCatalogCommand.js +3 -9
- package/dist-es/commands/GetStateTemplateCommand.js +3 -9
- package/dist-es/commands/GetVehicleCommand.js +3 -9
- package/dist-es/commands/GetVehicleStatusCommand.js +3 -9
- package/dist-es/commands/ImportDecoderManifestCommand.js +3 -9
- package/dist-es/commands/ImportSignalCatalogCommand.js +3 -9
- package/dist-es/commands/ListCampaignsCommand.js +3 -9
- package/dist-es/commands/ListDecoderManifestNetworkInterfacesCommand.js +3 -9
- package/dist-es/commands/ListDecoderManifestSignalsCommand.js +3 -9
- package/dist-es/commands/ListDecoderManifestsCommand.js +3 -9
- package/dist-es/commands/ListFleetsCommand.js +3 -9
- package/dist-es/commands/ListFleetsForVehicleCommand.js +3 -9
- package/dist-es/commands/ListModelManifestNodesCommand.js +3 -9
- package/dist-es/commands/ListModelManifestsCommand.js +3 -9
- package/dist-es/commands/ListSignalCatalogNodesCommand.js +3 -9
- package/dist-es/commands/ListSignalCatalogsCommand.js +3 -9
- package/dist-es/commands/ListStateTemplatesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVehiclesCommand.js +3 -9
- package/dist-es/commands/ListVehiclesInFleetCommand.js +3 -9
- package/dist-es/commands/PutEncryptionConfigurationCommand.js +3 -9
- package/dist-es/commands/PutLoggingOptionsCommand.js +3 -9
- package/dist-es/commands/RegisterAccountCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateCampaignCommand.js +3 -10
- package/dist-es/commands/UpdateDecoderManifestCommand.js +3 -9
- package/dist-es/commands/UpdateFleetCommand.js +3 -9
- package/dist-es/commands/UpdateModelManifestCommand.js +3 -9
- package/dist-es/commands/UpdateSignalCatalogCommand.js +3 -9
- package/dist-es/commands/UpdateStateTemplateCommand.js +3 -9
- package/dist-es/commands/UpdateVehicleCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -71
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +2460 -0
- package/dist-types/IoTFleetWiseClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -44
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +307 -0
- package/dist-types/ts3.4/IoTFleetWiseClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -33
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +313 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -2033
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -515
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -689
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { PutEncryptionConfiguration } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class PutEncryptionConfigurationCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "PutEncryptionConfiguration", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "PutEncryptionConfigurationCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_PutEncryptionConfigurationCommand)
|
|
20
|
-
.de(de_PutEncryptionConfigurationCommand)
|
|
14
|
+
.sc(PutEncryptionConfiguration)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { PutLoggingOptions } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class PutLoggingOptionsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "PutLoggingOptions", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "PutLoggingOptionsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_PutLoggingOptionsCommand)
|
|
20
|
-
.de(de_PutLoggingOptionsCommand)
|
|
14
|
+
.sc(PutLoggingOptions)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { RegisterAccount } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class RegisterAccountCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "RegisterAccount", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "RegisterAccountCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_RegisterAccountCommand)
|
|
20
|
-
.de(de_RegisterAccountCommand)
|
|
14
|
+
.sc(RegisterAccount)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { TagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class TagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "TagResource", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "TagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_TagResourceCommand)
|
|
20
|
-
.de(de_TagResourceCommand)
|
|
14
|
+
.sc(TagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "UntagResource", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "UntagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagResourceCommand)
|
|
20
|
-
.de(de_UntagResourceCommand)
|
|
14
|
+
.sc(UntagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_UpdateCampaignCommand, se_UpdateCampaignCommand } from "../protocols/Aws_json1_0";
|
|
4
|
+
import { UpdateCampaign } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class UpdateCampaignCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("IoTAutobahnControlPlane", "UpdateCampaign", {})
|
|
18
13
|
.n("IoTFleetWiseClient", "UpdateCampaignCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_UpdateCampaignCommand)
|
|
21
|
-
.de(de_UpdateCampaignCommand)
|
|
14
|
+
.sc(UpdateCampaign)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateDecoderManifest } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateDecoderManifestCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "UpdateDecoderManifest", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "UpdateDecoderManifestCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateDecoderManifestCommand)
|
|
20
|
-
.de(de_UpdateDecoderManifestCommand)
|
|
14
|
+
.sc(UpdateDecoderManifest)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateFleet } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateFleetCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "UpdateFleet", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "UpdateFleetCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateFleetCommand)
|
|
20
|
-
.de(de_UpdateFleetCommand)
|
|
14
|
+
.sc(UpdateFleet)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateModelManifest } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateModelManifestCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "UpdateModelManifest", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "UpdateModelManifestCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateModelManifestCommand)
|
|
20
|
-
.de(de_UpdateModelManifestCommand)
|
|
14
|
+
.sc(UpdateModelManifest)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateSignalCatalog } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateSignalCatalogCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "UpdateSignalCatalog", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "UpdateSignalCatalogCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateSignalCatalogCommand)
|
|
20
|
-
.de(de_UpdateSignalCatalogCommand)
|
|
14
|
+
.sc(UpdateSignalCatalog)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateStateTemplate } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateStateTemplateCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "UpdateStateTemplate", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "UpdateStateTemplateCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateStateTemplateCommand)
|
|
20
|
-
.de(de_UpdateStateTemplateCommand)
|
|
14
|
+
.sc(UpdateStateTemplate)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateVehicle } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateVehicleCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("IoTAutobahnControlPlane", "UpdateVehicle", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "UpdateVehicleCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateVehicleCommand)
|
|
20
|
-
.de(de_UpdateVehicleCommand)
|
|
14
|
+
.sc(UpdateVehicle)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { IoTFleetWiseServiceException as __BaseException } from "./IoTFleetWiseServiceException";
|
|
3
2
|
export class AccessDeniedException extends __BaseException {
|
|
4
3
|
name = "AccessDeniedException";
|
|
@@ -466,73 +465,3 @@ export var StructuredMessage;
|
|
|
466
465
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
467
466
|
};
|
|
468
467
|
})(StructuredMessage || (StructuredMessage = {}));
|
|
469
|
-
export const ConditionBasedCollectionSchemeFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
...(obj.expression && { expression: SENSITIVE_STRING }),
|
|
472
|
-
});
|
|
473
|
-
export const CollectionSchemeFilterSensitiveLog = (obj) => {
|
|
474
|
-
if (obj.timeBasedCollectionScheme !== undefined)
|
|
475
|
-
return { timeBasedCollectionScheme: obj.timeBasedCollectionScheme };
|
|
476
|
-
if (obj.conditionBasedCollectionScheme !== undefined)
|
|
477
|
-
return {
|
|
478
|
-
conditionBasedCollectionScheme: ConditionBasedCollectionSchemeFilterSensitiveLog(obj.conditionBasedCollectionScheme),
|
|
479
|
-
};
|
|
480
|
-
if (obj.$unknown !== undefined)
|
|
481
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
482
|
-
};
|
|
483
|
-
export const DataPartitionStorageOptionsFilterSensitiveLog = (obj) => ({
|
|
484
|
-
...obj,
|
|
485
|
-
...(obj.storageLocation && { storageLocation: SENSITIVE_STRING }),
|
|
486
|
-
});
|
|
487
|
-
export const DataPartitionUploadOptionsFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
...(obj.expression && { expression: SENSITIVE_STRING }),
|
|
490
|
-
});
|
|
491
|
-
export const DataPartitionFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
...(obj.storageOptions && { storageOptions: DataPartitionStorageOptionsFilterSensitiveLog(obj.storageOptions) }),
|
|
494
|
-
...(obj.uploadOptions && { uploadOptions: DataPartitionUploadOptionsFilterSensitiveLog(obj.uploadOptions) }),
|
|
495
|
-
});
|
|
496
|
-
export const ConditionBasedSignalFetchConfigFilterSensitiveLog = (obj) => ({
|
|
497
|
-
...obj,
|
|
498
|
-
...(obj.conditionExpression && { conditionExpression: SENSITIVE_STRING }),
|
|
499
|
-
});
|
|
500
|
-
export const SignalFetchConfigFilterSensitiveLog = (obj) => {
|
|
501
|
-
if (obj.timeBased !== undefined)
|
|
502
|
-
return { timeBased: obj.timeBased };
|
|
503
|
-
if (obj.conditionBased !== undefined)
|
|
504
|
-
return { conditionBased: ConditionBasedSignalFetchConfigFilterSensitiveLog(obj.conditionBased) };
|
|
505
|
-
if (obj.$unknown !== undefined)
|
|
506
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
507
|
-
};
|
|
508
|
-
export const SignalFetchInformationFilterSensitiveLog = (obj) => ({
|
|
509
|
-
...obj,
|
|
510
|
-
...(obj.signalFetchConfig && { signalFetchConfig: SignalFetchConfigFilterSensitiveLog(obj.signalFetchConfig) }),
|
|
511
|
-
...(obj.actions && { actions: SENSITIVE_STRING }),
|
|
512
|
-
});
|
|
513
|
-
export const CreateCampaignRequestFilterSensitiveLog = (obj) => ({
|
|
514
|
-
...obj,
|
|
515
|
-
...(obj.signalsToCollect && { signalsToCollect: SENSITIVE_STRING }),
|
|
516
|
-
...(obj.collectionScheme && { collectionScheme: CollectionSchemeFilterSensitiveLog(obj.collectionScheme) }),
|
|
517
|
-
...(obj.dataExtraDimensions && { dataExtraDimensions: SENSITIVE_STRING }),
|
|
518
|
-
...(obj.dataDestinationConfigs && { dataDestinationConfigs: obj.dataDestinationConfigs.map((item) => item) }),
|
|
519
|
-
...(obj.dataPartitions && {
|
|
520
|
-
dataPartitions: obj.dataPartitions.map((item) => DataPartitionFilterSensitiveLog(item)),
|
|
521
|
-
}),
|
|
522
|
-
...(obj.signalsToFetch && { signalsToFetch: SENSITIVE_STRING }),
|
|
523
|
-
});
|
|
524
|
-
export const GetCampaignResponseFilterSensitiveLog = (obj) => ({
|
|
525
|
-
...obj,
|
|
526
|
-
...(obj.signalsToCollect && { signalsToCollect: SENSITIVE_STRING }),
|
|
527
|
-
...(obj.collectionScheme && { collectionScheme: CollectionSchemeFilterSensitiveLog(obj.collectionScheme) }),
|
|
528
|
-
...(obj.dataExtraDimensions && { dataExtraDimensions: SENSITIVE_STRING }),
|
|
529
|
-
...(obj.dataDestinationConfigs && { dataDestinationConfigs: obj.dataDestinationConfigs.map((item) => item) }),
|
|
530
|
-
...(obj.dataPartitions && {
|
|
531
|
-
dataPartitions: obj.dataPartitions.map((item) => DataPartitionFilterSensitiveLog(item)),
|
|
532
|
-
}),
|
|
533
|
-
...(obj.signalsToFetch && { signalsToFetch: SENSITIVE_STRING }),
|
|
534
|
-
});
|
|
535
|
-
export const UpdateCampaignRequestFilterSensitiveLog = (obj) => ({
|
|
536
|
-
...obj,
|
|
537
|
-
...(obj.dataExtraDimensions && { dataExtraDimensions: SENSITIVE_STRING }),
|
|
538
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ??
|
|
27
|
+
new AwsJson1_0Protocol({
|
|
28
|
+
defaultNamespace: "com.amazonaws.iotfleetwise",
|
|
29
|
+
serviceTarget: "IoTAutobahnControlPlane",
|
|
30
|
+
awsQueryCompatible: false,
|
|
31
|
+
}),
|
|
25
32
|
serviceId: config?.serviceId ?? "IoTFleetWise",
|
|
26
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|