@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 { GetLoggingOptions } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetLoggingOptionsCommand 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", "GetLoggingOptions", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "GetLoggingOptionsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetLoggingOptionsCommand)
|
|
20
|
-
.de(de_GetLoggingOptionsCommand)
|
|
14
|
+
.sc(GetLoggingOptions)
|
|
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 { GetModelManifest } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetModelManifestCommand 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", "GetModelManifest", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "GetModelManifestCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetModelManifestCommand)
|
|
20
|
-
.de(de_GetModelManifestCommand)
|
|
14
|
+
.sc(GetModelManifest)
|
|
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 { GetRegisterAccountStatus } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetRegisterAccountStatusCommand 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", "GetRegisterAccountStatus", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "GetRegisterAccountStatusCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetRegisterAccountStatusCommand)
|
|
20
|
-
.de(de_GetRegisterAccountStatusCommand)
|
|
14
|
+
.sc(GetRegisterAccountStatus)
|
|
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 { GetSignalCatalog } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetSignalCatalogCommand 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", "GetSignalCatalog", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "GetSignalCatalogCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetSignalCatalogCommand)
|
|
20
|
-
.de(de_GetSignalCatalogCommand)
|
|
14
|
+
.sc(GetSignalCatalog)
|
|
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 { GetStateTemplate } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetStateTemplateCommand 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", "GetStateTemplate", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "GetStateTemplateCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetStateTemplateCommand)
|
|
20
|
-
.de(de_GetStateTemplateCommand)
|
|
14
|
+
.sc(GetStateTemplate)
|
|
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 { GetVehicle } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetVehicleCommand 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", "GetVehicle", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "GetVehicleCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetVehicleCommand)
|
|
20
|
-
.de(de_GetVehicleCommand)
|
|
14
|
+
.sc(GetVehicle)
|
|
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 { GetVehicleStatus } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetVehicleStatusCommand 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", "GetVehicleStatus", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "GetVehicleStatusCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetVehicleStatusCommand)
|
|
20
|
-
.de(de_GetVehicleStatusCommand)
|
|
14
|
+
.sc(GetVehicleStatus)
|
|
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 { ImportDecoderManifest } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ImportDecoderManifestCommand 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", "ImportDecoderManifest", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ImportDecoderManifestCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ImportDecoderManifestCommand)
|
|
20
|
-
.de(de_ImportDecoderManifestCommand)
|
|
14
|
+
.sc(ImportDecoderManifest)
|
|
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 { ImportSignalCatalog } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ImportSignalCatalogCommand 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", "ImportSignalCatalog", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ImportSignalCatalogCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ImportSignalCatalogCommand)
|
|
20
|
-
.de(de_ImportSignalCatalogCommand)
|
|
14
|
+
.sc(ImportSignalCatalog)
|
|
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 { ListCampaigns } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListCampaignsCommand 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", "ListCampaigns", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListCampaignsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListCampaignsCommand)
|
|
20
|
-
.de(de_ListCampaignsCommand)
|
|
14
|
+
.sc(ListCampaigns)
|
|
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 { ListDecoderManifestNetworkInterfaces } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListDecoderManifestNetworkInterfacesCommand 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", "ListDecoderManifestNetworkInterfaces", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListDecoderManifestNetworkInterfacesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListDecoderManifestNetworkInterfacesCommand)
|
|
20
|
-
.de(de_ListDecoderManifestNetworkInterfacesCommand)
|
|
14
|
+
.sc(ListDecoderManifestNetworkInterfaces)
|
|
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 { ListDecoderManifestSignals } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListDecoderManifestSignalsCommand 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", "ListDecoderManifestSignals", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListDecoderManifestSignalsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListDecoderManifestSignalsCommand)
|
|
20
|
-
.de(de_ListDecoderManifestSignalsCommand)
|
|
14
|
+
.sc(ListDecoderManifestSignals)
|
|
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 { ListDecoderManifests } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListDecoderManifestsCommand 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", "ListDecoderManifests", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListDecoderManifestsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListDecoderManifestsCommand)
|
|
20
|
-
.de(de_ListDecoderManifestsCommand)
|
|
14
|
+
.sc(ListDecoderManifests)
|
|
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 { ListFleets } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListFleetsCommand 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", "ListFleets", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListFleetsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListFleetsCommand)
|
|
20
|
-
.de(de_ListFleetsCommand)
|
|
14
|
+
.sc(ListFleets)
|
|
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 { ListFleetsForVehicle } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListFleetsForVehicleCommand 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", "ListFleetsForVehicle", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListFleetsForVehicleCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListFleetsForVehicleCommand)
|
|
20
|
-
.de(de_ListFleetsForVehicleCommand)
|
|
14
|
+
.sc(ListFleetsForVehicle)
|
|
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 { ListModelManifestNodes } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListModelManifestNodesCommand 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", "ListModelManifestNodes", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListModelManifestNodesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListModelManifestNodesCommand)
|
|
20
|
-
.de(de_ListModelManifestNodesCommand)
|
|
14
|
+
.sc(ListModelManifestNodes)
|
|
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 { ListModelManifests } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListModelManifestsCommand 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", "ListModelManifests", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListModelManifestsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListModelManifestsCommand)
|
|
20
|
-
.de(de_ListModelManifestsCommand)
|
|
14
|
+
.sc(ListModelManifests)
|
|
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 { ListSignalCatalogNodes } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListSignalCatalogNodesCommand 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", "ListSignalCatalogNodes", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListSignalCatalogNodesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListSignalCatalogNodesCommand)
|
|
20
|
-
.de(de_ListSignalCatalogNodesCommand)
|
|
14
|
+
.sc(ListSignalCatalogNodes)
|
|
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 { ListSignalCatalogs } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListSignalCatalogsCommand 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", "ListSignalCatalogs", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListSignalCatalogsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListSignalCatalogsCommand)
|
|
20
|
-
.de(de_ListSignalCatalogsCommand)
|
|
14
|
+
.sc(ListSignalCatalogs)
|
|
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 { ListStateTemplates } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListStateTemplatesCommand 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", "ListStateTemplates", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListStateTemplatesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListStateTemplatesCommand)
|
|
20
|
-
.de(de_ListStateTemplatesCommand)
|
|
14
|
+
.sc(ListStateTemplates)
|
|
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 { ListTagsForResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListTagsForResourceCommand 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", "ListTagsForResource", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListTagsForResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListTagsForResourceCommand)
|
|
20
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
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 { ListVehicles } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListVehiclesCommand 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", "ListVehicles", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListVehiclesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListVehiclesCommand)
|
|
20
|
-
.de(de_ListVehiclesCommand)
|
|
14
|
+
.sc(ListVehicles)
|
|
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 { ListVehiclesInFleet } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListVehiclesInFleetCommand 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", "ListVehiclesInFleet", {})
|
|
17
13
|
.n("IoTFleetWiseClient", "ListVehiclesInFleetCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListVehiclesInFleetCommand)
|
|
20
|
-
.de(de_ListVehiclesInFleetCommand)
|
|
14
|
+
.sc(ListVehiclesInFleet)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|