@aws-sdk/client-iotfleetwise 3.758.0 → 3.772.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 +125 -132
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_0.js +6 -0
- package/dist-types/commands/CreateDecoderManifestCommand.d.ts +3 -0
- package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +3 -0
- package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +28 -1
- package/dist-types/ts3.4/models/models_0.d.ts +9 -0
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
AccessDeniedException: () => AccessDeniedException,
|
|
25
25
|
AssociateVehicleFleetCommand: () => AssociateVehicleFleetCommand,
|
|
26
26
|
BatchCreateVehicleCommand: () => BatchCreateVehicleCommand,
|
|
@@ -116,6 +116,7 @@ __export(src_exports, {
|
|
|
116
116
|
SignalFetchConfigFilterSensitiveLog: () => SignalFetchConfigFilterSensitiveLog,
|
|
117
117
|
SignalFetchInformationFilterSensitiveLog: () => SignalFetchInformationFilterSensitiveLog,
|
|
118
118
|
SignalNodeType: () => SignalNodeType,
|
|
119
|
+
SignalValueType: () => SignalValueType,
|
|
119
120
|
SpoolingMode: () => SpoolingMode,
|
|
120
121
|
StateTemplateUpdateStrategy: () => StateTemplateUpdateStrategy,
|
|
121
122
|
StorageCompressionFormat: () => StorageCompressionFormat,
|
|
@@ -159,7 +160,7 @@ __export(src_exports, {
|
|
|
159
160
|
paginateListVehicles: () => paginateListVehicles,
|
|
160
161
|
paginateListVehiclesInFleet: () => paginateListVehiclesInFleet
|
|
161
162
|
});
|
|
162
|
-
module.exports = __toCommonJS(
|
|
163
|
+
module.exports = __toCommonJS(index_exports);
|
|
163
164
|
|
|
164
165
|
// src/IoTFleetWiseClient.ts
|
|
165
166
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
@@ -286,9 +287,9 @@ var IoTFleetWiseClient = class extends import_smithy_client.Client {
|
|
|
286
287
|
this.middlewareStack.use(
|
|
287
288
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
288
289
|
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultIoTFleetWiseHttpAuthSchemeParametersProvider,
|
|
289
|
-
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
290
|
+
identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
290
291
|
"aws.auth#sigv4": config.credentials
|
|
291
|
-
})
|
|
292
|
+
}), "identityProviderConfigProvider")
|
|
292
293
|
})
|
|
293
294
|
);
|
|
294
295
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -553,10 +554,8 @@ var TimeUnit = {
|
|
|
553
554
|
var StateTemplateUpdateStrategy;
|
|
554
555
|
((StateTemplateUpdateStrategy3) => {
|
|
555
556
|
StateTemplateUpdateStrategy3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
556
|
-
if (value.periodic !== void 0)
|
|
557
|
-
|
|
558
|
-
if (value.onChange !== void 0)
|
|
559
|
-
return visitor.onChange(value.onChange);
|
|
557
|
+
if (value.periodic !== void 0) return visitor.periodic(value.periodic);
|
|
558
|
+
if (value.onChange !== void 0) return visitor.onChange(value.onChange);
|
|
560
559
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
561
560
|
}, "visit");
|
|
562
561
|
})(StateTemplateUpdateStrategy || (StateTemplateUpdateStrategy = {}));
|
|
@@ -623,12 +622,9 @@ var StorageCompressionFormat = {
|
|
|
623
622
|
var DataDestinationConfig;
|
|
624
623
|
((DataDestinationConfig3) => {
|
|
625
624
|
DataDestinationConfig3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
626
|
-
if (value.s3Config !== void 0)
|
|
627
|
-
|
|
628
|
-
if (value.
|
|
629
|
-
return visitor.timestreamConfig(value.timestreamConfig);
|
|
630
|
-
if (value.mqttTopicConfig !== void 0)
|
|
631
|
-
return visitor.mqttTopicConfig(value.mqttTopicConfig);
|
|
625
|
+
if (value.s3Config !== void 0) return visitor.s3Config(value.s3Config);
|
|
626
|
+
if (value.timestreamConfig !== void 0) return visitor.timestreamConfig(value.timestreamConfig);
|
|
627
|
+
if (value.mqttTopicConfig !== void 0) return visitor.mqttTopicConfig(value.mqttTopicConfig);
|
|
632
628
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
633
629
|
}, "visit");
|
|
634
630
|
})(DataDestinationConfig || (DataDestinationConfig = {}));
|
|
@@ -649,10 +645,8 @@ var DiagnosticsMode = {
|
|
|
649
645
|
var SignalFetchConfig;
|
|
650
646
|
((SignalFetchConfig3) => {
|
|
651
647
|
SignalFetchConfig3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
652
|
-
if (value.timeBased !== void 0)
|
|
653
|
-
|
|
654
|
-
if (value.conditionBased !== void 0)
|
|
655
|
-
return visitor.conditionBased(value.conditionBased);
|
|
648
|
+
if (value.timeBased !== void 0) return visitor.timeBased(value.timeBased);
|
|
649
|
+
if (value.conditionBased !== void 0) return visitor.conditionBased(value.conditionBased);
|
|
656
650
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
657
651
|
}, "visit");
|
|
658
652
|
})(SignalFetchConfig || (SignalFetchConfig = {}));
|
|
@@ -675,6 +669,10 @@ var UpdateCampaignAction = {
|
|
|
675
669
|
SUSPEND: "SUSPEND",
|
|
676
670
|
UPDATE: "UPDATE"
|
|
677
671
|
};
|
|
672
|
+
var SignalValueType = {
|
|
673
|
+
FLOATING_POINT: "FLOATING_POINT",
|
|
674
|
+
INTEGER: "INTEGER"
|
|
675
|
+
};
|
|
678
676
|
var LogType = {
|
|
679
677
|
ERROR: "ERROR",
|
|
680
678
|
OFF: "OFF"
|
|
@@ -817,18 +815,12 @@ var NodeDataEncoding = {
|
|
|
817
815
|
var Node;
|
|
818
816
|
((Node2) => {
|
|
819
817
|
Node2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
820
|
-
if (value.branch !== void 0)
|
|
821
|
-
|
|
822
|
-
if (value.
|
|
823
|
-
|
|
824
|
-
if (value.
|
|
825
|
-
|
|
826
|
-
if (value.attribute !== void 0)
|
|
827
|
-
return visitor.attribute(value.attribute);
|
|
828
|
-
if (value.struct !== void 0)
|
|
829
|
-
return visitor.struct(value.struct);
|
|
830
|
-
if (value.property !== void 0)
|
|
831
|
-
return visitor.property(value.property);
|
|
818
|
+
if (value.branch !== void 0) return visitor.branch(value.branch);
|
|
819
|
+
if (value.sensor !== void 0) return visitor.sensor(value.sensor);
|
|
820
|
+
if (value.actuator !== void 0) return visitor.actuator(value.actuator);
|
|
821
|
+
if (value.attribute !== void 0) return visitor.attribute(value.attribute);
|
|
822
|
+
if (value.struct !== void 0) return visitor.struct(value.struct);
|
|
823
|
+
if (value.property !== void 0) return visitor.property(value.property);
|
|
832
824
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
833
825
|
}, "visit");
|
|
834
826
|
})(Node || (Node = {}));
|
|
@@ -871,8 +863,7 @@ var ManifestStatus = {
|
|
|
871
863
|
var NetworkFileDefinition;
|
|
872
864
|
((NetworkFileDefinition2) => {
|
|
873
865
|
NetworkFileDefinition2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
874
|
-
if (value.canDbc !== void 0)
|
|
875
|
-
return visitor.canDbc(value.canDbc);
|
|
866
|
+
if (value.canDbc !== void 0) return visitor.canDbc(value.canDbc);
|
|
876
867
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
877
868
|
}, "visit");
|
|
878
869
|
})(NetworkFileDefinition || (NetworkFileDefinition = {}));
|
|
@@ -888,8 +879,7 @@ var EncryptionType = {
|
|
|
888
879
|
var FormattedVss;
|
|
889
880
|
((FormattedVss3) => {
|
|
890
881
|
FormattedVss3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
891
|
-
if (value.vssJson !== void 0)
|
|
892
|
-
return visitor.vssJson(value.vssJson);
|
|
882
|
+
if (value.vssJson !== void 0) return visitor.vssJson(value.vssJson);
|
|
893
883
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
894
884
|
}, "visit");
|
|
895
885
|
})(FormattedVss || (FormattedVss = {}));
|
|
@@ -930,16 +920,14 @@ var ConditionBasedCollectionSchemeFilterSensitiveLog = /* @__PURE__ */ __name((o
|
|
|
930
920
|
...obj.expression && { expression: import_smithy_client.SENSITIVE_STRING }
|
|
931
921
|
}), "ConditionBasedCollectionSchemeFilterSensitiveLog");
|
|
932
922
|
var CollectionSchemeFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
933
|
-
if (obj.timeBasedCollectionScheme !== void 0)
|
|
934
|
-
return { timeBasedCollectionScheme: obj.timeBasedCollectionScheme };
|
|
923
|
+
if (obj.timeBasedCollectionScheme !== void 0) return { timeBasedCollectionScheme: obj.timeBasedCollectionScheme };
|
|
935
924
|
if (obj.conditionBasedCollectionScheme !== void 0)
|
|
936
925
|
return {
|
|
937
926
|
conditionBasedCollectionScheme: ConditionBasedCollectionSchemeFilterSensitiveLog(
|
|
938
927
|
obj.conditionBasedCollectionScheme
|
|
939
928
|
)
|
|
940
929
|
};
|
|
941
|
-
if (obj.$unknown !== void 0)
|
|
942
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
930
|
+
if (obj.$unknown !== void 0) return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
943
931
|
}, "CollectionSchemeFilterSensitiveLog");
|
|
944
932
|
var DataPartitionStorageOptionsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
945
933
|
...obj,
|
|
@@ -959,12 +947,10 @@ var ConditionBasedSignalFetchConfigFilterSensitiveLog = /* @__PURE__ */ __name((
|
|
|
959
947
|
...obj.conditionExpression && { conditionExpression: import_smithy_client.SENSITIVE_STRING }
|
|
960
948
|
}), "ConditionBasedSignalFetchConfigFilterSensitiveLog");
|
|
961
949
|
var SignalFetchConfigFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
962
|
-
if (obj.timeBased !== void 0)
|
|
963
|
-
return { timeBased: obj.timeBased };
|
|
950
|
+
if (obj.timeBased !== void 0) return { timeBased: obj.timeBased };
|
|
964
951
|
if (obj.conditionBased !== void 0)
|
|
965
952
|
return { conditionBased: ConditionBasedSignalFetchConfigFilterSensitiveLog(obj.conditionBased) };
|
|
966
|
-
if (obj.$unknown !== void 0)
|
|
967
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
953
|
+
if (obj.$unknown !== void 0) return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
968
954
|
}, "SignalFetchConfigFilterSensitiveLog");
|
|
969
955
|
var SignalFetchInformationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
970
956
|
...obj,
|
|
@@ -2250,7 +2236,7 @@ var se_Attribute = /* @__PURE__ */ __name((input, context) => {
|
|
|
2250
2236
|
}, "se_Attribute");
|
|
2251
2237
|
var se_CanDbcDefinition = /* @__PURE__ */ __name((input, context) => {
|
|
2252
2238
|
return (0, import_smithy_client.take)(input, {
|
|
2253
|
-
canDbcFiles: (_) => se_NetworkFilesList(_, context),
|
|
2239
|
+
canDbcFiles: /* @__PURE__ */ __name((_) => se_NetworkFilesList(_, context), "canDbcFiles"),
|
|
2254
2240
|
networkInterface: [],
|
|
2255
2241
|
signalsMap: import_smithy_client._json
|
|
2256
2242
|
});
|
|
@@ -2264,6 +2250,7 @@ var se_CanSignal = /* @__PURE__ */ __name((input, context) => {
|
|
|
2264
2250
|
messageId: [],
|
|
2265
2251
|
name: [],
|
|
2266
2252
|
offset: import_smithy_client.serializeFloat,
|
|
2253
|
+
signalValueType: [],
|
|
2267
2254
|
startBit: []
|
|
2268
2255
|
});
|
|
2269
2256
|
}, "se_CanSignal");
|
|
@@ -2276,7 +2263,7 @@ var se_CreateCampaignRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2276
2263
|
dataPartitions: import_smithy_client._json,
|
|
2277
2264
|
description: [],
|
|
2278
2265
|
diagnosticsMode: [],
|
|
2279
|
-
expiryTime: (_) => _.getTime() / 1e3,
|
|
2266
|
+
expiryTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "expiryTime"),
|
|
2280
2267
|
name: [],
|
|
2281
2268
|
postTriggerCollectionDuration: [],
|
|
2282
2269
|
priority: [],
|
|
@@ -2284,7 +2271,7 @@ var se_CreateCampaignRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2284
2271
|
signalsToCollect: import_smithy_client._json,
|
|
2285
2272
|
signalsToFetch: import_smithy_client._json,
|
|
2286
2273
|
spoolingMode: [],
|
|
2287
|
-
startTime: (_) => _.getTime() / 1e3,
|
|
2274
|
+
startTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "startTime"),
|
|
2288
2275
|
tags: import_smithy_client._json,
|
|
2289
2276
|
targetArn: []
|
|
2290
2277
|
});
|
|
@@ -2296,7 +2283,7 @@ var se_CreateDecoderManifestRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
2296
2283
|
modelManifestArn: [],
|
|
2297
2284
|
name: [],
|
|
2298
2285
|
networkInterfaces: import_smithy_client._json,
|
|
2299
|
-
signalDecoders: (_) => se_SignalDecoders(_, context),
|
|
2286
|
+
signalDecoders: /* @__PURE__ */ __name((_) => se_SignalDecoders(_, context), "signalDecoders"),
|
|
2300
2287
|
tags: import_smithy_client._json
|
|
2301
2288
|
});
|
|
2302
2289
|
}, "se_CreateDecoderManifestRequest");
|
|
@@ -2304,26 +2291,26 @@ var se_CreateSignalCatalogRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2304
2291
|
return (0, import_smithy_client.take)(input, {
|
|
2305
2292
|
description: [],
|
|
2306
2293
|
name: [],
|
|
2307
|
-
nodes: (_) => se_Nodes(_, context),
|
|
2294
|
+
nodes: /* @__PURE__ */ __name((_) => se_Nodes(_, context), "nodes"),
|
|
2308
2295
|
tags: import_smithy_client._json
|
|
2309
2296
|
});
|
|
2310
2297
|
}, "se_CreateSignalCatalogRequest");
|
|
2311
2298
|
var se_ImportDecoderManifestRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2312
2299
|
return (0, import_smithy_client.take)(input, {
|
|
2313
2300
|
name: [],
|
|
2314
|
-
networkFileDefinitions: (_) => se_NetworkFileDefinitions(_, context)
|
|
2301
|
+
networkFileDefinitions: /* @__PURE__ */ __name((_) => se_NetworkFileDefinitions(_, context), "networkFileDefinitions")
|
|
2315
2302
|
});
|
|
2316
2303
|
}, "se_ImportDecoderManifestRequest");
|
|
2317
2304
|
var se_MessageSignal = /* @__PURE__ */ __name((input, context) => {
|
|
2318
2305
|
return (0, import_smithy_client.take)(input, {
|
|
2319
|
-
structuredMessage: (_) => se_StructuredMessage(_, context),
|
|
2306
|
+
structuredMessage: /* @__PURE__ */ __name((_) => se_StructuredMessage(_, context), "structuredMessage"),
|
|
2320
2307
|
topicName: []
|
|
2321
2308
|
});
|
|
2322
2309
|
}, "se_MessageSignal");
|
|
2323
2310
|
var se_NetworkFileDefinition = /* @__PURE__ */ __name((input, context) => {
|
|
2324
2311
|
return NetworkFileDefinition.visit(input, {
|
|
2325
|
-
canDbc: (value) => ({ canDbc: se_CanDbcDefinition(value, context) }),
|
|
2326
|
-
_: (name, value) => ({ [name]: value })
|
|
2312
|
+
canDbc: /* @__PURE__ */ __name((value) => ({ canDbc: se_CanDbcDefinition(value, context) }), "canDbc"),
|
|
2313
|
+
_: /* @__PURE__ */ __name((name, value) => ({ [name]: value }), "_")
|
|
2327
2314
|
});
|
|
2328
2315
|
}, "se_NetworkFileDefinition");
|
|
2329
2316
|
var se_NetworkFileDefinitions = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -2338,13 +2325,13 @@ var se_NetworkFilesList = /* @__PURE__ */ __name((input, context) => {
|
|
|
2338
2325
|
}, "se_NetworkFilesList");
|
|
2339
2326
|
var se_Node = /* @__PURE__ */ __name((input, context) => {
|
|
2340
2327
|
return Node.visit(input, {
|
|
2341
|
-
actuator: (value) => ({ actuator: se_Actuator(value, context) }),
|
|
2342
|
-
attribute: (value) => ({ attribute: se_Attribute(value, context) }),
|
|
2343
|
-
branch: (value) => ({ branch: (0, import_smithy_client._json)(value) }),
|
|
2344
|
-
property: (value) => ({ property: (0, import_smithy_client._json)(value) }),
|
|
2345
|
-
sensor: (value) => ({ sensor: se_Sensor(value, context) }),
|
|
2346
|
-
struct: (value) => ({ struct: (0, import_smithy_client._json)(value) }),
|
|
2347
|
-
_: (name, value) => ({ [name]: value })
|
|
2328
|
+
actuator: /* @__PURE__ */ __name((value) => ({ actuator: se_Actuator(value, context) }), "actuator"),
|
|
2329
|
+
attribute: /* @__PURE__ */ __name((value) => ({ attribute: se_Attribute(value, context) }), "attribute"),
|
|
2330
|
+
branch: /* @__PURE__ */ __name((value) => ({ branch: (0, import_smithy_client._json)(value) }), "branch"),
|
|
2331
|
+
property: /* @__PURE__ */ __name((value) => ({ property: (0, import_smithy_client._json)(value) }), "property"),
|
|
2332
|
+
sensor: /* @__PURE__ */ __name((value) => ({ sensor: se_Sensor(value, context) }), "sensor"),
|
|
2333
|
+
struct: /* @__PURE__ */ __name((value) => ({ struct: (0, import_smithy_client._json)(value) }), "struct"),
|
|
2334
|
+
_: /* @__PURE__ */ __name((name, value) => ({ [name]: value }), "_")
|
|
2348
2335
|
});
|
|
2349
2336
|
}, "se_Node");
|
|
2350
2337
|
var se_Nodes = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -2357,20 +2344,22 @@ var se_ObdSignal = /* @__PURE__ */ __name((input, context) => {
|
|
|
2357
2344
|
bitMaskLength: [],
|
|
2358
2345
|
bitRightShift: [],
|
|
2359
2346
|
byteLength: [],
|
|
2347
|
+
isSigned: [],
|
|
2360
2348
|
offset: import_smithy_client.serializeFloat,
|
|
2361
2349
|
pid: [],
|
|
2362
2350
|
pidResponseLength: [],
|
|
2363
2351
|
scaling: import_smithy_client.serializeFloat,
|
|
2364
2352
|
serviceMode: [],
|
|
2353
|
+
signalValueType: [],
|
|
2365
2354
|
startByte: []
|
|
2366
2355
|
});
|
|
2367
2356
|
}, "se_ObdSignal");
|
|
2368
2357
|
var se_PrimitiveMessageDefinition = /* @__PURE__ */ __name((input, context) => {
|
|
2369
2358
|
return PrimitiveMessageDefinition.visit(input, {
|
|
2370
|
-
ros2PrimitiveMessageDefinition: (value) => ({
|
|
2359
|
+
ros2PrimitiveMessageDefinition: /* @__PURE__ */ __name((value) => ({
|
|
2371
2360
|
ros2PrimitiveMessageDefinition: se_ROS2PrimitiveMessageDefinition(value, context)
|
|
2372
|
-
}),
|
|
2373
|
-
_: (name, value) => ({ [name]: value })
|
|
2361
|
+
}), "ros2PrimitiveMessageDefinition"),
|
|
2362
|
+
_: /* @__PURE__ */ __name((name, value) => ({ [name]: value }), "_")
|
|
2374
2363
|
});
|
|
2375
2364
|
}, "se_PrimitiveMessageDefinition");
|
|
2376
2365
|
var se_ROS2PrimitiveMessageDefinition = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -2397,12 +2386,12 @@ var se_Sensor = /* @__PURE__ */ __name((input, context) => {
|
|
|
2397
2386
|
}, "se_Sensor");
|
|
2398
2387
|
var se_SignalDecoder = /* @__PURE__ */ __name((input, context) => {
|
|
2399
2388
|
return (0, import_smithy_client.take)(input, {
|
|
2400
|
-
canSignal: (_) => se_CanSignal(_, context),
|
|
2389
|
+
canSignal: /* @__PURE__ */ __name((_) => se_CanSignal(_, context), "canSignal"),
|
|
2401
2390
|
customDecodingSignal: import_smithy_client._json,
|
|
2402
2391
|
fullyQualifiedName: [],
|
|
2403
2392
|
interfaceId: [],
|
|
2404
|
-
messageSignal: (_) => se_MessageSignal(_, context),
|
|
2405
|
-
obdSignal: (_) => se_ObdSignal(_, context),
|
|
2393
|
+
messageSignal: /* @__PURE__ */ __name((_) => se_MessageSignal(_, context), "messageSignal"),
|
|
2394
|
+
obdSignal: /* @__PURE__ */ __name((_) => se_ObdSignal(_, context), "obdSignal"),
|
|
2406
2395
|
type: []
|
|
2407
2396
|
});
|
|
2408
2397
|
}, "se_SignalDecoder");
|
|
@@ -2413,16 +2402,16 @@ var se_SignalDecoders = /* @__PURE__ */ __name((input, context) => {
|
|
|
2413
2402
|
}, "se_SignalDecoders");
|
|
2414
2403
|
var se_StructuredMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2415
2404
|
return StructuredMessage.visit(input, {
|
|
2416
|
-
primitiveMessageDefinition: (value) => ({
|
|
2405
|
+
primitiveMessageDefinition: /* @__PURE__ */ __name((value) => ({
|
|
2417
2406
|
primitiveMessageDefinition: se_PrimitiveMessageDefinition(value, context)
|
|
2418
|
-
}),
|
|
2419
|
-
structuredMessageDefinition: (value) => ({
|
|
2407
|
+
}), "primitiveMessageDefinition"),
|
|
2408
|
+
structuredMessageDefinition: /* @__PURE__ */ __name((value) => ({
|
|
2420
2409
|
structuredMessageDefinition: se_StructuredMessageDefinition(value, context)
|
|
2421
|
-
}),
|
|
2422
|
-
structuredMessageListDefinition: (value) => ({
|
|
2410
|
+
}), "structuredMessageDefinition"),
|
|
2411
|
+
structuredMessageListDefinition: /* @__PURE__ */ __name((value) => ({
|
|
2423
2412
|
structuredMessageListDefinition: se_StructuredMessageListDefinition(value, context)
|
|
2424
|
-
}),
|
|
2425
|
-
_: (name, value) => ({ [name]: value })
|
|
2413
|
+
}), "structuredMessageListDefinition"),
|
|
2414
|
+
_: /* @__PURE__ */ __name((name, value) => ({ [name]: value }), "_")
|
|
2426
2415
|
});
|
|
2427
2416
|
}, "se_StructuredMessage");
|
|
2428
2417
|
var se_StructuredMessageDefinition = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -2432,7 +2421,7 @@ var se_StructuredMessageDefinition = /* @__PURE__ */ __name((input, context) =>
|
|
|
2432
2421
|
}, "se_StructuredMessageDefinition");
|
|
2433
2422
|
var se_StructuredMessageFieldNameAndDataTypePair = /* @__PURE__ */ __name((input, context) => {
|
|
2434
2423
|
return (0, import_smithy_client.take)(input, {
|
|
2435
|
-
dataType: (_) => se_StructuredMessage(_, context),
|
|
2424
|
+
dataType: /* @__PURE__ */ __name((_) => se_StructuredMessage(_, context), "dataType"),
|
|
2436
2425
|
fieldName: []
|
|
2437
2426
|
});
|
|
2438
2427
|
}, "se_StructuredMessageFieldNameAndDataTypePair");
|
|
@@ -2440,7 +2429,7 @@ var se_StructuredMessageListDefinition = /* @__PURE__ */ __name((input, context)
|
|
|
2440
2429
|
return (0, import_smithy_client.take)(input, {
|
|
2441
2430
|
capacity: [],
|
|
2442
2431
|
listType: [],
|
|
2443
|
-
memberType: (_) => se_StructuredMessage(_, context),
|
|
2432
|
+
memberType: /* @__PURE__ */ __name((_) => se_StructuredMessage(_, context), "memberType"),
|
|
2444
2433
|
name: []
|
|
2445
2434
|
});
|
|
2446
2435
|
}, "se_StructuredMessageListDefinition");
|
|
@@ -2452,9 +2441,9 @@ var se_UpdateDecoderManifestRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
2452
2441
|
networkInterfacesToAdd: import_smithy_client._json,
|
|
2453
2442
|
networkInterfacesToRemove: import_smithy_client._json,
|
|
2454
2443
|
networkInterfacesToUpdate: import_smithy_client._json,
|
|
2455
|
-
signalDecodersToAdd: (_) => se_SignalDecoders(_, context),
|
|
2444
|
+
signalDecodersToAdd: /* @__PURE__ */ __name((_) => se_SignalDecoders(_, context), "signalDecodersToAdd"),
|
|
2456
2445
|
signalDecodersToRemove: import_smithy_client._json,
|
|
2457
|
-
signalDecodersToUpdate: (_) => se_SignalDecoders(_, context),
|
|
2446
|
+
signalDecodersToUpdate: /* @__PURE__ */ __name((_) => se_SignalDecoders(_, context), "signalDecodersToUpdate"),
|
|
2458
2447
|
status: []
|
|
2459
2448
|
});
|
|
2460
2449
|
}, "se_UpdateDecoderManifestRequest");
|
|
@@ -2462,9 +2451,9 @@ var se_UpdateSignalCatalogRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2462
2451
|
return (0, import_smithy_client.take)(input, {
|
|
2463
2452
|
description: [],
|
|
2464
2453
|
name: [],
|
|
2465
|
-
nodesToAdd: (_) => se_Nodes(_, context),
|
|
2454
|
+
nodesToAdd: /* @__PURE__ */ __name((_) => se_Nodes(_, context), "nodesToAdd"),
|
|
2466
2455
|
nodesToRemove: import_smithy_client._json,
|
|
2467
|
-
nodesToUpdate: (_) => se_Nodes(_, context)
|
|
2456
|
+
nodesToUpdate: /* @__PURE__ */ __name((_) => se_Nodes(_, context), "nodesToUpdate")
|
|
2468
2457
|
});
|
|
2469
2458
|
}, "se_UpdateSignalCatalogRequest");
|
|
2470
2459
|
var de_Actuator = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2506,9 +2495,9 @@ var de_campaignSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
2506
2495
|
var de_CampaignSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2507
2496
|
return (0, import_smithy_client.take)(output, {
|
|
2508
2497
|
arn: import_smithy_client.expectString,
|
|
2509
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2498
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2510
2499
|
description: import_smithy_client.expectString,
|
|
2511
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2500
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2512
2501
|
name: import_smithy_client.expectString,
|
|
2513
2502
|
signalCatalogArn: import_smithy_client.expectString,
|
|
2514
2503
|
status: import_smithy_client.expectString,
|
|
@@ -2524,6 +2513,7 @@ var de_CanSignal = /* @__PURE__ */ __name((output, context) => {
|
|
|
2524
2513
|
messageId: import_smithy_client.expectInt32,
|
|
2525
2514
|
name: import_smithy_client.expectString,
|
|
2526
2515
|
offset: import_smithy_client.limitedParseDouble,
|
|
2516
|
+
signalValueType: import_smithy_client.expectString,
|
|
2527
2517
|
startBit: import_smithy_client.expectInt32
|
|
2528
2518
|
});
|
|
2529
2519
|
}, "de_CanSignal");
|
|
@@ -2536,9 +2526,9 @@ var de_decoderManifestSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
2536
2526
|
var de_DecoderManifestSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2537
2527
|
return (0, import_smithy_client.take)(output, {
|
|
2538
2528
|
arn: import_smithy_client.expectString,
|
|
2539
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2529
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2540
2530
|
description: import_smithy_client.expectString,
|
|
2541
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2531
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2542
2532
|
message: import_smithy_client.expectString,
|
|
2543
2533
|
modelManifestArn: import_smithy_client.expectString,
|
|
2544
2534
|
name: import_smithy_client.expectString,
|
|
@@ -2554,26 +2544,26 @@ var de_fleetSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
2554
2544
|
var de_FleetSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2555
2545
|
return (0, import_smithy_client.take)(output, {
|
|
2556
2546
|
arn: import_smithy_client.expectString,
|
|
2557
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2547
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2558
2548
|
description: import_smithy_client.expectString,
|
|
2559
2549
|
id: import_smithy_client.expectString,
|
|
2560
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2550
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2561
2551
|
signalCatalogArn: import_smithy_client.expectString
|
|
2562
2552
|
});
|
|
2563
2553
|
}, "de_FleetSummary");
|
|
2564
2554
|
var de_GetCampaignResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2565
2555
|
return (0, import_smithy_client.take)(output, {
|
|
2566
2556
|
arn: import_smithy_client.expectString,
|
|
2567
|
-
collectionScheme: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2557
|
+
collectionScheme: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)), "collectionScheme"),
|
|
2568
2558
|
compression: import_smithy_client.expectString,
|
|
2569
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2559
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2570
2560
|
dataDestinationConfigs: import_smithy_client._json,
|
|
2571
2561
|
dataExtraDimensions: import_smithy_client._json,
|
|
2572
2562
|
dataPartitions: import_smithy_client._json,
|
|
2573
2563
|
description: import_smithy_client.expectString,
|
|
2574
2564
|
diagnosticsMode: import_smithy_client.expectString,
|
|
2575
|
-
expiryTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2576
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2565
|
+
expiryTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "expiryTime"),
|
|
2566
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2577
2567
|
name: import_smithy_client.expectString,
|
|
2578
2568
|
postTriggerCollectionDuration: import_smithy_client.expectLong,
|
|
2579
2569
|
priority: import_smithy_client.expectInt32,
|
|
@@ -2581,7 +2571,7 @@ var de_GetCampaignResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
2581
2571
|
signalsToCollect: import_smithy_client._json,
|
|
2582
2572
|
signalsToFetch: import_smithy_client._json,
|
|
2583
2573
|
spoolingMode: import_smithy_client.expectString,
|
|
2584
|
-
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2574
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime"),
|
|
2585
2575
|
status: import_smithy_client.expectString,
|
|
2586
2576
|
targetArn: import_smithy_client.expectString
|
|
2587
2577
|
});
|
|
@@ -2589,9 +2579,9 @@ var de_GetCampaignResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
2589
2579
|
var de_GetDecoderManifestResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2590
2580
|
return (0, import_smithy_client.take)(output, {
|
|
2591
2581
|
arn: import_smithy_client.expectString,
|
|
2592
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2582
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2593
2583
|
description: import_smithy_client.expectString,
|
|
2594
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2584
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2595
2585
|
message: import_smithy_client.expectString,
|
|
2596
2586
|
modelManifestArn: import_smithy_client.expectString,
|
|
2597
2587
|
name: import_smithy_client.expectString,
|
|
@@ -2600,30 +2590,30 @@ var de_GetDecoderManifestResponse = /* @__PURE__ */ __name((output, context) =>
|
|
|
2600
2590
|
}, "de_GetDecoderManifestResponse");
|
|
2601
2591
|
var de_GetEncryptionConfigurationResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2602
2592
|
return (0, import_smithy_client.take)(output, {
|
|
2603
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2593
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2604
2594
|
encryptionStatus: import_smithy_client.expectString,
|
|
2605
2595
|
encryptionType: import_smithy_client.expectString,
|
|
2606
2596
|
errorMessage: import_smithy_client.expectString,
|
|
2607
2597
|
kmsKeyId: import_smithy_client.expectString,
|
|
2608
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2598
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime")
|
|
2609
2599
|
});
|
|
2610
2600
|
}, "de_GetEncryptionConfigurationResponse");
|
|
2611
2601
|
var de_GetFleetResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2612
2602
|
return (0, import_smithy_client.take)(output, {
|
|
2613
2603
|
arn: import_smithy_client.expectString,
|
|
2614
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2604
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2615
2605
|
description: import_smithy_client.expectString,
|
|
2616
2606
|
id: import_smithy_client.expectString,
|
|
2617
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2607
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2618
2608
|
signalCatalogArn: import_smithy_client.expectString
|
|
2619
2609
|
});
|
|
2620
2610
|
}, "de_GetFleetResponse");
|
|
2621
2611
|
var de_GetModelManifestResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2622
2612
|
return (0, import_smithy_client.take)(output, {
|
|
2623
2613
|
arn: import_smithy_client.expectString,
|
|
2624
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2614
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2625
2615
|
description: import_smithy_client.expectString,
|
|
2626
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2616
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2627
2617
|
name: import_smithy_client.expectString,
|
|
2628
2618
|
signalCatalogArn: import_smithy_client.expectString,
|
|
2629
2619
|
status: import_smithy_client.expectString
|
|
@@ -2632,19 +2622,19 @@ var de_GetModelManifestResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
2632
2622
|
var de_GetRegisterAccountStatusResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2633
2623
|
return (0, import_smithy_client.take)(output, {
|
|
2634
2624
|
accountStatus: import_smithy_client.expectString,
|
|
2635
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2625
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2636
2626
|
customerAccountId: import_smithy_client.expectString,
|
|
2637
2627
|
iamRegistrationResponse: import_smithy_client._json,
|
|
2638
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2628
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2639
2629
|
timestreamRegistrationResponse: import_smithy_client._json
|
|
2640
2630
|
});
|
|
2641
2631
|
}, "de_GetRegisterAccountStatusResponse");
|
|
2642
2632
|
var de_GetSignalCatalogResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2643
2633
|
return (0, import_smithy_client.take)(output, {
|
|
2644
2634
|
arn: import_smithy_client.expectString,
|
|
2645
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2635
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2646
2636
|
description: import_smithy_client.expectString,
|
|
2647
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2637
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2648
2638
|
name: import_smithy_client.expectString,
|
|
2649
2639
|
nodeCounts: import_smithy_client._json
|
|
2650
2640
|
});
|
|
@@ -2652,11 +2642,11 @@ var de_GetSignalCatalogResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
2652
2642
|
var de_GetStateTemplateResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2653
2643
|
return (0, import_smithy_client.take)(output, {
|
|
2654
2644
|
arn: import_smithy_client.expectString,
|
|
2655
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2645
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2656
2646
|
dataExtraDimensions: import_smithy_client._json,
|
|
2657
2647
|
description: import_smithy_client.expectString,
|
|
2658
2648
|
id: import_smithy_client.expectString,
|
|
2659
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2649
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2660
2650
|
metadataExtraDimensions: import_smithy_client._json,
|
|
2661
2651
|
name: import_smithy_client.expectString,
|
|
2662
2652
|
signalCatalogArn: import_smithy_client.expectString,
|
|
@@ -2667,9 +2657,9 @@ var de_GetVehicleResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
2667
2657
|
return (0, import_smithy_client.take)(output, {
|
|
2668
2658
|
arn: import_smithy_client.expectString,
|
|
2669
2659
|
attributes: import_smithy_client._json,
|
|
2670
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2660
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2671
2661
|
decoderManifestArn: import_smithy_client.expectString,
|
|
2672
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2662
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2673
2663
|
modelManifestArn: import_smithy_client.expectString,
|
|
2674
2664
|
stateTemplates: import_smithy_client._json,
|
|
2675
2665
|
vehicleName: import_smithy_client.expectString
|
|
@@ -2677,74 +2667,74 @@ var de_GetVehicleResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
2677
2667
|
}, "de_GetVehicleResponse");
|
|
2678
2668
|
var de_InvalidNodeException = /* @__PURE__ */ __name((output, context) => {
|
|
2679
2669
|
return (0, import_smithy_client.take)(output, {
|
|
2680
|
-
invalidNodes: (_) => de_Nodes(_, context),
|
|
2670
|
+
invalidNodes: /* @__PURE__ */ __name((_) => de_Nodes(_, context), "invalidNodes"),
|
|
2681
2671
|
message: import_smithy_client.expectString,
|
|
2682
2672
|
reason: import_smithy_client.expectString
|
|
2683
2673
|
});
|
|
2684
2674
|
}, "de_InvalidNodeException");
|
|
2685
2675
|
var de_ListCampaignsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2686
2676
|
return (0, import_smithy_client.take)(output, {
|
|
2687
|
-
campaignSummaries: (_) => de_campaignSummaries(_, context),
|
|
2677
|
+
campaignSummaries: /* @__PURE__ */ __name((_) => de_campaignSummaries(_, context), "campaignSummaries"),
|
|
2688
2678
|
nextToken: import_smithy_client.expectString
|
|
2689
2679
|
});
|
|
2690
2680
|
}, "de_ListCampaignsResponse");
|
|
2691
2681
|
var de_ListDecoderManifestSignalsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2692
2682
|
return (0, import_smithy_client.take)(output, {
|
|
2693
2683
|
nextToken: import_smithy_client.expectString,
|
|
2694
|
-
signalDecoders: (_) => de_SignalDecoders(_, context)
|
|
2684
|
+
signalDecoders: /* @__PURE__ */ __name((_) => de_SignalDecoders(_, context), "signalDecoders")
|
|
2695
2685
|
});
|
|
2696
2686
|
}, "de_ListDecoderManifestSignalsResponse");
|
|
2697
2687
|
var de_ListDecoderManifestsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2698
2688
|
return (0, import_smithy_client.take)(output, {
|
|
2699
2689
|
nextToken: import_smithy_client.expectString,
|
|
2700
|
-
summaries: (_) => de_decoderManifestSummaries(_, context)
|
|
2690
|
+
summaries: /* @__PURE__ */ __name((_) => de_decoderManifestSummaries(_, context), "summaries")
|
|
2701
2691
|
});
|
|
2702
2692
|
}, "de_ListDecoderManifestsResponse");
|
|
2703
2693
|
var de_ListFleetsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2704
2694
|
return (0, import_smithy_client.take)(output, {
|
|
2705
|
-
fleetSummaries: (_) => de_fleetSummaries(_, context),
|
|
2695
|
+
fleetSummaries: /* @__PURE__ */ __name((_) => de_fleetSummaries(_, context), "fleetSummaries"),
|
|
2706
2696
|
nextToken: import_smithy_client.expectString
|
|
2707
2697
|
});
|
|
2708
2698
|
}, "de_ListFleetsResponse");
|
|
2709
2699
|
var de_ListModelManifestNodesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2710
2700
|
return (0, import_smithy_client.take)(output, {
|
|
2711
2701
|
nextToken: import_smithy_client.expectString,
|
|
2712
|
-
nodes: (_) => de_Nodes(_, context)
|
|
2702
|
+
nodes: /* @__PURE__ */ __name((_) => de_Nodes(_, context), "nodes")
|
|
2713
2703
|
});
|
|
2714
2704
|
}, "de_ListModelManifestNodesResponse");
|
|
2715
2705
|
var de_ListModelManifestsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2716
2706
|
return (0, import_smithy_client.take)(output, {
|
|
2717
2707
|
nextToken: import_smithy_client.expectString,
|
|
2718
|
-
summaries: (_) => de_modelManifestSummaries(_, context)
|
|
2708
|
+
summaries: /* @__PURE__ */ __name((_) => de_modelManifestSummaries(_, context), "summaries")
|
|
2719
2709
|
});
|
|
2720
2710
|
}, "de_ListModelManifestsResponse");
|
|
2721
2711
|
var de_ListSignalCatalogNodesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2722
2712
|
return (0, import_smithy_client.take)(output, {
|
|
2723
2713
|
nextToken: import_smithy_client.expectString,
|
|
2724
|
-
nodes: (_) => de_Nodes(_, context)
|
|
2714
|
+
nodes: /* @__PURE__ */ __name((_) => de_Nodes(_, context), "nodes")
|
|
2725
2715
|
});
|
|
2726
2716
|
}, "de_ListSignalCatalogNodesResponse");
|
|
2727
2717
|
var de_ListSignalCatalogsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2728
2718
|
return (0, import_smithy_client.take)(output, {
|
|
2729
2719
|
nextToken: import_smithy_client.expectString,
|
|
2730
|
-
summaries: (_) => de_signalCatalogSummaries(_, context)
|
|
2720
|
+
summaries: /* @__PURE__ */ __name((_) => de_signalCatalogSummaries(_, context), "summaries")
|
|
2731
2721
|
});
|
|
2732
2722
|
}, "de_ListSignalCatalogsResponse");
|
|
2733
2723
|
var de_ListStateTemplatesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2734
2724
|
return (0, import_smithy_client.take)(output, {
|
|
2735
2725
|
nextToken: import_smithy_client.expectString,
|
|
2736
|
-
summaries: (_) => de_StateTemplateSummaries(_, context)
|
|
2726
|
+
summaries: /* @__PURE__ */ __name((_) => de_StateTemplateSummaries(_, context), "summaries")
|
|
2737
2727
|
});
|
|
2738
2728
|
}, "de_ListStateTemplatesResponse");
|
|
2739
2729
|
var de_ListVehiclesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2740
2730
|
return (0, import_smithy_client.take)(output, {
|
|
2741
2731
|
nextToken: import_smithy_client.expectString,
|
|
2742
|
-
vehicleSummaries: (_) => de_vehicleSummaries(_, context)
|
|
2732
|
+
vehicleSummaries: /* @__PURE__ */ __name((_) => de_vehicleSummaries(_, context), "vehicleSummaries")
|
|
2743
2733
|
});
|
|
2744
2734
|
}, "de_ListVehiclesResponse");
|
|
2745
2735
|
var de_MessageSignal = /* @__PURE__ */ __name((output, context) => {
|
|
2746
2736
|
return (0, import_smithy_client.take)(output, {
|
|
2747
|
-
structuredMessage: (_) => de_StructuredMessage((0, import_core2.awsExpectUnion)(_), context),
|
|
2737
|
+
structuredMessage: /* @__PURE__ */ __name((_) => de_StructuredMessage((0, import_core2.awsExpectUnion)(_), context), "structuredMessage"),
|
|
2748
2738
|
topicName: import_smithy_client.expectString
|
|
2749
2739
|
});
|
|
2750
2740
|
}, "de_MessageSignal");
|
|
@@ -2757,9 +2747,9 @@ var de_modelManifestSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
2757
2747
|
var de_ModelManifestSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2758
2748
|
return (0, import_smithy_client.take)(output, {
|
|
2759
2749
|
arn: import_smithy_client.expectString,
|
|
2760
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2750
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2761
2751
|
description: import_smithy_client.expectString,
|
|
2762
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2752
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2763
2753
|
name: import_smithy_client.expectString,
|
|
2764
2754
|
signalCatalogArn: import_smithy_client.expectString,
|
|
2765
2755
|
status: import_smithy_client.expectString
|
|
@@ -2809,11 +2799,13 @@ var de_ObdSignal = /* @__PURE__ */ __name((output, context) => {
|
|
|
2809
2799
|
bitMaskLength: import_smithy_client.expectInt32,
|
|
2810
2800
|
bitRightShift: import_smithy_client.expectInt32,
|
|
2811
2801
|
byteLength: import_smithy_client.expectInt32,
|
|
2802
|
+
isSigned: import_smithy_client.expectBoolean,
|
|
2812
2803
|
offset: import_smithy_client.limitedParseDouble,
|
|
2813
2804
|
pid: import_smithy_client.expectInt32,
|
|
2814
2805
|
pidResponseLength: import_smithy_client.expectInt32,
|
|
2815
2806
|
scaling: import_smithy_client.limitedParseDouble,
|
|
2816
2807
|
serviceMode: import_smithy_client.expectInt32,
|
|
2808
|
+
signalValueType: import_smithy_client.expectString,
|
|
2817
2809
|
startByte: import_smithy_client.expectInt32
|
|
2818
2810
|
});
|
|
2819
2811
|
}, "de_ObdSignal");
|
|
@@ -2827,9 +2819,9 @@ var de_PrimitiveMessageDefinition = /* @__PURE__ */ __name((output, context) =>
|
|
|
2827
2819
|
}, "de_PrimitiveMessageDefinition");
|
|
2828
2820
|
var de_RegisterAccountResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2829
2821
|
return (0, import_smithy_client.take)(output, {
|
|
2830
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2822
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2831
2823
|
iamResources: import_smithy_client._json,
|
|
2832
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2824
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2833
2825
|
registerAccountStatus: import_smithy_client.expectString,
|
|
2834
2826
|
timestreamResources: import_smithy_client._json
|
|
2835
2827
|
});
|
|
@@ -2865,19 +2857,19 @@ var de_signalCatalogSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
2865
2857
|
var de_SignalCatalogSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2866
2858
|
return (0, import_smithy_client.take)(output, {
|
|
2867
2859
|
arn: import_smithy_client.expectString,
|
|
2868
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2869
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2860
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2861
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2870
2862
|
name: import_smithy_client.expectString
|
|
2871
2863
|
});
|
|
2872
2864
|
}, "de_SignalCatalogSummary");
|
|
2873
2865
|
var de_SignalDecoder = /* @__PURE__ */ __name((output, context) => {
|
|
2874
2866
|
return (0, import_smithy_client.take)(output, {
|
|
2875
|
-
canSignal: (_) => de_CanSignal(_, context),
|
|
2867
|
+
canSignal: /* @__PURE__ */ __name((_) => de_CanSignal(_, context), "canSignal"),
|
|
2876
2868
|
customDecodingSignal: import_smithy_client._json,
|
|
2877
2869
|
fullyQualifiedName: import_smithy_client.expectString,
|
|
2878
2870
|
interfaceId: import_smithy_client.expectString,
|
|
2879
|
-
messageSignal: (_) => de_MessageSignal(_, context),
|
|
2880
|
-
obdSignal: (_) => de_ObdSignal(_, context),
|
|
2871
|
+
messageSignal: /* @__PURE__ */ __name((_) => de_MessageSignal(_, context), "messageSignal"),
|
|
2872
|
+
obdSignal: /* @__PURE__ */ __name((_) => de_ObdSignal(_, context), "obdSignal"),
|
|
2881
2873
|
type: import_smithy_client.expectString
|
|
2882
2874
|
});
|
|
2883
2875
|
}, "de_SignalDecoder");
|
|
@@ -2896,10 +2888,10 @@ var de_StateTemplateSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
2896
2888
|
var de_StateTemplateSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2897
2889
|
return (0, import_smithy_client.take)(output, {
|
|
2898
2890
|
arn: import_smithy_client.expectString,
|
|
2899
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2891
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2900
2892
|
description: import_smithy_client.expectString,
|
|
2901
2893
|
id: import_smithy_client.expectString,
|
|
2902
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2894
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2903
2895
|
name: import_smithy_client.expectString,
|
|
2904
2896
|
signalCatalogArn: import_smithy_client.expectString
|
|
2905
2897
|
});
|
|
@@ -2936,7 +2928,7 @@ var de_StructuredMessageDefinition = /* @__PURE__ */ __name((output, context) =>
|
|
|
2936
2928
|
}, "de_StructuredMessageDefinition");
|
|
2937
2929
|
var de_StructuredMessageFieldNameAndDataTypePair = /* @__PURE__ */ __name((output, context) => {
|
|
2938
2930
|
return (0, import_smithy_client.take)(output, {
|
|
2939
|
-
dataType: (_) => de_StructuredMessage((0, import_core2.awsExpectUnion)(_), context),
|
|
2931
|
+
dataType: /* @__PURE__ */ __name((_) => de_StructuredMessage((0, import_core2.awsExpectUnion)(_), context), "dataType"),
|
|
2940
2932
|
fieldName: import_smithy_client.expectString
|
|
2941
2933
|
});
|
|
2942
2934
|
}, "de_StructuredMessageFieldNameAndDataTypePair");
|
|
@@ -2944,7 +2936,7 @@ var de_StructuredMessageListDefinition = /* @__PURE__ */ __name((output, context
|
|
|
2944
2936
|
return (0, import_smithy_client.take)(output, {
|
|
2945
2937
|
capacity: import_smithy_client.expectInt32,
|
|
2946
2938
|
listType: import_smithy_client.expectString,
|
|
2947
|
-
memberType: (_) => de_StructuredMessage((0, import_core2.awsExpectUnion)(_), context),
|
|
2939
|
+
memberType: /* @__PURE__ */ __name((_) => de_StructuredMessage((0, import_core2.awsExpectUnion)(_), context), "memberType"),
|
|
2948
2940
|
name: import_smithy_client.expectString
|
|
2949
2941
|
});
|
|
2950
2942
|
}, "de_StructuredMessageListDefinition");
|
|
@@ -2958,9 +2950,9 @@ var de_VehicleSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
2958
2950
|
return (0, import_smithy_client.take)(output, {
|
|
2959
2951
|
arn: import_smithy_client.expectString,
|
|
2960
2952
|
attributes: import_smithy_client._json,
|
|
2961
|
-
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2953
|
+
creationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "creationTime"),
|
|
2962
2954
|
decoderManifestArn: import_smithy_client.expectString,
|
|
2963
|
-
lastModificationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2955
|
+
lastModificationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "lastModificationTime"),
|
|
2964
2956
|
modelManifestArn: import_smithy_client.expectString,
|
|
2965
2957
|
vehicleName: import_smithy_client.expectString
|
|
2966
2958
|
});
|
|
@@ -4078,6 +4070,7 @@ var paginateListVehicles = (0, import_core.createPaginator)(IoTFleetWiseClient,
|
|
|
4078
4070
|
CampaignStatus,
|
|
4079
4071
|
ListResponseScope,
|
|
4080
4072
|
UpdateCampaignAction,
|
|
4073
|
+
SignalValueType,
|
|
4081
4074
|
LogType,
|
|
4082
4075
|
DefaultForUnmappedSignalsType,
|
|
4083
4076
|
NetworkInterfaceType,
|
|
@@ -250,6 +250,10 @@ export const UpdateCampaignAction = {
|
|
|
250
250
|
SUSPEND: "SUSPEND",
|
|
251
251
|
UPDATE: "UPDATE",
|
|
252
252
|
};
|
|
253
|
+
export const SignalValueType = {
|
|
254
|
+
FLOATING_POINT: "FLOATING_POINT",
|
|
255
|
+
INTEGER: "INTEGER",
|
|
256
|
+
};
|
|
253
257
|
export const LogType = {
|
|
254
258
|
ERROR: "ERROR",
|
|
255
259
|
OFF: "OFF",
|
|
@@ -1268,6 +1268,7 @@ const se_CanSignal = (input, context) => {
|
|
|
1268
1268
|
messageId: [],
|
|
1269
1269
|
name: [],
|
|
1270
1270
|
offset: __serializeFloat,
|
|
1271
|
+
signalValueType: [],
|
|
1271
1272
|
startBit: [],
|
|
1272
1273
|
});
|
|
1273
1274
|
};
|
|
@@ -1367,11 +1368,13 @@ const se_ObdSignal = (input, context) => {
|
|
|
1367
1368
|
bitMaskLength: [],
|
|
1368
1369
|
bitRightShift: [],
|
|
1369
1370
|
byteLength: [],
|
|
1371
|
+
isSigned: [],
|
|
1370
1372
|
offset: __serializeFloat,
|
|
1371
1373
|
pid: [],
|
|
1372
1374
|
pidResponseLength: [],
|
|
1373
1375
|
scaling: __serializeFloat,
|
|
1374
1376
|
serviceMode: [],
|
|
1377
|
+
signalValueType: [],
|
|
1375
1378
|
startByte: [],
|
|
1376
1379
|
});
|
|
1377
1380
|
};
|
|
@@ -1540,6 +1543,7 @@ const de_CanSignal = (output, context) => {
|
|
|
1540
1543
|
messageId: __expectInt32,
|
|
1541
1544
|
name: __expectString,
|
|
1542
1545
|
offset: __limitedParseDouble,
|
|
1546
|
+
signalValueType: __expectString,
|
|
1543
1547
|
startBit: __expectInt32,
|
|
1544
1548
|
});
|
|
1545
1549
|
};
|
|
@@ -1833,11 +1837,13 @@ const de_ObdSignal = (output, context) => {
|
|
|
1833
1837
|
bitMaskLength: __expectInt32,
|
|
1834
1838
|
bitRightShift: __expectInt32,
|
|
1835
1839
|
byteLength: __expectInt32,
|
|
1840
|
+
isSigned: __expectBoolean,
|
|
1836
1841
|
offset: __limitedParseDouble,
|
|
1837
1842
|
pid: __expectInt32,
|
|
1838
1843
|
pidResponseLength: __expectInt32,
|
|
1839
1844
|
scaling: __limitedParseDouble,
|
|
1840
1845
|
serviceMode: __expectInt32,
|
|
1846
|
+
signalValueType: __expectString,
|
|
1841
1847
|
startByte: __expectInt32,
|
|
1842
1848
|
});
|
|
1843
1849
|
};
|
|
@@ -67,6 +67,7 @@ declare const CreateDecoderManifestCommand_base: {
|
|
|
67
67
|
* factor: Number("double"), // required
|
|
68
68
|
* length: Number("int"), // required
|
|
69
69
|
* name: "STRING_VALUE",
|
|
70
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
70
71
|
* },
|
|
71
72
|
* obdSignal: { // ObdSignal
|
|
72
73
|
* pidResponseLength: Number("int"), // required
|
|
@@ -78,6 +79,8 @@ declare const CreateDecoderManifestCommand_base: {
|
|
|
78
79
|
* byteLength: Number("int"), // required
|
|
79
80
|
* bitRightShift: Number("int"),
|
|
80
81
|
* bitMaskLength: Number("int"),
|
|
82
|
+
* isSigned: true || false,
|
|
83
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
81
84
|
* },
|
|
82
85
|
* messageSignal: { // MessageSignal
|
|
83
86
|
* topicName: "STRING_VALUE", // required
|
|
@@ -59,6 +59,7 @@ declare const ListDecoderManifestSignalsCommand_base: {
|
|
|
59
59
|
* // factor: Number("double"), // required
|
|
60
60
|
* // length: Number("int"), // required
|
|
61
61
|
* // name: "STRING_VALUE",
|
|
62
|
+
* // signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
62
63
|
* // },
|
|
63
64
|
* // obdSignal: { // ObdSignal
|
|
64
65
|
* // pidResponseLength: Number("int"), // required
|
|
@@ -70,6 +71,8 @@ declare const ListDecoderManifestSignalsCommand_base: {
|
|
|
70
71
|
* // byteLength: Number("int"), // required
|
|
71
72
|
* // bitRightShift: Number("int"),
|
|
72
73
|
* // bitMaskLength: Number("int"),
|
|
74
|
+
* // isSigned: true || false,
|
|
75
|
+
* // signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
73
76
|
* // },
|
|
74
77
|
* // messageSignal: { // MessageSignal
|
|
75
78
|
* // topicName: "STRING_VALUE", // required
|
|
@@ -53,6 +53,7 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
53
53
|
* factor: Number("double"), // required
|
|
54
54
|
* length: Number("int"), // required
|
|
55
55
|
* name: "STRING_VALUE",
|
|
56
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
56
57
|
* },
|
|
57
58
|
* obdSignal: { // ObdSignal
|
|
58
59
|
* pidResponseLength: Number("int"), // required
|
|
@@ -64,6 +65,8 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
64
65
|
* byteLength: Number("int"), // required
|
|
65
66
|
* bitRightShift: Number("int"),
|
|
66
67
|
* bitMaskLength: Number("int"),
|
|
68
|
+
* isSigned: true || false,
|
|
69
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
67
70
|
* },
|
|
68
71
|
* messageSignal: { // MessageSignal
|
|
69
72
|
* topicName: "STRING_VALUE", // required
|
|
@@ -130,6 +133,7 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
130
133
|
* factor: Number("double"), // required
|
|
131
134
|
* length: Number("int"), // required
|
|
132
135
|
* name: "STRING_VALUE",
|
|
136
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
133
137
|
* },
|
|
134
138
|
* obdSignal: {
|
|
135
139
|
* pidResponseLength: Number("int"), // required
|
|
@@ -141,6 +145,8 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
141
145
|
* byteLength: Number("int"), // required
|
|
142
146
|
* bitRightShift: Number("int"),
|
|
143
147
|
* bitMaskLength: Number("int"),
|
|
148
|
+
* isSigned: true || false,
|
|
149
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
144
150
|
* },
|
|
145
151
|
* messageSignal: {
|
|
146
152
|
* topicName: "STRING_VALUE", // required
|
|
@@ -2005,6 +2005,18 @@ export interface CanInterface {
|
|
|
2005
2005
|
*/
|
|
2006
2006
|
protocolVersion?: string | undefined;
|
|
2007
2007
|
}
|
|
2008
|
+
/**
|
|
2009
|
+
* @public
|
|
2010
|
+
* @enum
|
|
2011
|
+
*/
|
|
2012
|
+
export declare const SignalValueType: {
|
|
2013
|
+
readonly FLOATING_POINT: "FLOATING_POINT";
|
|
2014
|
+
readonly INTEGER: "INTEGER";
|
|
2015
|
+
};
|
|
2016
|
+
/**
|
|
2017
|
+
* @public
|
|
2018
|
+
*/
|
|
2019
|
+
export type SignalValueType = (typeof SignalValueType)[keyof typeof SignalValueType];
|
|
2008
2020
|
/**
|
|
2009
2021
|
* <p>Information about a single controller area network (CAN) signal and the messages it
|
|
2010
2022
|
* receives and transmits.</p>
|
|
@@ -2022,7 +2034,7 @@ export interface CanSignal {
|
|
|
2022
2034
|
*/
|
|
2023
2035
|
isBigEndian: boolean | undefined;
|
|
2024
2036
|
/**
|
|
2025
|
-
* <p>
|
|
2037
|
+
* <p>Determines whether the message is signed (<code>true</code>) or not (<code>false</code>). If it's signed, the message can represent both positive and negative numbers. The <code>isSigned</code> parameter only applies to the <code>INTEGER</code> raw signal type, and it doesn't affect the <code>FLOATING_POINT</code> raw signal type.</p>
|
|
2026
2038
|
* @public
|
|
2027
2039
|
*/
|
|
2028
2040
|
isSigned: boolean | undefined;
|
|
@@ -2057,6 +2069,11 @@ export interface CanSignal {
|
|
|
2057
2069
|
* @public
|
|
2058
2070
|
*/
|
|
2059
2071
|
name?: string | undefined;
|
|
2072
|
+
/**
|
|
2073
|
+
* <p>The value type of the signal. The default value is <code>INTEGER</code>.</p>
|
|
2074
|
+
* @public
|
|
2075
|
+
*/
|
|
2076
|
+
signalValueType?: SignalValueType | undefined;
|
|
2060
2077
|
}
|
|
2061
2078
|
/**
|
|
2062
2079
|
* @public
|
|
@@ -2407,6 +2424,16 @@ export interface ObdSignal {
|
|
|
2407
2424
|
* @public
|
|
2408
2425
|
*/
|
|
2409
2426
|
bitMaskLength?: number | undefined;
|
|
2427
|
+
/**
|
|
2428
|
+
* <p>Determines whether the message is signed (<code>true</code>) or not (<code>false</code>). If it's signed, the message can represent both positive and negative numbers. The <code>isSigned</code> parameter only applies to the <code>INTEGER</code> raw signal type, and it doesn't affect the <code>FLOATING_POINT</code> raw signal type. The default value is <code>false</code>.</p>
|
|
2429
|
+
* @public
|
|
2430
|
+
*/
|
|
2431
|
+
isSigned?: boolean | undefined;
|
|
2432
|
+
/**
|
|
2433
|
+
* <p>The value type of the signal. The default value is <code>INTEGER</code>.</p>
|
|
2434
|
+
* @public
|
|
2435
|
+
*/
|
|
2436
|
+
signalValueType?: SignalValueType | undefined;
|
|
2410
2437
|
}
|
|
2411
2438
|
/**
|
|
2412
2439
|
* @public
|
|
@@ -578,6 +578,12 @@ export interface CanInterface {
|
|
|
578
578
|
protocolName?: string | undefined;
|
|
579
579
|
protocolVersion?: string | undefined;
|
|
580
580
|
}
|
|
581
|
+
export declare const SignalValueType: {
|
|
582
|
+
readonly FLOATING_POINT: "FLOATING_POINT";
|
|
583
|
+
readonly INTEGER: "INTEGER";
|
|
584
|
+
};
|
|
585
|
+
export type SignalValueType =
|
|
586
|
+
(typeof SignalValueType)[keyof typeof SignalValueType];
|
|
581
587
|
export interface CanSignal {
|
|
582
588
|
messageId: number | undefined;
|
|
583
589
|
isBigEndian: boolean | undefined;
|
|
@@ -587,6 +593,7 @@ export interface CanSignal {
|
|
|
587
593
|
factor: number | undefined;
|
|
588
594
|
length: number | undefined;
|
|
589
595
|
name?: string | undefined;
|
|
596
|
+
signalValueType?: SignalValueType | undefined;
|
|
590
597
|
}
|
|
591
598
|
export declare const LogType: {
|
|
592
599
|
readonly ERROR: "ERROR";
|
|
@@ -704,6 +711,8 @@ export interface ObdSignal {
|
|
|
704
711
|
byteLength: number | undefined;
|
|
705
712
|
bitRightShift?: number | undefined;
|
|
706
713
|
bitMaskLength?: number | undefined;
|
|
714
|
+
isSigned?: boolean | undefined;
|
|
715
|
+
signalValueType?: SignalValueType | undefined;
|
|
707
716
|
}
|
|
708
717
|
export declare const SignalDecoderType: {
|
|
709
718
|
readonly CAN_SIGNAL: "CAN_SIGNAL";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotfleetwise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.772.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iotfleetwise",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.758.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.772.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.772.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|