@aws-sdk/client-iotfleetwise 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +52 -156
- package/dist-es/commands/AssociateVehicleFleetCommand.js +1 -3
- package/dist-es/commands/BatchCreateVehicleCommand.js +1 -3
- package/dist-es/commands/BatchUpdateVehicleCommand.js +1 -3
- package/dist-es/commands/CreateCampaignCommand.js +1 -3
- package/dist-es/commands/CreateDecoderManifestCommand.js +1 -3
- package/dist-es/commands/CreateFleetCommand.js +1 -3
- package/dist-es/commands/CreateModelManifestCommand.js +1 -3
- package/dist-es/commands/CreateSignalCatalogCommand.js +1 -3
- package/dist-es/commands/CreateVehicleCommand.js +1 -3
- package/dist-es/commands/DeleteCampaignCommand.js +1 -3
- package/dist-es/commands/DeleteDecoderManifestCommand.js +1 -3
- package/dist-es/commands/DeleteFleetCommand.js +1 -3
- package/dist-es/commands/DeleteModelManifestCommand.js +1 -3
- package/dist-es/commands/DeleteSignalCatalogCommand.js +1 -3
- package/dist-es/commands/DeleteVehicleCommand.js +1 -3
- package/dist-es/commands/DisassociateVehicleFleetCommand.js +1 -3
- package/dist-es/commands/GetCampaignCommand.js +1 -3
- package/dist-es/commands/GetDecoderManifestCommand.js +1 -3
- package/dist-es/commands/GetEncryptionConfigurationCommand.js +1 -3
- package/dist-es/commands/GetFleetCommand.js +1 -3
- package/dist-es/commands/GetLoggingOptionsCommand.js +1 -3
- package/dist-es/commands/GetModelManifestCommand.js +1 -3
- package/dist-es/commands/GetRegisterAccountStatusCommand.js +1 -3
- package/dist-es/commands/GetSignalCatalogCommand.js +1 -3
- package/dist-es/commands/GetVehicleCommand.js +1 -3
- package/dist-es/commands/GetVehicleStatusCommand.js +1 -3
- package/dist-es/commands/ImportDecoderManifestCommand.js +1 -3
- package/dist-es/commands/ImportSignalCatalogCommand.js +1 -3
- package/dist-es/commands/ListCampaignsCommand.js +1 -3
- package/dist-es/commands/ListDecoderManifestNetworkInterfacesCommand.js +1 -3
- package/dist-es/commands/ListDecoderManifestSignalsCommand.js +1 -3
- package/dist-es/commands/ListDecoderManifestsCommand.js +1 -3
- package/dist-es/commands/ListFleetsCommand.js +1 -3
- package/dist-es/commands/ListFleetsForVehicleCommand.js +1 -3
- package/dist-es/commands/ListModelManifestNodesCommand.js +1 -3
- package/dist-es/commands/ListModelManifestsCommand.js +1 -3
- package/dist-es/commands/ListSignalCatalogNodesCommand.js +1 -3
- package/dist-es/commands/ListSignalCatalogsCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/ListVehiclesCommand.js +1 -3
- package/dist-es/commands/ListVehiclesInFleetCommand.js +1 -3
- package/dist-es/commands/PutEncryptionConfigurationCommand.js +1 -3
- package/dist-es/commands/PutLoggingOptionsCommand.js +1 -3
- package/dist-es/commands/RegisterAccountCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateCampaignCommand.js +1 -3
- package/dist-es/commands/UpdateDecoderManifestCommand.js +1 -3
- package/dist-es/commands/UpdateFleetCommand.js +1 -3
- package/dist-es/commands/UpdateModelManifestCommand.js +1 -3
- package/dist-es/commands/UpdateSignalCatalogCommand.js +1 -3
- package/dist-es/commands/UpdateVehicleCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2609,9 +2609,7 @@ function sharedHeaders(operation) {
|
|
|
2609
2609
|
__name(sharedHeaders, "sharedHeaders");
|
|
2610
2610
|
|
|
2611
2611
|
// src/commands/AssociateVehicleFleetCommand.ts
|
|
2612
|
-
var _AssociateVehicleFleetCommand = class _AssociateVehicleFleetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2613
|
-
...commonParams
|
|
2614
|
-
}).m(function(Command, cs, config, o) {
|
|
2612
|
+
var _AssociateVehicleFleetCommand = class _AssociateVehicleFleetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2615
2613
|
return [
|
|
2616
2614
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2617
2615
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2625,9 +2623,7 @@ var AssociateVehicleFleetCommand = _AssociateVehicleFleetCommand;
|
|
|
2625
2623
|
|
|
2626
2624
|
|
|
2627
2625
|
|
|
2628
|
-
var _BatchCreateVehicleCommand = class _BatchCreateVehicleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2629
|
-
...commonParams
|
|
2630
|
-
}).m(function(Command, cs, config, o) {
|
|
2626
|
+
var _BatchCreateVehicleCommand = class _BatchCreateVehicleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2631
2627
|
return [
|
|
2632
2628
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2633
2629
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2641,9 +2637,7 @@ var BatchCreateVehicleCommand = _BatchCreateVehicleCommand;
|
|
|
2641
2637
|
|
|
2642
2638
|
|
|
2643
2639
|
|
|
2644
|
-
var _BatchUpdateVehicleCommand = class _BatchUpdateVehicleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2645
|
-
...commonParams
|
|
2646
|
-
}).m(function(Command, cs, config, o) {
|
|
2640
|
+
var _BatchUpdateVehicleCommand = class _BatchUpdateVehicleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2647
2641
|
return [
|
|
2648
2642
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2649
2643
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2657,9 +2651,7 @@ var BatchUpdateVehicleCommand = _BatchUpdateVehicleCommand;
|
|
|
2657
2651
|
|
|
2658
2652
|
|
|
2659
2653
|
|
|
2660
|
-
var _CreateCampaignCommand = class _CreateCampaignCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2661
|
-
...commonParams
|
|
2662
|
-
}).m(function(Command, cs, config, o) {
|
|
2654
|
+
var _CreateCampaignCommand = class _CreateCampaignCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2663
2655
|
return [
|
|
2664
2656
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2665
2657
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2673,9 +2665,7 @@ var CreateCampaignCommand = _CreateCampaignCommand;
|
|
|
2673
2665
|
|
|
2674
2666
|
|
|
2675
2667
|
|
|
2676
|
-
var _CreateDecoderManifestCommand = class _CreateDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2677
|
-
...commonParams
|
|
2678
|
-
}).m(function(Command, cs, config, o) {
|
|
2668
|
+
var _CreateDecoderManifestCommand = class _CreateDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2679
2669
|
return [
|
|
2680
2670
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2681
2671
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2689,9 +2679,7 @@ var CreateDecoderManifestCommand = _CreateDecoderManifestCommand;
|
|
|
2689
2679
|
|
|
2690
2680
|
|
|
2691
2681
|
|
|
2692
|
-
var _CreateFleetCommand = class _CreateFleetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2693
|
-
...commonParams
|
|
2694
|
-
}).m(function(Command, cs, config, o) {
|
|
2682
|
+
var _CreateFleetCommand = class _CreateFleetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2695
2683
|
return [
|
|
2696
2684
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2697
2685
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2705,9 +2693,7 @@ var CreateFleetCommand = _CreateFleetCommand;
|
|
|
2705
2693
|
|
|
2706
2694
|
|
|
2707
2695
|
|
|
2708
|
-
var _CreateModelManifestCommand = class _CreateModelManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2709
|
-
...commonParams
|
|
2710
|
-
}).m(function(Command, cs, config, o) {
|
|
2696
|
+
var _CreateModelManifestCommand = class _CreateModelManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2711
2697
|
return [
|
|
2712
2698
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2713
2699
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2721,9 +2707,7 @@ var CreateModelManifestCommand = _CreateModelManifestCommand;
|
|
|
2721
2707
|
|
|
2722
2708
|
|
|
2723
2709
|
|
|
2724
|
-
var _CreateSignalCatalogCommand = class _CreateSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2725
|
-
...commonParams
|
|
2726
|
-
}).m(function(Command, cs, config, o) {
|
|
2710
|
+
var _CreateSignalCatalogCommand = class _CreateSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2727
2711
|
return [
|
|
2728
2712
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2729
2713
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2737,9 +2721,7 @@ var CreateSignalCatalogCommand = _CreateSignalCatalogCommand;
|
|
|
2737
2721
|
|
|
2738
2722
|
|
|
2739
2723
|
|
|
2740
|
-
var _CreateVehicleCommand = class _CreateVehicleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2741
|
-
...commonParams
|
|
2742
|
-
}).m(function(Command, cs, config, o) {
|
|
2724
|
+
var _CreateVehicleCommand = class _CreateVehicleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2743
2725
|
return [
|
|
2744
2726
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2745
2727
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2753,9 +2735,7 @@ var CreateVehicleCommand = _CreateVehicleCommand;
|
|
|
2753
2735
|
|
|
2754
2736
|
|
|
2755
2737
|
|
|
2756
|
-
var _DeleteCampaignCommand = class _DeleteCampaignCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2757
|
-
...commonParams
|
|
2758
|
-
}).m(function(Command, cs, config, o) {
|
|
2738
|
+
var _DeleteCampaignCommand = class _DeleteCampaignCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2759
2739
|
return [
|
|
2760
2740
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2761
2741
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2769,9 +2749,7 @@ var DeleteCampaignCommand = _DeleteCampaignCommand;
|
|
|
2769
2749
|
|
|
2770
2750
|
|
|
2771
2751
|
|
|
2772
|
-
var _DeleteDecoderManifestCommand = class _DeleteDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2773
|
-
...commonParams
|
|
2774
|
-
}).m(function(Command, cs, config, o) {
|
|
2752
|
+
var _DeleteDecoderManifestCommand = class _DeleteDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2775
2753
|
return [
|
|
2776
2754
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2777
2755
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2785,9 +2763,7 @@ var DeleteDecoderManifestCommand = _DeleteDecoderManifestCommand;
|
|
|
2785
2763
|
|
|
2786
2764
|
|
|
2787
2765
|
|
|
2788
|
-
var _DeleteFleetCommand = class _DeleteFleetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2789
|
-
...commonParams
|
|
2790
|
-
}).m(function(Command, cs, config, o) {
|
|
2766
|
+
var _DeleteFleetCommand = class _DeleteFleetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2791
2767
|
return [
|
|
2792
2768
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2793
2769
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2801,9 +2777,7 @@ var DeleteFleetCommand = _DeleteFleetCommand;
|
|
|
2801
2777
|
|
|
2802
2778
|
|
|
2803
2779
|
|
|
2804
|
-
var _DeleteModelManifestCommand = class _DeleteModelManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2805
|
-
...commonParams
|
|
2806
|
-
}).m(function(Command, cs, config, o) {
|
|
2780
|
+
var _DeleteModelManifestCommand = class _DeleteModelManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2807
2781
|
return [
|
|
2808
2782
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2809
2783
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2817,9 +2791,7 @@ var DeleteModelManifestCommand = _DeleteModelManifestCommand;
|
|
|
2817
2791
|
|
|
2818
2792
|
|
|
2819
2793
|
|
|
2820
|
-
var _DeleteSignalCatalogCommand = class _DeleteSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2821
|
-
...commonParams
|
|
2822
|
-
}).m(function(Command, cs, config, o) {
|
|
2794
|
+
var _DeleteSignalCatalogCommand = class _DeleteSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2823
2795
|
return [
|
|
2824
2796
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2825
2797
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2833,9 +2805,7 @@ var DeleteSignalCatalogCommand = _DeleteSignalCatalogCommand;
|
|
|
2833
2805
|
|
|
2834
2806
|
|
|
2835
2807
|
|
|
2836
|
-
var _DeleteVehicleCommand = class _DeleteVehicleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2837
|
-
...commonParams
|
|
2838
|
-
}).m(function(Command, cs, config, o) {
|
|
2808
|
+
var _DeleteVehicleCommand = class _DeleteVehicleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2839
2809
|
return [
|
|
2840
2810
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2841
2811
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2849,9 +2819,7 @@ var DeleteVehicleCommand = _DeleteVehicleCommand;
|
|
|
2849
2819
|
|
|
2850
2820
|
|
|
2851
2821
|
|
|
2852
|
-
var _DisassociateVehicleFleetCommand = class _DisassociateVehicleFleetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2853
|
-
...commonParams
|
|
2854
|
-
}).m(function(Command, cs, config, o) {
|
|
2822
|
+
var _DisassociateVehicleFleetCommand = class _DisassociateVehicleFleetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2855
2823
|
return [
|
|
2856
2824
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2857
2825
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2865,9 +2833,7 @@ var DisassociateVehicleFleetCommand = _DisassociateVehicleFleetCommand;
|
|
|
2865
2833
|
|
|
2866
2834
|
|
|
2867
2835
|
|
|
2868
|
-
var _GetCampaignCommand = class _GetCampaignCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2869
|
-
...commonParams
|
|
2870
|
-
}).m(function(Command, cs, config, o) {
|
|
2836
|
+
var _GetCampaignCommand = class _GetCampaignCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2871
2837
|
return [
|
|
2872
2838
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2873
2839
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2881,9 +2847,7 @@ var GetCampaignCommand = _GetCampaignCommand;
|
|
|
2881
2847
|
|
|
2882
2848
|
|
|
2883
2849
|
|
|
2884
|
-
var _GetDecoderManifestCommand = class _GetDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2885
|
-
...commonParams
|
|
2886
|
-
}).m(function(Command, cs, config, o) {
|
|
2850
|
+
var _GetDecoderManifestCommand = class _GetDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2887
2851
|
return [
|
|
2888
2852
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2889
2853
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2897,9 +2861,7 @@ var GetDecoderManifestCommand = _GetDecoderManifestCommand;
|
|
|
2897
2861
|
|
|
2898
2862
|
|
|
2899
2863
|
|
|
2900
|
-
var _GetEncryptionConfigurationCommand = class _GetEncryptionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2901
|
-
...commonParams
|
|
2902
|
-
}).m(function(Command, cs, config, o) {
|
|
2864
|
+
var _GetEncryptionConfigurationCommand = class _GetEncryptionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2903
2865
|
return [
|
|
2904
2866
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2905
2867
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2913,9 +2875,7 @@ var GetEncryptionConfigurationCommand = _GetEncryptionConfigurationCommand;
|
|
|
2913
2875
|
|
|
2914
2876
|
|
|
2915
2877
|
|
|
2916
|
-
var _GetFleetCommand = class _GetFleetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2917
|
-
...commonParams
|
|
2918
|
-
}).m(function(Command, cs, config, o) {
|
|
2878
|
+
var _GetFleetCommand = class _GetFleetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2919
2879
|
return [
|
|
2920
2880
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2921
2881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2929,9 +2889,7 @@ var GetFleetCommand = _GetFleetCommand;
|
|
|
2929
2889
|
|
|
2930
2890
|
|
|
2931
2891
|
|
|
2932
|
-
var _GetLoggingOptionsCommand = class _GetLoggingOptionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2933
|
-
...commonParams
|
|
2934
|
-
}).m(function(Command, cs, config, o) {
|
|
2892
|
+
var _GetLoggingOptionsCommand = class _GetLoggingOptionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2935
2893
|
return [
|
|
2936
2894
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2937
2895
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2945,9 +2903,7 @@ var GetLoggingOptionsCommand = _GetLoggingOptionsCommand;
|
|
|
2945
2903
|
|
|
2946
2904
|
|
|
2947
2905
|
|
|
2948
|
-
var _GetModelManifestCommand = class _GetModelManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2949
|
-
...commonParams
|
|
2950
|
-
}).m(function(Command, cs, config, o) {
|
|
2906
|
+
var _GetModelManifestCommand = class _GetModelManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2951
2907
|
return [
|
|
2952
2908
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2953
2909
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2961,9 +2917,7 @@ var GetModelManifestCommand = _GetModelManifestCommand;
|
|
|
2961
2917
|
|
|
2962
2918
|
|
|
2963
2919
|
|
|
2964
|
-
var _GetRegisterAccountStatusCommand = class _GetRegisterAccountStatusCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2965
|
-
...commonParams
|
|
2966
|
-
}).m(function(Command, cs, config, o) {
|
|
2920
|
+
var _GetRegisterAccountStatusCommand = class _GetRegisterAccountStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2967
2921
|
return [
|
|
2968
2922
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2969
2923
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2977,9 +2931,7 @@ var GetRegisterAccountStatusCommand = _GetRegisterAccountStatusCommand;
|
|
|
2977
2931
|
|
|
2978
2932
|
|
|
2979
2933
|
|
|
2980
|
-
var _GetSignalCatalogCommand = class _GetSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2981
|
-
...commonParams
|
|
2982
|
-
}).m(function(Command, cs, config, o) {
|
|
2934
|
+
var _GetSignalCatalogCommand = class _GetSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2983
2935
|
return [
|
|
2984
2936
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2985
2937
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2993,9 +2945,7 @@ var GetSignalCatalogCommand = _GetSignalCatalogCommand;
|
|
|
2993
2945
|
|
|
2994
2946
|
|
|
2995
2947
|
|
|
2996
|
-
var _GetVehicleCommand = class _GetVehicleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2997
|
-
...commonParams
|
|
2998
|
-
}).m(function(Command, cs, config, o) {
|
|
2948
|
+
var _GetVehicleCommand = class _GetVehicleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2999
2949
|
return [
|
|
3000
2950
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3001
2951
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3009,9 +2959,7 @@ var GetVehicleCommand = _GetVehicleCommand;
|
|
|
3009
2959
|
|
|
3010
2960
|
|
|
3011
2961
|
|
|
3012
|
-
var _GetVehicleStatusCommand = class _GetVehicleStatusCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3013
|
-
...commonParams
|
|
3014
|
-
}).m(function(Command, cs, config, o) {
|
|
2962
|
+
var _GetVehicleStatusCommand = class _GetVehicleStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3015
2963
|
return [
|
|
3016
2964
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3017
2965
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3025,9 +2973,7 @@ var GetVehicleStatusCommand = _GetVehicleStatusCommand;
|
|
|
3025
2973
|
|
|
3026
2974
|
|
|
3027
2975
|
|
|
3028
|
-
var _ImportDecoderManifestCommand = class _ImportDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3029
|
-
...commonParams
|
|
3030
|
-
}).m(function(Command, cs, config, o) {
|
|
2976
|
+
var _ImportDecoderManifestCommand = class _ImportDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3031
2977
|
return [
|
|
3032
2978
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3033
2979
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3041,9 +2987,7 @@ var ImportDecoderManifestCommand = _ImportDecoderManifestCommand;
|
|
|
3041
2987
|
|
|
3042
2988
|
|
|
3043
2989
|
|
|
3044
|
-
var _ImportSignalCatalogCommand = class _ImportSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3045
|
-
...commonParams
|
|
3046
|
-
}).m(function(Command, cs, config, o) {
|
|
2990
|
+
var _ImportSignalCatalogCommand = class _ImportSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3047
2991
|
return [
|
|
3048
2992
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3049
2993
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3057,9 +3001,7 @@ var ImportSignalCatalogCommand = _ImportSignalCatalogCommand;
|
|
|
3057
3001
|
|
|
3058
3002
|
|
|
3059
3003
|
|
|
3060
|
-
var _ListCampaignsCommand = class _ListCampaignsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3061
|
-
...commonParams
|
|
3062
|
-
}).m(function(Command, cs, config, o) {
|
|
3004
|
+
var _ListCampaignsCommand = class _ListCampaignsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3063
3005
|
return [
|
|
3064
3006
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3065
3007
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3073,9 +3015,7 @@ var ListCampaignsCommand = _ListCampaignsCommand;
|
|
|
3073
3015
|
|
|
3074
3016
|
|
|
3075
3017
|
|
|
3076
|
-
var _ListDecoderManifestNetworkInterfacesCommand = class _ListDecoderManifestNetworkInterfacesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3077
|
-
...commonParams
|
|
3078
|
-
}).m(function(Command, cs, config, o) {
|
|
3018
|
+
var _ListDecoderManifestNetworkInterfacesCommand = class _ListDecoderManifestNetworkInterfacesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3079
3019
|
return [
|
|
3080
3020
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3081
3021
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3089,9 +3029,7 @@ var ListDecoderManifestNetworkInterfacesCommand = _ListDecoderManifestNetworkInt
|
|
|
3089
3029
|
|
|
3090
3030
|
|
|
3091
3031
|
|
|
3092
|
-
var _ListDecoderManifestsCommand = class _ListDecoderManifestsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3093
|
-
...commonParams
|
|
3094
|
-
}).m(function(Command, cs, config, o) {
|
|
3032
|
+
var _ListDecoderManifestsCommand = class _ListDecoderManifestsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3095
3033
|
return [
|
|
3096
3034
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3097
3035
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3105,9 +3043,7 @@ var ListDecoderManifestsCommand = _ListDecoderManifestsCommand;
|
|
|
3105
3043
|
|
|
3106
3044
|
|
|
3107
3045
|
|
|
3108
|
-
var _ListDecoderManifestSignalsCommand = class _ListDecoderManifestSignalsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3109
|
-
...commonParams
|
|
3110
|
-
}).m(function(Command, cs, config, o) {
|
|
3046
|
+
var _ListDecoderManifestSignalsCommand = class _ListDecoderManifestSignalsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3111
3047
|
return [
|
|
3112
3048
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3113
3049
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3121,9 +3057,7 @@ var ListDecoderManifestSignalsCommand = _ListDecoderManifestSignalsCommand;
|
|
|
3121
3057
|
|
|
3122
3058
|
|
|
3123
3059
|
|
|
3124
|
-
var _ListFleetsCommand = class _ListFleetsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3125
|
-
...commonParams
|
|
3126
|
-
}).m(function(Command, cs, config, o) {
|
|
3060
|
+
var _ListFleetsCommand = class _ListFleetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3127
3061
|
return [
|
|
3128
3062
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3129
3063
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3137,9 +3071,7 @@ var ListFleetsCommand = _ListFleetsCommand;
|
|
|
3137
3071
|
|
|
3138
3072
|
|
|
3139
3073
|
|
|
3140
|
-
var _ListFleetsForVehicleCommand = class _ListFleetsForVehicleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3141
|
-
...commonParams
|
|
3142
|
-
}).m(function(Command, cs, config, o) {
|
|
3074
|
+
var _ListFleetsForVehicleCommand = class _ListFleetsForVehicleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3143
3075
|
return [
|
|
3144
3076
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3145
3077
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3153,9 +3085,7 @@ var ListFleetsForVehicleCommand = _ListFleetsForVehicleCommand;
|
|
|
3153
3085
|
|
|
3154
3086
|
|
|
3155
3087
|
|
|
3156
|
-
var _ListModelManifestNodesCommand = class _ListModelManifestNodesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3157
|
-
...commonParams
|
|
3158
|
-
}).m(function(Command, cs, config, o) {
|
|
3088
|
+
var _ListModelManifestNodesCommand = class _ListModelManifestNodesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3159
3089
|
return [
|
|
3160
3090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3161
3091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3169,9 +3099,7 @@ var ListModelManifestNodesCommand = _ListModelManifestNodesCommand;
|
|
|
3169
3099
|
|
|
3170
3100
|
|
|
3171
3101
|
|
|
3172
|
-
var _ListModelManifestsCommand = class _ListModelManifestsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3173
|
-
...commonParams
|
|
3174
|
-
}).m(function(Command, cs, config, o) {
|
|
3102
|
+
var _ListModelManifestsCommand = class _ListModelManifestsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3175
3103
|
return [
|
|
3176
3104
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3177
3105
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3185,9 +3113,7 @@ var ListModelManifestsCommand = _ListModelManifestsCommand;
|
|
|
3185
3113
|
|
|
3186
3114
|
|
|
3187
3115
|
|
|
3188
|
-
var _ListSignalCatalogNodesCommand = class _ListSignalCatalogNodesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3189
|
-
...commonParams
|
|
3190
|
-
}).m(function(Command, cs, config, o) {
|
|
3116
|
+
var _ListSignalCatalogNodesCommand = class _ListSignalCatalogNodesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3191
3117
|
return [
|
|
3192
3118
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3193
3119
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3201,9 +3127,7 @@ var ListSignalCatalogNodesCommand = _ListSignalCatalogNodesCommand;
|
|
|
3201
3127
|
|
|
3202
3128
|
|
|
3203
3129
|
|
|
3204
|
-
var _ListSignalCatalogsCommand = class _ListSignalCatalogsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3205
|
-
...commonParams
|
|
3206
|
-
}).m(function(Command, cs, config, o) {
|
|
3130
|
+
var _ListSignalCatalogsCommand = class _ListSignalCatalogsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3207
3131
|
return [
|
|
3208
3132
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3209
3133
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3217,9 +3141,7 @@ var ListSignalCatalogsCommand = _ListSignalCatalogsCommand;
|
|
|
3217
3141
|
|
|
3218
3142
|
|
|
3219
3143
|
|
|
3220
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3221
|
-
...commonParams
|
|
3222
|
-
}).m(function(Command, cs, config, o) {
|
|
3144
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3223
3145
|
return [
|
|
3224
3146
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3225
3147
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3233,9 +3155,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
3233
3155
|
|
|
3234
3156
|
|
|
3235
3157
|
|
|
3236
|
-
var _ListVehiclesCommand = class _ListVehiclesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3237
|
-
...commonParams
|
|
3238
|
-
}).m(function(Command, cs, config, o) {
|
|
3158
|
+
var _ListVehiclesCommand = class _ListVehiclesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3239
3159
|
return [
|
|
3240
3160
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3241
3161
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3249,9 +3169,7 @@ var ListVehiclesCommand = _ListVehiclesCommand;
|
|
|
3249
3169
|
|
|
3250
3170
|
|
|
3251
3171
|
|
|
3252
|
-
var _ListVehiclesInFleetCommand = class _ListVehiclesInFleetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3253
|
-
...commonParams
|
|
3254
|
-
}).m(function(Command, cs, config, o) {
|
|
3172
|
+
var _ListVehiclesInFleetCommand = class _ListVehiclesInFleetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3255
3173
|
return [
|
|
3256
3174
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3257
3175
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3265,9 +3183,7 @@ var ListVehiclesInFleetCommand = _ListVehiclesInFleetCommand;
|
|
|
3265
3183
|
|
|
3266
3184
|
|
|
3267
3185
|
|
|
3268
|
-
var _PutEncryptionConfigurationCommand = class _PutEncryptionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3269
|
-
...commonParams
|
|
3270
|
-
}).m(function(Command, cs, config, o) {
|
|
3186
|
+
var _PutEncryptionConfigurationCommand = class _PutEncryptionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3271
3187
|
return [
|
|
3272
3188
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3273
3189
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3281,9 +3197,7 @@ var PutEncryptionConfigurationCommand = _PutEncryptionConfigurationCommand;
|
|
|
3281
3197
|
|
|
3282
3198
|
|
|
3283
3199
|
|
|
3284
|
-
var _PutLoggingOptionsCommand = class _PutLoggingOptionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3285
|
-
...commonParams
|
|
3286
|
-
}).m(function(Command, cs, config, o) {
|
|
3200
|
+
var _PutLoggingOptionsCommand = class _PutLoggingOptionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3287
3201
|
return [
|
|
3288
3202
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3289
3203
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3297,9 +3211,7 @@ var PutLoggingOptionsCommand = _PutLoggingOptionsCommand;
|
|
|
3297
3211
|
|
|
3298
3212
|
|
|
3299
3213
|
|
|
3300
|
-
var _RegisterAccountCommand = class _RegisterAccountCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3301
|
-
...commonParams
|
|
3302
|
-
}).m(function(Command, cs, config, o) {
|
|
3214
|
+
var _RegisterAccountCommand = class _RegisterAccountCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3303
3215
|
return [
|
|
3304
3216
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3305
3217
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3313,9 +3225,7 @@ var RegisterAccountCommand = _RegisterAccountCommand;
|
|
|
3313
3225
|
|
|
3314
3226
|
|
|
3315
3227
|
|
|
3316
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3317
|
-
...commonParams
|
|
3318
|
-
}).m(function(Command, cs, config, o) {
|
|
3228
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3319
3229
|
return [
|
|
3320
3230
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3321
3231
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3329,9 +3239,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
3329
3239
|
|
|
3330
3240
|
|
|
3331
3241
|
|
|
3332
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3333
|
-
...commonParams
|
|
3334
|
-
}).m(function(Command, cs, config, o) {
|
|
3242
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3335
3243
|
return [
|
|
3336
3244
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3337
3245
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3345,9 +3253,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
3345
3253
|
|
|
3346
3254
|
|
|
3347
3255
|
|
|
3348
|
-
var _UpdateCampaignCommand = class _UpdateCampaignCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3349
|
-
...commonParams
|
|
3350
|
-
}).m(function(Command, cs, config, o) {
|
|
3256
|
+
var _UpdateCampaignCommand = class _UpdateCampaignCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3351
3257
|
return [
|
|
3352
3258
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3353
3259
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3361,9 +3267,7 @@ var UpdateCampaignCommand = _UpdateCampaignCommand;
|
|
|
3361
3267
|
|
|
3362
3268
|
|
|
3363
3269
|
|
|
3364
|
-
var _UpdateDecoderManifestCommand = class _UpdateDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3365
|
-
...commonParams
|
|
3366
|
-
}).m(function(Command, cs, config, o) {
|
|
3270
|
+
var _UpdateDecoderManifestCommand = class _UpdateDecoderManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3367
3271
|
return [
|
|
3368
3272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3369
3273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3377,9 +3281,7 @@ var UpdateDecoderManifestCommand = _UpdateDecoderManifestCommand;
|
|
|
3377
3281
|
|
|
3378
3282
|
|
|
3379
3283
|
|
|
3380
|
-
var _UpdateFleetCommand = class _UpdateFleetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3381
|
-
...commonParams
|
|
3382
|
-
}).m(function(Command, cs, config, o) {
|
|
3284
|
+
var _UpdateFleetCommand = class _UpdateFleetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3383
3285
|
return [
|
|
3384
3286
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3385
3287
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3393,9 +3295,7 @@ var UpdateFleetCommand = _UpdateFleetCommand;
|
|
|
3393
3295
|
|
|
3394
3296
|
|
|
3395
3297
|
|
|
3396
|
-
var _UpdateModelManifestCommand = class _UpdateModelManifestCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3397
|
-
...commonParams
|
|
3398
|
-
}).m(function(Command, cs, config, o) {
|
|
3298
|
+
var _UpdateModelManifestCommand = class _UpdateModelManifestCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3399
3299
|
return [
|
|
3400
3300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3401
3301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3409,9 +3309,7 @@ var UpdateModelManifestCommand = _UpdateModelManifestCommand;
|
|
|
3409
3309
|
|
|
3410
3310
|
|
|
3411
3311
|
|
|
3412
|
-
var _UpdateSignalCatalogCommand = class _UpdateSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3413
|
-
...commonParams
|
|
3414
|
-
}).m(function(Command, cs, config, o) {
|
|
3312
|
+
var _UpdateSignalCatalogCommand = class _UpdateSignalCatalogCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3415
3313
|
return [
|
|
3416
3314
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3417
3315
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3425,9 +3323,7 @@ var UpdateSignalCatalogCommand = _UpdateSignalCatalogCommand;
|
|
|
3425
3323
|
|
|
3426
3324
|
|
|
3427
3325
|
|
|
3428
|
-
var _UpdateVehicleCommand = class _UpdateVehicleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3429
|
-
...commonParams
|
|
3430
|
-
}).m(function(Command, cs, config, o) {
|
|
3326
|
+
var _UpdateVehicleCommand = class _UpdateVehicleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3431
3327
|
return [
|
|
3432
3328
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3433
3329
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_AssociateVehicleFleetCommand, se_AssociateVehicleFleetCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AssociateVehicleFleetCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_BatchCreateVehicleCommand, se_BatchCreateVehicleCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchCreateVehicleCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_BatchUpdateVehicleCommand, se_BatchUpdateVehicleCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchUpdateVehicleCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateCampaignCommand, se_CreateCampaignCommand } from "../protocols
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateCampaignCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateDecoderManifestCommand, se_CreateDecoderManifestCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateDecoderManifestCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateFleetCommand, se_CreateFleetCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateFleetCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateModelManifestCommand, se_CreateModelManifestCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateModelManifestCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|