@aws-sdk/client-iotfleetwise 3.1075.0 → 3.1077.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 +2397 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/IoTFleetWiseServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -155
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2004
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultIoTFleetWiseHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "iotfleetwise",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultIoTFleetWiseHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,2085 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://iotfleetwise-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://iotfleetwise-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://iotfleetwise.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://iotfleetwise.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class IoTFleetWiseServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, IoTFleetWiseServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends IoTFleetWiseServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class InternalServerException extends IoTFleetWiseServiceException {
|
|
153
|
+
name = "InternalServerException";
|
|
154
|
+
$fault = "server";
|
|
155
|
+
retryAfterSeconds;
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "InternalServerException",
|
|
159
|
+
$fault: "server",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
163
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
class LimitExceededException extends IoTFleetWiseServiceException {
|
|
167
|
+
name = "LimitExceededException";
|
|
168
|
+
$fault = "client";
|
|
169
|
+
resourceId;
|
|
170
|
+
resourceType;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "LimitExceededException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
178
|
+
this.resourceId = opts.resourceId;
|
|
179
|
+
this.resourceType = opts.resourceType;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class ResourceNotFoundException extends IoTFleetWiseServiceException {
|
|
183
|
+
name = "ResourceNotFoundException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
resourceId;
|
|
186
|
+
resourceType;
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "ResourceNotFoundException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
194
|
+
this.resourceId = opts.resourceId;
|
|
195
|
+
this.resourceType = opts.resourceType;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
class ThrottlingException extends IoTFleetWiseServiceException {
|
|
199
|
+
name = "ThrottlingException";
|
|
200
|
+
$fault = "client";
|
|
201
|
+
quotaCode;
|
|
202
|
+
serviceCode;
|
|
203
|
+
retryAfterSeconds;
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "ThrottlingException",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
211
|
+
this.quotaCode = opts.quotaCode;
|
|
212
|
+
this.serviceCode = opts.serviceCode;
|
|
213
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
class ValidationException extends IoTFleetWiseServiceException {
|
|
217
|
+
name = "ValidationException";
|
|
218
|
+
$fault = "client";
|
|
219
|
+
reason;
|
|
220
|
+
fieldList;
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "ValidationException",
|
|
224
|
+
$fault: "client",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
228
|
+
this.reason = opts.reason;
|
|
229
|
+
this.fieldList = opts.fieldList;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
class ConflictException extends IoTFleetWiseServiceException {
|
|
233
|
+
name = "ConflictException";
|
|
234
|
+
$fault = "client";
|
|
235
|
+
resource;
|
|
236
|
+
resourceType;
|
|
237
|
+
constructor(opts) {
|
|
238
|
+
super({
|
|
239
|
+
name: "ConflictException",
|
|
240
|
+
$fault: "client",
|
|
241
|
+
...opts,
|
|
242
|
+
});
|
|
243
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
244
|
+
this.resource = opts.resource;
|
|
245
|
+
this.resourceType = opts.resourceType;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
class DecoderManifestValidationException extends IoTFleetWiseServiceException {
|
|
249
|
+
name = "DecoderManifestValidationException";
|
|
250
|
+
$fault = "client";
|
|
251
|
+
invalidSignals;
|
|
252
|
+
invalidNetworkInterfaces;
|
|
253
|
+
constructor(opts) {
|
|
254
|
+
super({
|
|
255
|
+
name: "DecoderManifestValidationException",
|
|
256
|
+
$fault: "client",
|
|
257
|
+
...opts,
|
|
258
|
+
});
|
|
259
|
+
Object.setPrototypeOf(this, DecoderManifestValidationException.prototype);
|
|
260
|
+
this.invalidSignals = opts.invalidSignals;
|
|
261
|
+
this.invalidNetworkInterfaces = opts.invalidNetworkInterfaces;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
class InvalidSignalsException extends IoTFleetWiseServiceException {
|
|
265
|
+
name = "InvalidSignalsException";
|
|
266
|
+
$fault = "client";
|
|
267
|
+
invalidSignals;
|
|
268
|
+
constructor(opts) {
|
|
269
|
+
super({
|
|
270
|
+
name: "InvalidSignalsException",
|
|
271
|
+
$fault: "client",
|
|
272
|
+
...opts,
|
|
273
|
+
});
|
|
274
|
+
Object.setPrototypeOf(this, InvalidSignalsException.prototype);
|
|
275
|
+
this.invalidSignals = opts.invalidSignals;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
class InvalidNodeException extends IoTFleetWiseServiceException {
|
|
279
|
+
name = "InvalidNodeException";
|
|
280
|
+
$fault = "client";
|
|
281
|
+
invalidNodes;
|
|
282
|
+
reason;
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "InvalidNodeException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, InvalidNodeException.prototype);
|
|
290
|
+
this.invalidNodes = opts.invalidNodes;
|
|
291
|
+
this.reason = opts.reason;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
const _A = "Actuator";
|
|
296
|
+
const _ADE = "AccessDeniedException";
|
|
297
|
+
const _AVF = "AssociateVehicleFleet";
|
|
298
|
+
const _AVFR = "AssociateVehicleFleetRequest";
|
|
299
|
+
const _AVFRs = "AssociateVehicleFleetResponse";
|
|
300
|
+
const _At = "Attribute";
|
|
301
|
+
const _B = "Branch";
|
|
302
|
+
const _BCV = "BatchCreateVehicle";
|
|
303
|
+
const _BCVR = "BatchCreateVehicleRequest";
|
|
304
|
+
const _BCVRa = "BatchCreateVehicleResponse";
|
|
305
|
+
const _BUV = "BatchUpdateVehicle";
|
|
306
|
+
const _BUVR = "BatchUpdateVehicleRequest";
|
|
307
|
+
const _BUVRa = "BatchUpdateVehicleResponse";
|
|
308
|
+
const _CBCS = "ConditionBasedCollectionScheme";
|
|
309
|
+
const _CBSFC = "ConditionBasedSignalFetchConfig";
|
|
310
|
+
const _CC = "CreateCampaign";
|
|
311
|
+
const _CCR = "CreateCampaignRequest";
|
|
312
|
+
const _CCRr = "CreateCampaignResponse";
|
|
313
|
+
const _CDD = "CanDbcDefinition";
|
|
314
|
+
const _CDI = "CustomDecodingInterface";
|
|
315
|
+
const _CDM = "CreateDecoderManifest";
|
|
316
|
+
const _CDMR = "CreateDecoderManifestRequest";
|
|
317
|
+
const _CDMRr = "CreateDecoderManifestResponse";
|
|
318
|
+
const _CDS = "CustomDecodingSignal";
|
|
319
|
+
const _CE = "ConflictException";
|
|
320
|
+
const _CF = "CreateFleet";
|
|
321
|
+
const _CFR = "CreateFleetRequest";
|
|
322
|
+
const _CFRr = "CreateFleetResponse";
|
|
323
|
+
const _CI = "CanInterface";
|
|
324
|
+
const _CMM = "CreateModelManifest";
|
|
325
|
+
const _CMMR = "CreateModelManifestRequest";
|
|
326
|
+
const _CMMRr = "CreateModelManifestResponse";
|
|
327
|
+
const _CP = "CustomProperty";
|
|
328
|
+
const _CS = "CampaignSummary";
|
|
329
|
+
const _CSC = "CreateSignalCatalog";
|
|
330
|
+
const _CSCR = "CreateSignalCatalogRequest";
|
|
331
|
+
const _CSCRr = "CreateSignalCatalogResponse";
|
|
332
|
+
const _CST = "CreateStateTemplate";
|
|
333
|
+
const _CSTR = "CreateStateTemplateRequest";
|
|
334
|
+
const _CSTRr = "CreateStateTemplateResponse";
|
|
335
|
+
const _CSa = "CanSignal";
|
|
336
|
+
const _CSo = "CollectionScheme";
|
|
337
|
+
const _CSu = "CustomStruct";
|
|
338
|
+
const _CV = "CreateVehicle";
|
|
339
|
+
const _CVE = "CreateVehicleError";
|
|
340
|
+
const _CVR = "CreateVehicleRequest";
|
|
341
|
+
const _CVRI = "CreateVehicleRequestItem";
|
|
342
|
+
const _CVRIr = "CreateVehicleResponseItem";
|
|
343
|
+
const _CVRr = "CreateVehicleResponse";
|
|
344
|
+
const _CWLDO = "CloudWatchLogDeliveryOptions";
|
|
345
|
+
const _DC = "DeleteCampaign";
|
|
346
|
+
const _DCR = "DeleteCampaignRequest";
|
|
347
|
+
const _DCRe = "DeleteCampaignResponse";
|
|
348
|
+
const _DDC = "DataDestinationConfigs";
|
|
349
|
+
const _DDCa = "DataDestinationConfig";
|
|
350
|
+
const _DDM = "DeleteDecoderManifest";
|
|
351
|
+
const _DDMR = "DeleteDecoderManifestRequest";
|
|
352
|
+
const _DDMRe = "DeleteDecoderManifestResponse";
|
|
353
|
+
const _DEDNPL = "DataExtraDimensionNodePathList";
|
|
354
|
+
const _DF = "DeleteFleet";
|
|
355
|
+
const _DFR = "DeleteFleetRequest";
|
|
356
|
+
const _DFRe = "DeleteFleetResponse";
|
|
357
|
+
const _DMM = "DeleteModelManifest";
|
|
358
|
+
const _DMMR = "DeleteModelManifestRequest";
|
|
359
|
+
const _DMMRe = "DeleteModelManifestResponse";
|
|
360
|
+
const _DMS = "DecoderManifestSummary";
|
|
361
|
+
const _DMVE = "DecoderManifestValidationException";
|
|
362
|
+
const _DP = "DataPartition";
|
|
363
|
+
const _DPSO = "DataPartitionStorageOptions";
|
|
364
|
+
const _DPUO = "DataPartitionUploadOptions";
|
|
365
|
+
const _DPa = "DataPartitions";
|
|
366
|
+
const _DSC = "DeleteSignalCatalog";
|
|
367
|
+
const _DSCR = "DeleteSignalCatalogRequest";
|
|
368
|
+
const _DSCRe = "DeleteSignalCatalogResponse";
|
|
369
|
+
const _DST = "DeleteStateTemplate";
|
|
370
|
+
const _DSTR = "DeleteStateTemplateRequest";
|
|
371
|
+
const _DSTRe = "DeleteStateTemplateResponse";
|
|
372
|
+
const _DV = "DeleteVehicle";
|
|
373
|
+
const _DVF = "DisassociateVehicleFleet";
|
|
374
|
+
const _DVFR = "DisassociateVehicleFleetRequest";
|
|
375
|
+
const _DVFRi = "DisassociateVehicleFleetResponse";
|
|
376
|
+
const _DVR = "DeleteVehicleRequest";
|
|
377
|
+
const _DVRe = "DeleteVehicleResponse";
|
|
378
|
+
const _EEL = "EventExpressionList";
|
|
379
|
+
const _FS = "FleetSummary";
|
|
380
|
+
const _FV = "FormattedVss";
|
|
381
|
+
const _GC = "GetCampaign";
|
|
382
|
+
const _GCR = "GetCampaignRequest";
|
|
383
|
+
const _GCRe = "GetCampaignResponse";
|
|
384
|
+
const _GDM = "GetDecoderManifest";
|
|
385
|
+
const _GDMR = "GetDecoderManifestRequest";
|
|
386
|
+
const _GDMRe = "GetDecoderManifestResponse";
|
|
387
|
+
const _GEC = "GetEncryptionConfiguration";
|
|
388
|
+
const _GECR = "GetEncryptionConfigurationRequest";
|
|
389
|
+
const _GECRe = "GetEncryptionConfigurationResponse";
|
|
390
|
+
const _GF = "GetFleet";
|
|
391
|
+
const _GFR = "GetFleetRequest";
|
|
392
|
+
const _GFRe = "GetFleetResponse";
|
|
393
|
+
const _GLO = "GetLoggingOptions";
|
|
394
|
+
const _GLOR = "GetLoggingOptionsRequest";
|
|
395
|
+
const _GLORe = "GetLoggingOptionsResponse";
|
|
396
|
+
const _GMM = "GetModelManifest";
|
|
397
|
+
const _GMMR = "GetModelManifestRequest";
|
|
398
|
+
const _GMMRe = "GetModelManifestResponse";
|
|
399
|
+
const _GRAS = "GetRegisterAccountStatus";
|
|
400
|
+
const _GRASR = "GetRegisterAccountStatusRequest";
|
|
401
|
+
const _GRASRe = "GetRegisterAccountStatusResponse";
|
|
402
|
+
const _GSC = "GetSignalCatalog";
|
|
403
|
+
const _GSCR = "GetSignalCatalogRequest";
|
|
404
|
+
const _GSCRe = "GetSignalCatalogResponse";
|
|
405
|
+
const _GST = "GetStateTemplate";
|
|
406
|
+
const _GSTR = "GetStateTemplateRequest";
|
|
407
|
+
const _GSTRe = "GetStateTemplateResponse";
|
|
408
|
+
const _GV = "GetVehicle";
|
|
409
|
+
const _GVR = "GetVehicleRequest";
|
|
410
|
+
const _GVRe = "GetVehicleResponse";
|
|
411
|
+
const _GVS = "GetVehicleStatus";
|
|
412
|
+
const _GVSR = "GetVehicleStatusRequest";
|
|
413
|
+
const _GVSRe = "GetVehicleStatusResponse";
|
|
414
|
+
const _IDM = "ImportDecoderManifest";
|
|
415
|
+
const _IDMR = "ImportDecoderManifestRequest";
|
|
416
|
+
const _IDMRm = "ImportDecoderManifestResponse";
|
|
417
|
+
const _INE = "InvalidNodeException";
|
|
418
|
+
const _INI = "InvalidNetworkInterface";
|
|
419
|
+
const _INIn = "InvalidNetworkInterfaces";
|
|
420
|
+
const _IR = "IamResources";
|
|
421
|
+
const _IRR = "IamRegistrationResponse";
|
|
422
|
+
const _IS = "InvalidSignal";
|
|
423
|
+
const _ISC = "ImportSignalCatalog";
|
|
424
|
+
const _ISCR = "ImportSignalCatalogRequest";
|
|
425
|
+
const _ISCRm = "ImportSignalCatalogResponse";
|
|
426
|
+
const _ISD = "InvalidSignalDecoder";
|
|
427
|
+
const _ISDn = "InvalidSignalDecoders";
|
|
428
|
+
const _ISE = "InternalServerException";
|
|
429
|
+
const _ISEn = "InvalidSignalsException";
|
|
430
|
+
const _ISn = "InvalidSignals";
|
|
431
|
+
const _K = "Key";
|
|
432
|
+
const _LC = "ListCampaigns";
|
|
433
|
+
const _LCR = "ListCampaignsRequest";
|
|
434
|
+
const _LCRi = "ListCampaignsResponse";
|
|
435
|
+
const _LDM = "ListDecoderManifests";
|
|
436
|
+
const _LDMNI = "ListDecoderManifestNetworkInterfaces";
|
|
437
|
+
const _LDMNIR = "ListDecoderManifestNetworkInterfacesRequest";
|
|
438
|
+
const _LDMNIRi = "ListDecoderManifestNetworkInterfacesResponse";
|
|
439
|
+
const _LDMR = "ListDecoderManifestsRequest";
|
|
440
|
+
const _LDMRi = "ListDecoderManifestsResponse";
|
|
441
|
+
const _LDMS = "ListDecoderManifestSignals";
|
|
442
|
+
const _LDMSR = "ListDecoderManifestSignalsRequest";
|
|
443
|
+
const _LDMSRi = "ListDecoderManifestSignalsResponse";
|
|
444
|
+
const _LEE = "LimitExceededException";
|
|
445
|
+
const _LF = "ListFleets";
|
|
446
|
+
const _LFFV = "ListFleetsForVehicle";
|
|
447
|
+
const _LFFVR = "ListFleetsForVehicleRequest";
|
|
448
|
+
const _LFFVRi = "ListFleetsForVehicleResponse";
|
|
449
|
+
const _LFR = "ListFleetsRequest";
|
|
450
|
+
const _LFRi = "ListFleetsResponse";
|
|
451
|
+
const _LMM = "ListModelManifests";
|
|
452
|
+
const _LMMN = "ListModelManifestNodes";
|
|
453
|
+
const _LMMNR = "ListModelManifestNodesRequest";
|
|
454
|
+
const _LMMNRi = "ListModelManifestNodesResponse";
|
|
455
|
+
const _LMMR = "ListModelManifestsRequest";
|
|
456
|
+
const _LMMRi = "ListModelManifestsResponse";
|
|
457
|
+
const _LSC = "ListSignalCatalogs";
|
|
458
|
+
const _LSCN = "ListSignalCatalogNodes";
|
|
459
|
+
const _LSCNR = "ListSignalCatalogNodesRequest";
|
|
460
|
+
const _LSCNRi = "ListSignalCatalogNodesResponse";
|
|
461
|
+
const _LSCR = "ListSignalCatalogsRequest";
|
|
462
|
+
const _LSCRi = "ListSignalCatalogsResponse";
|
|
463
|
+
const _LST = "ListStateTemplates";
|
|
464
|
+
const _LSTR = "ListStateTemplatesRequest";
|
|
465
|
+
const _LSTRi = "ListStateTemplatesResponse";
|
|
466
|
+
const _LTFR = "ListTagsForResource";
|
|
467
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
468
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
469
|
+
const _LV = "ListVehicles";
|
|
470
|
+
const _LVIF = "ListVehiclesInFleet";
|
|
471
|
+
const _LVIFR = "ListVehiclesInFleetRequest";
|
|
472
|
+
const _LVIFRi = "ListVehiclesInFleetResponse";
|
|
473
|
+
const _LVR = "ListVehiclesRequest";
|
|
474
|
+
const _LVRi = "ListVehiclesResponse";
|
|
475
|
+
const _MMS = "ModelManifestSummary";
|
|
476
|
+
const _MS = "MessageSignal";
|
|
477
|
+
const _MTC = "MqttTopicConfig";
|
|
478
|
+
const _N = "Nodes";
|
|
479
|
+
const _NC = "NodeCounts";
|
|
480
|
+
const _NFD = "NetworkFileDefinitions";
|
|
481
|
+
const _NFDe = "NetworkFileDefinition";
|
|
482
|
+
const _NI = "NetworkInterface";
|
|
483
|
+
const _NIe = "NetworkInterfaces";
|
|
484
|
+
const _No = "Node";
|
|
485
|
+
const _OCSTUS = "OnChangeStateTemplateUpdateStrategy";
|
|
486
|
+
const _OI = "ObdInterface";
|
|
487
|
+
const _OS = "ObdSignal";
|
|
488
|
+
const _PEC = "PutEncryptionConfiguration";
|
|
489
|
+
const _PECR = "PutEncryptionConfigurationRequest";
|
|
490
|
+
const _PECRu = "PutEncryptionConfigurationResponse";
|
|
491
|
+
const _PLO = "PutLoggingOptions";
|
|
492
|
+
const _PLOR = "PutLoggingOptionsRequest";
|
|
493
|
+
const _PLORu = "PutLoggingOptionsResponse";
|
|
494
|
+
const _PMD = "PrimitiveMessageDefinition";
|
|
495
|
+
const _PSTUS = "PeriodicStateTemplateUpdateStrategy";
|
|
496
|
+
const _RA = "Retry-After";
|
|
497
|
+
const _RAR = "RegisterAccountRequest";
|
|
498
|
+
const _RARN = "ResourceARN";
|
|
499
|
+
const _RARe = "RegisterAccountResponse";
|
|
500
|
+
const _RAe = "RegisterAccount";
|
|
501
|
+
const _RNFE = "ResourceNotFoundException";
|
|
502
|
+
const _ROSPMD = "ROS2PrimitiveMessageDefinition";
|
|
503
|
+
const _S = "Sensor";
|
|
504
|
+
const _SC = "S3Config";
|
|
505
|
+
const _SCS = "SignalCatalogSummary";
|
|
506
|
+
const _SD = "SignalDecoder";
|
|
507
|
+
const _SDi = "SignalDecoders";
|
|
508
|
+
const _SFC = "SignalFetchConfig";
|
|
509
|
+
const _SFI = "SignalFetchInformation";
|
|
510
|
+
const _SFIL = "SignalFetchInformationList";
|
|
511
|
+
const _SI = "SignalInformation";
|
|
512
|
+
const _SIL = "SignalInformationList";
|
|
513
|
+
const _SL = "StorageLocation";
|
|
514
|
+
const _SM = "StructuredMessage";
|
|
515
|
+
const _SMD = "StructuredMessageDefinition";
|
|
516
|
+
const _SMFNADTP = "StructuredMessageFieldNameAndDataTypePair";
|
|
517
|
+
const _SMLD = "StructuredMessageListDefinition";
|
|
518
|
+
const _SMS = "StorageMaximumSize";
|
|
519
|
+
const _SMTTL = "StorageMinimumTimeToLive";
|
|
520
|
+
const _STA = "StateTemplateAssociation";
|
|
521
|
+
const _STAt = "StateTemplateAssociations";
|
|
522
|
+
const _STS = "StateTemplateSummary";
|
|
523
|
+
const _STSt = "StateTemplateSummaries";
|
|
524
|
+
const _STUS = "StateTemplateUpdateStrategy";
|
|
525
|
+
const _T = "Tags";
|
|
526
|
+
const _TBCS = "TimeBasedCollectionScheme";
|
|
527
|
+
const _TBSFC = "TimeBasedSignalFetchConfig";
|
|
528
|
+
const _TC = "TimestreamConfig";
|
|
529
|
+
const _TE = "ThrottlingException";
|
|
530
|
+
const _TK = "TagKeys";
|
|
531
|
+
const _TL = "TagList";
|
|
532
|
+
const _TP = "TimePeriod";
|
|
533
|
+
const _TR = "TimestreamResources";
|
|
534
|
+
const _TRR = "TagResourceRequest";
|
|
535
|
+
const _TRRa = "TagResourceResponse";
|
|
536
|
+
const _TRRi = "TimestreamRegistrationResponse";
|
|
537
|
+
const _TRa = "TagResource";
|
|
538
|
+
const _Ta = "Tag";
|
|
539
|
+
const _UC = "UpdateCampaign";
|
|
540
|
+
const _UCR = "UpdateCampaignRequest";
|
|
541
|
+
const _UCRp = "UpdateCampaignResponse";
|
|
542
|
+
const _UDM = "UpdateDecoderManifest";
|
|
543
|
+
const _UDMR = "UpdateDecoderManifestRequest";
|
|
544
|
+
const _UDMRp = "UpdateDecoderManifestResponse";
|
|
545
|
+
const _UF = "UpdateFleet";
|
|
546
|
+
const _UFR = "UpdateFleetRequest";
|
|
547
|
+
const _UFRp = "UpdateFleetResponse";
|
|
548
|
+
const _UMM = "UpdateModelManifest";
|
|
549
|
+
const _UMMR = "UpdateModelManifestRequest";
|
|
550
|
+
const _UMMRp = "UpdateModelManifestResponse";
|
|
551
|
+
const _UR = "UntagResource";
|
|
552
|
+
const _URR = "UntagResourceRequest";
|
|
553
|
+
const _URRn = "UntagResourceResponse";
|
|
554
|
+
const _USC = "UpdateSignalCatalog";
|
|
555
|
+
const _USCR = "UpdateSignalCatalogRequest";
|
|
556
|
+
const _USCRp = "UpdateSignalCatalogResponse";
|
|
557
|
+
const _UST = "UpdateStateTemplate";
|
|
558
|
+
const _USTR = "UpdateStateTemplateRequest";
|
|
559
|
+
const _USTRp = "UpdateStateTemplateResponse";
|
|
560
|
+
const _UV = "UpdateVehicle";
|
|
561
|
+
const _UVE = "UpdateVehicleError";
|
|
562
|
+
const _UVR = "UpdateVehicleRequest";
|
|
563
|
+
const _UVRI = "UpdateVehicleRequestItem";
|
|
564
|
+
const _UVRIp = "UpdateVehicleResponseItem";
|
|
565
|
+
const _UVRp = "UpdateVehicleResponse";
|
|
566
|
+
const _V = "Value";
|
|
567
|
+
const _VE = "ValidationException";
|
|
568
|
+
const _VEF = "ValidationExceptionField";
|
|
569
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
570
|
+
const _VM = "VehicleMiddleware";
|
|
571
|
+
const _VS = "VehicleStatus";
|
|
572
|
+
const _VSL = "VehicleStatusList";
|
|
573
|
+
const _VSe = "VehicleSummary";
|
|
574
|
+
const _a = "arn";
|
|
575
|
+
const _aB = "associationBehavior";
|
|
576
|
+
const _aEE = "actionEventExpression";
|
|
577
|
+
const _aN = "attributeNames";
|
|
578
|
+
const _aS = "accountStatus";
|
|
579
|
+
const _aUM = "attributeUpdateMode";
|
|
580
|
+
const _aV = "allowedValues";
|
|
581
|
+
const _aVs = "assignedValue";
|
|
582
|
+
const _aVt = "attributeValues";
|
|
583
|
+
const _ac = "actions";
|
|
584
|
+
const _act = "action";
|
|
585
|
+
const _actu = "actuator";
|
|
586
|
+
const _at = "attributes";
|
|
587
|
+
const _att = "attribute";
|
|
588
|
+
const _b = "branch";
|
|
589
|
+
const _bA = "bucketArn";
|
|
590
|
+
const _bL = "byteLength";
|
|
591
|
+
const _bML = "bitMaskLength";
|
|
592
|
+
const _bRS = "bitRightShift";
|
|
593
|
+
const _c = "client";
|
|
594
|
+
const _cAI = "customerAccountId";
|
|
595
|
+
const _cB = "conditionBased";
|
|
596
|
+
const _cBCS = "conditionBasedCollectionScheme";
|
|
597
|
+
const _cD = "canDbc";
|
|
598
|
+
const _cDF = "canDbcFiles";
|
|
599
|
+
const _cDI = "customDecodingInterface";
|
|
600
|
+
const _cDS = "customDecodingSignal";
|
|
601
|
+
const _cE = "conditionExpression";
|
|
602
|
+
const _cI = "canInterface";
|
|
603
|
+
const _cLV = "conditionLanguageVersion";
|
|
604
|
+
const _cN = "campaignName";
|
|
605
|
+
const _cS = "collectionScheme";
|
|
606
|
+
const _cSa = "campaignSummaries";
|
|
607
|
+
const _cSan = "canSignal";
|
|
608
|
+
const _cT = "creationTime";
|
|
609
|
+
const _cVE = "createVehicleErrors";
|
|
610
|
+
const _cVR = "createVehicleResponses";
|
|
611
|
+
const _cVRI = "createVehicleRequestItems";
|
|
612
|
+
const _cWLD = "cloudWatchLogDelivery";
|
|
613
|
+
const _ca = "campaigns";
|
|
614
|
+
const _cap = "capacity";
|
|
615
|
+
const _co = "comment";
|
|
616
|
+
const _cod = "code";
|
|
617
|
+
const _com = "compression";
|
|
618
|
+
const _d = "description";
|
|
619
|
+
const _dDC = "dataDestinationConfigs";
|
|
620
|
+
const _dE = "dataEncoding";
|
|
621
|
+
const _dED = "dataExtraDimensions";
|
|
622
|
+
const _dF = "dataFormat";
|
|
623
|
+
const _dFUS = "defaultForUnmappedSignals";
|
|
624
|
+
const _dM = "deprecationMessage";
|
|
625
|
+
const _dMA = "decoderManifestArn";
|
|
626
|
+
const _dMS = "decoderManifestSummaries";
|
|
627
|
+
const _dMi = "diagnosticsMode";
|
|
628
|
+
const _dP = "dataPartitions";
|
|
629
|
+
const _dPI = "dataPartitionId";
|
|
630
|
+
const _dRIS = "dtcRequestIntervalSeconds";
|
|
631
|
+
const _dT = "dataType";
|
|
632
|
+
const _dV = "defaultValue";
|
|
633
|
+
const _e = "error";
|
|
634
|
+
const _eE = "eventExpression";
|
|
635
|
+
const _eFM = "executionFrequencyMs";
|
|
636
|
+
const _eM = "errorMessage";
|
|
637
|
+
const _eRA = "executionRoleArn";
|
|
638
|
+
const _eS = "encryptionStatus";
|
|
639
|
+
const _eT = "expiryTime";
|
|
640
|
+
const _eTn = "encryptionType";
|
|
641
|
+
const _er = "errors";
|
|
642
|
+
const _ex = "expression";
|
|
643
|
+
const _f = "factor";
|
|
644
|
+
const _fCEE = "fetchConfigEventExpression";
|
|
645
|
+
const _fI = "fleetId";
|
|
646
|
+
const _fL = "fieldList";
|
|
647
|
+
const _fN = "fieldName";
|
|
648
|
+
const _fQN = "fullyQualifiedName";
|
|
649
|
+
const _fS = "fleetSummaries";
|
|
650
|
+
const _fl = "fleets";
|
|
651
|
+
const _h = "hint";
|
|
652
|
+
const _hE = "httpError";
|
|
653
|
+
const _hH = "httpHeader";
|
|
654
|
+
const _hQ = "httpQuery";
|
|
655
|
+
const _hTE = "hasTransmissionEcu";
|
|
656
|
+
const _ht = "http";
|
|
657
|
+
const _i = "id";
|
|
658
|
+
const _iBE = "isBigEndian";
|
|
659
|
+
const _iI = "interfaceId";
|
|
660
|
+
const _iN = "invalidNodes";
|
|
661
|
+
const _iNI = "invalidNetworkInterfaces";
|
|
662
|
+
const _iR = "iamResources";
|
|
663
|
+
const _iRR = "iamRegistrationResponse";
|
|
664
|
+
const _iS = "invalidSignals";
|
|
665
|
+
const _iSs = "isSigned";
|
|
666
|
+
const _id = "identifier";
|
|
667
|
+
const _kKI = "kmsKeyId";
|
|
668
|
+
const _l = "length";
|
|
669
|
+
const _lGN = "logGroupName";
|
|
670
|
+
const _lMT = "lastModificationTime";
|
|
671
|
+
const _lRS = "listResponseScope";
|
|
672
|
+
const _lT = "logType";
|
|
673
|
+
const _lTi = "listType";
|
|
674
|
+
const _m = "message";
|
|
675
|
+
const _mED = "metadataExtraDimensions";
|
|
676
|
+
const _mI = "messageId";
|
|
677
|
+
const _mMA = "modelManifestArn";
|
|
678
|
+
const _mMS = "modelManifestSummaries";
|
|
679
|
+
const _mR = "maxResults";
|
|
680
|
+
const _mS = "maximumSize";
|
|
681
|
+
const _mSC = "maxSampleCount";
|
|
682
|
+
const _mSIM = "minimumSamplingIntervalMs";
|
|
683
|
+
const _mSe = "messageSignal";
|
|
684
|
+
const _mT = "memberType";
|
|
685
|
+
const _mTA = "mqttTopicArn";
|
|
686
|
+
const _mTC = "mqttTopicConfig";
|
|
687
|
+
const _mTIM = "minimumTriggerIntervalMs";
|
|
688
|
+
const _mTTL = "minimumTimeToLive";
|
|
689
|
+
const _ma = "max";
|
|
690
|
+
const _mi = "min";
|
|
691
|
+
const _n = "name";
|
|
692
|
+
const _nC = "nodeCounts";
|
|
693
|
+
const _nFD = "networkFileDefinitions";
|
|
694
|
+
const _nI = "networkInterface";
|
|
695
|
+
const _nITA = "networkInterfacesToAdd";
|
|
696
|
+
const _nITR = "networkInterfacesToRemove";
|
|
697
|
+
const _nITU = "networkInterfacesToUpdate";
|
|
698
|
+
const _nIe = "networkInterfaces";
|
|
699
|
+
const _nT = "nextToken";
|
|
700
|
+
const _nTA = "nodesToAdd";
|
|
701
|
+
const _nTR = "nodesToRemove";
|
|
702
|
+
const _nTU = "nodesToUpdate";
|
|
703
|
+
const _no = "nodes";
|
|
704
|
+
const _o = "offset";
|
|
705
|
+
const _oC = "onChange";
|
|
706
|
+
const _oI = "obdInterface";
|
|
707
|
+
const _oS = "obdStandard";
|
|
708
|
+
const _oSb = "obdSignal";
|
|
709
|
+
const _p = "priority";
|
|
710
|
+
const _pM = "periodMs";
|
|
711
|
+
const _pMD = "primitiveMessageDefinition";
|
|
712
|
+
const _pN = "protocolName";
|
|
713
|
+
const _pRIS = "pidRequestIntervalSeconds";
|
|
714
|
+
const _pRL = "pidResponseLength";
|
|
715
|
+
const _pT = "primitiveType";
|
|
716
|
+
const _pTCD = "postTriggerCollectionDuration";
|
|
717
|
+
const _pV = "protocolVersion";
|
|
718
|
+
const _pe = "periodic";
|
|
719
|
+
const _pi = "pid";
|
|
720
|
+
const _pr = "prefix";
|
|
721
|
+
const _pro = "property";
|
|
722
|
+
const _qC = "quotaCode";
|
|
723
|
+
const _r = "resource";
|
|
724
|
+
const _rA = "roleArn";
|
|
725
|
+
const _rAS = "retryAfterSeconds";
|
|
726
|
+
const _rASe = "registerAccountStatus";
|
|
727
|
+
const _rAe = "resourceArn";
|
|
728
|
+
const _rI = "resourceId";
|
|
729
|
+
const _rMI = "requestMessageId";
|
|
730
|
+
const _rPMD = "ros2PrimitiveMessageDefinition";
|
|
731
|
+
const _rS = "registrationStatus";
|
|
732
|
+
const _rT = "resourceType";
|
|
733
|
+
const _re = "reason";
|
|
734
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.iotfleetwise";
|
|
735
|
+
const _sB = "startBit";
|
|
736
|
+
const _sBt = "startByte";
|
|
737
|
+
const _sC = "serviceCode";
|
|
738
|
+
const _sCA = "signalCatalogArn";
|
|
739
|
+
const _sCF = "storageCompressionFormat";
|
|
740
|
+
const _sCS = "signalCatalogSummaries";
|
|
741
|
+
const _sCo = "s3Config";
|
|
742
|
+
const _sD = "signalDecoders";
|
|
743
|
+
const _sDTA = "signalDecodersToAdd";
|
|
744
|
+
const _sDTR = "signalDecodersToRemove";
|
|
745
|
+
const _sDTU = "signalDecodersToUpdate";
|
|
746
|
+
const _sFC = "signalFetchConfig";
|
|
747
|
+
const _sFQN = "structFullyQualifiedName";
|
|
748
|
+
const _sL = "storageLocation";
|
|
749
|
+
const _sM = "signalsMap";
|
|
750
|
+
const _sMD = "structuredMessageDefinition";
|
|
751
|
+
const _sMLD = "structuredMessageListDefinition";
|
|
752
|
+
const _sMe = "serviceMode";
|
|
753
|
+
const _sMp = "spoolingMode";
|
|
754
|
+
const _sMt = "structuredMessage";
|
|
755
|
+
const _sNT = "signalNodeType";
|
|
756
|
+
const _sO = "storageOptions";
|
|
757
|
+
const _sT = "startTime";
|
|
758
|
+
const _sTC = "signalsToCollect";
|
|
759
|
+
const _sTF = "signalsToFetch";
|
|
760
|
+
const _sTP = "stateTemplateProperties";
|
|
761
|
+
const _sTPTA = "stateTemplatePropertiesToAdd";
|
|
762
|
+
const _sTPTR = "stateTemplatePropertiesToRemove";
|
|
763
|
+
const _sTTA = "stateTemplatesToAdd";
|
|
764
|
+
const _sTTR = "stateTemplatesToRemove";
|
|
765
|
+
const _sTTU = "stateTemplatesToUpdate";
|
|
766
|
+
const _sTUR = "stateTemplateUpdateRate";
|
|
767
|
+
const _sTUS = "stateTemplateUpdateStrategy";
|
|
768
|
+
const _sTt = "stateTemplates";
|
|
769
|
+
const _sVT = "signalValueType";
|
|
770
|
+
const _sc = "scaling";
|
|
771
|
+
const _se = "server";
|
|
772
|
+
const _sen = "sensor";
|
|
773
|
+
const _st = "status";
|
|
774
|
+
const _str = "struct";
|
|
775
|
+
const _su = "summaries";
|
|
776
|
+
const _t = "tags";
|
|
777
|
+
const _tA = "targetArn";
|
|
778
|
+
const _tAh = "thingArn";
|
|
779
|
+
const _tAo = "totalAttributes";
|
|
780
|
+
const _tAot = "totalActuators";
|
|
781
|
+
const _tB = "totalBranches";
|
|
782
|
+
const _tBCS = "timeBasedCollectionScheme";
|
|
783
|
+
const _tBi = "timeBased";
|
|
784
|
+
const _tC = "timestreamConfig";
|
|
785
|
+
const _tDA = "timestreamDatabaseArn";
|
|
786
|
+
const _tDN = "timestreamDatabaseName";
|
|
787
|
+
const _tK = "tagKeys";
|
|
788
|
+
const _tM = "triggerMode";
|
|
789
|
+
const _tN = "topicName";
|
|
790
|
+
const _tNo = "totalNodes";
|
|
791
|
+
const _tP = "totalProperties";
|
|
792
|
+
const _tR = "timestreamResources";
|
|
793
|
+
const _tRR = "timestreamRegistrationResponse";
|
|
794
|
+
const _tS = "totalSensors";
|
|
795
|
+
const _tSo = "totalStructs";
|
|
796
|
+
const _tTA = "timestreamTableArn";
|
|
797
|
+
const _tTN = "timestreamTableName";
|
|
798
|
+
const _ty = "type";
|
|
799
|
+
const _u = "unit";
|
|
800
|
+
const _uB = "upperBound";
|
|
801
|
+
const _uEI = "useExtendedIds";
|
|
802
|
+
const _uO = "uploadOptions";
|
|
803
|
+
const _uVE = "updateVehicleErrors";
|
|
804
|
+
const _uVRI = "updateVehicleRequestItems";
|
|
805
|
+
const _uVRIp = "updateVehicleResponseItems";
|
|
806
|
+
const _v = "vehicles";
|
|
807
|
+
const _vJ = "vssJson";
|
|
808
|
+
const _vM = "vehicleMiddleware";
|
|
809
|
+
const _vN = "vehicleName";
|
|
810
|
+
const _vS = "vehicleSummaries";
|
|
811
|
+
const _va = "value";
|
|
812
|
+
const _vs = "vss";
|
|
813
|
+
const n0 = "com.amazonaws.iotfleetwise";
|
|
814
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
815
|
+
var IoTFleetWiseServiceException$ = [-3, _s, "IoTFleetWiseServiceException", 0, [], []];
|
|
816
|
+
_s_registry.registerError(IoTFleetWiseServiceException$, IoTFleetWiseServiceException);
|
|
817
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
818
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
819
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
820
|
+
[_m],
|
|
821
|
+
[0], 1
|
|
822
|
+
];
|
|
823
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
824
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
825
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
826
|
+
[_m, _r, _rT],
|
|
827
|
+
[0, 0, 0], 3
|
|
828
|
+
];
|
|
829
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
830
|
+
var DecoderManifestValidationException$ = [-3, n0, _DMVE,
|
|
831
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
832
|
+
[_iS, _iNI, _m],
|
|
833
|
+
[() => InvalidSignalDecoders, () => InvalidNetworkInterfaces, 0]
|
|
834
|
+
];
|
|
835
|
+
n0_registry.registerError(DecoderManifestValidationException$, DecoderManifestValidationException);
|
|
836
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
837
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
838
|
+
[_m, _rAS],
|
|
839
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
840
|
+
];
|
|
841
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
842
|
+
var InvalidNodeException$ = [-3, n0, _INE,
|
|
843
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
844
|
+
[_iN, _re, _m],
|
|
845
|
+
[() => Nodes, 0, 0]
|
|
846
|
+
];
|
|
847
|
+
n0_registry.registerError(InvalidNodeException$, InvalidNodeException);
|
|
848
|
+
var InvalidSignalsException$ = [-3, n0, _ISEn,
|
|
849
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
850
|
+
[_m, _iS],
|
|
851
|
+
[0, () => InvalidSignals]
|
|
852
|
+
];
|
|
853
|
+
n0_registry.registerError(InvalidSignalsException$, InvalidSignalsException);
|
|
854
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
855
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
856
|
+
[_m, _rI, _rT],
|
|
857
|
+
[0, 0, 0], 3
|
|
858
|
+
];
|
|
859
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
860
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
861
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
862
|
+
[_m, _rI, _rT],
|
|
863
|
+
[0, 0, 0], 3
|
|
864
|
+
];
|
|
865
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
866
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
867
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
868
|
+
[_m, _qC, _sC, _rAS],
|
|
869
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
870
|
+
];
|
|
871
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
872
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
873
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
874
|
+
[_m, _re, _fL],
|
|
875
|
+
[0, 0, () => ValidationExceptionFieldList], 1
|
|
876
|
+
];
|
|
877
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
878
|
+
const errorTypeRegistries = [
|
|
879
|
+
_s_registry,
|
|
880
|
+
n0_registry,
|
|
881
|
+
];
|
|
882
|
+
var actionEventExpression = [0, n0, _aEE, 8, 0];
|
|
883
|
+
var eventExpression = [0, n0, _eE, 8, 0];
|
|
884
|
+
var fetchConfigEventExpression = [0, n0, _fCEE, 8, 0];
|
|
885
|
+
var StorageLocation = [0, n0, _SL, 8, 0];
|
|
886
|
+
var Actuator$ = [3, n0, _A,
|
|
887
|
+
0,
|
|
888
|
+
[_fQN, _dT, _d, _u, _aV, _mi, _ma, _aVs, _dM, _co, _sFQN],
|
|
889
|
+
[0, 0, 0, 0, 64 | 0, 1, 1, 0, 0, 0, 0], 2
|
|
890
|
+
];
|
|
891
|
+
var AssociateVehicleFleetRequest$ = [3, n0, _AVFR,
|
|
892
|
+
0,
|
|
893
|
+
[_vN, _fI],
|
|
894
|
+
[[0, 1], 0], 2
|
|
895
|
+
];
|
|
896
|
+
var AssociateVehicleFleetResponse$ = [3, n0, _AVFRs,
|
|
897
|
+
0,
|
|
898
|
+
[],
|
|
899
|
+
[]
|
|
900
|
+
];
|
|
901
|
+
var Attribute$ = [3, n0, _At,
|
|
902
|
+
0,
|
|
903
|
+
[_fQN, _dT, _d, _u, _aV, _mi, _ma, _aVs, _dV, _dM, _co],
|
|
904
|
+
[0, 0, 0, 0, 64 | 0, 1, 1, 0, 0, 0, 0], 2
|
|
905
|
+
];
|
|
906
|
+
var BatchCreateVehicleRequest$ = [3, n0, _BCVR,
|
|
907
|
+
0,
|
|
908
|
+
[_v],
|
|
909
|
+
[() => createVehicleRequestItems], 1
|
|
910
|
+
];
|
|
911
|
+
var BatchCreateVehicleResponse$ = [3, n0, _BCVRa,
|
|
912
|
+
0,
|
|
913
|
+
[_v, _er],
|
|
914
|
+
[() => createVehicleResponses, () => createVehicleErrors]
|
|
915
|
+
];
|
|
916
|
+
var BatchUpdateVehicleRequest$ = [3, n0, _BUVR,
|
|
917
|
+
0,
|
|
918
|
+
[_v],
|
|
919
|
+
[() => updateVehicleRequestItems], 1
|
|
920
|
+
];
|
|
921
|
+
var BatchUpdateVehicleResponse$ = [3, n0, _BUVRa,
|
|
922
|
+
0,
|
|
923
|
+
[_v, _er],
|
|
924
|
+
[() => updateVehicleResponseItems, () => updateVehicleErrors]
|
|
925
|
+
];
|
|
926
|
+
var Branch$ = [3, n0, _B,
|
|
927
|
+
0,
|
|
928
|
+
[_fQN, _d, _dM, _co],
|
|
929
|
+
[0, 0, 0, 0], 1
|
|
930
|
+
];
|
|
931
|
+
var CampaignSummary$ = [3, n0, _CS,
|
|
932
|
+
0,
|
|
933
|
+
[_cT, _lMT, _a, _n, _d, _sCA, _tA, _st],
|
|
934
|
+
[4, 4, 0, 0, 0, 0, 0, 0], 2
|
|
935
|
+
];
|
|
936
|
+
var CanDbcDefinition$ = [3, n0, _CDD,
|
|
937
|
+
0,
|
|
938
|
+
[_nI, _cDF, _sM],
|
|
939
|
+
[0, 64 | 21, 128 | 0], 2
|
|
940
|
+
];
|
|
941
|
+
var CanInterface$ = [3, n0, _CI,
|
|
942
|
+
0,
|
|
943
|
+
[_n, _pN, _pV],
|
|
944
|
+
[0, 0, 0], 1
|
|
945
|
+
];
|
|
946
|
+
var CanSignal$ = [3, n0, _CSa,
|
|
947
|
+
0,
|
|
948
|
+
[_mI, _iBE, _iSs, _sB, _o, _f, _l, _n, _sVT],
|
|
949
|
+
[1, 2, 2, 1, 1, 1, 1, 0, 0], 7
|
|
950
|
+
];
|
|
951
|
+
var CloudWatchLogDeliveryOptions$ = [3, n0, _CWLDO,
|
|
952
|
+
0,
|
|
953
|
+
[_lT, _lGN],
|
|
954
|
+
[0, 0], 1
|
|
955
|
+
];
|
|
956
|
+
var ConditionBasedCollectionScheme$ = [3, n0, _CBCS,
|
|
957
|
+
0,
|
|
958
|
+
[_ex, _mTIM, _tM, _cLV],
|
|
959
|
+
[[() => eventExpression, 0], 1, 0, 1], 1
|
|
960
|
+
];
|
|
961
|
+
var ConditionBasedSignalFetchConfig$ = [3, n0, _CBSFC,
|
|
962
|
+
0,
|
|
963
|
+
[_cE, _tM],
|
|
964
|
+
[[() => fetchConfigEventExpression, 0], 0], 2
|
|
965
|
+
];
|
|
966
|
+
var CreateCampaignRequest$ = [3, n0, _CCR,
|
|
967
|
+
0,
|
|
968
|
+
[_n, _sCA, _tA, _cS, _d, _sT, _eT, _pTCD, _dMi, _sMp, _com, _p, _sTC, _dED, _t, _dDC, _dP, _sTF],
|
|
969
|
+
[[0, 1], 0, 0, [() => CollectionScheme$, 0], 0, 4, 4, 1, 0, 0, 0, 1, [() => SignalInformationList, 0], [() => DataExtraDimensionNodePathList, 0], () => TagList, () => DataDestinationConfigs, [() => DataPartitions, 0], [() => SignalFetchInformationList, 0]], 4
|
|
970
|
+
];
|
|
971
|
+
var CreateCampaignResponse$ = [3, n0, _CCRr,
|
|
972
|
+
0,
|
|
973
|
+
[_n, _a],
|
|
974
|
+
[0, 0]
|
|
975
|
+
];
|
|
976
|
+
var CreateDecoderManifestRequest$ = [3, n0, _CDMR,
|
|
977
|
+
0,
|
|
978
|
+
[_n, _mMA, _d, _sD, _nIe, _dFUS, _t],
|
|
979
|
+
[[0, 1], 0, 0, () => SignalDecoders, () => NetworkInterfaces, 0, () => TagList], 2
|
|
980
|
+
];
|
|
981
|
+
var CreateDecoderManifestResponse$ = [3, n0, _CDMRr,
|
|
982
|
+
0,
|
|
983
|
+
[_n, _a],
|
|
984
|
+
[0, 0], 2
|
|
985
|
+
];
|
|
986
|
+
var CreateFleetRequest$ = [3, n0, _CFR,
|
|
987
|
+
0,
|
|
988
|
+
[_fI, _sCA, _d, _t],
|
|
989
|
+
[[0, 1], 0, 0, () => TagList], 2
|
|
990
|
+
];
|
|
991
|
+
var CreateFleetResponse$ = [3, n0, _CFRr,
|
|
992
|
+
0,
|
|
993
|
+
[_i, _a],
|
|
994
|
+
[0, 0], 2
|
|
995
|
+
];
|
|
996
|
+
var CreateModelManifestRequest$ = [3, n0, _CMMR,
|
|
997
|
+
0,
|
|
998
|
+
[_n, _no, _sCA, _d, _t],
|
|
999
|
+
[[0, 1], 64 | 0, 0, 0, () => TagList], 3
|
|
1000
|
+
];
|
|
1001
|
+
var CreateModelManifestResponse$ = [3, n0, _CMMRr,
|
|
1002
|
+
0,
|
|
1003
|
+
[_n, _a],
|
|
1004
|
+
[0, 0], 2
|
|
1005
|
+
];
|
|
1006
|
+
var CreateSignalCatalogRequest$ = [3, n0, _CSCR,
|
|
1007
|
+
0,
|
|
1008
|
+
[_n, _d, _no, _t],
|
|
1009
|
+
[[0, 1], 0, () => Nodes, () => TagList], 1
|
|
1010
|
+
];
|
|
1011
|
+
var CreateSignalCatalogResponse$ = [3, n0, _CSCRr,
|
|
1012
|
+
0,
|
|
1013
|
+
[_n, _a],
|
|
1014
|
+
[0, 0], 2
|
|
1015
|
+
];
|
|
1016
|
+
var CreateStateTemplateRequest$ = [3, n0, _CSTR,
|
|
1017
|
+
0,
|
|
1018
|
+
[_n, _sCA, _sTP, _d, _dED, _mED, _t],
|
|
1019
|
+
[[0, 1], 0, 64 | 0, 0, 64 | 0, 64 | 0, () => TagList], 3
|
|
1020
|
+
];
|
|
1021
|
+
var CreateStateTemplateResponse$ = [3, n0, _CSTRr,
|
|
1022
|
+
0,
|
|
1023
|
+
[_n, _a, _i],
|
|
1024
|
+
[0, 0, 0]
|
|
1025
|
+
];
|
|
1026
|
+
var CreateVehicleError$ = [3, n0, _CVE,
|
|
1027
|
+
0,
|
|
1028
|
+
[_vN, _cod, _m],
|
|
1029
|
+
[0, 0, 0]
|
|
1030
|
+
];
|
|
1031
|
+
var CreateVehicleRequest$ = [3, n0, _CVR,
|
|
1032
|
+
0,
|
|
1033
|
+
[_vN, _mMA, _dMA, _at, _aB, _t, _sTt],
|
|
1034
|
+
[[0, 1], 0, 0, 128 | 0, 0, () => TagList, () => StateTemplateAssociations], 3
|
|
1035
|
+
];
|
|
1036
|
+
var CreateVehicleRequestItem$ = [3, n0, _CVRI,
|
|
1037
|
+
0,
|
|
1038
|
+
[_vN, _mMA, _dMA, _at, _aB, _t, _sTt],
|
|
1039
|
+
[0, 0, 0, 128 | 0, 0, () => TagList, () => StateTemplateAssociations], 3
|
|
1040
|
+
];
|
|
1041
|
+
var CreateVehicleResponse$ = [3, n0, _CVRr,
|
|
1042
|
+
0,
|
|
1043
|
+
[_vN, _a, _tAh],
|
|
1044
|
+
[0, 0, 0]
|
|
1045
|
+
];
|
|
1046
|
+
var CreateVehicleResponseItem$ = [3, n0, _CVRIr,
|
|
1047
|
+
0,
|
|
1048
|
+
[_vN, _a, _tAh],
|
|
1049
|
+
[0, 0, 0]
|
|
1050
|
+
];
|
|
1051
|
+
var CustomDecodingInterface$ = [3, n0, _CDI,
|
|
1052
|
+
0,
|
|
1053
|
+
[_n],
|
|
1054
|
+
[0], 1
|
|
1055
|
+
];
|
|
1056
|
+
var CustomDecodingSignal$ = [3, n0, _CDS,
|
|
1057
|
+
0,
|
|
1058
|
+
[_i],
|
|
1059
|
+
[0], 1
|
|
1060
|
+
];
|
|
1061
|
+
var CustomProperty$ = [3, n0, _CP,
|
|
1062
|
+
0,
|
|
1063
|
+
[_fQN, _dT, _dE, _d, _dM, _co, _sFQN],
|
|
1064
|
+
[0, 0, 0, 0, 0, 0, 0], 2
|
|
1065
|
+
];
|
|
1066
|
+
var CustomStruct$ = [3, n0, _CSu,
|
|
1067
|
+
0,
|
|
1068
|
+
[_fQN, _d, _dM, _co],
|
|
1069
|
+
[0, 0, 0, 0], 1
|
|
1070
|
+
];
|
|
1071
|
+
var DataPartition$ = [3, n0, _DP,
|
|
1072
|
+
0,
|
|
1073
|
+
[_i, _sO, _uO],
|
|
1074
|
+
[0, [() => DataPartitionStorageOptions$, 0], [() => DataPartitionUploadOptions$, 0]], 2
|
|
1075
|
+
];
|
|
1076
|
+
var DataPartitionStorageOptions$ = [3, n0, _DPSO,
|
|
1077
|
+
0,
|
|
1078
|
+
[_mS, _sL, _mTTL],
|
|
1079
|
+
[() => StorageMaximumSize$, [() => StorageLocation, 0], () => StorageMinimumTimeToLive$], 3
|
|
1080
|
+
];
|
|
1081
|
+
var DataPartitionUploadOptions$ = [3, n0, _DPUO,
|
|
1082
|
+
0,
|
|
1083
|
+
[_ex, _cLV],
|
|
1084
|
+
[[() => eventExpression, 0], 1], 1
|
|
1085
|
+
];
|
|
1086
|
+
var DecoderManifestSummary$ = [3, n0, _DMS,
|
|
1087
|
+
0,
|
|
1088
|
+
[_cT, _lMT, _n, _a, _mMA, _d, _st, _m],
|
|
1089
|
+
[4, 4, 0, 0, 0, 0, 0, 0], 2
|
|
1090
|
+
];
|
|
1091
|
+
var DeleteCampaignRequest$ = [3, n0, _DCR,
|
|
1092
|
+
0,
|
|
1093
|
+
[_n],
|
|
1094
|
+
[[0, 1]], 1
|
|
1095
|
+
];
|
|
1096
|
+
var DeleteCampaignResponse$ = [3, n0, _DCRe,
|
|
1097
|
+
0,
|
|
1098
|
+
[_n, _a],
|
|
1099
|
+
[0, 0]
|
|
1100
|
+
];
|
|
1101
|
+
var DeleteDecoderManifestRequest$ = [3, n0, _DDMR,
|
|
1102
|
+
0,
|
|
1103
|
+
[_n],
|
|
1104
|
+
[[0, 1]], 1
|
|
1105
|
+
];
|
|
1106
|
+
var DeleteDecoderManifestResponse$ = [3, n0, _DDMRe,
|
|
1107
|
+
0,
|
|
1108
|
+
[_n, _a],
|
|
1109
|
+
[0, 0], 2
|
|
1110
|
+
];
|
|
1111
|
+
var DeleteFleetRequest$ = [3, n0, _DFR,
|
|
1112
|
+
0,
|
|
1113
|
+
[_fI],
|
|
1114
|
+
[[0, 1]], 1
|
|
1115
|
+
];
|
|
1116
|
+
var DeleteFleetResponse$ = [3, n0, _DFRe,
|
|
1117
|
+
0,
|
|
1118
|
+
[_i, _a],
|
|
1119
|
+
[0, 0]
|
|
1120
|
+
];
|
|
1121
|
+
var DeleteModelManifestRequest$ = [3, n0, _DMMR,
|
|
1122
|
+
0,
|
|
1123
|
+
[_n],
|
|
1124
|
+
[[0, 1]], 1
|
|
1125
|
+
];
|
|
1126
|
+
var DeleteModelManifestResponse$ = [3, n0, _DMMRe,
|
|
1127
|
+
0,
|
|
1128
|
+
[_n, _a],
|
|
1129
|
+
[0, 0], 2
|
|
1130
|
+
];
|
|
1131
|
+
var DeleteSignalCatalogRequest$ = [3, n0, _DSCR,
|
|
1132
|
+
0,
|
|
1133
|
+
[_n],
|
|
1134
|
+
[[0, 1]], 1
|
|
1135
|
+
];
|
|
1136
|
+
var DeleteSignalCatalogResponse$ = [3, n0, _DSCRe,
|
|
1137
|
+
0,
|
|
1138
|
+
[_n, _a],
|
|
1139
|
+
[0, 0], 2
|
|
1140
|
+
];
|
|
1141
|
+
var DeleteStateTemplateRequest$ = [3, n0, _DSTR,
|
|
1142
|
+
0,
|
|
1143
|
+
[_id],
|
|
1144
|
+
[[0, 1]], 1
|
|
1145
|
+
];
|
|
1146
|
+
var DeleteStateTemplateResponse$ = [3, n0, _DSTRe,
|
|
1147
|
+
0,
|
|
1148
|
+
[_n, _a, _i],
|
|
1149
|
+
[0, 0, 0]
|
|
1150
|
+
];
|
|
1151
|
+
var DeleteVehicleRequest$ = [3, n0, _DVR,
|
|
1152
|
+
0,
|
|
1153
|
+
[_vN],
|
|
1154
|
+
[[0, 1]], 1
|
|
1155
|
+
];
|
|
1156
|
+
var DeleteVehicleResponse$ = [3, n0, _DVRe,
|
|
1157
|
+
0,
|
|
1158
|
+
[_vN, _a],
|
|
1159
|
+
[0, 0], 2
|
|
1160
|
+
];
|
|
1161
|
+
var DisassociateVehicleFleetRequest$ = [3, n0, _DVFR,
|
|
1162
|
+
0,
|
|
1163
|
+
[_vN, _fI],
|
|
1164
|
+
[[0, 1], 0], 2
|
|
1165
|
+
];
|
|
1166
|
+
var DisassociateVehicleFleetResponse$ = [3, n0, _DVFRi,
|
|
1167
|
+
0,
|
|
1168
|
+
[],
|
|
1169
|
+
[]
|
|
1170
|
+
];
|
|
1171
|
+
var FleetSummary$ = [3, n0, _FS,
|
|
1172
|
+
0,
|
|
1173
|
+
[_i, _a, _sCA, _cT, _d, _lMT],
|
|
1174
|
+
[0, 0, 0, 4, 0, 4], 4
|
|
1175
|
+
];
|
|
1176
|
+
var GetCampaignRequest$ = [3, n0, _GCR,
|
|
1177
|
+
0,
|
|
1178
|
+
[_n],
|
|
1179
|
+
[[0, 1]], 1
|
|
1180
|
+
];
|
|
1181
|
+
var GetCampaignResponse$ = [3, n0, _GCRe,
|
|
1182
|
+
0,
|
|
1183
|
+
[_n, _a, _d, _sCA, _tA, _st, _sT, _eT, _pTCD, _dMi, _sMp, _com, _p, _sTC, _cS, _dED, _cT, _lMT, _dDC, _dP, _sTF],
|
|
1184
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 1, 0, 0, 0, 1, [() => SignalInformationList, 0], [() => CollectionScheme$, 0], [() => DataExtraDimensionNodePathList, 0], 4, 4, () => DataDestinationConfigs, [() => DataPartitions, 0], [() => SignalFetchInformationList, 0]]
|
|
1185
|
+
];
|
|
1186
|
+
var GetDecoderManifestRequest$ = [3, n0, _GDMR,
|
|
1187
|
+
0,
|
|
1188
|
+
[_n],
|
|
1189
|
+
[[0, 1]], 1
|
|
1190
|
+
];
|
|
1191
|
+
var GetDecoderManifestResponse$ = [3, n0, _GDMRe,
|
|
1192
|
+
0,
|
|
1193
|
+
[_n, _a, _cT, _lMT, _d, _mMA, _st, _m],
|
|
1194
|
+
[0, 0, 4, 4, 0, 0, 0, 0], 4
|
|
1195
|
+
];
|
|
1196
|
+
var GetEncryptionConfigurationRequest$ = [3, n0, _GECR,
|
|
1197
|
+
0,
|
|
1198
|
+
[],
|
|
1199
|
+
[]
|
|
1200
|
+
];
|
|
1201
|
+
var GetEncryptionConfigurationResponse$ = [3, n0, _GECRe,
|
|
1202
|
+
0,
|
|
1203
|
+
[_eS, _eTn, _kKI, _eM, _cT, _lMT],
|
|
1204
|
+
[0, 0, 0, 0, 4, 4], 2
|
|
1205
|
+
];
|
|
1206
|
+
var GetFleetRequest$ = [3, n0, _GFR,
|
|
1207
|
+
0,
|
|
1208
|
+
[_fI],
|
|
1209
|
+
[[0, 1]], 1
|
|
1210
|
+
];
|
|
1211
|
+
var GetFleetResponse$ = [3, n0, _GFRe,
|
|
1212
|
+
0,
|
|
1213
|
+
[_i, _a, _sCA, _cT, _lMT, _d],
|
|
1214
|
+
[0, 0, 0, 4, 4, 0], 5
|
|
1215
|
+
];
|
|
1216
|
+
var GetLoggingOptionsRequest$ = [3, n0, _GLOR,
|
|
1217
|
+
0,
|
|
1218
|
+
[],
|
|
1219
|
+
[]
|
|
1220
|
+
];
|
|
1221
|
+
var GetLoggingOptionsResponse$ = [3, n0, _GLORe,
|
|
1222
|
+
0,
|
|
1223
|
+
[_cWLD],
|
|
1224
|
+
[() => CloudWatchLogDeliveryOptions$], 1
|
|
1225
|
+
];
|
|
1226
|
+
var GetModelManifestRequest$ = [3, n0, _GMMR,
|
|
1227
|
+
0,
|
|
1228
|
+
[_n],
|
|
1229
|
+
[[0, 1]], 1
|
|
1230
|
+
];
|
|
1231
|
+
var GetModelManifestResponse$ = [3, n0, _GMMRe,
|
|
1232
|
+
0,
|
|
1233
|
+
[_n, _a, _cT, _lMT, _d, _sCA, _st],
|
|
1234
|
+
[0, 0, 4, 4, 0, 0, 0], 4
|
|
1235
|
+
];
|
|
1236
|
+
var GetRegisterAccountStatusRequest$ = [3, n0, _GRASR,
|
|
1237
|
+
0,
|
|
1238
|
+
[],
|
|
1239
|
+
[]
|
|
1240
|
+
];
|
|
1241
|
+
var GetRegisterAccountStatusResponse$ = [3, n0, _GRASRe,
|
|
1242
|
+
0,
|
|
1243
|
+
[_cAI, _aS, _iRR, _cT, _lMT, _tRR],
|
|
1244
|
+
[0, 0, () => IamRegistrationResponse$, 4, 4, () => TimestreamRegistrationResponse$], 5
|
|
1245
|
+
];
|
|
1246
|
+
var GetSignalCatalogRequest$ = [3, n0, _GSCR,
|
|
1247
|
+
0,
|
|
1248
|
+
[_n],
|
|
1249
|
+
[[0, 1]], 1
|
|
1250
|
+
];
|
|
1251
|
+
var GetSignalCatalogResponse$ = [3, n0, _GSCRe,
|
|
1252
|
+
0,
|
|
1253
|
+
[_n, _a, _cT, _lMT, _d, _nC],
|
|
1254
|
+
[0, 0, 4, 4, 0, () => NodeCounts$], 4
|
|
1255
|
+
];
|
|
1256
|
+
var GetStateTemplateRequest$ = [3, n0, _GSTR,
|
|
1257
|
+
0,
|
|
1258
|
+
[_id],
|
|
1259
|
+
[[0, 1]], 1
|
|
1260
|
+
];
|
|
1261
|
+
var GetStateTemplateResponse$ = [3, n0, _GSTRe,
|
|
1262
|
+
0,
|
|
1263
|
+
[_n, _a, _d, _sCA, _sTP, _dED, _mED, _cT, _lMT, _i],
|
|
1264
|
+
[0, 0, 0, 0, 64 | 0, 64 | 0, 64 | 0, 4, 4, 0]
|
|
1265
|
+
];
|
|
1266
|
+
var GetVehicleRequest$ = [3, n0, _GVR,
|
|
1267
|
+
0,
|
|
1268
|
+
[_vN],
|
|
1269
|
+
[[0, 1]], 1
|
|
1270
|
+
];
|
|
1271
|
+
var GetVehicleResponse$ = [3, n0, _GVRe,
|
|
1272
|
+
0,
|
|
1273
|
+
[_vN, _a, _mMA, _dMA, _at, _sTt, _cT, _lMT],
|
|
1274
|
+
[0, 0, 0, 0, 128 | 0, () => StateTemplateAssociations, 4, 4]
|
|
1275
|
+
];
|
|
1276
|
+
var GetVehicleStatusRequest$ = [3, n0, _GVSR,
|
|
1277
|
+
0,
|
|
1278
|
+
[_vN, _nT, _mR],
|
|
1279
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1280
|
+
];
|
|
1281
|
+
var GetVehicleStatusResponse$ = [3, n0, _GVSRe,
|
|
1282
|
+
0,
|
|
1283
|
+
[_ca, _nT],
|
|
1284
|
+
[() => VehicleStatusList, 0]
|
|
1285
|
+
];
|
|
1286
|
+
var IamRegistrationResponse$ = [3, n0, _IRR,
|
|
1287
|
+
0,
|
|
1288
|
+
[_rA, _rS, _eM],
|
|
1289
|
+
[0, 0, 0], 2
|
|
1290
|
+
];
|
|
1291
|
+
var IamResources$ = [3, n0, _IR,
|
|
1292
|
+
0,
|
|
1293
|
+
[_rA],
|
|
1294
|
+
[0], 1
|
|
1295
|
+
];
|
|
1296
|
+
var ImportDecoderManifestRequest$ = [3, n0, _IDMR,
|
|
1297
|
+
0,
|
|
1298
|
+
[_n, _nFD],
|
|
1299
|
+
[[0, 1], () => NetworkFileDefinitions], 2
|
|
1300
|
+
];
|
|
1301
|
+
var ImportDecoderManifestResponse$ = [3, n0, _IDMRm,
|
|
1302
|
+
0,
|
|
1303
|
+
[_n, _a],
|
|
1304
|
+
[0, 0], 2
|
|
1305
|
+
];
|
|
1306
|
+
var ImportSignalCatalogRequest$ = [3, n0, _ISCR,
|
|
1307
|
+
0,
|
|
1308
|
+
[_n, _d, _vs, _t],
|
|
1309
|
+
[[0, 1], 0, () => FormattedVss$, () => TagList], 1
|
|
1310
|
+
];
|
|
1311
|
+
var ImportSignalCatalogResponse$ = [3, n0, _ISCRm,
|
|
1312
|
+
0,
|
|
1313
|
+
[_n, _a],
|
|
1314
|
+
[0, 0], 2
|
|
1315
|
+
];
|
|
1316
|
+
var InvalidNetworkInterface$ = [3, n0, _INI,
|
|
1317
|
+
0,
|
|
1318
|
+
[_iI, _re],
|
|
1319
|
+
[0, 0]
|
|
1320
|
+
];
|
|
1321
|
+
var InvalidSignal$ = [3, n0, _IS,
|
|
1322
|
+
0,
|
|
1323
|
+
[_n, _re],
|
|
1324
|
+
[0, 0]
|
|
1325
|
+
];
|
|
1326
|
+
var InvalidSignalDecoder$ = [3, n0, _ISD,
|
|
1327
|
+
0,
|
|
1328
|
+
[_n, _re, _h],
|
|
1329
|
+
[0, 0, 0]
|
|
1330
|
+
];
|
|
1331
|
+
var ListCampaignsRequest$ = [3, n0, _LCR,
|
|
1332
|
+
0,
|
|
1333
|
+
[_nT, _mR, _st, _lRS],
|
|
1334
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _st }], [0, { [_hQ]: _lRS }]]
|
|
1335
|
+
];
|
|
1336
|
+
var ListCampaignsResponse$ = [3, n0, _LCRi,
|
|
1337
|
+
0,
|
|
1338
|
+
[_cSa, _nT],
|
|
1339
|
+
[() => campaignSummaries, 0]
|
|
1340
|
+
];
|
|
1341
|
+
var ListDecoderManifestNetworkInterfacesRequest$ = [3, n0, _LDMNIR,
|
|
1342
|
+
0,
|
|
1343
|
+
[_n, _nT, _mR],
|
|
1344
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1345
|
+
];
|
|
1346
|
+
var ListDecoderManifestNetworkInterfacesResponse$ = [3, n0, _LDMNIRi,
|
|
1347
|
+
0,
|
|
1348
|
+
[_nIe, _nT],
|
|
1349
|
+
[() => NetworkInterfaces, 0]
|
|
1350
|
+
];
|
|
1351
|
+
var ListDecoderManifestSignalsRequest$ = [3, n0, _LDMSR,
|
|
1352
|
+
0,
|
|
1353
|
+
[_n, _nT, _mR],
|
|
1354
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1355
|
+
];
|
|
1356
|
+
var ListDecoderManifestSignalsResponse$ = [3, n0, _LDMSRi,
|
|
1357
|
+
0,
|
|
1358
|
+
[_sD, _nT],
|
|
1359
|
+
[() => SignalDecoders, 0]
|
|
1360
|
+
];
|
|
1361
|
+
var ListDecoderManifestsRequest$ = [3, n0, _LDMR,
|
|
1362
|
+
0,
|
|
1363
|
+
[_mMA, _nT, _mR, _lRS],
|
|
1364
|
+
[[0, { [_hQ]: _mMA }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1365
|
+
];
|
|
1366
|
+
var ListDecoderManifestsResponse$ = [3, n0, _LDMRi,
|
|
1367
|
+
0,
|
|
1368
|
+
[_su, _nT],
|
|
1369
|
+
[() => decoderManifestSummaries, 0]
|
|
1370
|
+
];
|
|
1371
|
+
var ListFleetsForVehicleRequest$ = [3, n0, _LFFVR,
|
|
1372
|
+
0,
|
|
1373
|
+
[_vN, _nT, _mR],
|
|
1374
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1375
|
+
];
|
|
1376
|
+
var ListFleetsForVehicleResponse$ = [3, n0, _LFFVRi,
|
|
1377
|
+
0,
|
|
1378
|
+
[_fl, _nT],
|
|
1379
|
+
[64 | 0, 0]
|
|
1380
|
+
];
|
|
1381
|
+
var ListFleetsRequest$ = [3, n0, _LFR,
|
|
1382
|
+
0,
|
|
1383
|
+
[_nT, _mR, _lRS],
|
|
1384
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1385
|
+
];
|
|
1386
|
+
var ListFleetsResponse$ = [3, n0, _LFRi,
|
|
1387
|
+
0,
|
|
1388
|
+
[_fS, _nT],
|
|
1389
|
+
[() => fleetSummaries, 0]
|
|
1390
|
+
];
|
|
1391
|
+
var ListModelManifestNodesRequest$ = [3, n0, _LMMNR,
|
|
1392
|
+
0,
|
|
1393
|
+
[_n, _nT, _mR],
|
|
1394
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1395
|
+
];
|
|
1396
|
+
var ListModelManifestNodesResponse$ = [3, n0, _LMMNRi,
|
|
1397
|
+
0,
|
|
1398
|
+
[_no, _nT],
|
|
1399
|
+
[() => Nodes, 0]
|
|
1400
|
+
];
|
|
1401
|
+
var ListModelManifestsRequest$ = [3, n0, _LMMR,
|
|
1402
|
+
0,
|
|
1403
|
+
[_sCA, _nT, _mR, _lRS],
|
|
1404
|
+
[[0, { [_hQ]: _sCA }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1405
|
+
];
|
|
1406
|
+
var ListModelManifestsResponse$ = [3, n0, _LMMRi,
|
|
1407
|
+
0,
|
|
1408
|
+
[_su, _nT],
|
|
1409
|
+
[() => modelManifestSummaries, 0]
|
|
1410
|
+
];
|
|
1411
|
+
var ListSignalCatalogNodesRequest$ = [3, n0, _LSCNR,
|
|
1412
|
+
0,
|
|
1413
|
+
[_n, _nT, _mR, _sNT],
|
|
1414
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _sNT }]], 1
|
|
1415
|
+
];
|
|
1416
|
+
var ListSignalCatalogNodesResponse$ = [3, n0, _LSCNRi,
|
|
1417
|
+
0,
|
|
1418
|
+
[_no, _nT],
|
|
1419
|
+
[() => Nodes, 0]
|
|
1420
|
+
];
|
|
1421
|
+
var ListSignalCatalogsRequest$ = [3, n0, _LSCR,
|
|
1422
|
+
0,
|
|
1423
|
+
[_nT, _mR],
|
|
1424
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1425
|
+
];
|
|
1426
|
+
var ListSignalCatalogsResponse$ = [3, n0, _LSCRi,
|
|
1427
|
+
0,
|
|
1428
|
+
[_su, _nT],
|
|
1429
|
+
[() => signalCatalogSummaries, 0]
|
|
1430
|
+
];
|
|
1431
|
+
var ListStateTemplatesRequest$ = [3, n0, _LSTR,
|
|
1432
|
+
0,
|
|
1433
|
+
[_nT, _mR, _lRS],
|
|
1434
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1435
|
+
];
|
|
1436
|
+
var ListStateTemplatesResponse$ = [3, n0, _LSTRi,
|
|
1437
|
+
0,
|
|
1438
|
+
[_su, _nT],
|
|
1439
|
+
[() => StateTemplateSummaries, 0]
|
|
1440
|
+
];
|
|
1441
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1442
|
+
0,
|
|
1443
|
+
[_RARN],
|
|
1444
|
+
[[0, { [_hQ]: _rAe }]], 1
|
|
1445
|
+
];
|
|
1446
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1447
|
+
0,
|
|
1448
|
+
[_T],
|
|
1449
|
+
[() => TagList]
|
|
1450
|
+
];
|
|
1451
|
+
var ListVehiclesInFleetRequest$ = [3, n0, _LVIFR,
|
|
1452
|
+
0,
|
|
1453
|
+
[_fI, _nT, _mR],
|
|
1454
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1455
|
+
];
|
|
1456
|
+
var ListVehiclesInFleetResponse$ = [3, n0, _LVIFRi,
|
|
1457
|
+
0,
|
|
1458
|
+
[_v, _nT],
|
|
1459
|
+
[64 | 0, 0]
|
|
1460
|
+
];
|
|
1461
|
+
var ListVehiclesRequest$ = [3, n0, _LVR,
|
|
1462
|
+
0,
|
|
1463
|
+
[_mMA, _aN, _aVt, _nT, _mR, _lRS],
|
|
1464
|
+
[[0, { [_hQ]: _mMA }], [64 | 0, { [_hQ]: _aN }], [64 | 0, { [_hQ]: _aVt }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1465
|
+
];
|
|
1466
|
+
var ListVehiclesResponse$ = [3, n0, _LVRi,
|
|
1467
|
+
0,
|
|
1468
|
+
[_vS, _nT],
|
|
1469
|
+
[() => vehicleSummaries, 0]
|
|
1470
|
+
];
|
|
1471
|
+
var MessageSignal$ = [3, n0, _MS,
|
|
1472
|
+
0,
|
|
1473
|
+
[_tN, _sMt],
|
|
1474
|
+
[0, () => StructuredMessage$], 2
|
|
1475
|
+
];
|
|
1476
|
+
var ModelManifestSummary$ = [3, n0, _MMS,
|
|
1477
|
+
0,
|
|
1478
|
+
[_cT, _lMT, _n, _a, _sCA, _d, _st],
|
|
1479
|
+
[4, 4, 0, 0, 0, 0, 0], 2
|
|
1480
|
+
];
|
|
1481
|
+
var MqttTopicConfig$ = [3, n0, _MTC,
|
|
1482
|
+
0,
|
|
1483
|
+
[_mTA, _eRA],
|
|
1484
|
+
[0, 0], 2
|
|
1485
|
+
];
|
|
1486
|
+
var NetworkInterface$ = [3, n0, _NI,
|
|
1487
|
+
0,
|
|
1488
|
+
[_iI, _ty, _cI, _oI, _vM, _cDI],
|
|
1489
|
+
[0, 0, () => CanInterface$, () => ObdInterface$, () => VehicleMiddleware$, () => CustomDecodingInterface$], 2
|
|
1490
|
+
];
|
|
1491
|
+
var NodeCounts$ = [3, n0, _NC,
|
|
1492
|
+
0,
|
|
1493
|
+
[_tNo, _tB, _tS, _tAo, _tAot, _tSo, _tP],
|
|
1494
|
+
[1, 1, 1, 1, 1, 1, 1]
|
|
1495
|
+
];
|
|
1496
|
+
var ObdInterface$ = [3, n0, _OI,
|
|
1497
|
+
0,
|
|
1498
|
+
[_n, _rMI, _oS, _pRIS, _dRIS, _uEI, _hTE],
|
|
1499
|
+
[0, 1, 0, 1, 1, 2, 2], 2
|
|
1500
|
+
];
|
|
1501
|
+
var ObdSignal$ = [3, n0, _OS,
|
|
1502
|
+
0,
|
|
1503
|
+
[_pRL, _sMe, _pi, _sc, _o, _sBt, _bL, _bRS, _bML, _iSs, _sVT],
|
|
1504
|
+
[1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0], 7
|
|
1505
|
+
];
|
|
1506
|
+
var OnChangeStateTemplateUpdateStrategy$ = [3, n0, _OCSTUS,
|
|
1507
|
+
0,
|
|
1508
|
+
[],
|
|
1509
|
+
[]
|
|
1510
|
+
];
|
|
1511
|
+
var PeriodicStateTemplateUpdateStrategy$ = [3, n0, _PSTUS,
|
|
1512
|
+
0,
|
|
1513
|
+
[_sTUR],
|
|
1514
|
+
[() => TimePeriod$], 1
|
|
1515
|
+
];
|
|
1516
|
+
var PutEncryptionConfigurationRequest$ = [3, n0, _PECR,
|
|
1517
|
+
0,
|
|
1518
|
+
[_eTn, _kKI],
|
|
1519
|
+
[0, 0], 1
|
|
1520
|
+
];
|
|
1521
|
+
var PutEncryptionConfigurationResponse$ = [3, n0, _PECRu,
|
|
1522
|
+
0,
|
|
1523
|
+
[_eS, _eTn, _kKI],
|
|
1524
|
+
[0, 0, 0], 2
|
|
1525
|
+
];
|
|
1526
|
+
var PutLoggingOptionsRequest$ = [3, n0, _PLOR,
|
|
1527
|
+
0,
|
|
1528
|
+
[_cWLD],
|
|
1529
|
+
[() => CloudWatchLogDeliveryOptions$], 1
|
|
1530
|
+
];
|
|
1531
|
+
var PutLoggingOptionsResponse$ = [3, n0, _PLORu,
|
|
1532
|
+
0,
|
|
1533
|
+
[],
|
|
1534
|
+
[]
|
|
1535
|
+
];
|
|
1536
|
+
var RegisterAccountRequest$ = [3, n0, _RAR,
|
|
1537
|
+
0,
|
|
1538
|
+
[_tR, _iR],
|
|
1539
|
+
[() => TimestreamResources$, () => IamResources$]
|
|
1540
|
+
];
|
|
1541
|
+
var RegisterAccountResponse$ = [3, n0, _RARe,
|
|
1542
|
+
0,
|
|
1543
|
+
[_rASe, _iR, _cT, _lMT, _tR],
|
|
1544
|
+
[0, () => IamResources$, 4, 4, () => TimestreamResources$], 4
|
|
1545
|
+
];
|
|
1546
|
+
var ROS2PrimitiveMessageDefinition$ = [3, n0, _ROSPMD,
|
|
1547
|
+
0,
|
|
1548
|
+
[_pT, _o, _sc, _uB],
|
|
1549
|
+
[0, 1, 1, 1], 1
|
|
1550
|
+
];
|
|
1551
|
+
var S3Config$ = [3, n0, _SC,
|
|
1552
|
+
0,
|
|
1553
|
+
[_bA, _dF, _sCF, _pr],
|
|
1554
|
+
[0, 0, 0, 0], 1
|
|
1555
|
+
];
|
|
1556
|
+
var Sensor$ = [3, n0, _S,
|
|
1557
|
+
0,
|
|
1558
|
+
[_fQN, _dT, _d, _u, _aV, _mi, _ma, _dM, _co, _sFQN],
|
|
1559
|
+
[0, 0, 0, 0, 64 | 0, 1, 1, 0, 0, 0], 2
|
|
1560
|
+
];
|
|
1561
|
+
var SignalCatalogSummary$ = [3, n0, _SCS,
|
|
1562
|
+
0,
|
|
1563
|
+
[_n, _a, _cT, _lMT],
|
|
1564
|
+
[0, 0, 4, 4]
|
|
1565
|
+
];
|
|
1566
|
+
var SignalDecoder$ = [3, n0, _SD,
|
|
1567
|
+
0,
|
|
1568
|
+
[_fQN, _ty, _iI, _cSan, _oSb, _mSe, _cDS],
|
|
1569
|
+
[0, 0, 0, () => CanSignal$, () => ObdSignal$, () => MessageSignal$, () => CustomDecodingSignal$], 3
|
|
1570
|
+
];
|
|
1571
|
+
var SignalFetchInformation$ = [3, n0, _SFI,
|
|
1572
|
+
0,
|
|
1573
|
+
[_fQN, _sFC, _ac, _cLV],
|
|
1574
|
+
[0, [() => SignalFetchConfig$, 0], [() => EventExpressionList, 0], 1], 3
|
|
1575
|
+
];
|
|
1576
|
+
var SignalInformation$ = [3, n0, _SI,
|
|
1577
|
+
0,
|
|
1578
|
+
[_n, _mSC, _mSIM, _dPI],
|
|
1579
|
+
[0, 1, 1, 0], 1
|
|
1580
|
+
];
|
|
1581
|
+
var StateTemplateAssociation$ = [3, n0, _STA,
|
|
1582
|
+
0,
|
|
1583
|
+
[_id, _sTUS],
|
|
1584
|
+
[0, () => StateTemplateUpdateStrategy$], 2
|
|
1585
|
+
];
|
|
1586
|
+
var StateTemplateSummary$ = [3, n0, _STS,
|
|
1587
|
+
0,
|
|
1588
|
+
[_n, _a, _sCA, _d, _cT, _lMT, _i],
|
|
1589
|
+
[0, 0, 0, 0, 4, 4, 0]
|
|
1590
|
+
];
|
|
1591
|
+
var StorageMaximumSize$ = [3, n0, _SMS,
|
|
1592
|
+
0,
|
|
1593
|
+
[_u, _va],
|
|
1594
|
+
[0, 1], 2
|
|
1595
|
+
];
|
|
1596
|
+
var StorageMinimumTimeToLive$ = [3, n0, _SMTTL,
|
|
1597
|
+
0,
|
|
1598
|
+
[_u, _va],
|
|
1599
|
+
[0, 1], 2
|
|
1600
|
+
];
|
|
1601
|
+
var StructuredMessageFieldNameAndDataTypePair$ = [3, n0, _SMFNADTP,
|
|
1602
|
+
0,
|
|
1603
|
+
[_fN, _dT],
|
|
1604
|
+
[0, () => StructuredMessage$], 2
|
|
1605
|
+
];
|
|
1606
|
+
var StructuredMessageListDefinition$ = [3, n0, _SMLD,
|
|
1607
|
+
0,
|
|
1608
|
+
[_n, _mT, _lTi, _cap],
|
|
1609
|
+
[0, () => StructuredMessage$, 0, 1], 3
|
|
1610
|
+
];
|
|
1611
|
+
var Tag$ = [3, n0, _Ta,
|
|
1612
|
+
0,
|
|
1613
|
+
[_K, _V],
|
|
1614
|
+
[0, 0], 2
|
|
1615
|
+
];
|
|
1616
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1617
|
+
0,
|
|
1618
|
+
[_RARN, _T],
|
|
1619
|
+
[[0, { [_hQ]: _rAe }], () => TagList], 2
|
|
1620
|
+
];
|
|
1621
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1622
|
+
0,
|
|
1623
|
+
[],
|
|
1624
|
+
[]
|
|
1625
|
+
];
|
|
1626
|
+
var TimeBasedCollectionScheme$ = [3, n0, _TBCS,
|
|
1627
|
+
0,
|
|
1628
|
+
[_pM],
|
|
1629
|
+
[1], 1
|
|
1630
|
+
];
|
|
1631
|
+
var TimeBasedSignalFetchConfig$ = [3, n0, _TBSFC,
|
|
1632
|
+
0,
|
|
1633
|
+
[_eFM],
|
|
1634
|
+
[1], 1
|
|
1635
|
+
];
|
|
1636
|
+
var TimePeriod$ = [3, n0, _TP,
|
|
1637
|
+
0,
|
|
1638
|
+
[_u, _va],
|
|
1639
|
+
[0, 1], 2
|
|
1640
|
+
];
|
|
1641
|
+
var TimestreamConfig$ = [3, n0, _TC,
|
|
1642
|
+
0,
|
|
1643
|
+
[_tTA, _eRA],
|
|
1644
|
+
[0, 0], 2
|
|
1645
|
+
];
|
|
1646
|
+
var TimestreamRegistrationResponse$ = [3, n0, _TRRi,
|
|
1647
|
+
0,
|
|
1648
|
+
[_tDN, _tTN, _rS, _tDA, _tTA, _eM],
|
|
1649
|
+
[0, 0, 0, 0, 0, 0], 3
|
|
1650
|
+
];
|
|
1651
|
+
var TimestreamResources$ = [3, n0, _TR,
|
|
1652
|
+
0,
|
|
1653
|
+
[_tDN, _tTN],
|
|
1654
|
+
[0, 0], 2
|
|
1655
|
+
];
|
|
1656
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1657
|
+
0,
|
|
1658
|
+
[_RARN, _TK],
|
|
1659
|
+
[[0, { [_hQ]: _rAe }], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1660
|
+
];
|
|
1661
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1662
|
+
0,
|
|
1663
|
+
[],
|
|
1664
|
+
[]
|
|
1665
|
+
];
|
|
1666
|
+
var UpdateCampaignRequest$ = [3, n0, _UCR,
|
|
1667
|
+
0,
|
|
1668
|
+
[_n, _act, _d, _dED],
|
|
1669
|
+
[[0, 1], 0, 0, [() => DataExtraDimensionNodePathList, 0]], 2
|
|
1670
|
+
];
|
|
1671
|
+
var UpdateCampaignResponse$ = [3, n0, _UCRp,
|
|
1672
|
+
0,
|
|
1673
|
+
[_a, _n, _st],
|
|
1674
|
+
[0, 0, 0]
|
|
1675
|
+
];
|
|
1676
|
+
var UpdateDecoderManifestRequest$ = [3, n0, _UDMR,
|
|
1677
|
+
0,
|
|
1678
|
+
[_n, _d, _sDTA, _sDTU, _sDTR, _nITA, _nITU, _nITR, _st, _dFUS],
|
|
1679
|
+
[[0, 1], 0, () => SignalDecoders, () => SignalDecoders, 64 | 0, () => NetworkInterfaces, () => NetworkInterfaces, 64 | 0, 0, 0], 1
|
|
1680
|
+
];
|
|
1681
|
+
var UpdateDecoderManifestResponse$ = [3, n0, _UDMRp,
|
|
1682
|
+
0,
|
|
1683
|
+
[_n, _a],
|
|
1684
|
+
[0, 0], 2
|
|
1685
|
+
];
|
|
1686
|
+
var UpdateFleetRequest$ = [3, n0, _UFR,
|
|
1687
|
+
0,
|
|
1688
|
+
[_fI, _d],
|
|
1689
|
+
[[0, 1], 0], 1
|
|
1690
|
+
];
|
|
1691
|
+
var UpdateFleetResponse$ = [3, n0, _UFRp,
|
|
1692
|
+
0,
|
|
1693
|
+
[_i, _a],
|
|
1694
|
+
[0, 0]
|
|
1695
|
+
];
|
|
1696
|
+
var UpdateModelManifestRequest$ = [3, n0, _UMMR,
|
|
1697
|
+
0,
|
|
1698
|
+
[_n, _d, _nTA, _nTR, _st],
|
|
1699
|
+
[[0, 1], 0, 64 | 0, 64 | 0, 0], 1
|
|
1700
|
+
];
|
|
1701
|
+
var UpdateModelManifestResponse$ = [3, n0, _UMMRp,
|
|
1702
|
+
0,
|
|
1703
|
+
[_n, _a],
|
|
1704
|
+
[0, 0], 2
|
|
1705
|
+
];
|
|
1706
|
+
var UpdateSignalCatalogRequest$ = [3, n0, _USCR,
|
|
1707
|
+
0,
|
|
1708
|
+
[_n, _d, _nTA, _nTU, _nTR],
|
|
1709
|
+
[[0, 1], 0, () => Nodes, () => Nodes, 64 | 0], 1
|
|
1710
|
+
];
|
|
1711
|
+
var UpdateSignalCatalogResponse$ = [3, n0, _USCRp,
|
|
1712
|
+
0,
|
|
1713
|
+
[_n, _a],
|
|
1714
|
+
[0, 0], 2
|
|
1715
|
+
];
|
|
1716
|
+
var UpdateStateTemplateRequest$ = [3, n0, _USTR,
|
|
1717
|
+
0,
|
|
1718
|
+
[_id, _d, _sTPTA, _sTPTR, _dED, _mED],
|
|
1719
|
+
[[0, 1], 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
|
|
1720
|
+
];
|
|
1721
|
+
var UpdateStateTemplateResponse$ = [3, n0, _USTRp,
|
|
1722
|
+
0,
|
|
1723
|
+
[_n, _a, _i],
|
|
1724
|
+
[0, 0, 0]
|
|
1725
|
+
];
|
|
1726
|
+
var UpdateVehicleError$ = [3, n0, _UVE,
|
|
1727
|
+
0,
|
|
1728
|
+
[_vN, _cod, _m],
|
|
1729
|
+
[0, 1, 0]
|
|
1730
|
+
];
|
|
1731
|
+
var UpdateVehicleRequest$ = [3, n0, _UVR,
|
|
1732
|
+
0,
|
|
1733
|
+
[_vN, _mMA, _dMA, _at, _aUM, _sTTA, _sTTR, _sTTU],
|
|
1734
|
+
[[0, 1], 0, 0, 128 | 0, 0, () => StateTemplateAssociations, 64 | 0, () => StateTemplateAssociations], 1
|
|
1735
|
+
];
|
|
1736
|
+
var UpdateVehicleRequestItem$ = [3, n0, _UVRI,
|
|
1737
|
+
0,
|
|
1738
|
+
[_vN, _mMA, _dMA, _at, _aUM, _sTTA, _sTTR, _sTTU],
|
|
1739
|
+
[0, 0, 0, 128 | 0, 0, () => StateTemplateAssociations, 64 | 0, () => StateTemplateAssociations], 1
|
|
1740
|
+
];
|
|
1741
|
+
var UpdateVehicleResponse$ = [3, n0, _UVRp,
|
|
1742
|
+
0,
|
|
1743
|
+
[_vN, _a],
|
|
1744
|
+
[0, 0]
|
|
1745
|
+
];
|
|
1746
|
+
var UpdateVehicleResponseItem$ = [3, n0, _UVRIp,
|
|
1747
|
+
0,
|
|
1748
|
+
[_vN, _a],
|
|
1749
|
+
[0, 0]
|
|
1750
|
+
];
|
|
1751
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1752
|
+
0,
|
|
1753
|
+
[_n, _m],
|
|
1754
|
+
[0, 0], 2
|
|
1755
|
+
];
|
|
1756
|
+
var VehicleMiddleware$ = [3, n0, _VM,
|
|
1757
|
+
0,
|
|
1758
|
+
[_n, _pN],
|
|
1759
|
+
[0, 0], 2
|
|
1760
|
+
];
|
|
1761
|
+
var VehicleStatus$ = [3, n0, _VS,
|
|
1762
|
+
0,
|
|
1763
|
+
[_cN, _vN, _st],
|
|
1764
|
+
[0, 0, 0]
|
|
1765
|
+
];
|
|
1766
|
+
var VehicleSummary$ = [3, n0, _VSe,
|
|
1767
|
+
0,
|
|
1768
|
+
[_vN, _a, _mMA, _dMA, _cT, _lMT, _at],
|
|
1769
|
+
[0, 0, 0, 0, 4, 4, 128 | 0], 6
|
|
1770
|
+
];
|
|
1771
|
+
var campaignSummaries = [1, n0, _cSa,
|
|
1772
|
+
0, () => CampaignSummary$
|
|
1773
|
+
];
|
|
1774
|
+
var createVehicleErrors = [1, n0, _cVE,
|
|
1775
|
+
0, () => CreateVehicleError$
|
|
1776
|
+
];
|
|
1777
|
+
var createVehicleRequestItems = [1, n0, _cVRI,
|
|
1778
|
+
0, () => CreateVehicleRequestItem$
|
|
1779
|
+
];
|
|
1780
|
+
var createVehicleResponses = [1, n0, _cVR,
|
|
1781
|
+
0, () => CreateVehicleResponseItem$
|
|
1782
|
+
];
|
|
1783
|
+
var DataDestinationConfigs = [1, n0, _DDC,
|
|
1784
|
+
0, () => DataDestinationConfig$
|
|
1785
|
+
];
|
|
1786
|
+
var DataExtraDimensionNodePathList = [1, n0, _DEDNPL,
|
|
1787
|
+
8, 0
|
|
1788
|
+
];
|
|
1789
|
+
var DataPartitions = [1, n0, _DPa,
|
|
1790
|
+
0, [() => DataPartition$,
|
|
1791
|
+
0]
|
|
1792
|
+
];
|
|
1793
|
+
var decoderManifestSummaries = [1, n0, _dMS,
|
|
1794
|
+
0, () => DecoderManifestSummary$
|
|
1795
|
+
];
|
|
1796
|
+
var EventExpressionList = [1, n0, _EEL,
|
|
1797
|
+
0, [() => actionEventExpression,
|
|
1798
|
+
0]
|
|
1799
|
+
];
|
|
1800
|
+
var fleetSummaries = [1, n0, _fS,
|
|
1801
|
+
0, () => FleetSummary$
|
|
1802
|
+
];
|
|
1803
|
+
var InvalidNetworkInterfaces = [1, n0, _INIn,
|
|
1804
|
+
0, () => InvalidNetworkInterface$
|
|
1805
|
+
];
|
|
1806
|
+
var InvalidSignalDecoders = [1, n0, _ISDn,
|
|
1807
|
+
0, () => InvalidSignalDecoder$
|
|
1808
|
+
];
|
|
1809
|
+
var InvalidSignals = [1, n0, _ISn,
|
|
1810
|
+
0, () => InvalidSignal$
|
|
1811
|
+
];
|
|
1812
|
+
var modelManifestSummaries = [1, n0, _mMS,
|
|
1813
|
+
0, () => ModelManifestSummary$
|
|
1814
|
+
];
|
|
1815
|
+
var NetworkFileDefinitions = [1, n0, _NFD,
|
|
1816
|
+
0, () => NetworkFileDefinition$
|
|
1817
|
+
];
|
|
1818
|
+
var NetworkInterfaces = [1, n0, _NIe,
|
|
1819
|
+
0, () => NetworkInterface$
|
|
1820
|
+
];
|
|
1821
|
+
var Nodes = [1, n0, _N,
|
|
1822
|
+
0, () => Node$
|
|
1823
|
+
];
|
|
1824
|
+
var signalCatalogSummaries = [1, n0, _sCS,
|
|
1825
|
+
0, () => SignalCatalogSummary$
|
|
1826
|
+
];
|
|
1827
|
+
var SignalDecoders = [1, n0, _SDi,
|
|
1828
|
+
0, () => SignalDecoder$
|
|
1829
|
+
];
|
|
1830
|
+
var SignalFetchInformationList = [1, n0, _SFIL,
|
|
1831
|
+
8, [() => SignalFetchInformation$,
|
|
1832
|
+
0]
|
|
1833
|
+
];
|
|
1834
|
+
var SignalInformationList = [1, n0, _SIL,
|
|
1835
|
+
8, () => SignalInformation$
|
|
1836
|
+
];
|
|
1837
|
+
var StateTemplateAssociations = [1, n0, _STAt,
|
|
1838
|
+
0, () => StateTemplateAssociation$
|
|
1839
|
+
];
|
|
1840
|
+
var StateTemplateSummaries = [1, n0, _STSt,
|
|
1841
|
+
0, () => StateTemplateSummary$
|
|
1842
|
+
];
|
|
1843
|
+
var StructuredMessageDefinition = [1, n0, _SMD,
|
|
1844
|
+
0, () => StructuredMessageFieldNameAndDataTypePair$
|
|
1845
|
+
];
|
|
1846
|
+
var TagList = [1, n0, _TL,
|
|
1847
|
+
0, () => Tag$
|
|
1848
|
+
];
|
|
1849
|
+
var updateVehicleErrors = [1, n0, _uVE,
|
|
1850
|
+
0, () => UpdateVehicleError$
|
|
1851
|
+
];
|
|
1852
|
+
var updateVehicleRequestItems = [1, n0, _uVRI,
|
|
1853
|
+
0, () => UpdateVehicleRequestItem$
|
|
1854
|
+
];
|
|
1855
|
+
var updateVehicleResponseItems = [1, n0, _uVRIp,
|
|
1856
|
+
0, () => UpdateVehicleResponseItem$
|
|
1857
|
+
];
|
|
1858
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1859
|
+
0, () => ValidationExceptionField$
|
|
1860
|
+
];
|
|
1861
|
+
var VehicleStatusList = [1, n0, _VSL,
|
|
1862
|
+
0, () => VehicleStatus$
|
|
1863
|
+
];
|
|
1864
|
+
var vehicleSummaries = [1, n0, _vS,
|
|
1865
|
+
0, () => VehicleSummary$
|
|
1866
|
+
];
|
|
1867
|
+
var CollectionScheme$ = [4, n0, _CSo,
|
|
1868
|
+
0,
|
|
1869
|
+
[_tBCS, _cBCS],
|
|
1870
|
+
[() => TimeBasedCollectionScheme$, [() => ConditionBasedCollectionScheme$, 0]]
|
|
1871
|
+
];
|
|
1872
|
+
var DataDestinationConfig$ = [4, n0, _DDCa,
|
|
1873
|
+
0,
|
|
1874
|
+
[_sCo, _tC, _mTC],
|
|
1875
|
+
[() => S3Config$, () => TimestreamConfig$, () => MqttTopicConfig$]
|
|
1876
|
+
];
|
|
1877
|
+
var FormattedVss$ = [4, n0, _FV,
|
|
1878
|
+
0,
|
|
1879
|
+
[_vJ],
|
|
1880
|
+
[0]
|
|
1881
|
+
];
|
|
1882
|
+
var NetworkFileDefinition$ = [4, n0, _NFDe,
|
|
1883
|
+
0,
|
|
1884
|
+
[_cD],
|
|
1885
|
+
[() => CanDbcDefinition$]
|
|
1886
|
+
];
|
|
1887
|
+
var Node$ = [4, n0, _No,
|
|
1888
|
+
0,
|
|
1889
|
+
[_b, _sen, _actu, _att, _str, _pro],
|
|
1890
|
+
[() => Branch$, () => Sensor$, () => Actuator$, () => Attribute$, () => CustomStruct$, () => CustomProperty$]
|
|
1891
|
+
];
|
|
1892
|
+
var PrimitiveMessageDefinition$ = [4, n0, _PMD,
|
|
1893
|
+
0,
|
|
1894
|
+
[_rPMD],
|
|
1895
|
+
[() => ROS2PrimitiveMessageDefinition$]
|
|
1896
|
+
];
|
|
1897
|
+
var SignalFetchConfig$ = [4, n0, _SFC,
|
|
1898
|
+
0,
|
|
1899
|
+
[_tBi, _cB],
|
|
1900
|
+
[() => TimeBasedSignalFetchConfig$, [() => ConditionBasedSignalFetchConfig$, 0]]
|
|
1901
|
+
];
|
|
1902
|
+
var StateTemplateUpdateStrategy$ = [4, n0, _STUS,
|
|
1903
|
+
0,
|
|
1904
|
+
[_pe, _oC],
|
|
1905
|
+
[() => PeriodicStateTemplateUpdateStrategy$, () => OnChangeStateTemplateUpdateStrategy$]
|
|
1906
|
+
];
|
|
1907
|
+
var StructuredMessage$ = [4, n0, _SM,
|
|
1908
|
+
0,
|
|
1909
|
+
[_pMD, _sMLD, _sMD],
|
|
1910
|
+
[() => PrimitiveMessageDefinition$, () => StructuredMessageListDefinition$, () => StructuredMessageDefinition]
|
|
1911
|
+
];
|
|
1912
|
+
var AssociateVehicleFleet$ = [9, n0, _AVF,
|
|
1913
|
+
{ [_ht]: ["PUT", "/vehicles/{vehicleName}/associate", 204] }, () => AssociateVehicleFleetRequest$, () => AssociateVehicleFleetResponse$
|
|
1914
|
+
];
|
|
1915
|
+
var BatchCreateVehicle$ = [9, n0, _BCV,
|
|
1916
|
+
{ [_ht]: ["POST", "/vehicles", 200] }, () => BatchCreateVehicleRequest$, () => BatchCreateVehicleResponse$
|
|
1917
|
+
];
|
|
1918
|
+
var BatchUpdateVehicle$ = [9, n0, _BUV,
|
|
1919
|
+
{ [_ht]: ["PUT", "/vehicles", 200] }, () => BatchUpdateVehicleRequest$, () => BatchUpdateVehicleResponse$
|
|
1920
|
+
];
|
|
1921
|
+
var CreateCampaign$ = [9, n0, _CC,
|
|
1922
|
+
{ [_ht]: ["POST", "/campaigns/{name}", 200] }, () => CreateCampaignRequest$, () => CreateCampaignResponse$
|
|
1923
|
+
];
|
|
1924
|
+
var CreateDecoderManifest$ = [9, n0, _CDM,
|
|
1925
|
+
{ [_ht]: ["POST", "/decoder-manifests/{name}", 200] }, () => CreateDecoderManifestRequest$, () => CreateDecoderManifestResponse$
|
|
1926
|
+
];
|
|
1927
|
+
var CreateFleet$ = [9, n0, _CF,
|
|
1928
|
+
{ [_ht]: ["POST", "/fleets/{fleetId}", 201] }, () => CreateFleetRequest$, () => CreateFleetResponse$
|
|
1929
|
+
];
|
|
1930
|
+
var CreateModelManifest$ = [9, n0, _CMM,
|
|
1931
|
+
{ [_ht]: ["POST", "/model-manifests/{name}", 200] }, () => CreateModelManifestRequest$, () => CreateModelManifestResponse$
|
|
1932
|
+
];
|
|
1933
|
+
var CreateSignalCatalog$ = [9, n0, _CSC,
|
|
1934
|
+
{ [_ht]: ["POST", "/signal-catalogs/{name}", 200] }, () => CreateSignalCatalogRequest$, () => CreateSignalCatalogResponse$
|
|
1935
|
+
];
|
|
1936
|
+
var CreateStateTemplate$ = [9, n0, _CST,
|
|
1937
|
+
{ [_ht]: ["POST", "/state-templates/{name}", 200] }, () => CreateStateTemplateRequest$, () => CreateStateTemplateResponse$
|
|
1938
|
+
];
|
|
1939
|
+
var CreateVehicle$ = [9, n0, _CV,
|
|
1940
|
+
{ [_ht]: ["POST", "/vehicles/{vehicleName}", 201] }, () => CreateVehicleRequest$, () => CreateVehicleResponse$
|
|
1941
|
+
];
|
|
1942
|
+
var DeleteCampaign$ = [9, n0, _DC,
|
|
1943
|
+
{ [_ht]: ["DELETE", "/campaigns/{name}", 204] }, () => DeleteCampaignRequest$, () => DeleteCampaignResponse$
|
|
1944
|
+
];
|
|
1945
|
+
var DeleteDecoderManifest$ = [9, n0, _DDM,
|
|
1946
|
+
{ [_ht]: ["DELETE", "/decoder-manifests/{name}", 200] }, () => DeleteDecoderManifestRequest$, () => DeleteDecoderManifestResponse$
|
|
1947
|
+
];
|
|
1948
|
+
var DeleteFleet$ = [9, n0, _DF,
|
|
1949
|
+
{ [_ht]: ["DELETE", "/fleets/{fleetId}", 200] }, () => DeleteFleetRequest$, () => DeleteFleetResponse$
|
|
1950
|
+
];
|
|
1951
|
+
var DeleteModelManifest$ = [9, n0, _DMM,
|
|
1952
|
+
{ [_ht]: ["DELETE", "/model-manifests/{name}", 200] }, () => DeleteModelManifestRequest$, () => DeleteModelManifestResponse$
|
|
1953
|
+
];
|
|
1954
|
+
var DeleteSignalCatalog$ = [9, n0, _DSC,
|
|
1955
|
+
{ [_ht]: ["DELETE", "/signal-catalogs/{name}", 200] }, () => DeleteSignalCatalogRequest$, () => DeleteSignalCatalogResponse$
|
|
1956
|
+
];
|
|
1957
|
+
var DeleteStateTemplate$ = [9, n0, _DST,
|
|
1958
|
+
{ [_ht]: ["DELETE", "/state-templates/{identifier}", 200] }, () => DeleteStateTemplateRequest$, () => DeleteStateTemplateResponse$
|
|
1959
|
+
];
|
|
1960
|
+
var DeleteVehicle$ = [9, n0, _DV,
|
|
1961
|
+
{ [_ht]: ["DELETE", "/vehicles/{vehicleName}", 204] }, () => DeleteVehicleRequest$, () => DeleteVehicleResponse$
|
|
1962
|
+
];
|
|
1963
|
+
var DisassociateVehicleFleet$ = [9, n0, _DVF,
|
|
1964
|
+
{ [_ht]: ["PUT", "/vehicles/{vehicleName}/disassociate", 204] }, () => DisassociateVehicleFleetRequest$, () => DisassociateVehicleFleetResponse$
|
|
1965
|
+
];
|
|
1966
|
+
var GetCampaign$ = [9, n0, _GC,
|
|
1967
|
+
{ [_ht]: ["GET", "/campaigns/{name}", 200] }, () => GetCampaignRequest$, () => GetCampaignResponse$
|
|
1968
|
+
];
|
|
1969
|
+
var GetDecoderManifest$ = [9, n0, _GDM,
|
|
1970
|
+
{ [_ht]: ["GET", "/decoder-manifests/{name}", 200] }, () => GetDecoderManifestRequest$, () => GetDecoderManifestResponse$
|
|
1971
|
+
];
|
|
1972
|
+
var GetEncryptionConfiguration$ = [9, n0, _GEC,
|
|
1973
|
+
{ [_ht]: ["GET", "/encryptionConfiguration", 200] }, () => GetEncryptionConfigurationRequest$, () => GetEncryptionConfigurationResponse$
|
|
1974
|
+
];
|
|
1975
|
+
var GetFleet$ = [9, n0, _GF,
|
|
1976
|
+
{ [_ht]: ["GET", "/fleets/{fleetId}", 200] }, () => GetFleetRequest$, () => GetFleetResponse$
|
|
1977
|
+
];
|
|
1978
|
+
var GetLoggingOptions$ = [9, n0, _GLO,
|
|
1979
|
+
{ [_ht]: ["GET", "/loggingOptions", 200] }, () => GetLoggingOptionsRequest$, () => GetLoggingOptionsResponse$
|
|
1980
|
+
];
|
|
1981
|
+
var GetModelManifest$ = [9, n0, _GMM,
|
|
1982
|
+
{ [_ht]: ["GET", "/model-manifests/{name}", 200] }, () => GetModelManifestRequest$, () => GetModelManifestResponse$
|
|
1983
|
+
];
|
|
1984
|
+
var GetRegisterAccountStatus$ = [9, n0, _GRAS,
|
|
1985
|
+
{ [_ht]: ["GET", "/account/registration_status", 200] }, () => GetRegisterAccountStatusRequest$, () => GetRegisterAccountStatusResponse$
|
|
1986
|
+
];
|
|
1987
|
+
var GetSignalCatalog$ = [9, n0, _GSC,
|
|
1988
|
+
{ [_ht]: ["GET", "/signal-catalogs/{name}", 200] }, () => GetSignalCatalogRequest$, () => GetSignalCatalogResponse$
|
|
1989
|
+
];
|
|
1990
|
+
var GetStateTemplate$ = [9, n0, _GST,
|
|
1991
|
+
{ [_ht]: ["GET", "/state-templates/{identifier}", 200] }, () => GetStateTemplateRequest$, () => GetStateTemplateResponse$
|
|
1992
|
+
];
|
|
1993
|
+
var GetVehicle$ = [9, n0, _GV,
|
|
1994
|
+
{ [_ht]: ["GET", "/vehicles/{vehicleName}", 200] }, () => GetVehicleRequest$, () => GetVehicleResponse$
|
|
1995
|
+
];
|
|
1996
|
+
var GetVehicleStatus$ = [9, n0, _GVS,
|
|
1997
|
+
{ [_ht]: ["GET", "/vehicles/{vehicleName}/status", 200] }, () => GetVehicleStatusRequest$, () => GetVehicleStatusResponse$
|
|
1998
|
+
];
|
|
1999
|
+
var ImportDecoderManifest$ = [9, n0, _IDM,
|
|
2000
|
+
{ [_ht]: ["PUT", "/decoder-manifests/{name}", 200] }, () => ImportDecoderManifestRequest$, () => ImportDecoderManifestResponse$
|
|
2001
|
+
];
|
|
2002
|
+
var ImportSignalCatalog$ = [9, n0, _ISC,
|
|
2003
|
+
{ [_ht]: ["PUT", "/signal-catalogs/{name}/nodes", 200] }, () => ImportSignalCatalogRequest$, () => ImportSignalCatalogResponse$
|
|
2004
|
+
];
|
|
2005
|
+
var ListCampaigns$ = [9, n0, _LC,
|
|
2006
|
+
{ [_ht]: ["GET", "/campaigns", 200] }, () => ListCampaignsRequest$, () => ListCampaignsResponse$
|
|
2007
|
+
];
|
|
2008
|
+
var ListDecoderManifestNetworkInterfaces$ = [9, n0, _LDMNI,
|
|
2009
|
+
{ [_ht]: ["GET", "/decoder-manifests/{name}/network-interfaces", 200] }, () => ListDecoderManifestNetworkInterfacesRequest$, () => ListDecoderManifestNetworkInterfacesResponse$
|
|
2010
|
+
];
|
|
2011
|
+
var ListDecoderManifests$ = [9, n0, _LDM,
|
|
2012
|
+
{ [_ht]: ["GET", "/decoder-manifests", 200] }, () => ListDecoderManifestsRequest$, () => ListDecoderManifestsResponse$
|
|
2013
|
+
];
|
|
2014
|
+
var ListDecoderManifestSignals$ = [9, n0, _LDMS,
|
|
2015
|
+
{ [_ht]: ["GET", "/decoder-manifests/{name}/signals", 200] }, () => ListDecoderManifestSignalsRequest$, () => ListDecoderManifestSignalsResponse$
|
|
2016
|
+
];
|
|
2017
|
+
var ListFleets$ = [9, n0, _LF,
|
|
2018
|
+
{ [_ht]: ["GET", "/fleets", 200] }, () => ListFleetsRequest$, () => ListFleetsResponse$
|
|
2019
|
+
];
|
|
2020
|
+
var ListFleetsForVehicle$ = [9, n0, _LFFV,
|
|
2021
|
+
{ [_ht]: ["GET", "/vehicles/{vehicleName}/fleets", 200] }, () => ListFleetsForVehicleRequest$, () => ListFleetsForVehicleResponse$
|
|
2022
|
+
];
|
|
2023
|
+
var ListModelManifestNodes$ = [9, n0, _LMMN,
|
|
2024
|
+
{ [_ht]: ["GET", "/model-manifests/{name}/nodes", 200] }, () => ListModelManifestNodesRequest$, () => ListModelManifestNodesResponse$
|
|
2025
|
+
];
|
|
2026
|
+
var ListModelManifests$ = [9, n0, _LMM,
|
|
2027
|
+
{ [_ht]: ["GET", "/model-manifests", 200] }, () => ListModelManifestsRequest$, () => ListModelManifestsResponse$
|
|
2028
|
+
];
|
|
2029
|
+
var ListSignalCatalogNodes$ = [9, n0, _LSCN,
|
|
2030
|
+
{ [_ht]: ["GET", "/signal-catalogs/{name}/nodes", 200] }, () => ListSignalCatalogNodesRequest$, () => ListSignalCatalogNodesResponse$
|
|
2031
|
+
];
|
|
2032
|
+
var ListSignalCatalogs$ = [9, n0, _LSC,
|
|
2033
|
+
{ [_ht]: ["GET", "/signal-catalogs", 200] }, () => ListSignalCatalogsRequest$, () => ListSignalCatalogsResponse$
|
|
2034
|
+
];
|
|
2035
|
+
var ListStateTemplates$ = [9, n0, _LST,
|
|
2036
|
+
{ [_ht]: ["GET", "/state-templates", 200] }, () => ListStateTemplatesRequest$, () => ListStateTemplatesResponse$
|
|
2037
|
+
];
|
|
2038
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2039
|
+
{ [_ht]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2040
|
+
];
|
|
2041
|
+
var ListVehicles$ = [9, n0, _LV,
|
|
2042
|
+
{ [_ht]: ["GET", "/vehicles", 200] }, () => ListVehiclesRequest$, () => ListVehiclesResponse$
|
|
2043
|
+
];
|
|
2044
|
+
var ListVehiclesInFleet$ = [9, n0, _LVIF,
|
|
2045
|
+
{ [_ht]: ["GET", "/fleets/{fleetId}/vehicles", 200] }, () => ListVehiclesInFleetRequest$, () => ListVehiclesInFleetResponse$
|
|
2046
|
+
];
|
|
2047
|
+
var PutEncryptionConfiguration$ = [9, n0, _PEC,
|
|
2048
|
+
{ [_ht]: ["POST", "/encryptionConfiguration", 200] }, () => PutEncryptionConfigurationRequest$, () => PutEncryptionConfigurationResponse$
|
|
2049
|
+
];
|
|
2050
|
+
var PutLoggingOptions$ = [9, n0, _PLO,
|
|
2051
|
+
{ [_ht]: ["PUT", "/loggingOptions", 204] }, () => PutLoggingOptionsRequest$, () => PutLoggingOptionsResponse$
|
|
2052
|
+
];
|
|
2053
|
+
var RegisterAccount$ = [9, n0, _RAe,
|
|
2054
|
+
{ [_ht]: ["POST", "/account/registration", 200] }, () => RegisterAccountRequest$, () => RegisterAccountResponse$
|
|
2055
|
+
];
|
|
2056
|
+
var TagResource$ = [9, n0, _TRa,
|
|
2057
|
+
{ [_ht]: ["POST", "/tags", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2058
|
+
];
|
|
2059
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2060
|
+
{ [_ht]: ["DELETE", "/tags", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2061
|
+
];
|
|
2062
|
+
var UpdateCampaign$ = [9, n0, _UC,
|
|
2063
|
+
{ [_ht]: ["PUT", "/campaigns/{name}", 200] }, () => UpdateCampaignRequest$, () => UpdateCampaignResponse$
|
|
2064
|
+
];
|
|
2065
|
+
var UpdateDecoderManifest$ = [9, n0, _UDM,
|
|
2066
|
+
{ [_ht]: ["PATCH", "/decoder-manifests/{name}", 200] }, () => UpdateDecoderManifestRequest$, () => UpdateDecoderManifestResponse$
|
|
2067
|
+
];
|
|
2068
|
+
var UpdateFleet$ = [9, n0, _UF,
|
|
2069
|
+
{ [_ht]: ["PATCH", "/fleets/{fleetId}", 204] }, () => UpdateFleetRequest$, () => UpdateFleetResponse$
|
|
2070
|
+
];
|
|
2071
|
+
var UpdateModelManifest$ = [9, n0, _UMM,
|
|
2072
|
+
{ [_ht]: ["PATCH", "/model-manifests/{name}", 200] }, () => UpdateModelManifestRequest$, () => UpdateModelManifestResponse$
|
|
2073
|
+
];
|
|
2074
|
+
var UpdateSignalCatalog$ = [9, n0, _USC,
|
|
2075
|
+
{ [_ht]: ["PATCH", "/signal-catalogs/{name}", 200] }, () => UpdateSignalCatalogRequest$, () => UpdateSignalCatalogResponse$
|
|
2076
|
+
];
|
|
2077
|
+
var UpdateStateTemplate$ = [9, n0, _UST,
|
|
2078
|
+
{ [_ht]: ["PATCH", "/state-templates/{identifier}", 200] }, () => UpdateStateTemplateRequest$, () => UpdateStateTemplateResponse$
|
|
2079
|
+
];
|
|
2080
|
+
var UpdateVehicle$ = [9, n0, _UV,
|
|
2081
|
+
{ [_ht]: ["PATCH", "/vehicles/{vehicleName}", 204] }, () => UpdateVehicleRequest$, () => UpdateVehicleResponse$
|
|
2082
|
+
];
|
|
2083
|
+
|
|
2084
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2085
|
+
return {
|
|
2086
|
+
apiVersion: "2021-06-17",
|
|
2087
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2088
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2089
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2090
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2091
|
+
extensions: config?.extensions ?? [],
|
|
2092
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultIoTFleetWiseHttpAuthSchemeProvider,
|
|
2093
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2094
|
+
{
|
|
2095
|
+
schemeId: "aws.auth#sigv4",
|
|
2096
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2097
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2098
|
+
},
|
|
2099
|
+
],
|
|
2100
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2101
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
2102
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2103
|
+
defaultNamespace: "com.amazonaws.iotfleetwise",
|
|
2104
|
+
errorTypeRegistries,
|
|
2105
|
+
version: "2021-06-17",
|
|
2106
|
+
serviceTarget: "IoTAutobahnControlPlane",
|
|
2107
|
+
},
|
|
2108
|
+
serviceId: config?.serviceId ?? "IoTFleetWise",
|
|
2109
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2110
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2111
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2112
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2113
|
+
};
|
|
2114
|
+
};
|
|
2115
|
+
|
|
2116
|
+
const getRuntimeConfig = (config) => {
|
|
2117
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2118
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2119
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2120
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2121
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2122
|
+
const loaderConfig = {
|
|
2123
|
+
profile: config?.profile,
|
|
2124
|
+
logger: clientSharedValues.logger,
|
|
2125
|
+
};
|
|
2126
|
+
return {
|
|
2127
|
+
...clientSharedValues,
|
|
2128
|
+
...config,
|
|
2129
|
+
runtime: "node",
|
|
2130
|
+
defaultsMode,
|
|
2131
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2132
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2133
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2134
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2135
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2136
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2137
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2138
|
+
retryMode: config?.retryMode ??
|
|
2139
|
+
loadConfig({
|
|
2140
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2141
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2142
|
+
}, config),
|
|
2143
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2144
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2145
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2146
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2147
|
+
};
|
|
2148
|
+
};
|
|
2149
|
+
|
|
34
2150
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2151
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2152
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1119,98 +3235,364 @@ const SignalNodeType = {
|
|
|
1119
3235
|
SENSOR: "SENSOR",
|
|
1120
3236
|
};
|
|
1121
3237
|
|
|
3238
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3239
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3240
|
+
exports.Actuator$ = Actuator$;
|
|
3241
|
+
exports.AssociateVehicleFleet$ = AssociateVehicleFleet$;
|
|
1122
3242
|
exports.AssociateVehicleFleetCommand = AssociateVehicleFleetCommand;
|
|
3243
|
+
exports.AssociateVehicleFleetRequest$ = AssociateVehicleFleetRequest$;
|
|
3244
|
+
exports.AssociateVehicleFleetResponse$ = AssociateVehicleFleetResponse$;
|
|
3245
|
+
exports.Attribute$ = Attribute$;
|
|
3246
|
+
exports.BatchCreateVehicle$ = BatchCreateVehicle$;
|
|
1123
3247
|
exports.BatchCreateVehicleCommand = BatchCreateVehicleCommand;
|
|
3248
|
+
exports.BatchCreateVehicleRequest$ = BatchCreateVehicleRequest$;
|
|
3249
|
+
exports.BatchCreateVehicleResponse$ = BatchCreateVehicleResponse$;
|
|
3250
|
+
exports.BatchUpdateVehicle$ = BatchUpdateVehicle$;
|
|
1124
3251
|
exports.BatchUpdateVehicleCommand = BatchUpdateVehicleCommand;
|
|
3252
|
+
exports.BatchUpdateVehicleRequest$ = BatchUpdateVehicleRequest$;
|
|
3253
|
+
exports.BatchUpdateVehicleResponse$ = BatchUpdateVehicleResponse$;
|
|
3254
|
+
exports.Branch$ = Branch$;
|
|
1125
3255
|
exports.CampaignStatus = CampaignStatus;
|
|
3256
|
+
exports.CampaignSummary$ = CampaignSummary$;
|
|
3257
|
+
exports.CanDbcDefinition$ = CanDbcDefinition$;
|
|
3258
|
+
exports.CanInterface$ = CanInterface$;
|
|
3259
|
+
exports.CanSignal$ = CanSignal$;
|
|
3260
|
+
exports.CloudWatchLogDeliveryOptions$ = CloudWatchLogDeliveryOptions$;
|
|
3261
|
+
exports.CollectionScheme$ = CollectionScheme$;
|
|
1126
3262
|
exports.Compression = Compression;
|
|
3263
|
+
exports.ConditionBasedCollectionScheme$ = ConditionBasedCollectionScheme$;
|
|
3264
|
+
exports.ConditionBasedSignalFetchConfig$ = ConditionBasedSignalFetchConfig$;
|
|
3265
|
+
exports.ConflictException = ConflictException;
|
|
3266
|
+
exports.ConflictException$ = ConflictException$;
|
|
3267
|
+
exports.CreateCampaign$ = CreateCampaign$;
|
|
1127
3268
|
exports.CreateCampaignCommand = CreateCampaignCommand;
|
|
3269
|
+
exports.CreateCampaignRequest$ = CreateCampaignRequest$;
|
|
3270
|
+
exports.CreateCampaignResponse$ = CreateCampaignResponse$;
|
|
3271
|
+
exports.CreateDecoderManifest$ = CreateDecoderManifest$;
|
|
1128
3272
|
exports.CreateDecoderManifestCommand = CreateDecoderManifestCommand;
|
|
3273
|
+
exports.CreateDecoderManifestRequest$ = CreateDecoderManifestRequest$;
|
|
3274
|
+
exports.CreateDecoderManifestResponse$ = CreateDecoderManifestResponse$;
|
|
3275
|
+
exports.CreateFleet$ = CreateFleet$;
|
|
1129
3276
|
exports.CreateFleetCommand = CreateFleetCommand;
|
|
3277
|
+
exports.CreateFleetRequest$ = CreateFleetRequest$;
|
|
3278
|
+
exports.CreateFleetResponse$ = CreateFleetResponse$;
|
|
3279
|
+
exports.CreateModelManifest$ = CreateModelManifest$;
|
|
1130
3280
|
exports.CreateModelManifestCommand = CreateModelManifestCommand;
|
|
3281
|
+
exports.CreateModelManifestRequest$ = CreateModelManifestRequest$;
|
|
3282
|
+
exports.CreateModelManifestResponse$ = CreateModelManifestResponse$;
|
|
3283
|
+
exports.CreateSignalCatalog$ = CreateSignalCatalog$;
|
|
1131
3284
|
exports.CreateSignalCatalogCommand = CreateSignalCatalogCommand;
|
|
3285
|
+
exports.CreateSignalCatalogRequest$ = CreateSignalCatalogRequest$;
|
|
3286
|
+
exports.CreateSignalCatalogResponse$ = CreateSignalCatalogResponse$;
|
|
3287
|
+
exports.CreateStateTemplate$ = CreateStateTemplate$;
|
|
1132
3288
|
exports.CreateStateTemplateCommand = CreateStateTemplateCommand;
|
|
3289
|
+
exports.CreateStateTemplateRequest$ = CreateStateTemplateRequest$;
|
|
3290
|
+
exports.CreateStateTemplateResponse$ = CreateStateTemplateResponse$;
|
|
3291
|
+
exports.CreateVehicle$ = CreateVehicle$;
|
|
1133
3292
|
exports.CreateVehicleCommand = CreateVehicleCommand;
|
|
3293
|
+
exports.CreateVehicleError$ = CreateVehicleError$;
|
|
3294
|
+
exports.CreateVehicleRequest$ = CreateVehicleRequest$;
|
|
3295
|
+
exports.CreateVehicleRequestItem$ = CreateVehicleRequestItem$;
|
|
3296
|
+
exports.CreateVehicleResponse$ = CreateVehicleResponse$;
|
|
3297
|
+
exports.CreateVehicleResponseItem$ = CreateVehicleResponseItem$;
|
|
3298
|
+
exports.CustomDecodingInterface$ = CustomDecodingInterface$;
|
|
3299
|
+
exports.CustomDecodingSignal$ = CustomDecodingSignal$;
|
|
3300
|
+
exports.CustomProperty$ = CustomProperty$;
|
|
3301
|
+
exports.CustomStruct$ = CustomStruct$;
|
|
3302
|
+
exports.DataDestinationConfig$ = DataDestinationConfig$;
|
|
1134
3303
|
exports.DataFormat = DataFormat;
|
|
3304
|
+
exports.DataPartition$ = DataPartition$;
|
|
3305
|
+
exports.DataPartitionStorageOptions$ = DataPartitionStorageOptions$;
|
|
3306
|
+
exports.DataPartitionUploadOptions$ = DataPartitionUploadOptions$;
|
|
3307
|
+
exports.DecoderManifestSummary$ = DecoderManifestSummary$;
|
|
3308
|
+
exports.DecoderManifestValidationException = DecoderManifestValidationException;
|
|
3309
|
+
exports.DecoderManifestValidationException$ = DecoderManifestValidationException$;
|
|
1135
3310
|
exports.DefaultForUnmappedSignalsType = DefaultForUnmappedSignalsType;
|
|
3311
|
+
exports.DeleteCampaign$ = DeleteCampaign$;
|
|
1136
3312
|
exports.DeleteCampaignCommand = DeleteCampaignCommand;
|
|
3313
|
+
exports.DeleteCampaignRequest$ = DeleteCampaignRequest$;
|
|
3314
|
+
exports.DeleteCampaignResponse$ = DeleteCampaignResponse$;
|
|
3315
|
+
exports.DeleteDecoderManifest$ = DeleteDecoderManifest$;
|
|
1137
3316
|
exports.DeleteDecoderManifestCommand = DeleteDecoderManifestCommand;
|
|
3317
|
+
exports.DeleteDecoderManifestRequest$ = DeleteDecoderManifestRequest$;
|
|
3318
|
+
exports.DeleteDecoderManifestResponse$ = DeleteDecoderManifestResponse$;
|
|
3319
|
+
exports.DeleteFleet$ = DeleteFleet$;
|
|
1138
3320
|
exports.DeleteFleetCommand = DeleteFleetCommand;
|
|
3321
|
+
exports.DeleteFleetRequest$ = DeleteFleetRequest$;
|
|
3322
|
+
exports.DeleteFleetResponse$ = DeleteFleetResponse$;
|
|
3323
|
+
exports.DeleteModelManifest$ = DeleteModelManifest$;
|
|
1139
3324
|
exports.DeleteModelManifestCommand = DeleteModelManifestCommand;
|
|
3325
|
+
exports.DeleteModelManifestRequest$ = DeleteModelManifestRequest$;
|
|
3326
|
+
exports.DeleteModelManifestResponse$ = DeleteModelManifestResponse$;
|
|
3327
|
+
exports.DeleteSignalCatalog$ = DeleteSignalCatalog$;
|
|
1140
3328
|
exports.DeleteSignalCatalogCommand = DeleteSignalCatalogCommand;
|
|
3329
|
+
exports.DeleteSignalCatalogRequest$ = DeleteSignalCatalogRequest$;
|
|
3330
|
+
exports.DeleteSignalCatalogResponse$ = DeleteSignalCatalogResponse$;
|
|
3331
|
+
exports.DeleteStateTemplate$ = DeleteStateTemplate$;
|
|
1141
3332
|
exports.DeleteStateTemplateCommand = DeleteStateTemplateCommand;
|
|
3333
|
+
exports.DeleteStateTemplateRequest$ = DeleteStateTemplateRequest$;
|
|
3334
|
+
exports.DeleteStateTemplateResponse$ = DeleteStateTemplateResponse$;
|
|
3335
|
+
exports.DeleteVehicle$ = DeleteVehicle$;
|
|
1142
3336
|
exports.DeleteVehicleCommand = DeleteVehicleCommand;
|
|
3337
|
+
exports.DeleteVehicleRequest$ = DeleteVehicleRequest$;
|
|
3338
|
+
exports.DeleteVehicleResponse$ = DeleteVehicleResponse$;
|
|
1143
3339
|
exports.DiagnosticsMode = DiagnosticsMode;
|
|
3340
|
+
exports.DisassociateVehicleFleet$ = DisassociateVehicleFleet$;
|
|
1144
3341
|
exports.DisassociateVehicleFleetCommand = DisassociateVehicleFleetCommand;
|
|
3342
|
+
exports.DisassociateVehicleFleetRequest$ = DisassociateVehicleFleetRequest$;
|
|
3343
|
+
exports.DisassociateVehicleFleetResponse$ = DisassociateVehicleFleetResponse$;
|
|
1145
3344
|
exports.EncryptionStatus = EncryptionStatus;
|
|
1146
3345
|
exports.EncryptionType = EncryptionType;
|
|
3346
|
+
exports.FleetSummary$ = FleetSummary$;
|
|
3347
|
+
exports.FormattedVss$ = FormattedVss$;
|
|
3348
|
+
exports.GetCampaign$ = GetCampaign$;
|
|
1147
3349
|
exports.GetCampaignCommand = GetCampaignCommand;
|
|
3350
|
+
exports.GetCampaignRequest$ = GetCampaignRequest$;
|
|
3351
|
+
exports.GetCampaignResponse$ = GetCampaignResponse$;
|
|
3352
|
+
exports.GetDecoderManifest$ = GetDecoderManifest$;
|
|
1148
3353
|
exports.GetDecoderManifestCommand = GetDecoderManifestCommand;
|
|
3354
|
+
exports.GetDecoderManifestRequest$ = GetDecoderManifestRequest$;
|
|
3355
|
+
exports.GetDecoderManifestResponse$ = GetDecoderManifestResponse$;
|
|
3356
|
+
exports.GetEncryptionConfiguration$ = GetEncryptionConfiguration$;
|
|
1149
3357
|
exports.GetEncryptionConfigurationCommand = GetEncryptionConfigurationCommand;
|
|
3358
|
+
exports.GetEncryptionConfigurationRequest$ = GetEncryptionConfigurationRequest$;
|
|
3359
|
+
exports.GetEncryptionConfigurationResponse$ = GetEncryptionConfigurationResponse$;
|
|
3360
|
+
exports.GetFleet$ = GetFleet$;
|
|
1150
3361
|
exports.GetFleetCommand = GetFleetCommand;
|
|
3362
|
+
exports.GetFleetRequest$ = GetFleetRequest$;
|
|
3363
|
+
exports.GetFleetResponse$ = GetFleetResponse$;
|
|
3364
|
+
exports.GetLoggingOptions$ = GetLoggingOptions$;
|
|
1151
3365
|
exports.GetLoggingOptionsCommand = GetLoggingOptionsCommand;
|
|
3366
|
+
exports.GetLoggingOptionsRequest$ = GetLoggingOptionsRequest$;
|
|
3367
|
+
exports.GetLoggingOptionsResponse$ = GetLoggingOptionsResponse$;
|
|
3368
|
+
exports.GetModelManifest$ = GetModelManifest$;
|
|
1152
3369
|
exports.GetModelManifestCommand = GetModelManifestCommand;
|
|
3370
|
+
exports.GetModelManifestRequest$ = GetModelManifestRequest$;
|
|
3371
|
+
exports.GetModelManifestResponse$ = GetModelManifestResponse$;
|
|
3372
|
+
exports.GetRegisterAccountStatus$ = GetRegisterAccountStatus$;
|
|
1153
3373
|
exports.GetRegisterAccountStatusCommand = GetRegisterAccountStatusCommand;
|
|
3374
|
+
exports.GetRegisterAccountStatusRequest$ = GetRegisterAccountStatusRequest$;
|
|
3375
|
+
exports.GetRegisterAccountStatusResponse$ = GetRegisterAccountStatusResponse$;
|
|
3376
|
+
exports.GetSignalCatalog$ = GetSignalCatalog$;
|
|
1154
3377
|
exports.GetSignalCatalogCommand = GetSignalCatalogCommand;
|
|
3378
|
+
exports.GetSignalCatalogRequest$ = GetSignalCatalogRequest$;
|
|
3379
|
+
exports.GetSignalCatalogResponse$ = GetSignalCatalogResponse$;
|
|
3380
|
+
exports.GetStateTemplate$ = GetStateTemplate$;
|
|
1155
3381
|
exports.GetStateTemplateCommand = GetStateTemplateCommand;
|
|
3382
|
+
exports.GetStateTemplateRequest$ = GetStateTemplateRequest$;
|
|
3383
|
+
exports.GetStateTemplateResponse$ = GetStateTemplateResponse$;
|
|
3384
|
+
exports.GetVehicle$ = GetVehicle$;
|
|
1156
3385
|
exports.GetVehicleCommand = GetVehicleCommand;
|
|
3386
|
+
exports.GetVehicleRequest$ = GetVehicleRequest$;
|
|
3387
|
+
exports.GetVehicleResponse$ = GetVehicleResponse$;
|
|
3388
|
+
exports.GetVehicleStatus$ = GetVehicleStatus$;
|
|
1157
3389
|
exports.GetVehicleStatusCommand = GetVehicleStatusCommand;
|
|
3390
|
+
exports.GetVehicleStatusRequest$ = GetVehicleStatusRequest$;
|
|
3391
|
+
exports.GetVehicleStatusResponse$ = GetVehicleStatusResponse$;
|
|
3392
|
+
exports.IamRegistrationResponse$ = IamRegistrationResponse$;
|
|
3393
|
+
exports.IamResources$ = IamResources$;
|
|
3394
|
+
exports.ImportDecoderManifest$ = ImportDecoderManifest$;
|
|
1158
3395
|
exports.ImportDecoderManifestCommand = ImportDecoderManifestCommand;
|
|
3396
|
+
exports.ImportDecoderManifestRequest$ = ImportDecoderManifestRequest$;
|
|
3397
|
+
exports.ImportDecoderManifestResponse$ = ImportDecoderManifestResponse$;
|
|
3398
|
+
exports.ImportSignalCatalog$ = ImportSignalCatalog$;
|
|
1159
3399
|
exports.ImportSignalCatalogCommand = ImportSignalCatalogCommand;
|
|
3400
|
+
exports.ImportSignalCatalogRequest$ = ImportSignalCatalogRequest$;
|
|
3401
|
+
exports.ImportSignalCatalogResponse$ = ImportSignalCatalogResponse$;
|
|
3402
|
+
exports.InternalServerException = InternalServerException;
|
|
3403
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
3404
|
+
exports.InvalidNetworkInterface$ = InvalidNetworkInterface$;
|
|
3405
|
+
exports.InvalidNodeException = InvalidNodeException;
|
|
3406
|
+
exports.InvalidNodeException$ = InvalidNodeException$;
|
|
3407
|
+
exports.InvalidSignal$ = InvalidSignal$;
|
|
3408
|
+
exports.InvalidSignalDecoder$ = InvalidSignalDecoder$;
|
|
3409
|
+
exports.InvalidSignalsException = InvalidSignalsException;
|
|
3410
|
+
exports.InvalidSignalsException$ = InvalidSignalsException$;
|
|
1160
3411
|
exports.IoTFleetWise = IoTFleetWise;
|
|
1161
3412
|
exports.IoTFleetWiseClient = IoTFleetWiseClient;
|
|
3413
|
+
exports.IoTFleetWiseServiceException = IoTFleetWiseServiceException;
|
|
3414
|
+
exports.IoTFleetWiseServiceException$ = IoTFleetWiseServiceException$;
|
|
3415
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3416
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
3417
|
+
exports.ListCampaigns$ = ListCampaigns$;
|
|
1162
3418
|
exports.ListCampaignsCommand = ListCampaignsCommand;
|
|
3419
|
+
exports.ListCampaignsRequest$ = ListCampaignsRequest$;
|
|
3420
|
+
exports.ListCampaignsResponse$ = ListCampaignsResponse$;
|
|
3421
|
+
exports.ListDecoderManifestNetworkInterfaces$ = ListDecoderManifestNetworkInterfaces$;
|
|
1163
3422
|
exports.ListDecoderManifestNetworkInterfacesCommand = ListDecoderManifestNetworkInterfacesCommand;
|
|
3423
|
+
exports.ListDecoderManifestNetworkInterfacesRequest$ = ListDecoderManifestNetworkInterfacesRequest$;
|
|
3424
|
+
exports.ListDecoderManifestNetworkInterfacesResponse$ = ListDecoderManifestNetworkInterfacesResponse$;
|
|
3425
|
+
exports.ListDecoderManifestSignals$ = ListDecoderManifestSignals$;
|
|
1164
3426
|
exports.ListDecoderManifestSignalsCommand = ListDecoderManifestSignalsCommand;
|
|
3427
|
+
exports.ListDecoderManifestSignalsRequest$ = ListDecoderManifestSignalsRequest$;
|
|
3428
|
+
exports.ListDecoderManifestSignalsResponse$ = ListDecoderManifestSignalsResponse$;
|
|
3429
|
+
exports.ListDecoderManifests$ = ListDecoderManifests$;
|
|
1165
3430
|
exports.ListDecoderManifestsCommand = ListDecoderManifestsCommand;
|
|
3431
|
+
exports.ListDecoderManifestsRequest$ = ListDecoderManifestsRequest$;
|
|
3432
|
+
exports.ListDecoderManifestsResponse$ = ListDecoderManifestsResponse$;
|
|
3433
|
+
exports.ListFleets$ = ListFleets$;
|
|
1166
3434
|
exports.ListFleetsCommand = ListFleetsCommand;
|
|
3435
|
+
exports.ListFleetsForVehicle$ = ListFleetsForVehicle$;
|
|
1167
3436
|
exports.ListFleetsForVehicleCommand = ListFleetsForVehicleCommand;
|
|
3437
|
+
exports.ListFleetsForVehicleRequest$ = ListFleetsForVehicleRequest$;
|
|
3438
|
+
exports.ListFleetsForVehicleResponse$ = ListFleetsForVehicleResponse$;
|
|
3439
|
+
exports.ListFleetsRequest$ = ListFleetsRequest$;
|
|
3440
|
+
exports.ListFleetsResponse$ = ListFleetsResponse$;
|
|
3441
|
+
exports.ListModelManifestNodes$ = ListModelManifestNodes$;
|
|
1168
3442
|
exports.ListModelManifestNodesCommand = ListModelManifestNodesCommand;
|
|
3443
|
+
exports.ListModelManifestNodesRequest$ = ListModelManifestNodesRequest$;
|
|
3444
|
+
exports.ListModelManifestNodesResponse$ = ListModelManifestNodesResponse$;
|
|
3445
|
+
exports.ListModelManifests$ = ListModelManifests$;
|
|
1169
3446
|
exports.ListModelManifestsCommand = ListModelManifestsCommand;
|
|
3447
|
+
exports.ListModelManifestsRequest$ = ListModelManifestsRequest$;
|
|
3448
|
+
exports.ListModelManifestsResponse$ = ListModelManifestsResponse$;
|
|
1170
3449
|
exports.ListResponseScope = ListResponseScope;
|
|
3450
|
+
exports.ListSignalCatalogNodes$ = ListSignalCatalogNodes$;
|
|
1171
3451
|
exports.ListSignalCatalogNodesCommand = ListSignalCatalogNodesCommand;
|
|
3452
|
+
exports.ListSignalCatalogNodesRequest$ = ListSignalCatalogNodesRequest$;
|
|
3453
|
+
exports.ListSignalCatalogNodesResponse$ = ListSignalCatalogNodesResponse$;
|
|
3454
|
+
exports.ListSignalCatalogs$ = ListSignalCatalogs$;
|
|
1172
3455
|
exports.ListSignalCatalogsCommand = ListSignalCatalogsCommand;
|
|
3456
|
+
exports.ListSignalCatalogsRequest$ = ListSignalCatalogsRequest$;
|
|
3457
|
+
exports.ListSignalCatalogsResponse$ = ListSignalCatalogsResponse$;
|
|
3458
|
+
exports.ListStateTemplates$ = ListStateTemplates$;
|
|
1173
3459
|
exports.ListStateTemplatesCommand = ListStateTemplatesCommand;
|
|
3460
|
+
exports.ListStateTemplatesRequest$ = ListStateTemplatesRequest$;
|
|
3461
|
+
exports.ListStateTemplatesResponse$ = ListStateTemplatesResponse$;
|
|
3462
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1174
3463
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3464
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3465
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3466
|
+
exports.ListVehicles$ = ListVehicles$;
|
|
1175
3467
|
exports.ListVehiclesCommand = ListVehiclesCommand;
|
|
3468
|
+
exports.ListVehiclesInFleet$ = ListVehiclesInFleet$;
|
|
1176
3469
|
exports.ListVehiclesInFleetCommand = ListVehiclesInFleetCommand;
|
|
3470
|
+
exports.ListVehiclesInFleetRequest$ = ListVehiclesInFleetRequest$;
|
|
3471
|
+
exports.ListVehiclesInFleetResponse$ = ListVehiclesInFleetResponse$;
|
|
3472
|
+
exports.ListVehiclesRequest$ = ListVehiclesRequest$;
|
|
3473
|
+
exports.ListVehiclesResponse$ = ListVehiclesResponse$;
|
|
1177
3474
|
exports.LogType = LogType;
|
|
1178
3475
|
exports.ManifestStatus = ManifestStatus;
|
|
3476
|
+
exports.MessageSignal$ = MessageSignal$;
|
|
3477
|
+
exports.ModelManifestSummary$ = ModelManifestSummary$;
|
|
3478
|
+
exports.MqttTopicConfig$ = MqttTopicConfig$;
|
|
3479
|
+
exports.NetworkFileDefinition$ = NetworkFileDefinition$;
|
|
3480
|
+
exports.NetworkInterface$ = NetworkInterface$;
|
|
1179
3481
|
exports.NetworkInterfaceFailureReason = NetworkInterfaceFailureReason;
|
|
1180
3482
|
exports.NetworkInterfaceType = NetworkInterfaceType;
|
|
3483
|
+
exports.Node$ = Node$;
|
|
3484
|
+
exports.NodeCounts$ = NodeCounts$;
|
|
1181
3485
|
exports.NodeDataEncoding = NodeDataEncoding;
|
|
1182
3486
|
exports.NodeDataType = NodeDataType;
|
|
3487
|
+
exports.ObdInterface$ = ObdInterface$;
|
|
3488
|
+
exports.ObdSignal$ = ObdSignal$;
|
|
3489
|
+
exports.OnChangeStateTemplateUpdateStrategy$ = OnChangeStateTemplateUpdateStrategy$;
|
|
3490
|
+
exports.PeriodicStateTemplateUpdateStrategy$ = PeriodicStateTemplateUpdateStrategy$;
|
|
3491
|
+
exports.PrimitiveMessageDefinition$ = PrimitiveMessageDefinition$;
|
|
3492
|
+
exports.PutEncryptionConfiguration$ = PutEncryptionConfiguration$;
|
|
1183
3493
|
exports.PutEncryptionConfigurationCommand = PutEncryptionConfigurationCommand;
|
|
3494
|
+
exports.PutEncryptionConfigurationRequest$ = PutEncryptionConfigurationRequest$;
|
|
3495
|
+
exports.PutEncryptionConfigurationResponse$ = PutEncryptionConfigurationResponse$;
|
|
3496
|
+
exports.PutLoggingOptions$ = PutLoggingOptions$;
|
|
1184
3497
|
exports.PutLoggingOptionsCommand = PutLoggingOptionsCommand;
|
|
3498
|
+
exports.PutLoggingOptionsRequest$ = PutLoggingOptionsRequest$;
|
|
3499
|
+
exports.PutLoggingOptionsResponse$ = PutLoggingOptionsResponse$;
|
|
3500
|
+
exports.ROS2PrimitiveMessageDefinition$ = ROS2PrimitiveMessageDefinition$;
|
|
1185
3501
|
exports.ROS2PrimitiveType = ROS2PrimitiveType;
|
|
3502
|
+
exports.RegisterAccount$ = RegisterAccount$;
|
|
1186
3503
|
exports.RegisterAccountCommand = RegisterAccountCommand;
|
|
3504
|
+
exports.RegisterAccountRequest$ = RegisterAccountRequest$;
|
|
3505
|
+
exports.RegisterAccountResponse$ = RegisterAccountResponse$;
|
|
1187
3506
|
exports.RegistrationStatus = RegistrationStatus;
|
|
3507
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3508
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3509
|
+
exports.S3Config$ = S3Config$;
|
|
3510
|
+
exports.Sensor$ = Sensor$;
|
|
3511
|
+
exports.SignalCatalogSummary$ = SignalCatalogSummary$;
|
|
3512
|
+
exports.SignalDecoder$ = SignalDecoder$;
|
|
1188
3513
|
exports.SignalDecoderFailureReason = SignalDecoderFailureReason;
|
|
1189
3514
|
exports.SignalDecoderType = SignalDecoderType;
|
|
3515
|
+
exports.SignalFetchConfig$ = SignalFetchConfig$;
|
|
3516
|
+
exports.SignalFetchInformation$ = SignalFetchInformation$;
|
|
3517
|
+
exports.SignalInformation$ = SignalInformation$;
|
|
1190
3518
|
exports.SignalNodeType = SignalNodeType;
|
|
1191
3519
|
exports.SignalValueType = SignalValueType;
|
|
1192
3520
|
exports.SpoolingMode = SpoolingMode;
|
|
3521
|
+
exports.StateTemplateAssociation$ = StateTemplateAssociation$;
|
|
3522
|
+
exports.StateTemplateSummary$ = StateTemplateSummary$;
|
|
3523
|
+
exports.StateTemplateUpdateStrategy$ = StateTemplateUpdateStrategy$;
|
|
1193
3524
|
exports.StorageCompressionFormat = StorageCompressionFormat;
|
|
3525
|
+
exports.StorageMaximumSize$ = StorageMaximumSize$;
|
|
1194
3526
|
exports.StorageMaximumSizeUnit = StorageMaximumSizeUnit;
|
|
3527
|
+
exports.StorageMinimumTimeToLive$ = StorageMinimumTimeToLive$;
|
|
1195
3528
|
exports.StorageMinimumTimeToLiveUnit = StorageMinimumTimeToLiveUnit;
|
|
3529
|
+
exports.StructuredMessage$ = StructuredMessage$;
|
|
3530
|
+
exports.StructuredMessageFieldNameAndDataTypePair$ = StructuredMessageFieldNameAndDataTypePair$;
|
|
3531
|
+
exports.StructuredMessageListDefinition$ = StructuredMessageListDefinition$;
|
|
1196
3532
|
exports.StructuredMessageListType = StructuredMessageListType;
|
|
3533
|
+
exports.Tag$ = Tag$;
|
|
3534
|
+
exports.TagResource$ = TagResource$;
|
|
1197
3535
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3536
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3537
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3538
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3539
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3540
|
+
exports.TimeBasedCollectionScheme$ = TimeBasedCollectionScheme$;
|
|
3541
|
+
exports.TimeBasedSignalFetchConfig$ = TimeBasedSignalFetchConfig$;
|
|
3542
|
+
exports.TimePeriod$ = TimePeriod$;
|
|
1198
3543
|
exports.TimeUnit = TimeUnit;
|
|
3544
|
+
exports.TimestreamConfig$ = TimestreamConfig$;
|
|
3545
|
+
exports.TimestreamRegistrationResponse$ = TimestreamRegistrationResponse$;
|
|
3546
|
+
exports.TimestreamResources$ = TimestreamResources$;
|
|
1199
3547
|
exports.TriggerMode = TriggerMode;
|
|
3548
|
+
exports.UntagResource$ = UntagResource$;
|
|
1200
3549
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3550
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3551
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3552
|
+
exports.UpdateCampaign$ = UpdateCampaign$;
|
|
1201
3553
|
exports.UpdateCampaignAction = UpdateCampaignAction;
|
|
1202
3554
|
exports.UpdateCampaignCommand = UpdateCampaignCommand;
|
|
3555
|
+
exports.UpdateCampaignRequest$ = UpdateCampaignRequest$;
|
|
3556
|
+
exports.UpdateCampaignResponse$ = UpdateCampaignResponse$;
|
|
3557
|
+
exports.UpdateDecoderManifest$ = UpdateDecoderManifest$;
|
|
1203
3558
|
exports.UpdateDecoderManifestCommand = UpdateDecoderManifestCommand;
|
|
3559
|
+
exports.UpdateDecoderManifestRequest$ = UpdateDecoderManifestRequest$;
|
|
3560
|
+
exports.UpdateDecoderManifestResponse$ = UpdateDecoderManifestResponse$;
|
|
3561
|
+
exports.UpdateFleet$ = UpdateFleet$;
|
|
1204
3562
|
exports.UpdateFleetCommand = UpdateFleetCommand;
|
|
3563
|
+
exports.UpdateFleetRequest$ = UpdateFleetRequest$;
|
|
3564
|
+
exports.UpdateFleetResponse$ = UpdateFleetResponse$;
|
|
1205
3565
|
exports.UpdateMode = UpdateMode;
|
|
3566
|
+
exports.UpdateModelManifest$ = UpdateModelManifest$;
|
|
1206
3567
|
exports.UpdateModelManifestCommand = UpdateModelManifestCommand;
|
|
3568
|
+
exports.UpdateModelManifestRequest$ = UpdateModelManifestRequest$;
|
|
3569
|
+
exports.UpdateModelManifestResponse$ = UpdateModelManifestResponse$;
|
|
3570
|
+
exports.UpdateSignalCatalog$ = UpdateSignalCatalog$;
|
|
1207
3571
|
exports.UpdateSignalCatalogCommand = UpdateSignalCatalogCommand;
|
|
3572
|
+
exports.UpdateSignalCatalogRequest$ = UpdateSignalCatalogRequest$;
|
|
3573
|
+
exports.UpdateSignalCatalogResponse$ = UpdateSignalCatalogResponse$;
|
|
3574
|
+
exports.UpdateStateTemplate$ = UpdateStateTemplate$;
|
|
1208
3575
|
exports.UpdateStateTemplateCommand = UpdateStateTemplateCommand;
|
|
3576
|
+
exports.UpdateStateTemplateRequest$ = UpdateStateTemplateRequest$;
|
|
3577
|
+
exports.UpdateStateTemplateResponse$ = UpdateStateTemplateResponse$;
|
|
3578
|
+
exports.UpdateVehicle$ = UpdateVehicle$;
|
|
1209
3579
|
exports.UpdateVehicleCommand = UpdateVehicleCommand;
|
|
3580
|
+
exports.UpdateVehicleError$ = UpdateVehicleError$;
|
|
3581
|
+
exports.UpdateVehicleRequest$ = UpdateVehicleRequest$;
|
|
3582
|
+
exports.UpdateVehicleRequestItem$ = UpdateVehicleRequestItem$;
|
|
3583
|
+
exports.UpdateVehicleResponse$ = UpdateVehicleResponse$;
|
|
3584
|
+
exports.UpdateVehicleResponseItem$ = UpdateVehicleResponseItem$;
|
|
3585
|
+
exports.ValidationException = ValidationException;
|
|
3586
|
+
exports.ValidationException$ = ValidationException$;
|
|
3587
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1210
3588
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1211
3589
|
exports.VehicleAssociationBehavior = VehicleAssociationBehavior;
|
|
3590
|
+
exports.VehicleMiddleware$ = VehicleMiddleware$;
|
|
1212
3591
|
exports.VehicleMiddlewareProtocol = VehicleMiddlewareProtocol;
|
|
1213
3592
|
exports.VehicleState = VehicleState;
|
|
3593
|
+
exports.VehicleStatus$ = VehicleStatus$;
|
|
3594
|
+
exports.VehicleSummary$ = VehicleSummary$;
|
|
3595
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1214
3596
|
exports.paginateGetVehicleStatus = paginateGetVehicleStatus;
|
|
1215
3597
|
exports.paginateListCampaigns = paginateListCampaigns;
|
|
1216
3598
|
exports.paginateListDecoderManifestNetworkInterfaces = paginateListDecoderManifestNetworkInterfaces;
|