@aws-sdk/client-iotfleetwise 3.987.0 → 3.989.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 +76 -2267
- package/dist-cjs/models/IoTFleetWiseServiceException.js +12 -0
- package/dist-cjs/models/errors.js +168 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1815 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +87 -81
- package/dist-types/schemas/schemas_0.d.ts +17 -10
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -10
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var IoTFleetWiseServiceException = require('./models/IoTFleetWiseServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1951 +113,6 @@ class IoTFleetWiseClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class IoTFleetWiseServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, IoTFleetWiseServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends IoTFleetWiseServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends IoTFleetWiseServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
retryAfterSeconds;
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "InternalServerException",
|
|
139
|
-
$fault: "server",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
143
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class LimitExceededException extends IoTFleetWiseServiceException {
|
|
147
|
-
name = "LimitExceededException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
resourceId;
|
|
150
|
-
resourceType;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "LimitExceededException",
|
|
154
|
-
$fault: "client",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
158
|
-
this.resourceId = opts.resourceId;
|
|
159
|
-
this.resourceType = opts.resourceType;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ResourceNotFoundException extends IoTFleetWiseServiceException {
|
|
163
|
-
name = "ResourceNotFoundException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
resourceId;
|
|
166
|
-
resourceType;
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "ResourceNotFoundException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
174
|
-
this.resourceId = opts.resourceId;
|
|
175
|
-
this.resourceType = opts.resourceType;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
class ThrottlingException extends IoTFleetWiseServiceException {
|
|
179
|
-
name = "ThrottlingException";
|
|
180
|
-
$fault = "client";
|
|
181
|
-
quotaCode;
|
|
182
|
-
serviceCode;
|
|
183
|
-
retryAfterSeconds;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ThrottlingException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
191
|
-
this.quotaCode = opts.quotaCode;
|
|
192
|
-
this.serviceCode = opts.serviceCode;
|
|
193
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
class ValidationException extends IoTFleetWiseServiceException {
|
|
197
|
-
name = "ValidationException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
reason;
|
|
200
|
-
fieldList;
|
|
201
|
-
constructor(opts) {
|
|
202
|
-
super({
|
|
203
|
-
name: "ValidationException",
|
|
204
|
-
$fault: "client",
|
|
205
|
-
...opts,
|
|
206
|
-
});
|
|
207
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
208
|
-
this.reason = opts.reason;
|
|
209
|
-
this.fieldList = opts.fieldList;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
class ConflictException extends IoTFleetWiseServiceException {
|
|
213
|
-
name = "ConflictException";
|
|
214
|
-
$fault = "client";
|
|
215
|
-
resource;
|
|
216
|
-
resourceType;
|
|
217
|
-
constructor(opts) {
|
|
218
|
-
super({
|
|
219
|
-
name: "ConflictException",
|
|
220
|
-
$fault: "client",
|
|
221
|
-
...opts,
|
|
222
|
-
});
|
|
223
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
224
|
-
this.resource = opts.resource;
|
|
225
|
-
this.resourceType = opts.resourceType;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class DecoderManifestValidationException extends IoTFleetWiseServiceException {
|
|
229
|
-
name = "DecoderManifestValidationException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
invalidSignals;
|
|
232
|
-
invalidNetworkInterfaces;
|
|
233
|
-
constructor(opts) {
|
|
234
|
-
super({
|
|
235
|
-
name: "DecoderManifestValidationException",
|
|
236
|
-
$fault: "client",
|
|
237
|
-
...opts,
|
|
238
|
-
});
|
|
239
|
-
Object.setPrototypeOf(this, DecoderManifestValidationException.prototype);
|
|
240
|
-
this.invalidSignals = opts.invalidSignals;
|
|
241
|
-
this.invalidNetworkInterfaces = opts.invalidNetworkInterfaces;
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
class InvalidSignalsException extends IoTFleetWiseServiceException {
|
|
245
|
-
name = "InvalidSignalsException";
|
|
246
|
-
$fault = "client";
|
|
247
|
-
invalidSignals;
|
|
248
|
-
constructor(opts) {
|
|
249
|
-
super({
|
|
250
|
-
name: "InvalidSignalsException",
|
|
251
|
-
$fault: "client",
|
|
252
|
-
...opts,
|
|
253
|
-
});
|
|
254
|
-
Object.setPrototypeOf(this, InvalidSignalsException.prototype);
|
|
255
|
-
this.invalidSignals = opts.invalidSignals;
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
class InvalidNodeException extends IoTFleetWiseServiceException {
|
|
259
|
-
name = "InvalidNodeException";
|
|
260
|
-
$fault = "client";
|
|
261
|
-
invalidNodes;
|
|
262
|
-
reason;
|
|
263
|
-
constructor(opts) {
|
|
264
|
-
super({
|
|
265
|
-
name: "InvalidNodeException",
|
|
266
|
-
$fault: "client",
|
|
267
|
-
...opts,
|
|
268
|
-
});
|
|
269
|
-
Object.setPrototypeOf(this, InvalidNodeException.prototype);
|
|
270
|
-
this.invalidNodes = opts.invalidNodes;
|
|
271
|
-
this.reason = opts.reason;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
const _A = "Actuator";
|
|
276
|
-
const _ADE = "AccessDeniedException";
|
|
277
|
-
const _AVF = "AssociateVehicleFleet";
|
|
278
|
-
const _AVFR = "AssociateVehicleFleetRequest";
|
|
279
|
-
const _AVFRs = "AssociateVehicleFleetResponse";
|
|
280
|
-
const _At = "Attribute";
|
|
281
|
-
const _B = "Branch";
|
|
282
|
-
const _BCV = "BatchCreateVehicle";
|
|
283
|
-
const _BCVR = "BatchCreateVehicleRequest";
|
|
284
|
-
const _BCVRa = "BatchCreateVehicleResponse";
|
|
285
|
-
const _BUV = "BatchUpdateVehicle";
|
|
286
|
-
const _BUVR = "BatchUpdateVehicleRequest";
|
|
287
|
-
const _BUVRa = "BatchUpdateVehicleResponse";
|
|
288
|
-
const _CBCS = "ConditionBasedCollectionScheme";
|
|
289
|
-
const _CBSFC = "ConditionBasedSignalFetchConfig";
|
|
290
|
-
const _CC = "CreateCampaign";
|
|
291
|
-
const _CCR = "CreateCampaignRequest";
|
|
292
|
-
const _CCRr = "CreateCampaignResponse";
|
|
293
|
-
const _CDD = "CanDbcDefinition";
|
|
294
|
-
const _CDI = "CustomDecodingInterface";
|
|
295
|
-
const _CDM = "CreateDecoderManifest";
|
|
296
|
-
const _CDMR = "CreateDecoderManifestRequest";
|
|
297
|
-
const _CDMRr = "CreateDecoderManifestResponse";
|
|
298
|
-
const _CDS = "CustomDecodingSignal";
|
|
299
|
-
const _CE = "ConflictException";
|
|
300
|
-
const _CF = "CreateFleet";
|
|
301
|
-
const _CFR = "CreateFleetRequest";
|
|
302
|
-
const _CFRr = "CreateFleetResponse";
|
|
303
|
-
const _CI = "CanInterface";
|
|
304
|
-
const _CMM = "CreateModelManifest";
|
|
305
|
-
const _CMMR = "CreateModelManifestRequest";
|
|
306
|
-
const _CMMRr = "CreateModelManifestResponse";
|
|
307
|
-
const _CP = "CustomProperty";
|
|
308
|
-
const _CS = "CampaignSummary";
|
|
309
|
-
const _CSC = "CreateSignalCatalog";
|
|
310
|
-
const _CSCR = "CreateSignalCatalogRequest";
|
|
311
|
-
const _CSCRr = "CreateSignalCatalogResponse";
|
|
312
|
-
const _CST = "CreateStateTemplate";
|
|
313
|
-
const _CSTR = "CreateStateTemplateRequest";
|
|
314
|
-
const _CSTRr = "CreateStateTemplateResponse";
|
|
315
|
-
const _CSa = "CanSignal";
|
|
316
|
-
const _CSo = "CollectionScheme";
|
|
317
|
-
const _CSu = "CustomStruct";
|
|
318
|
-
const _CV = "CreateVehicle";
|
|
319
|
-
const _CVE = "CreateVehicleError";
|
|
320
|
-
const _CVR = "CreateVehicleRequest";
|
|
321
|
-
const _CVRI = "CreateVehicleRequestItem";
|
|
322
|
-
const _CVRIr = "CreateVehicleResponseItem";
|
|
323
|
-
const _CVRr = "CreateVehicleResponse";
|
|
324
|
-
const _CWLDO = "CloudWatchLogDeliveryOptions";
|
|
325
|
-
const _DC = "DeleteCampaign";
|
|
326
|
-
const _DCR = "DeleteCampaignRequest";
|
|
327
|
-
const _DCRe = "DeleteCampaignResponse";
|
|
328
|
-
const _DDC = "DataDestinationConfigs";
|
|
329
|
-
const _DDCa = "DataDestinationConfig";
|
|
330
|
-
const _DDM = "DeleteDecoderManifest";
|
|
331
|
-
const _DDMR = "DeleteDecoderManifestRequest";
|
|
332
|
-
const _DDMRe = "DeleteDecoderManifestResponse";
|
|
333
|
-
const _DEDNPL = "DataExtraDimensionNodePathList";
|
|
334
|
-
const _DF = "DeleteFleet";
|
|
335
|
-
const _DFR = "DeleteFleetRequest";
|
|
336
|
-
const _DFRe = "DeleteFleetResponse";
|
|
337
|
-
const _DMM = "DeleteModelManifest";
|
|
338
|
-
const _DMMR = "DeleteModelManifestRequest";
|
|
339
|
-
const _DMMRe = "DeleteModelManifestResponse";
|
|
340
|
-
const _DMS = "DecoderManifestSummary";
|
|
341
|
-
const _DMVE = "DecoderManifestValidationException";
|
|
342
|
-
const _DP = "DataPartition";
|
|
343
|
-
const _DPSO = "DataPartitionStorageOptions";
|
|
344
|
-
const _DPUO = "DataPartitionUploadOptions";
|
|
345
|
-
const _DPa = "DataPartitions";
|
|
346
|
-
const _DSC = "DeleteSignalCatalog";
|
|
347
|
-
const _DSCR = "DeleteSignalCatalogRequest";
|
|
348
|
-
const _DSCRe = "DeleteSignalCatalogResponse";
|
|
349
|
-
const _DST = "DeleteStateTemplate";
|
|
350
|
-
const _DSTR = "DeleteStateTemplateRequest";
|
|
351
|
-
const _DSTRe = "DeleteStateTemplateResponse";
|
|
352
|
-
const _DV = "DeleteVehicle";
|
|
353
|
-
const _DVF = "DisassociateVehicleFleet";
|
|
354
|
-
const _DVFR = "DisassociateVehicleFleetRequest";
|
|
355
|
-
const _DVFRi = "DisassociateVehicleFleetResponse";
|
|
356
|
-
const _DVR = "DeleteVehicleRequest";
|
|
357
|
-
const _DVRe = "DeleteVehicleResponse";
|
|
358
|
-
const _EEL = "EventExpressionList";
|
|
359
|
-
const _FS = "FleetSummary";
|
|
360
|
-
const _FV = "FormattedVss";
|
|
361
|
-
const _GC = "GetCampaign";
|
|
362
|
-
const _GCR = "GetCampaignRequest";
|
|
363
|
-
const _GCRe = "GetCampaignResponse";
|
|
364
|
-
const _GDM = "GetDecoderManifest";
|
|
365
|
-
const _GDMR = "GetDecoderManifestRequest";
|
|
366
|
-
const _GDMRe = "GetDecoderManifestResponse";
|
|
367
|
-
const _GEC = "GetEncryptionConfiguration";
|
|
368
|
-
const _GECR = "GetEncryptionConfigurationRequest";
|
|
369
|
-
const _GECRe = "GetEncryptionConfigurationResponse";
|
|
370
|
-
const _GF = "GetFleet";
|
|
371
|
-
const _GFR = "GetFleetRequest";
|
|
372
|
-
const _GFRe = "GetFleetResponse";
|
|
373
|
-
const _GLO = "GetLoggingOptions";
|
|
374
|
-
const _GLOR = "GetLoggingOptionsRequest";
|
|
375
|
-
const _GLORe = "GetLoggingOptionsResponse";
|
|
376
|
-
const _GMM = "GetModelManifest";
|
|
377
|
-
const _GMMR = "GetModelManifestRequest";
|
|
378
|
-
const _GMMRe = "GetModelManifestResponse";
|
|
379
|
-
const _GRAS = "GetRegisterAccountStatus";
|
|
380
|
-
const _GRASR = "GetRegisterAccountStatusRequest";
|
|
381
|
-
const _GRASRe = "GetRegisterAccountStatusResponse";
|
|
382
|
-
const _GSC = "GetSignalCatalog";
|
|
383
|
-
const _GSCR = "GetSignalCatalogRequest";
|
|
384
|
-
const _GSCRe = "GetSignalCatalogResponse";
|
|
385
|
-
const _GST = "GetStateTemplate";
|
|
386
|
-
const _GSTR = "GetStateTemplateRequest";
|
|
387
|
-
const _GSTRe = "GetStateTemplateResponse";
|
|
388
|
-
const _GV = "GetVehicle";
|
|
389
|
-
const _GVR = "GetVehicleRequest";
|
|
390
|
-
const _GVRe = "GetVehicleResponse";
|
|
391
|
-
const _GVS = "GetVehicleStatus";
|
|
392
|
-
const _GVSR = "GetVehicleStatusRequest";
|
|
393
|
-
const _GVSRe = "GetVehicleStatusResponse";
|
|
394
|
-
const _IDM = "ImportDecoderManifest";
|
|
395
|
-
const _IDMR = "ImportDecoderManifestRequest";
|
|
396
|
-
const _IDMRm = "ImportDecoderManifestResponse";
|
|
397
|
-
const _INE = "InvalidNodeException";
|
|
398
|
-
const _INI = "InvalidNetworkInterface";
|
|
399
|
-
const _INIn = "InvalidNetworkInterfaces";
|
|
400
|
-
const _IR = "IamResources";
|
|
401
|
-
const _IRR = "IamRegistrationResponse";
|
|
402
|
-
const _IS = "InvalidSignal";
|
|
403
|
-
const _ISC = "ImportSignalCatalog";
|
|
404
|
-
const _ISCR = "ImportSignalCatalogRequest";
|
|
405
|
-
const _ISCRm = "ImportSignalCatalogResponse";
|
|
406
|
-
const _ISD = "InvalidSignalDecoder";
|
|
407
|
-
const _ISDn = "InvalidSignalDecoders";
|
|
408
|
-
const _ISE = "InternalServerException";
|
|
409
|
-
const _ISEn = "InvalidSignalsException";
|
|
410
|
-
const _ISn = "InvalidSignals";
|
|
411
|
-
const _K = "Key";
|
|
412
|
-
const _LC = "ListCampaigns";
|
|
413
|
-
const _LCR = "ListCampaignsRequest";
|
|
414
|
-
const _LCRi = "ListCampaignsResponse";
|
|
415
|
-
const _LDM = "ListDecoderManifests";
|
|
416
|
-
const _LDMNI = "ListDecoderManifestNetworkInterfaces";
|
|
417
|
-
const _LDMNIR = "ListDecoderManifestNetworkInterfacesRequest";
|
|
418
|
-
const _LDMNIRi = "ListDecoderManifestNetworkInterfacesResponse";
|
|
419
|
-
const _LDMR = "ListDecoderManifestsRequest";
|
|
420
|
-
const _LDMRi = "ListDecoderManifestsResponse";
|
|
421
|
-
const _LDMS = "ListDecoderManifestSignals";
|
|
422
|
-
const _LDMSR = "ListDecoderManifestSignalsRequest";
|
|
423
|
-
const _LDMSRi = "ListDecoderManifestSignalsResponse";
|
|
424
|
-
const _LEE = "LimitExceededException";
|
|
425
|
-
const _LF = "ListFleets";
|
|
426
|
-
const _LFFV = "ListFleetsForVehicle";
|
|
427
|
-
const _LFFVR = "ListFleetsForVehicleRequest";
|
|
428
|
-
const _LFFVRi = "ListFleetsForVehicleResponse";
|
|
429
|
-
const _LFR = "ListFleetsRequest";
|
|
430
|
-
const _LFRi = "ListFleetsResponse";
|
|
431
|
-
const _LMM = "ListModelManifests";
|
|
432
|
-
const _LMMN = "ListModelManifestNodes";
|
|
433
|
-
const _LMMNR = "ListModelManifestNodesRequest";
|
|
434
|
-
const _LMMNRi = "ListModelManifestNodesResponse";
|
|
435
|
-
const _LMMR = "ListModelManifestsRequest";
|
|
436
|
-
const _LMMRi = "ListModelManifestsResponse";
|
|
437
|
-
const _LSC = "ListSignalCatalogs";
|
|
438
|
-
const _LSCN = "ListSignalCatalogNodes";
|
|
439
|
-
const _LSCNR = "ListSignalCatalogNodesRequest";
|
|
440
|
-
const _LSCNRi = "ListSignalCatalogNodesResponse";
|
|
441
|
-
const _LSCR = "ListSignalCatalogsRequest";
|
|
442
|
-
const _LSCRi = "ListSignalCatalogsResponse";
|
|
443
|
-
const _LST = "ListStateTemplates";
|
|
444
|
-
const _LSTR = "ListStateTemplatesRequest";
|
|
445
|
-
const _LSTRi = "ListStateTemplatesResponse";
|
|
446
|
-
const _LTFR = "ListTagsForResource";
|
|
447
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
448
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
449
|
-
const _LV = "ListVehicles";
|
|
450
|
-
const _LVIF = "ListVehiclesInFleet";
|
|
451
|
-
const _LVIFR = "ListVehiclesInFleetRequest";
|
|
452
|
-
const _LVIFRi = "ListVehiclesInFleetResponse";
|
|
453
|
-
const _LVR = "ListVehiclesRequest";
|
|
454
|
-
const _LVRi = "ListVehiclesResponse";
|
|
455
|
-
const _MMS = "ModelManifestSummary";
|
|
456
|
-
const _MS = "MessageSignal";
|
|
457
|
-
const _MTC = "MqttTopicConfig";
|
|
458
|
-
const _N = "Nodes";
|
|
459
|
-
const _NC = "NodeCounts";
|
|
460
|
-
const _NFD = "NetworkFileDefinitions";
|
|
461
|
-
const _NFDe = "NetworkFileDefinition";
|
|
462
|
-
const _NI = "NetworkInterface";
|
|
463
|
-
const _NIe = "NetworkInterfaces";
|
|
464
|
-
const _No = "Node";
|
|
465
|
-
const _OCSTUS = "OnChangeStateTemplateUpdateStrategy";
|
|
466
|
-
const _OI = "ObdInterface";
|
|
467
|
-
const _OS = "ObdSignal";
|
|
468
|
-
const _PEC = "PutEncryptionConfiguration";
|
|
469
|
-
const _PECR = "PutEncryptionConfigurationRequest";
|
|
470
|
-
const _PECRu = "PutEncryptionConfigurationResponse";
|
|
471
|
-
const _PLO = "PutLoggingOptions";
|
|
472
|
-
const _PLOR = "PutLoggingOptionsRequest";
|
|
473
|
-
const _PLORu = "PutLoggingOptionsResponse";
|
|
474
|
-
const _PMD = "PrimitiveMessageDefinition";
|
|
475
|
-
const _PSTUS = "PeriodicStateTemplateUpdateStrategy";
|
|
476
|
-
const _RA = "Retry-After";
|
|
477
|
-
const _RAR = "RegisterAccountRequest";
|
|
478
|
-
const _RARN = "ResourceARN";
|
|
479
|
-
const _RARe = "RegisterAccountResponse";
|
|
480
|
-
const _RAe = "RegisterAccount";
|
|
481
|
-
const _RNFE = "ResourceNotFoundException";
|
|
482
|
-
const _ROSPMD = "ROS2PrimitiveMessageDefinition";
|
|
483
|
-
const _S = "Sensor";
|
|
484
|
-
const _SC = "S3Config";
|
|
485
|
-
const _SCS = "SignalCatalogSummary";
|
|
486
|
-
const _SD = "SignalDecoder";
|
|
487
|
-
const _SDi = "SignalDecoders";
|
|
488
|
-
const _SFC = "SignalFetchConfig";
|
|
489
|
-
const _SFI = "SignalFetchInformation";
|
|
490
|
-
const _SFIL = "SignalFetchInformationList";
|
|
491
|
-
const _SI = "SignalInformation";
|
|
492
|
-
const _SIL = "SignalInformationList";
|
|
493
|
-
const _SL = "StorageLocation";
|
|
494
|
-
const _SM = "StructuredMessage";
|
|
495
|
-
const _SMD = "StructuredMessageDefinition";
|
|
496
|
-
const _SMFNADTP = "StructuredMessageFieldNameAndDataTypePair";
|
|
497
|
-
const _SMLD = "StructuredMessageListDefinition";
|
|
498
|
-
const _SMS = "StorageMaximumSize";
|
|
499
|
-
const _SMTTL = "StorageMinimumTimeToLive";
|
|
500
|
-
const _STA = "StateTemplateAssociation";
|
|
501
|
-
const _STAt = "StateTemplateAssociations";
|
|
502
|
-
const _STS = "StateTemplateSummary";
|
|
503
|
-
const _STSt = "StateTemplateSummaries";
|
|
504
|
-
const _STUS = "StateTemplateUpdateStrategy";
|
|
505
|
-
const _T = "Tags";
|
|
506
|
-
const _TBCS = "TimeBasedCollectionScheme";
|
|
507
|
-
const _TBSFC = "TimeBasedSignalFetchConfig";
|
|
508
|
-
const _TC = "TimestreamConfig";
|
|
509
|
-
const _TE = "ThrottlingException";
|
|
510
|
-
const _TK = "TagKeys";
|
|
511
|
-
const _TL = "TagList";
|
|
512
|
-
const _TP = "TimePeriod";
|
|
513
|
-
const _TR = "TimestreamResources";
|
|
514
|
-
const _TRR = "TagResourceRequest";
|
|
515
|
-
const _TRRa = "TagResourceResponse";
|
|
516
|
-
const _TRRi = "TimestreamRegistrationResponse";
|
|
517
|
-
const _TRa = "TagResource";
|
|
518
|
-
const _Ta = "Tag";
|
|
519
|
-
const _UC = "UpdateCampaign";
|
|
520
|
-
const _UCR = "UpdateCampaignRequest";
|
|
521
|
-
const _UCRp = "UpdateCampaignResponse";
|
|
522
|
-
const _UDM = "UpdateDecoderManifest";
|
|
523
|
-
const _UDMR = "UpdateDecoderManifestRequest";
|
|
524
|
-
const _UDMRp = "UpdateDecoderManifestResponse";
|
|
525
|
-
const _UF = "UpdateFleet";
|
|
526
|
-
const _UFR = "UpdateFleetRequest";
|
|
527
|
-
const _UFRp = "UpdateFleetResponse";
|
|
528
|
-
const _UMM = "UpdateModelManifest";
|
|
529
|
-
const _UMMR = "UpdateModelManifestRequest";
|
|
530
|
-
const _UMMRp = "UpdateModelManifestResponse";
|
|
531
|
-
const _UR = "UntagResource";
|
|
532
|
-
const _URR = "UntagResourceRequest";
|
|
533
|
-
const _URRn = "UntagResourceResponse";
|
|
534
|
-
const _USC = "UpdateSignalCatalog";
|
|
535
|
-
const _USCR = "UpdateSignalCatalogRequest";
|
|
536
|
-
const _USCRp = "UpdateSignalCatalogResponse";
|
|
537
|
-
const _UST = "UpdateStateTemplate";
|
|
538
|
-
const _USTR = "UpdateStateTemplateRequest";
|
|
539
|
-
const _USTRp = "UpdateStateTemplateResponse";
|
|
540
|
-
const _UV = "UpdateVehicle";
|
|
541
|
-
const _UVE = "UpdateVehicleError";
|
|
542
|
-
const _UVR = "UpdateVehicleRequest";
|
|
543
|
-
const _UVRI = "UpdateVehicleRequestItem";
|
|
544
|
-
const _UVRIp = "UpdateVehicleResponseItem";
|
|
545
|
-
const _UVRp = "UpdateVehicleResponse";
|
|
546
|
-
const _V = "Value";
|
|
547
|
-
const _VE = "ValidationException";
|
|
548
|
-
const _VEF = "ValidationExceptionField";
|
|
549
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
550
|
-
const _VM = "VehicleMiddleware";
|
|
551
|
-
const _VS = "VehicleStatus";
|
|
552
|
-
const _VSL = "VehicleStatusList";
|
|
553
|
-
const _VSe = "VehicleSummary";
|
|
554
|
-
const _a = "arn";
|
|
555
|
-
const _aB = "associationBehavior";
|
|
556
|
-
const _aEE = "actionEventExpression";
|
|
557
|
-
const _aN = "attributeNames";
|
|
558
|
-
const _aS = "accountStatus";
|
|
559
|
-
const _aUM = "attributeUpdateMode";
|
|
560
|
-
const _aV = "allowedValues";
|
|
561
|
-
const _aVs = "assignedValue";
|
|
562
|
-
const _aVt = "attributeValues";
|
|
563
|
-
const _ac = "actions";
|
|
564
|
-
const _act = "action";
|
|
565
|
-
const _actu = "actuator";
|
|
566
|
-
const _at = "attributes";
|
|
567
|
-
const _att = "attribute";
|
|
568
|
-
const _b = "branch";
|
|
569
|
-
const _bA = "bucketArn";
|
|
570
|
-
const _bL = "byteLength";
|
|
571
|
-
const _bML = "bitMaskLength";
|
|
572
|
-
const _bRS = "bitRightShift";
|
|
573
|
-
const _c = "client";
|
|
574
|
-
const _cAI = "customerAccountId";
|
|
575
|
-
const _cB = "conditionBased";
|
|
576
|
-
const _cBCS = "conditionBasedCollectionScheme";
|
|
577
|
-
const _cD = "canDbc";
|
|
578
|
-
const _cDF = "canDbcFiles";
|
|
579
|
-
const _cDI = "customDecodingInterface";
|
|
580
|
-
const _cDS = "customDecodingSignal";
|
|
581
|
-
const _cE = "conditionExpression";
|
|
582
|
-
const _cI = "canInterface";
|
|
583
|
-
const _cLV = "conditionLanguageVersion";
|
|
584
|
-
const _cN = "campaignName";
|
|
585
|
-
const _cS = "collectionScheme";
|
|
586
|
-
const _cSa = "campaignSummaries";
|
|
587
|
-
const _cSan = "canSignal";
|
|
588
|
-
const _cT = "creationTime";
|
|
589
|
-
const _cVE = "createVehicleErrors";
|
|
590
|
-
const _cVR = "createVehicleResponses";
|
|
591
|
-
const _cVRI = "createVehicleRequestItems";
|
|
592
|
-
const _cWLD = "cloudWatchLogDelivery";
|
|
593
|
-
const _ca = "campaigns";
|
|
594
|
-
const _cap = "capacity";
|
|
595
|
-
const _co = "comment";
|
|
596
|
-
const _cod = "code";
|
|
597
|
-
const _com = "compression";
|
|
598
|
-
const _d = "description";
|
|
599
|
-
const _dDC = "dataDestinationConfigs";
|
|
600
|
-
const _dE = "dataEncoding";
|
|
601
|
-
const _dED = "dataExtraDimensions";
|
|
602
|
-
const _dF = "dataFormat";
|
|
603
|
-
const _dFUS = "defaultForUnmappedSignals";
|
|
604
|
-
const _dM = "deprecationMessage";
|
|
605
|
-
const _dMA = "decoderManifestArn";
|
|
606
|
-
const _dMS = "decoderManifestSummaries";
|
|
607
|
-
const _dMi = "diagnosticsMode";
|
|
608
|
-
const _dP = "dataPartitions";
|
|
609
|
-
const _dPI = "dataPartitionId";
|
|
610
|
-
const _dRIS = "dtcRequestIntervalSeconds";
|
|
611
|
-
const _dT = "dataType";
|
|
612
|
-
const _dV = "defaultValue";
|
|
613
|
-
const _e = "error";
|
|
614
|
-
const _eE = "eventExpression";
|
|
615
|
-
const _eFM = "executionFrequencyMs";
|
|
616
|
-
const _eM = "errorMessage";
|
|
617
|
-
const _eRA = "executionRoleArn";
|
|
618
|
-
const _eS = "encryptionStatus";
|
|
619
|
-
const _eT = "expiryTime";
|
|
620
|
-
const _eTn = "encryptionType";
|
|
621
|
-
const _er = "errors";
|
|
622
|
-
const _ex = "expression";
|
|
623
|
-
const _f = "factor";
|
|
624
|
-
const _fCEE = "fetchConfigEventExpression";
|
|
625
|
-
const _fI = "fleetId";
|
|
626
|
-
const _fL = "fieldList";
|
|
627
|
-
const _fN = "fieldName";
|
|
628
|
-
const _fQN = "fullyQualifiedName";
|
|
629
|
-
const _fS = "fleetSummaries";
|
|
630
|
-
const _fl = "fleets";
|
|
631
|
-
const _h = "hint";
|
|
632
|
-
const _hE = "httpError";
|
|
633
|
-
const _hH = "httpHeader";
|
|
634
|
-
const _hQ = "httpQuery";
|
|
635
|
-
const _hTE = "hasTransmissionEcu";
|
|
636
|
-
const _ht = "http";
|
|
637
|
-
const _i = "id";
|
|
638
|
-
const _iBE = "isBigEndian";
|
|
639
|
-
const _iI = "interfaceId";
|
|
640
|
-
const _iN = "invalidNodes";
|
|
641
|
-
const _iNI = "invalidNetworkInterfaces";
|
|
642
|
-
const _iR = "iamResources";
|
|
643
|
-
const _iRR = "iamRegistrationResponse";
|
|
644
|
-
const _iS = "isSigned";
|
|
645
|
-
const _iSn = "invalidSignals";
|
|
646
|
-
const _id = "identifier";
|
|
647
|
-
const _kKI = "kmsKeyId";
|
|
648
|
-
const _l = "length";
|
|
649
|
-
const _lGN = "logGroupName";
|
|
650
|
-
const _lMT = "lastModificationTime";
|
|
651
|
-
const _lRS = "listResponseScope";
|
|
652
|
-
const _lT = "logType";
|
|
653
|
-
const _lTi = "listType";
|
|
654
|
-
const _m = "message";
|
|
655
|
-
const _mED = "metadataExtraDimensions";
|
|
656
|
-
const _mI = "messageId";
|
|
657
|
-
const _mMA = "modelManifestArn";
|
|
658
|
-
const _mMS = "modelManifestSummaries";
|
|
659
|
-
const _mR = "maxResults";
|
|
660
|
-
const _mS = "maximumSize";
|
|
661
|
-
const _mSC = "maxSampleCount";
|
|
662
|
-
const _mSIM = "minimumSamplingIntervalMs";
|
|
663
|
-
const _mSe = "messageSignal";
|
|
664
|
-
const _mT = "memberType";
|
|
665
|
-
const _mTA = "mqttTopicArn";
|
|
666
|
-
const _mTC = "mqttTopicConfig";
|
|
667
|
-
const _mTIM = "minimumTriggerIntervalMs";
|
|
668
|
-
const _mTTL = "minimumTimeToLive";
|
|
669
|
-
const _ma = "max";
|
|
670
|
-
const _mi = "min";
|
|
671
|
-
const _n = "name";
|
|
672
|
-
const _nC = "nodeCounts";
|
|
673
|
-
const _nFD = "networkFileDefinitions";
|
|
674
|
-
const _nI = "networkInterface";
|
|
675
|
-
const _nITA = "networkInterfacesToAdd";
|
|
676
|
-
const _nITR = "networkInterfacesToRemove";
|
|
677
|
-
const _nITU = "networkInterfacesToUpdate";
|
|
678
|
-
const _nIe = "networkInterfaces";
|
|
679
|
-
const _nT = "nextToken";
|
|
680
|
-
const _nTA = "nodesToAdd";
|
|
681
|
-
const _nTR = "nodesToRemove";
|
|
682
|
-
const _nTU = "nodesToUpdate";
|
|
683
|
-
const _no = "nodes";
|
|
684
|
-
const _o = "offset";
|
|
685
|
-
const _oC = "onChange";
|
|
686
|
-
const _oI = "obdInterface";
|
|
687
|
-
const _oS = "obdStandard";
|
|
688
|
-
const _oSb = "obdSignal";
|
|
689
|
-
const _p = "priority";
|
|
690
|
-
const _pM = "periodMs";
|
|
691
|
-
const _pMD = "primitiveMessageDefinition";
|
|
692
|
-
const _pN = "protocolName";
|
|
693
|
-
const _pRIS = "pidRequestIntervalSeconds";
|
|
694
|
-
const _pRL = "pidResponseLength";
|
|
695
|
-
const _pT = "primitiveType";
|
|
696
|
-
const _pTCD = "postTriggerCollectionDuration";
|
|
697
|
-
const _pV = "protocolVersion";
|
|
698
|
-
const _pe = "periodic";
|
|
699
|
-
const _pi = "pid";
|
|
700
|
-
const _pr = "prefix";
|
|
701
|
-
const _pro = "property";
|
|
702
|
-
const _qC = "quotaCode";
|
|
703
|
-
const _r = "resource";
|
|
704
|
-
const _rA = "roleArn";
|
|
705
|
-
const _rAS = "retryAfterSeconds";
|
|
706
|
-
const _rASe = "registerAccountStatus";
|
|
707
|
-
const _rAe = "resourceArn";
|
|
708
|
-
const _rI = "resourceId";
|
|
709
|
-
const _rMI = "requestMessageId";
|
|
710
|
-
const _rPMD = "ros2PrimitiveMessageDefinition";
|
|
711
|
-
const _rS = "registrationStatus";
|
|
712
|
-
const _rT = "resourceType";
|
|
713
|
-
const _re = "reason";
|
|
714
|
-
const _s = "status";
|
|
715
|
-
const _sB = "startBit";
|
|
716
|
-
const _sBt = "startByte";
|
|
717
|
-
const _sC = "serviceCode";
|
|
718
|
-
const _sCA = "signalCatalogArn";
|
|
719
|
-
const _sCF = "storageCompressionFormat";
|
|
720
|
-
const _sCS = "signalCatalogSummaries";
|
|
721
|
-
const _sCo = "s3Config";
|
|
722
|
-
const _sD = "signalDecoders";
|
|
723
|
-
const _sDTA = "signalDecodersToAdd";
|
|
724
|
-
const _sDTR = "signalDecodersToRemove";
|
|
725
|
-
const _sDTU = "signalDecodersToUpdate";
|
|
726
|
-
const _sFC = "signalFetchConfig";
|
|
727
|
-
const _sFQN = "structFullyQualifiedName";
|
|
728
|
-
const _sL = "storageLocation";
|
|
729
|
-
const _sM = "signalsMap";
|
|
730
|
-
const _sMD = "structuredMessageDefinition";
|
|
731
|
-
const _sMLD = "structuredMessageListDefinition";
|
|
732
|
-
const _sMe = "serviceMode";
|
|
733
|
-
const _sMp = "spoolingMode";
|
|
734
|
-
const _sMt = "structuredMessage";
|
|
735
|
-
const _sNT = "signalNodeType";
|
|
736
|
-
const _sO = "storageOptions";
|
|
737
|
-
const _sT = "startTime";
|
|
738
|
-
const _sTC = "signalsToCollect";
|
|
739
|
-
const _sTF = "signalsToFetch";
|
|
740
|
-
const _sTP = "stateTemplateProperties";
|
|
741
|
-
const _sTPTA = "stateTemplatePropertiesToAdd";
|
|
742
|
-
const _sTPTR = "stateTemplatePropertiesToRemove";
|
|
743
|
-
const _sTTA = "stateTemplatesToAdd";
|
|
744
|
-
const _sTTR = "stateTemplatesToRemove";
|
|
745
|
-
const _sTTU = "stateTemplatesToUpdate";
|
|
746
|
-
const _sTUR = "stateTemplateUpdateRate";
|
|
747
|
-
const _sTUS = "stateTemplateUpdateStrategy";
|
|
748
|
-
const _sTt = "stateTemplates";
|
|
749
|
-
const _sVT = "signalValueType";
|
|
750
|
-
const _sc = "scaling";
|
|
751
|
-
const _se = "server";
|
|
752
|
-
const _sen = "sensor";
|
|
753
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.iotfleetwise";
|
|
754
|
-
const _st = "struct";
|
|
755
|
-
const _su = "summaries";
|
|
756
|
-
const _t = "tags";
|
|
757
|
-
const _tA = "targetArn";
|
|
758
|
-
const _tAh = "thingArn";
|
|
759
|
-
const _tAo = "totalAttributes";
|
|
760
|
-
const _tAot = "totalActuators";
|
|
761
|
-
const _tB = "totalBranches";
|
|
762
|
-
const _tBCS = "timeBasedCollectionScheme";
|
|
763
|
-
const _tBi = "timeBased";
|
|
764
|
-
const _tC = "timestreamConfig";
|
|
765
|
-
const _tDA = "timestreamDatabaseArn";
|
|
766
|
-
const _tDN = "timestreamDatabaseName";
|
|
767
|
-
const _tK = "tagKeys";
|
|
768
|
-
const _tM = "triggerMode";
|
|
769
|
-
const _tN = "topicName";
|
|
770
|
-
const _tNo = "totalNodes";
|
|
771
|
-
const _tP = "totalProperties";
|
|
772
|
-
const _tR = "timestreamResources";
|
|
773
|
-
const _tRR = "timestreamRegistrationResponse";
|
|
774
|
-
const _tS = "totalSensors";
|
|
775
|
-
const _tSo = "totalStructs";
|
|
776
|
-
const _tTA = "timestreamTableArn";
|
|
777
|
-
const _tTN = "timestreamTableName";
|
|
778
|
-
const _ty = "type";
|
|
779
|
-
const _u = "unit";
|
|
780
|
-
const _uB = "upperBound";
|
|
781
|
-
const _uEI = "useExtendedIds";
|
|
782
|
-
const _uO = "uploadOptions";
|
|
783
|
-
const _uVE = "updateVehicleErrors";
|
|
784
|
-
const _uVRI = "updateVehicleRequestItems";
|
|
785
|
-
const _uVRIp = "updateVehicleResponseItems";
|
|
786
|
-
const _v = "vehicles";
|
|
787
|
-
const _vJ = "vssJson";
|
|
788
|
-
const _vM = "vehicleMiddleware";
|
|
789
|
-
const _vN = "vehicleName";
|
|
790
|
-
const _vS = "vehicleSummaries";
|
|
791
|
-
const _va = "value";
|
|
792
|
-
const _vs = "vss";
|
|
793
|
-
const n0 = "com.amazonaws.iotfleetwise";
|
|
794
|
-
var actionEventExpression = [0, n0, _aEE, 8, 0];
|
|
795
|
-
var eventExpression = [0, n0, _eE, 8, 0];
|
|
796
|
-
var fetchConfigEventExpression = [0, n0, _fCEE, 8, 0];
|
|
797
|
-
var StorageLocation = [0, n0, _SL, 8, 0];
|
|
798
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
799
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
800
|
-
[_m],
|
|
801
|
-
[0], 1
|
|
802
|
-
];
|
|
803
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
804
|
-
var Actuator$ = [3, n0, _A,
|
|
805
|
-
0,
|
|
806
|
-
[_fQN, _dT, _d, _u, _aV, _mi, _ma, _aVs, _dM, _co, _sFQN],
|
|
807
|
-
[0, 0, 0, 0, 64 | 0, 1, 1, 0, 0, 0, 0], 2
|
|
808
|
-
];
|
|
809
|
-
var AssociateVehicleFleetRequest$ = [3, n0, _AVFR,
|
|
810
|
-
0,
|
|
811
|
-
[_vN, _fI],
|
|
812
|
-
[[0, 1], 0], 2
|
|
813
|
-
];
|
|
814
|
-
var AssociateVehicleFleetResponse$ = [3, n0, _AVFRs,
|
|
815
|
-
0,
|
|
816
|
-
[],
|
|
817
|
-
[]
|
|
818
|
-
];
|
|
819
|
-
var Attribute$ = [3, n0, _At,
|
|
820
|
-
0,
|
|
821
|
-
[_fQN, _dT, _d, _u, _aV, _mi, _ma, _aVs, _dV, _dM, _co],
|
|
822
|
-
[0, 0, 0, 0, 64 | 0, 1, 1, 0, 0, 0, 0], 2
|
|
823
|
-
];
|
|
824
|
-
var BatchCreateVehicleRequest$ = [3, n0, _BCVR,
|
|
825
|
-
0,
|
|
826
|
-
[_v],
|
|
827
|
-
[() => createVehicleRequestItems], 1
|
|
828
|
-
];
|
|
829
|
-
var BatchCreateVehicleResponse$ = [3, n0, _BCVRa,
|
|
830
|
-
0,
|
|
831
|
-
[_v, _er],
|
|
832
|
-
[() => createVehicleResponses, () => createVehicleErrors]
|
|
833
|
-
];
|
|
834
|
-
var BatchUpdateVehicleRequest$ = [3, n0, _BUVR,
|
|
835
|
-
0,
|
|
836
|
-
[_v],
|
|
837
|
-
[() => updateVehicleRequestItems], 1
|
|
838
|
-
];
|
|
839
|
-
var BatchUpdateVehicleResponse$ = [3, n0, _BUVRa,
|
|
840
|
-
0,
|
|
841
|
-
[_v, _er],
|
|
842
|
-
[() => updateVehicleResponseItems, () => updateVehicleErrors]
|
|
843
|
-
];
|
|
844
|
-
var Branch$ = [3, n0, _B,
|
|
845
|
-
0,
|
|
846
|
-
[_fQN, _d, _dM, _co],
|
|
847
|
-
[0, 0, 0, 0], 1
|
|
848
|
-
];
|
|
849
|
-
var CampaignSummary$ = [3, n0, _CS,
|
|
850
|
-
0,
|
|
851
|
-
[_cT, _lMT, _a, _n, _d, _sCA, _tA, _s],
|
|
852
|
-
[4, 4, 0, 0, 0, 0, 0, 0], 2
|
|
853
|
-
];
|
|
854
|
-
var CanDbcDefinition$ = [3, n0, _CDD,
|
|
855
|
-
0,
|
|
856
|
-
[_nI, _cDF, _sM],
|
|
857
|
-
[0, 64 | 21, 128 | 0], 2
|
|
858
|
-
];
|
|
859
|
-
var CanInterface$ = [3, n0, _CI,
|
|
860
|
-
0,
|
|
861
|
-
[_n, _pN, _pV],
|
|
862
|
-
[0, 0, 0], 1
|
|
863
|
-
];
|
|
864
|
-
var CanSignal$ = [3, n0, _CSa,
|
|
865
|
-
0,
|
|
866
|
-
[_mI, _iBE, _iS, _sB, _o, _f, _l, _n, _sVT],
|
|
867
|
-
[1, 2, 2, 1, 1, 1, 1, 0, 0], 7
|
|
868
|
-
];
|
|
869
|
-
var CloudWatchLogDeliveryOptions$ = [3, n0, _CWLDO,
|
|
870
|
-
0,
|
|
871
|
-
[_lT, _lGN],
|
|
872
|
-
[0, 0], 1
|
|
873
|
-
];
|
|
874
|
-
var ConditionBasedCollectionScheme$ = [3, n0, _CBCS,
|
|
875
|
-
0,
|
|
876
|
-
[_ex, _mTIM, _tM, _cLV],
|
|
877
|
-
[[() => eventExpression, 0], 1, 0, 1], 1
|
|
878
|
-
];
|
|
879
|
-
var ConditionBasedSignalFetchConfig$ = [3, n0, _CBSFC,
|
|
880
|
-
0,
|
|
881
|
-
[_cE, _tM],
|
|
882
|
-
[[() => fetchConfigEventExpression, 0], 0], 2
|
|
883
|
-
];
|
|
884
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
885
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
886
|
-
[_m, _r, _rT],
|
|
887
|
-
[0, 0, 0], 3
|
|
888
|
-
];
|
|
889
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
890
|
-
var CreateCampaignRequest$ = [3, n0, _CCR,
|
|
891
|
-
0,
|
|
892
|
-
[_n, _sCA, _tA, _cS, _d, _sT, _eT, _pTCD, _dMi, _sMp, _com, _p, _sTC, _dED, _t, _dDC, _dP, _sTF],
|
|
893
|
-
[[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
|
|
894
|
-
];
|
|
895
|
-
var CreateCampaignResponse$ = [3, n0, _CCRr,
|
|
896
|
-
0,
|
|
897
|
-
[_n, _a],
|
|
898
|
-
[0, 0]
|
|
899
|
-
];
|
|
900
|
-
var CreateDecoderManifestRequest$ = [3, n0, _CDMR,
|
|
901
|
-
0,
|
|
902
|
-
[_n, _mMA, _d, _sD, _nIe, _dFUS, _t],
|
|
903
|
-
[[0, 1], 0, 0, () => SignalDecoders, () => NetworkInterfaces, 0, () => TagList], 2
|
|
904
|
-
];
|
|
905
|
-
var CreateDecoderManifestResponse$ = [3, n0, _CDMRr,
|
|
906
|
-
0,
|
|
907
|
-
[_n, _a],
|
|
908
|
-
[0, 0], 2
|
|
909
|
-
];
|
|
910
|
-
var CreateFleetRequest$ = [3, n0, _CFR,
|
|
911
|
-
0,
|
|
912
|
-
[_fI, _sCA, _d, _t],
|
|
913
|
-
[[0, 1], 0, 0, () => TagList], 2
|
|
914
|
-
];
|
|
915
|
-
var CreateFleetResponse$ = [3, n0, _CFRr,
|
|
916
|
-
0,
|
|
917
|
-
[_i, _a],
|
|
918
|
-
[0, 0], 2
|
|
919
|
-
];
|
|
920
|
-
var CreateModelManifestRequest$ = [3, n0, _CMMR,
|
|
921
|
-
0,
|
|
922
|
-
[_n, _no, _sCA, _d, _t],
|
|
923
|
-
[[0, 1], 64 | 0, 0, 0, () => TagList], 3
|
|
924
|
-
];
|
|
925
|
-
var CreateModelManifestResponse$ = [3, n0, _CMMRr,
|
|
926
|
-
0,
|
|
927
|
-
[_n, _a],
|
|
928
|
-
[0, 0], 2
|
|
929
|
-
];
|
|
930
|
-
var CreateSignalCatalogRequest$ = [3, n0, _CSCR,
|
|
931
|
-
0,
|
|
932
|
-
[_n, _d, _no, _t],
|
|
933
|
-
[[0, 1], 0, () => Nodes, () => TagList], 1
|
|
934
|
-
];
|
|
935
|
-
var CreateSignalCatalogResponse$ = [3, n0, _CSCRr,
|
|
936
|
-
0,
|
|
937
|
-
[_n, _a],
|
|
938
|
-
[0, 0], 2
|
|
939
|
-
];
|
|
940
|
-
var CreateStateTemplateRequest$ = [3, n0, _CSTR,
|
|
941
|
-
0,
|
|
942
|
-
[_n, _sCA, _sTP, _d, _dED, _mED, _t],
|
|
943
|
-
[[0, 1], 0, 64 | 0, 0, 64 | 0, 64 | 0, () => TagList], 3
|
|
944
|
-
];
|
|
945
|
-
var CreateStateTemplateResponse$ = [3, n0, _CSTRr,
|
|
946
|
-
0,
|
|
947
|
-
[_n, _a, _i],
|
|
948
|
-
[0, 0, 0]
|
|
949
|
-
];
|
|
950
|
-
var CreateVehicleError$ = [3, n0, _CVE,
|
|
951
|
-
0,
|
|
952
|
-
[_vN, _cod, _m],
|
|
953
|
-
[0, 0, 0]
|
|
954
|
-
];
|
|
955
|
-
var CreateVehicleRequest$ = [3, n0, _CVR,
|
|
956
|
-
0,
|
|
957
|
-
[_vN, _mMA, _dMA, _at, _aB, _t, _sTt],
|
|
958
|
-
[[0, 1], 0, 0, 128 | 0, 0, () => TagList, () => StateTemplateAssociations], 3
|
|
959
|
-
];
|
|
960
|
-
var CreateVehicleRequestItem$ = [3, n0, _CVRI,
|
|
961
|
-
0,
|
|
962
|
-
[_vN, _mMA, _dMA, _at, _aB, _t, _sTt],
|
|
963
|
-
[0, 0, 0, 128 | 0, 0, () => TagList, () => StateTemplateAssociations], 3
|
|
964
|
-
];
|
|
965
|
-
var CreateVehicleResponse$ = [3, n0, _CVRr,
|
|
966
|
-
0,
|
|
967
|
-
[_vN, _a, _tAh],
|
|
968
|
-
[0, 0, 0]
|
|
969
|
-
];
|
|
970
|
-
var CreateVehicleResponseItem$ = [3, n0, _CVRIr,
|
|
971
|
-
0,
|
|
972
|
-
[_vN, _a, _tAh],
|
|
973
|
-
[0, 0, 0]
|
|
974
|
-
];
|
|
975
|
-
var CustomDecodingInterface$ = [3, n0, _CDI,
|
|
976
|
-
0,
|
|
977
|
-
[_n],
|
|
978
|
-
[0], 1
|
|
979
|
-
];
|
|
980
|
-
var CustomDecodingSignal$ = [3, n0, _CDS,
|
|
981
|
-
0,
|
|
982
|
-
[_i],
|
|
983
|
-
[0], 1
|
|
984
|
-
];
|
|
985
|
-
var CustomProperty$ = [3, n0, _CP,
|
|
986
|
-
0,
|
|
987
|
-
[_fQN, _dT, _dE, _d, _dM, _co, _sFQN],
|
|
988
|
-
[0, 0, 0, 0, 0, 0, 0], 2
|
|
989
|
-
];
|
|
990
|
-
var CustomStruct$ = [3, n0, _CSu,
|
|
991
|
-
0,
|
|
992
|
-
[_fQN, _d, _dM, _co],
|
|
993
|
-
[0, 0, 0, 0], 1
|
|
994
|
-
];
|
|
995
|
-
var DataPartition$ = [3, n0, _DP,
|
|
996
|
-
0,
|
|
997
|
-
[_i, _sO, _uO],
|
|
998
|
-
[0, [() => DataPartitionStorageOptions$, 0], [() => DataPartitionUploadOptions$, 0]], 2
|
|
999
|
-
];
|
|
1000
|
-
var DataPartitionStorageOptions$ = [3, n0, _DPSO,
|
|
1001
|
-
0,
|
|
1002
|
-
[_mS, _sL, _mTTL],
|
|
1003
|
-
[() => StorageMaximumSize$, [() => StorageLocation, 0], () => StorageMinimumTimeToLive$], 3
|
|
1004
|
-
];
|
|
1005
|
-
var DataPartitionUploadOptions$ = [3, n0, _DPUO,
|
|
1006
|
-
0,
|
|
1007
|
-
[_ex, _cLV],
|
|
1008
|
-
[[() => eventExpression, 0], 1], 1
|
|
1009
|
-
];
|
|
1010
|
-
var DecoderManifestSummary$ = [3, n0, _DMS,
|
|
1011
|
-
0,
|
|
1012
|
-
[_cT, _lMT, _n, _a, _mMA, _d, _s, _m],
|
|
1013
|
-
[4, 4, 0, 0, 0, 0, 0, 0], 2
|
|
1014
|
-
];
|
|
1015
|
-
var DecoderManifestValidationException$ = [-3, n0, _DMVE,
|
|
1016
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1017
|
-
[_iSn, _iNI, _m],
|
|
1018
|
-
[() => InvalidSignalDecoders, () => InvalidNetworkInterfaces, 0]
|
|
1019
|
-
];
|
|
1020
|
-
schema.TypeRegistry.for(n0).registerError(DecoderManifestValidationException$, DecoderManifestValidationException);
|
|
1021
|
-
var DeleteCampaignRequest$ = [3, n0, _DCR,
|
|
1022
|
-
0,
|
|
1023
|
-
[_n],
|
|
1024
|
-
[[0, 1]], 1
|
|
1025
|
-
];
|
|
1026
|
-
var DeleteCampaignResponse$ = [3, n0, _DCRe,
|
|
1027
|
-
0,
|
|
1028
|
-
[_n, _a],
|
|
1029
|
-
[0, 0]
|
|
1030
|
-
];
|
|
1031
|
-
var DeleteDecoderManifestRequest$ = [3, n0, _DDMR,
|
|
1032
|
-
0,
|
|
1033
|
-
[_n],
|
|
1034
|
-
[[0, 1]], 1
|
|
1035
|
-
];
|
|
1036
|
-
var DeleteDecoderManifestResponse$ = [3, n0, _DDMRe,
|
|
1037
|
-
0,
|
|
1038
|
-
[_n, _a],
|
|
1039
|
-
[0, 0], 2
|
|
1040
|
-
];
|
|
1041
|
-
var DeleteFleetRequest$ = [3, n0, _DFR,
|
|
1042
|
-
0,
|
|
1043
|
-
[_fI],
|
|
1044
|
-
[[0, 1]], 1
|
|
1045
|
-
];
|
|
1046
|
-
var DeleteFleetResponse$ = [3, n0, _DFRe,
|
|
1047
|
-
0,
|
|
1048
|
-
[_i, _a],
|
|
1049
|
-
[0, 0]
|
|
1050
|
-
];
|
|
1051
|
-
var DeleteModelManifestRequest$ = [3, n0, _DMMR,
|
|
1052
|
-
0,
|
|
1053
|
-
[_n],
|
|
1054
|
-
[[0, 1]], 1
|
|
1055
|
-
];
|
|
1056
|
-
var DeleteModelManifestResponse$ = [3, n0, _DMMRe,
|
|
1057
|
-
0,
|
|
1058
|
-
[_n, _a],
|
|
1059
|
-
[0, 0], 2
|
|
1060
|
-
];
|
|
1061
|
-
var DeleteSignalCatalogRequest$ = [3, n0, _DSCR,
|
|
1062
|
-
0,
|
|
1063
|
-
[_n],
|
|
1064
|
-
[[0, 1]], 1
|
|
1065
|
-
];
|
|
1066
|
-
var DeleteSignalCatalogResponse$ = [3, n0, _DSCRe,
|
|
1067
|
-
0,
|
|
1068
|
-
[_n, _a],
|
|
1069
|
-
[0, 0], 2
|
|
1070
|
-
];
|
|
1071
|
-
var DeleteStateTemplateRequest$ = [3, n0, _DSTR,
|
|
1072
|
-
0,
|
|
1073
|
-
[_id],
|
|
1074
|
-
[[0, 1]], 1
|
|
1075
|
-
];
|
|
1076
|
-
var DeleteStateTemplateResponse$ = [3, n0, _DSTRe,
|
|
1077
|
-
0,
|
|
1078
|
-
[_n, _a, _i],
|
|
1079
|
-
[0, 0, 0]
|
|
1080
|
-
];
|
|
1081
|
-
var DeleteVehicleRequest$ = [3, n0, _DVR,
|
|
1082
|
-
0,
|
|
1083
|
-
[_vN],
|
|
1084
|
-
[[0, 1]], 1
|
|
1085
|
-
];
|
|
1086
|
-
var DeleteVehicleResponse$ = [3, n0, _DVRe,
|
|
1087
|
-
0,
|
|
1088
|
-
[_vN, _a],
|
|
1089
|
-
[0, 0], 2
|
|
1090
|
-
];
|
|
1091
|
-
var DisassociateVehicleFleetRequest$ = [3, n0, _DVFR,
|
|
1092
|
-
0,
|
|
1093
|
-
[_vN, _fI],
|
|
1094
|
-
[[0, 1], 0], 2
|
|
1095
|
-
];
|
|
1096
|
-
var DisassociateVehicleFleetResponse$ = [3, n0, _DVFRi,
|
|
1097
|
-
0,
|
|
1098
|
-
[],
|
|
1099
|
-
[]
|
|
1100
|
-
];
|
|
1101
|
-
var FleetSummary$ = [3, n0, _FS,
|
|
1102
|
-
0,
|
|
1103
|
-
[_i, _a, _sCA, _cT, _d, _lMT],
|
|
1104
|
-
[0, 0, 0, 4, 0, 4], 4
|
|
1105
|
-
];
|
|
1106
|
-
var GetCampaignRequest$ = [3, n0, _GCR,
|
|
1107
|
-
0,
|
|
1108
|
-
[_n],
|
|
1109
|
-
[[0, 1]], 1
|
|
1110
|
-
];
|
|
1111
|
-
var GetCampaignResponse$ = [3, n0, _GCRe,
|
|
1112
|
-
0,
|
|
1113
|
-
[_n, _a, _d, _sCA, _tA, _s, _sT, _eT, _pTCD, _dMi, _sMp, _com, _p, _sTC, _cS, _dED, _cT, _lMT, _dDC, _dP, _sTF],
|
|
1114
|
-
[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]]
|
|
1115
|
-
];
|
|
1116
|
-
var GetDecoderManifestRequest$ = [3, n0, _GDMR,
|
|
1117
|
-
0,
|
|
1118
|
-
[_n],
|
|
1119
|
-
[[0, 1]], 1
|
|
1120
|
-
];
|
|
1121
|
-
var GetDecoderManifestResponse$ = [3, n0, _GDMRe,
|
|
1122
|
-
0,
|
|
1123
|
-
[_n, _a, _cT, _lMT, _d, _mMA, _s, _m],
|
|
1124
|
-
[0, 0, 4, 4, 0, 0, 0, 0], 4
|
|
1125
|
-
];
|
|
1126
|
-
var GetEncryptionConfigurationRequest$ = [3, n0, _GECR,
|
|
1127
|
-
0,
|
|
1128
|
-
[],
|
|
1129
|
-
[]
|
|
1130
|
-
];
|
|
1131
|
-
var GetEncryptionConfigurationResponse$ = [3, n0, _GECRe,
|
|
1132
|
-
0,
|
|
1133
|
-
[_eS, _eTn, _kKI, _eM, _cT, _lMT],
|
|
1134
|
-
[0, 0, 0, 0, 4, 4], 2
|
|
1135
|
-
];
|
|
1136
|
-
var GetFleetRequest$ = [3, n0, _GFR,
|
|
1137
|
-
0,
|
|
1138
|
-
[_fI],
|
|
1139
|
-
[[0, 1]], 1
|
|
1140
|
-
];
|
|
1141
|
-
var GetFleetResponse$ = [3, n0, _GFRe,
|
|
1142
|
-
0,
|
|
1143
|
-
[_i, _a, _sCA, _cT, _lMT, _d],
|
|
1144
|
-
[0, 0, 0, 4, 4, 0], 5
|
|
1145
|
-
];
|
|
1146
|
-
var GetLoggingOptionsRequest$ = [3, n0, _GLOR,
|
|
1147
|
-
0,
|
|
1148
|
-
[],
|
|
1149
|
-
[]
|
|
1150
|
-
];
|
|
1151
|
-
var GetLoggingOptionsResponse$ = [3, n0, _GLORe,
|
|
1152
|
-
0,
|
|
1153
|
-
[_cWLD],
|
|
1154
|
-
[() => CloudWatchLogDeliveryOptions$], 1
|
|
1155
|
-
];
|
|
1156
|
-
var GetModelManifestRequest$ = [3, n0, _GMMR,
|
|
1157
|
-
0,
|
|
1158
|
-
[_n],
|
|
1159
|
-
[[0, 1]], 1
|
|
1160
|
-
];
|
|
1161
|
-
var GetModelManifestResponse$ = [3, n0, _GMMRe,
|
|
1162
|
-
0,
|
|
1163
|
-
[_n, _a, _cT, _lMT, _d, _sCA, _s],
|
|
1164
|
-
[0, 0, 4, 4, 0, 0, 0], 4
|
|
1165
|
-
];
|
|
1166
|
-
var GetRegisterAccountStatusRequest$ = [3, n0, _GRASR,
|
|
1167
|
-
0,
|
|
1168
|
-
[],
|
|
1169
|
-
[]
|
|
1170
|
-
];
|
|
1171
|
-
var GetRegisterAccountStatusResponse$ = [3, n0, _GRASRe,
|
|
1172
|
-
0,
|
|
1173
|
-
[_cAI, _aS, _iRR, _cT, _lMT, _tRR],
|
|
1174
|
-
[0, 0, () => IamRegistrationResponse$, 4, 4, () => TimestreamRegistrationResponse$], 5
|
|
1175
|
-
];
|
|
1176
|
-
var GetSignalCatalogRequest$ = [3, n0, _GSCR,
|
|
1177
|
-
0,
|
|
1178
|
-
[_n],
|
|
1179
|
-
[[0, 1]], 1
|
|
1180
|
-
];
|
|
1181
|
-
var GetSignalCatalogResponse$ = [3, n0, _GSCRe,
|
|
1182
|
-
0,
|
|
1183
|
-
[_n, _a, _cT, _lMT, _d, _nC],
|
|
1184
|
-
[0, 0, 4, 4, 0, () => NodeCounts$], 4
|
|
1185
|
-
];
|
|
1186
|
-
var GetStateTemplateRequest$ = [3, n0, _GSTR,
|
|
1187
|
-
0,
|
|
1188
|
-
[_id],
|
|
1189
|
-
[[0, 1]], 1
|
|
1190
|
-
];
|
|
1191
|
-
var GetStateTemplateResponse$ = [3, n0, _GSTRe,
|
|
1192
|
-
0,
|
|
1193
|
-
[_n, _a, _d, _sCA, _sTP, _dED, _mED, _cT, _lMT, _i],
|
|
1194
|
-
[0, 0, 0, 0, 64 | 0, 64 | 0, 64 | 0, 4, 4, 0]
|
|
1195
|
-
];
|
|
1196
|
-
var GetVehicleRequest$ = [3, n0, _GVR,
|
|
1197
|
-
0,
|
|
1198
|
-
[_vN],
|
|
1199
|
-
[[0, 1]], 1
|
|
1200
|
-
];
|
|
1201
|
-
var GetVehicleResponse$ = [3, n0, _GVRe,
|
|
1202
|
-
0,
|
|
1203
|
-
[_vN, _a, _mMA, _dMA, _at, _sTt, _cT, _lMT],
|
|
1204
|
-
[0, 0, 0, 0, 128 | 0, () => StateTemplateAssociations, 4, 4]
|
|
1205
|
-
];
|
|
1206
|
-
var GetVehicleStatusRequest$ = [3, n0, _GVSR,
|
|
1207
|
-
0,
|
|
1208
|
-
[_vN, _nT, _mR],
|
|
1209
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1210
|
-
];
|
|
1211
|
-
var GetVehicleStatusResponse$ = [3, n0, _GVSRe,
|
|
1212
|
-
0,
|
|
1213
|
-
[_ca, _nT],
|
|
1214
|
-
[() => VehicleStatusList, 0]
|
|
1215
|
-
];
|
|
1216
|
-
var IamRegistrationResponse$ = [3, n0, _IRR,
|
|
1217
|
-
0,
|
|
1218
|
-
[_rA, _rS, _eM],
|
|
1219
|
-
[0, 0, 0], 2
|
|
1220
|
-
];
|
|
1221
|
-
var IamResources$ = [3, n0, _IR,
|
|
1222
|
-
0,
|
|
1223
|
-
[_rA],
|
|
1224
|
-
[0], 1
|
|
1225
|
-
];
|
|
1226
|
-
var ImportDecoderManifestRequest$ = [3, n0, _IDMR,
|
|
1227
|
-
0,
|
|
1228
|
-
[_n, _nFD],
|
|
1229
|
-
[[0, 1], () => NetworkFileDefinitions], 2
|
|
1230
|
-
];
|
|
1231
|
-
var ImportDecoderManifestResponse$ = [3, n0, _IDMRm,
|
|
1232
|
-
0,
|
|
1233
|
-
[_n, _a],
|
|
1234
|
-
[0, 0], 2
|
|
1235
|
-
];
|
|
1236
|
-
var ImportSignalCatalogRequest$ = [3, n0, _ISCR,
|
|
1237
|
-
0,
|
|
1238
|
-
[_n, _d, _vs, _t],
|
|
1239
|
-
[[0, 1], 0, () => FormattedVss$, () => TagList], 1
|
|
1240
|
-
];
|
|
1241
|
-
var ImportSignalCatalogResponse$ = [3, n0, _ISCRm,
|
|
1242
|
-
0,
|
|
1243
|
-
[_n, _a],
|
|
1244
|
-
[0, 0], 2
|
|
1245
|
-
];
|
|
1246
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1247
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1248
|
-
[_m, _rAS],
|
|
1249
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
1250
|
-
];
|
|
1251
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1252
|
-
var InvalidNetworkInterface$ = [3, n0, _INI,
|
|
1253
|
-
0,
|
|
1254
|
-
[_iI, _re],
|
|
1255
|
-
[0, 0]
|
|
1256
|
-
];
|
|
1257
|
-
var InvalidNodeException$ = [-3, n0, _INE,
|
|
1258
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1259
|
-
[_iN, _re, _m],
|
|
1260
|
-
[() => Nodes, 0, 0]
|
|
1261
|
-
];
|
|
1262
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNodeException$, InvalidNodeException);
|
|
1263
|
-
var InvalidSignal$ = [3, n0, _IS,
|
|
1264
|
-
0,
|
|
1265
|
-
[_n, _re],
|
|
1266
|
-
[0, 0]
|
|
1267
|
-
];
|
|
1268
|
-
var InvalidSignalDecoder$ = [3, n0, _ISD,
|
|
1269
|
-
0,
|
|
1270
|
-
[_n, _re, _h],
|
|
1271
|
-
[0, 0, 0]
|
|
1272
|
-
];
|
|
1273
|
-
var InvalidSignalsException$ = [-3, n0, _ISEn,
|
|
1274
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1275
|
-
[_m, _iSn],
|
|
1276
|
-
[0, () => InvalidSignals]
|
|
1277
|
-
];
|
|
1278
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSignalsException$, InvalidSignalsException);
|
|
1279
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1280
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1281
|
-
[_m, _rI, _rT],
|
|
1282
|
-
[0, 0, 0], 3
|
|
1283
|
-
];
|
|
1284
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1285
|
-
var ListCampaignsRequest$ = [3, n0, _LCR,
|
|
1286
|
-
0,
|
|
1287
|
-
[_nT, _mR, _s, _lRS],
|
|
1288
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _s }], [0, { [_hQ]: _lRS }]]
|
|
1289
|
-
];
|
|
1290
|
-
var ListCampaignsResponse$ = [3, n0, _LCRi,
|
|
1291
|
-
0,
|
|
1292
|
-
[_cSa, _nT],
|
|
1293
|
-
[() => campaignSummaries, 0]
|
|
1294
|
-
];
|
|
1295
|
-
var ListDecoderManifestNetworkInterfacesRequest$ = [3, n0, _LDMNIR,
|
|
1296
|
-
0,
|
|
1297
|
-
[_n, _nT, _mR],
|
|
1298
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1299
|
-
];
|
|
1300
|
-
var ListDecoderManifestNetworkInterfacesResponse$ = [3, n0, _LDMNIRi,
|
|
1301
|
-
0,
|
|
1302
|
-
[_nIe, _nT],
|
|
1303
|
-
[() => NetworkInterfaces, 0]
|
|
1304
|
-
];
|
|
1305
|
-
var ListDecoderManifestSignalsRequest$ = [3, n0, _LDMSR,
|
|
1306
|
-
0,
|
|
1307
|
-
[_n, _nT, _mR],
|
|
1308
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1309
|
-
];
|
|
1310
|
-
var ListDecoderManifestSignalsResponse$ = [3, n0, _LDMSRi,
|
|
1311
|
-
0,
|
|
1312
|
-
[_sD, _nT],
|
|
1313
|
-
[() => SignalDecoders, 0]
|
|
1314
|
-
];
|
|
1315
|
-
var ListDecoderManifestsRequest$ = [3, n0, _LDMR,
|
|
1316
|
-
0,
|
|
1317
|
-
[_mMA, _nT, _mR, _lRS],
|
|
1318
|
-
[[0, { [_hQ]: _mMA }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1319
|
-
];
|
|
1320
|
-
var ListDecoderManifestsResponse$ = [3, n0, _LDMRi,
|
|
1321
|
-
0,
|
|
1322
|
-
[_su, _nT],
|
|
1323
|
-
[() => decoderManifestSummaries, 0]
|
|
1324
|
-
];
|
|
1325
|
-
var ListFleetsForVehicleRequest$ = [3, n0, _LFFVR,
|
|
1326
|
-
0,
|
|
1327
|
-
[_vN, _nT, _mR],
|
|
1328
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1329
|
-
];
|
|
1330
|
-
var ListFleetsForVehicleResponse$ = [3, n0, _LFFVRi,
|
|
1331
|
-
0,
|
|
1332
|
-
[_fl, _nT],
|
|
1333
|
-
[64 | 0, 0]
|
|
1334
|
-
];
|
|
1335
|
-
var ListFleetsRequest$ = [3, n0, _LFR,
|
|
1336
|
-
0,
|
|
1337
|
-
[_nT, _mR, _lRS],
|
|
1338
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1339
|
-
];
|
|
1340
|
-
var ListFleetsResponse$ = [3, n0, _LFRi,
|
|
1341
|
-
0,
|
|
1342
|
-
[_fS, _nT],
|
|
1343
|
-
[() => fleetSummaries, 0]
|
|
1344
|
-
];
|
|
1345
|
-
var ListModelManifestNodesRequest$ = [3, n0, _LMMNR,
|
|
1346
|
-
0,
|
|
1347
|
-
[_n, _nT, _mR],
|
|
1348
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1349
|
-
];
|
|
1350
|
-
var ListModelManifestNodesResponse$ = [3, n0, _LMMNRi,
|
|
1351
|
-
0,
|
|
1352
|
-
[_no, _nT],
|
|
1353
|
-
[() => Nodes, 0]
|
|
1354
|
-
];
|
|
1355
|
-
var ListModelManifestsRequest$ = [3, n0, _LMMR,
|
|
1356
|
-
0,
|
|
1357
|
-
[_sCA, _nT, _mR, _lRS],
|
|
1358
|
-
[[0, { [_hQ]: _sCA }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1359
|
-
];
|
|
1360
|
-
var ListModelManifestsResponse$ = [3, n0, _LMMRi,
|
|
1361
|
-
0,
|
|
1362
|
-
[_su, _nT],
|
|
1363
|
-
[() => modelManifestSummaries, 0]
|
|
1364
|
-
];
|
|
1365
|
-
var ListSignalCatalogNodesRequest$ = [3, n0, _LSCNR,
|
|
1366
|
-
0,
|
|
1367
|
-
[_n, _nT, _mR, _sNT],
|
|
1368
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _sNT }]], 1
|
|
1369
|
-
];
|
|
1370
|
-
var ListSignalCatalogNodesResponse$ = [3, n0, _LSCNRi,
|
|
1371
|
-
0,
|
|
1372
|
-
[_no, _nT],
|
|
1373
|
-
[() => Nodes, 0]
|
|
1374
|
-
];
|
|
1375
|
-
var ListSignalCatalogsRequest$ = [3, n0, _LSCR,
|
|
1376
|
-
0,
|
|
1377
|
-
[_nT, _mR],
|
|
1378
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1379
|
-
];
|
|
1380
|
-
var ListSignalCatalogsResponse$ = [3, n0, _LSCRi,
|
|
1381
|
-
0,
|
|
1382
|
-
[_su, _nT],
|
|
1383
|
-
[() => signalCatalogSummaries, 0]
|
|
1384
|
-
];
|
|
1385
|
-
var ListStateTemplatesRequest$ = [3, n0, _LSTR,
|
|
1386
|
-
0,
|
|
1387
|
-
[_nT, _mR, _lRS],
|
|
1388
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1389
|
-
];
|
|
1390
|
-
var ListStateTemplatesResponse$ = [3, n0, _LSTRi,
|
|
1391
|
-
0,
|
|
1392
|
-
[_su, _nT],
|
|
1393
|
-
[() => StateTemplateSummaries, 0]
|
|
1394
|
-
];
|
|
1395
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1396
|
-
0,
|
|
1397
|
-
[_RARN],
|
|
1398
|
-
[[0, { [_hQ]: _rAe }]], 1
|
|
1399
|
-
];
|
|
1400
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1401
|
-
0,
|
|
1402
|
-
[_T],
|
|
1403
|
-
[() => TagList]
|
|
1404
|
-
];
|
|
1405
|
-
var ListVehiclesInFleetRequest$ = [3, n0, _LVIFR,
|
|
1406
|
-
0,
|
|
1407
|
-
[_fI, _nT, _mR],
|
|
1408
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1409
|
-
];
|
|
1410
|
-
var ListVehiclesInFleetResponse$ = [3, n0, _LVIFRi,
|
|
1411
|
-
0,
|
|
1412
|
-
[_v, _nT],
|
|
1413
|
-
[64 | 0, 0]
|
|
1414
|
-
];
|
|
1415
|
-
var ListVehiclesRequest$ = [3, n0, _LVR,
|
|
1416
|
-
0,
|
|
1417
|
-
[_mMA, _aN, _aVt, _nT, _mR, _lRS],
|
|
1418
|
-
[[0, { [_hQ]: _mMA }], [64 | 0, { [_hQ]: _aN }], [64 | 0, { [_hQ]: _aVt }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _lRS }]]
|
|
1419
|
-
];
|
|
1420
|
-
var ListVehiclesResponse$ = [3, n0, _LVRi,
|
|
1421
|
-
0,
|
|
1422
|
-
[_vS, _nT],
|
|
1423
|
-
[() => vehicleSummaries, 0]
|
|
1424
|
-
];
|
|
1425
|
-
var MessageSignal$ = [3, n0, _MS,
|
|
1426
|
-
0,
|
|
1427
|
-
[_tN, _sMt],
|
|
1428
|
-
[0, () => StructuredMessage$], 2
|
|
1429
|
-
];
|
|
1430
|
-
var ModelManifestSummary$ = [3, n0, _MMS,
|
|
1431
|
-
0,
|
|
1432
|
-
[_cT, _lMT, _n, _a, _sCA, _d, _s],
|
|
1433
|
-
[4, 4, 0, 0, 0, 0, 0], 2
|
|
1434
|
-
];
|
|
1435
|
-
var MqttTopicConfig$ = [3, n0, _MTC,
|
|
1436
|
-
0,
|
|
1437
|
-
[_mTA, _eRA],
|
|
1438
|
-
[0, 0], 2
|
|
1439
|
-
];
|
|
1440
|
-
var NetworkInterface$ = [3, n0, _NI,
|
|
1441
|
-
0,
|
|
1442
|
-
[_iI, _ty, _cI, _oI, _vM, _cDI],
|
|
1443
|
-
[0, 0, () => CanInterface$, () => ObdInterface$, () => VehicleMiddleware$, () => CustomDecodingInterface$], 2
|
|
1444
|
-
];
|
|
1445
|
-
var NodeCounts$ = [3, n0, _NC,
|
|
1446
|
-
0,
|
|
1447
|
-
[_tNo, _tB, _tS, _tAo, _tAot, _tSo, _tP],
|
|
1448
|
-
[1, 1, 1, 1, 1, 1, 1]
|
|
1449
|
-
];
|
|
1450
|
-
var ObdInterface$ = [3, n0, _OI,
|
|
1451
|
-
0,
|
|
1452
|
-
[_n, _rMI, _oS, _pRIS, _dRIS, _uEI, _hTE],
|
|
1453
|
-
[0, 1, 0, 1, 1, 2, 2], 2
|
|
1454
|
-
];
|
|
1455
|
-
var ObdSignal$ = [3, n0, _OS,
|
|
1456
|
-
0,
|
|
1457
|
-
[_pRL, _sMe, _pi, _sc, _o, _sBt, _bL, _bRS, _bML, _iS, _sVT],
|
|
1458
|
-
[1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0], 7
|
|
1459
|
-
];
|
|
1460
|
-
var OnChangeStateTemplateUpdateStrategy$ = [3, n0, _OCSTUS,
|
|
1461
|
-
0,
|
|
1462
|
-
[],
|
|
1463
|
-
[]
|
|
1464
|
-
];
|
|
1465
|
-
var PeriodicStateTemplateUpdateStrategy$ = [3, n0, _PSTUS,
|
|
1466
|
-
0,
|
|
1467
|
-
[_sTUR],
|
|
1468
|
-
[() => TimePeriod$], 1
|
|
1469
|
-
];
|
|
1470
|
-
var PutEncryptionConfigurationRequest$ = [3, n0, _PECR,
|
|
1471
|
-
0,
|
|
1472
|
-
[_eTn, _kKI],
|
|
1473
|
-
[0, 0], 1
|
|
1474
|
-
];
|
|
1475
|
-
var PutEncryptionConfigurationResponse$ = [3, n0, _PECRu,
|
|
1476
|
-
0,
|
|
1477
|
-
[_eS, _eTn, _kKI],
|
|
1478
|
-
[0, 0, 0], 2
|
|
1479
|
-
];
|
|
1480
|
-
var PutLoggingOptionsRequest$ = [3, n0, _PLOR,
|
|
1481
|
-
0,
|
|
1482
|
-
[_cWLD],
|
|
1483
|
-
[() => CloudWatchLogDeliveryOptions$], 1
|
|
1484
|
-
];
|
|
1485
|
-
var PutLoggingOptionsResponse$ = [3, n0, _PLORu,
|
|
1486
|
-
0,
|
|
1487
|
-
[],
|
|
1488
|
-
[]
|
|
1489
|
-
];
|
|
1490
|
-
var RegisterAccountRequest$ = [3, n0, _RAR,
|
|
1491
|
-
0,
|
|
1492
|
-
[_tR, _iR],
|
|
1493
|
-
[() => TimestreamResources$, () => IamResources$]
|
|
1494
|
-
];
|
|
1495
|
-
var RegisterAccountResponse$ = [3, n0, _RARe,
|
|
1496
|
-
0,
|
|
1497
|
-
[_rASe, _iR, _cT, _lMT, _tR],
|
|
1498
|
-
[0, () => IamResources$, 4, 4, () => TimestreamResources$], 4
|
|
1499
|
-
];
|
|
1500
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1501
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1502
|
-
[_m, _rI, _rT],
|
|
1503
|
-
[0, 0, 0], 3
|
|
1504
|
-
];
|
|
1505
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1506
|
-
var ROS2PrimitiveMessageDefinition$ = [3, n0, _ROSPMD,
|
|
1507
|
-
0,
|
|
1508
|
-
[_pT, _o, _sc, _uB],
|
|
1509
|
-
[0, 1, 1, 1], 1
|
|
1510
|
-
];
|
|
1511
|
-
var S3Config$ = [3, n0, _SC,
|
|
1512
|
-
0,
|
|
1513
|
-
[_bA, _dF, _sCF, _pr],
|
|
1514
|
-
[0, 0, 0, 0], 1
|
|
1515
|
-
];
|
|
1516
|
-
var Sensor$ = [3, n0, _S,
|
|
1517
|
-
0,
|
|
1518
|
-
[_fQN, _dT, _d, _u, _aV, _mi, _ma, _dM, _co, _sFQN],
|
|
1519
|
-
[0, 0, 0, 0, 64 | 0, 1, 1, 0, 0, 0], 2
|
|
1520
|
-
];
|
|
1521
|
-
var SignalCatalogSummary$ = [3, n0, _SCS,
|
|
1522
|
-
0,
|
|
1523
|
-
[_n, _a, _cT, _lMT],
|
|
1524
|
-
[0, 0, 4, 4]
|
|
1525
|
-
];
|
|
1526
|
-
var SignalDecoder$ = [3, n0, _SD,
|
|
1527
|
-
0,
|
|
1528
|
-
[_fQN, _ty, _iI, _cSan, _oSb, _mSe, _cDS],
|
|
1529
|
-
[0, 0, 0, () => CanSignal$, () => ObdSignal$, () => MessageSignal$, () => CustomDecodingSignal$], 3
|
|
1530
|
-
];
|
|
1531
|
-
var SignalFetchInformation$ = [3, n0, _SFI,
|
|
1532
|
-
0,
|
|
1533
|
-
[_fQN, _sFC, _ac, _cLV],
|
|
1534
|
-
[0, [() => SignalFetchConfig$, 0], [() => EventExpressionList, 0], 1], 3
|
|
1535
|
-
];
|
|
1536
|
-
var SignalInformation$ = [3, n0, _SI,
|
|
1537
|
-
0,
|
|
1538
|
-
[_n, _mSC, _mSIM, _dPI],
|
|
1539
|
-
[0, 1, 1, 0], 1
|
|
1540
|
-
];
|
|
1541
|
-
var StateTemplateAssociation$ = [3, n0, _STA,
|
|
1542
|
-
0,
|
|
1543
|
-
[_id, _sTUS],
|
|
1544
|
-
[0, () => StateTemplateUpdateStrategy$], 2
|
|
1545
|
-
];
|
|
1546
|
-
var StateTemplateSummary$ = [3, n0, _STS,
|
|
1547
|
-
0,
|
|
1548
|
-
[_n, _a, _sCA, _d, _cT, _lMT, _i],
|
|
1549
|
-
[0, 0, 0, 0, 4, 4, 0]
|
|
1550
|
-
];
|
|
1551
|
-
var StorageMaximumSize$ = [3, n0, _SMS,
|
|
1552
|
-
0,
|
|
1553
|
-
[_u, _va],
|
|
1554
|
-
[0, 1], 2
|
|
1555
|
-
];
|
|
1556
|
-
var StorageMinimumTimeToLive$ = [3, n0, _SMTTL,
|
|
1557
|
-
0,
|
|
1558
|
-
[_u, _va],
|
|
1559
|
-
[0, 1], 2
|
|
1560
|
-
];
|
|
1561
|
-
var StructuredMessageFieldNameAndDataTypePair$ = [3, n0, _SMFNADTP,
|
|
1562
|
-
0,
|
|
1563
|
-
[_fN, _dT],
|
|
1564
|
-
[0, () => StructuredMessage$], 2
|
|
1565
|
-
];
|
|
1566
|
-
var StructuredMessageListDefinition$ = [3, n0, _SMLD,
|
|
1567
|
-
0,
|
|
1568
|
-
[_n, _mT, _lTi, _cap],
|
|
1569
|
-
[0, () => StructuredMessage$, 0, 1], 3
|
|
1570
|
-
];
|
|
1571
|
-
var Tag$ = [3, n0, _Ta,
|
|
1572
|
-
0,
|
|
1573
|
-
[_K, _V],
|
|
1574
|
-
[0, 0], 2
|
|
1575
|
-
];
|
|
1576
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1577
|
-
0,
|
|
1578
|
-
[_RARN, _T],
|
|
1579
|
-
[[0, { [_hQ]: _rAe }], () => TagList], 2
|
|
1580
|
-
];
|
|
1581
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1582
|
-
0,
|
|
1583
|
-
[],
|
|
1584
|
-
[]
|
|
1585
|
-
];
|
|
1586
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1587
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1588
|
-
[_m, _qC, _sC, _rAS],
|
|
1589
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
1590
|
-
];
|
|
1591
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1592
|
-
var TimeBasedCollectionScheme$ = [3, n0, _TBCS,
|
|
1593
|
-
0,
|
|
1594
|
-
[_pM],
|
|
1595
|
-
[1], 1
|
|
1596
|
-
];
|
|
1597
|
-
var TimeBasedSignalFetchConfig$ = [3, n0, _TBSFC,
|
|
1598
|
-
0,
|
|
1599
|
-
[_eFM],
|
|
1600
|
-
[1], 1
|
|
1601
|
-
];
|
|
1602
|
-
var TimePeriod$ = [3, n0, _TP,
|
|
1603
|
-
0,
|
|
1604
|
-
[_u, _va],
|
|
1605
|
-
[0, 1], 2
|
|
1606
|
-
];
|
|
1607
|
-
var TimestreamConfig$ = [3, n0, _TC,
|
|
1608
|
-
0,
|
|
1609
|
-
[_tTA, _eRA],
|
|
1610
|
-
[0, 0], 2
|
|
1611
|
-
];
|
|
1612
|
-
var TimestreamRegistrationResponse$ = [3, n0, _TRRi,
|
|
1613
|
-
0,
|
|
1614
|
-
[_tDN, _tTN, _rS, _tDA, _tTA, _eM],
|
|
1615
|
-
[0, 0, 0, 0, 0, 0], 3
|
|
1616
|
-
];
|
|
1617
|
-
var TimestreamResources$ = [3, n0, _TR,
|
|
1618
|
-
0,
|
|
1619
|
-
[_tDN, _tTN],
|
|
1620
|
-
[0, 0], 2
|
|
1621
|
-
];
|
|
1622
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1623
|
-
0,
|
|
1624
|
-
[_RARN, _TK],
|
|
1625
|
-
[[0, { [_hQ]: _rAe }], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1626
|
-
];
|
|
1627
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1628
|
-
0,
|
|
1629
|
-
[],
|
|
1630
|
-
[]
|
|
1631
|
-
];
|
|
1632
|
-
var UpdateCampaignRequest$ = [3, n0, _UCR,
|
|
1633
|
-
0,
|
|
1634
|
-
[_n, _act, _d, _dED],
|
|
1635
|
-
[[0, 1], 0, 0, [() => DataExtraDimensionNodePathList, 0]], 2
|
|
1636
|
-
];
|
|
1637
|
-
var UpdateCampaignResponse$ = [3, n0, _UCRp,
|
|
1638
|
-
0,
|
|
1639
|
-
[_a, _n, _s],
|
|
1640
|
-
[0, 0, 0]
|
|
1641
|
-
];
|
|
1642
|
-
var UpdateDecoderManifestRequest$ = [3, n0, _UDMR,
|
|
1643
|
-
0,
|
|
1644
|
-
[_n, _d, _sDTA, _sDTU, _sDTR, _nITA, _nITU, _nITR, _s, _dFUS],
|
|
1645
|
-
[[0, 1], 0, () => SignalDecoders, () => SignalDecoders, 64 | 0, () => NetworkInterfaces, () => NetworkInterfaces, 64 | 0, 0, 0], 1
|
|
1646
|
-
];
|
|
1647
|
-
var UpdateDecoderManifestResponse$ = [3, n0, _UDMRp,
|
|
1648
|
-
0,
|
|
1649
|
-
[_n, _a],
|
|
1650
|
-
[0, 0], 2
|
|
1651
|
-
];
|
|
1652
|
-
var UpdateFleetRequest$ = [3, n0, _UFR,
|
|
1653
|
-
0,
|
|
1654
|
-
[_fI, _d],
|
|
1655
|
-
[[0, 1], 0], 1
|
|
1656
|
-
];
|
|
1657
|
-
var UpdateFleetResponse$ = [3, n0, _UFRp,
|
|
1658
|
-
0,
|
|
1659
|
-
[_i, _a],
|
|
1660
|
-
[0, 0]
|
|
1661
|
-
];
|
|
1662
|
-
var UpdateModelManifestRequest$ = [3, n0, _UMMR,
|
|
1663
|
-
0,
|
|
1664
|
-
[_n, _d, _nTA, _nTR, _s],
|
|
1665
|
-
[[0, 1], 0, 64 | 0, 64 | 0, 0], 1
|
|
1666
|
-
];
|
|
1667
|
-
var UpdateModelManifestResponse$ = [3, n0, _UMMRp,
|
|
1668
|
-
0,
|
|
1669
|
-
[_n, _a],
|
|
1670
|
-
[0, 0], 2
|
|
1671
|
-
];
|
|
1672
|
-
var UpdateSignalCatalogRequest$ = [3, n0, _USCR,
|
|
1673
|
-
0,
|
|
1674
|
-
[_n, _d, _nTA, _nTU, _nTR],
|
|
1675
|
-
[[0, 1], 0, () => Nodes, () => Nodes, 64 | 0], 1
|
|
1676
|
-
];
|
|
1677
|
-
var UpdateSignalCatalogResponse$ = [3, n0, _USCRp,
|
|
1678
|
-
0,
|
|
1679
|
-
[_n, _a],
|
|
1680
|
-
[0, 0], 2
|
|
1681
|
-
];
|
|
1682
|
-
var UpdateStateTemplateRequest$ = [3, n0, _USTR,
|
|
1683
|
-
0,
|
|
1684
|
-
[_id, _d, _sTPTA, _sTPTR, _dED, _mED],
|
|
1685
|
-
[[0, 1], 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
|
|
1686
|
-
];
|
|
1687
|
-
var UpdateStateTemplateResponse$ = [3, n0, _USTRp,
|
|
1688
|
-
0,
|
|
1689
|
-
[_n, _a, _i],
|
|
1690
|
-
[0, 0, 0]
|
|
1691
|
-
];
|
|
1692
|
-
var UpdateVehicleError$ = [3, n0, _UVE,
|
|
1693
|
-
0,
|
|
1694
|
-
[_vN, _cod, _m],
|
|
1695
|
-
[0, 1, 0]
|
|
1696
|
-
];
|
|
1697
|
-
var UpdateVehicleRequest$ = [3, n0, _UVR,
|
|
1698
|
-
0,
|
|
1699
|
-
[_vN, _mMA, _dMA, _at, _aUM, _sTTA, _sTTR, _sTTU],
|
|
1700
|
-
[[0, 1], 0, 0, 128 | 0, 0, () => StateTemplateAssociations, 64 | 0, () => StateTemplateAssociations], 1
|
|
1701
|
-
];
|
|
1702
|
-
var UpdateVehicleRequestItem$ = [3, n0, _UVRI,
|
|
1703
|
-
0,
|
|
1704
|
-
[_vN, _mMA, _dMA, _at, _aUM, _sTTA, _sTTR, _sTTU],
|
|
1705
|
-
[0, 0, 0, 128 | 0, 0, () => StateTemplateAssociations, 64 | 0, () => StateTemplateAssociations], 1
|
|
1706
|
-
];
|
|
1707
|
-
var UpdateVehicleResponse$ = [3, n0, _UVRp,
|
|
1708
|
-
0,
|
|
1709
|
-
[_vN, _a],
|
|
1710
|
-
[0, 0]
|
|
1711
|
-
];
|
|
1712
|
-
var UpdateVehicleResponseItem$ = [3, n0, _UVRIp,
|
|
1713
|
-
0,
|
|
1714
|
-
[_vN, _a],
|
|
1715
|
-
[0, 0]
|
|
1716
|
-
];
|
|
1717
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1718
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1719
|
-
[_m, _re, _fL],
|
|
1720
|
-
[0, 0, () => ValidationExceptionFieldList], 1
|
|
1721
|
-
];
|
|
1722
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1723
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1724
|
-
0,
|
|
1725
|
-
[_n, _m],
|
|
1726
|
-
[0, 0], 2
|
|
1727
|
-
];
|
|
1728
|
-
var VehicleMiddleware$ = [3, n0, _VM,
|
|
1729
|
-
0,
|
|
1730
|
-
[_n, _pN],
|
|
1731
|
-
[0, 0], 2
|
|
1732
|
-
];
|
|
1733
|
-
var VehicleStatus$ = [3, n0, _VS,
|
|
1734
|
-
0,
|
|
1735
|
-
[_cN, _vN, _s],
|
|
1736
|
-
[0, 0, 0]
|
|
1737
|
-
];
|
|
1738
|
-
var VehicleSummary$ = [3, n0, _VSe,
|
|
1739
|
-
0,
|
|
1740
|
-
[_vN, _a, _mMA, _dMA, _cT, _lMT, _at],
|
|
1741
|
-
[0, 0, 0, 0, 4, 4, 128 | 0], 6
|
|
1742
|
-
];
|
|
1743
|
-
var IoTFleetWiseServiceException$ = [-3, _sm, "IoTFleetWiseServiceException", 0, [], []];
|
|
1744
|
-
schema.TypeRegistry.for(_sm).registerError(IoTFleetWiseServiceException$, IoTFleetWiseServiceException);
|
|
1745
|
-
var campaignSummaries = [1, n0, _cSa,
|
|
1746
|
-
0, () => CampaignSummary$
|
|
1747
|
-
];
|
|
1748
|
-
var createVehicleErrors = [1, n0, _cVE,
|
|
1749
|
-
0, () => CreateVehicleError$
|
|
1750
|
-
];
|
|
1751
|
-
var createVehicleRequestItems = [1, n0, _cVRI,
|
|
1752
|
-
0, () => CreateVehicleRequestItem$
|
|
1753
|
-
];
|
|
1754
|
-
var createVehicleResponses = [1, n0, _cVR,
|
|
1755
|
-
0, () => CreateVehicleResponseItem$
|
|
1756
|
-
];
|
|
1757
|
-
var DataDestinationConfigs = [1, n0, _DDC,
|
|
1758
|
-
0, () => DataDestinationConfig$
|
|
1759
|
-
];
|
|
1760
|
-
var DataExtraDimensionNodePathList = [1, n0, _DEDNPL,
|
|
1761
|
-
8, 0
|
|
1762
|
-
];
|
|
1763
|
-
var DataPartitions = [1, n0, _DPa,
|
|
1764
|
-
0, [() => DataPartition$,
|
|
1765
|
-
0]
|
|
1766
|
-
];
|
|
1767
|
-
var decoderManifestSummaries = [1, n0, _dMS,
|
|
1768
|
-
0, () => DecoderManifestSummary$
|
|
1769
|
-
];
|
|
1770
|
-
var EventExpressionList = [1, n0, _EEL,
|
|
1771
|
-
0, [() => actionEventExpression,
|
|
1772
|
-
0]
|
|
1773
|
-
];
|
|
1774
|
-
var fleetSummaries = [1, n0, _fS,
|
|
1775
|
-
0, () => FleetSummary$
|
|
1776
|
-
];
|
|
1777
|
-
var InvalidNetworkInterfaces = [1, n0, _INIn,
|
|
1778
|
-
0, () => InvalidNetworkInterface$
|
|
1779
|
-
];
|
|
1780
|
-
var InvalidSignalDecoders = [1, n0, _ISDn,
|
|
1781
|
-
0, () => InvalidSignalDecoder$
|
|
1782
|
-
];
|
|
1783
|
-
var InvalidSignals = [1, n0, _ISn,
|
|
1784
|
-
0, () => InvalidSignal$
|
|
1785
|
-
];
|
|
1786
|
-
var modelManifestSummaries = [1, n0, _mMS,
|
|
1787
|
-
0, () => ModelManifestSummary$
|
|
1788
|
-
];
|
|
1789
|
-
var NetworkFileDefinitions = [1, n0, _NFD,
|
|
1790
|
-
0, () => NetworkFileDefinition$
|
|
1791
|
-
];
|
|
1792
|
-
var NetworkInterfaces = [1, n0, _NIe,
|
|
1793
|
-
0, () => NetworkInterface$
|
|
1794
|
-
];
|
|
1795
|
-
var Nodes = [1, n0, _N,
|
|
1796
|
-
0, () => Node$
|
|
1797
|
-
];
|
|
1798
|
-
var signalCatalogSummaries = [1, n0, _sCS,
|
|
1799
|
-
0, () => SignalCatalogSummary$
|
|
1800
|
-
];
|
|
1801
|
-
var SignalDecoders = [1, n0, _SDi,
|
|
1802
|
-
0, () => SignalDecoder$
|
|
1803
|
-
];
|
|
1804
|
-
var SignalFetchInformationList = [1, n0, _SFIL,
|
|
1805
|
-
8, [() => SignalFetchInformation$,
|
|
1806
|
-
0]
|
|
1807
|
-
];
|
|
1808
|
-
var SignalInformationList = [1, n0, _SIL,
|
|
1809
|
-
8, () => SignalInformation$
|
|
1810
|
-
];
|
|
1811
|
-
var StateTemplateAssociations = [1, n0, _STAt,
|
|
1812
|
-
0, () => StateTemplateAssociation$
|
|
1813
|
-
];
|
|
1814
|
-
var StateTemplateSummaries = [1, n0, _STSt,
|
|
1815
|
-
0, () => StateTemplateSummary$
|
|
1816
|
-
];
|
|
1817
|
-
var StructuredMessageDefinition = [1, n0, _SMD,
|
|
1818
|
-
0, () => StructuredMessageFieldNameAndDataTypePair$
|
|
1819
|
-
];
|
|
1820
|
-
var TagList = [1, n0, _TL,
|
|
1821
|
-
0, () => Tag$
|
|
1822
|
-
];
|
|
1823
|
-
var updateVehicleErrors = [1, n0, _uVE,
|
|
1824
|
-
0, () => UpdateVehicleError$
|
|
1825
|
-
];
|
|
1826
|
-
var updateVehicleRequestItems = [1, n0, _uVRI,
|
|
1827
|
-
0, () => UpdateVehicleRequestItem$
|
|
1828
|
-
];
|
|
1829
|
-
var updateVehicleResponseItems = [1, n0, _uVRIp,
|
|
1830
|
-
0, () => UpdateVehicleResponseItem$
|
|
1831
|
-
];
|
|
1832
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1833
|
-
0, () => ValidationExceptionField$
|
|
1834
|
-
];
|
|
1835
|
-
var VehicleStatusList = [1, n0, _VSL,
|
|
1836
|
-
0, () => VehicleStatus$
|
|
1837
|
-
];
|
|
1838
|
-
var vehicleSummaries = [1, n0, _vS,
|
|
1839
|
-
0, () => VehicleSummary$
|
|
1840
|
-
];
|
|
1841
|
-
var CollectionScheme$ = [4, n0, _CSo,
|
|
1842
|
-
0,
|
|
1843
|
-
[_tBCS, _cBCS],
|
|
1844
|
-
[() => TimeBasedCollectionScheme$, [() => ConditionBasedCollectionScheme$, 0]]
|
|
1845
|
-
];
|
|
1846
|
-
var DataDestinationConfig$ = [4, n0, _DDCa,
|
|
1847
|
-
0,
|
|
1848
|
-
[_sCo, _tC, _mTC],
|
|
1849
|
-
[() => S3Config$, () => TimestreamConfig$, () => MqttTopicConfig$]
|
|
1850
|
-
];
|
|
1851
|
-
var FormattedVss$ = [4, n0, _FV,
|
|
1852
|
-
0,
|
|
1853
|
-
[_vJ],
|
|
1854
|
-
[0]
|
|
1855
|
-
];
|
|
1856
|
-
var NetworkFileDefinition$ = [4, n0, _NFDe,
|
|
1857
|
-
0,
|
|
1858
|
-
[_cD],
|
|
1859
|
-
[() => CanDbcDefinition$]
|
|
1860
|
-
];
|
|
1861
|
-
var Node$ = [4, n0, _No,
|
|
1862
|
-
0,
|
|
1863
|
-
[_b, _sen, _actu, _att, _st, _pro],
|
|
1864
|
-
[() => Branch$, () => Sensor$, () => Actuator$, () => Attribute$, () => CustomStruct$, () => CustomProperty$]
|
|
1865
|
-
];
|
|
1866
|
-
var PrimitiveMessageDefinition$ = [4, n0, _PMD,
|
|
1867
|
-
0,
|
|
1868
|
-
[_rPMD],
|
|
1869
|
-
[() => ROS2PrimitiveMessageDefinition$]
|
|
1870
|
-
];
|
|
1871
|
-
var SignalFetchConfig$ = [4, n0, _SFC,
|
|
1872
|
-
0,
|
|
1873
|
-
[_tBi, _cB],
|
|
1874
|
-
[() => TimeBasedSignalFetchConfig$, [() => ConditionBasedSignalFetchConfig$, 0]]
|
|
1875
|
-
];
|
|
1876
|
-
var StateTemplateUpdateStrategy$ = [4, n0, _STUS,
|
|
1877
|
-
0,
|
|
1878
|
-
[_pe, _oC],
|
|
1879
|
-
[() => PeriodicStateTemplateUpdateStrategy$, () => OnChangeStateTemplateUpdateStrategy$]
|
|
1880
|
-
];
|
|
1881
|
-
var StructuredMessage$ = [4, n0, _SM,
|
|
1882
|
-
0,
|
|
1883
|
-
[_pMD, _sMLD, _sMD],
|
|
1884
|
-
[() => PrimitiveMessageDefinition$, () => StructuredMessageListDefinition$, () => StructuredMessageDefinition]
|
|
1885
|
-
];
|
|
1886
|
-
var AssociateVehicleFleet$ = [9, n0, _AVF,
|
|
1887
|
-
{ [_ht]: ["PUT", "/vehicles/{vehicleName}/associate", 204] }, () => AssociateVehicleFleetRequest$, () => AssociateVehicleFleetResponse$
|
|
1888
|
-
];
|
|
1889
|
-
var BatchCreateVehicle$ = [9, n0, _BCV,
|
|
1890
|
-
{ [_ht]: ["POST", "/vehicles", 200] }, () => BatchCreateVehicleRequest$, () => BatchCreateVehicleResponse$
|
|
1891
|
-
];
|
|
1892
|
-
var BatchUpdateVehicle$ = [9, n0, _BUV,
|
|
1893
|
-
{ [_ht]: ["PUT", "/vehicles", 200] }, () => BatchUpdateVehicleRequest$, () => BatchUpdateVehicleResponse$
|
|
1894
|
-
];
|
|
1895
|
-
var CreateCampaign$ = [9, n0, _CC,
|
|
1896
|
-
{ [_ht]: ["POST", "/campaigns/{name}", 200] }, () => CreateCampaignRequest$, () => CreateCampaignResponse$
|
|
1897
|
-
];
|
|
1898
|
-
var CreateDecoderManifest$ = [9, n0, _CDM,
|
|
1899
|
-
{ [_ht]: ["POST", "/decoder-manifests/{name}", 200] }, () => CreateDecoderManifestRequest$, () => CreateDecoderManifestResponse$
|
|
1900
|
-
];
|
|
1901
|
-
var CreateFleet$ = [9, n0, _CF,
|
|
1902
|
-
{ [_ht]: ["POST", "/fleets/{fleetId}", 201] }, () => CreateFleetRequest$, () => CreateFleetResponse$
|
|
1903
|
-
];
|
|
1904
|
-
var CreateModelManifest$ = [9, n0, _CMM,
|
|
1905
|
-
{ [_ht]: ["POST", "/model-manifests/{name}", 200] }, () => CreateModelManifestRequest$, () => CreateModelManifestResponse$
|
|
1906
|
-
];
|
|
1907
|
-
var CreateSignalCatalog$ = [9, n0, _CSC,
|
|
1908
|
-
{ [_ht]: ["POST", "/signal-catalogs/{name}", 200] }, () => CreateSignalCatalogRequest$, () => CreateSignalCatalogResponse$
|
|
1909
|
-
];
|
|
1910
|
-
var CreateStateTemplate$ = [9, n0, _CST,
|
|
1911
|
-
{ [_ht]: ["POST", "/state-templates/{name}", 200] }, () => CreateStateTemplateRequest$, () => CreateStateTemplateResponse$
|
|
1912
|
-
];
|
|
1913
|
-
var CreateVehicle$ = [9, n0, _CV,
|
|
1914
|
-
{ [_ht]: ["POST", "/vehicles/{vehicleName}", 201] }, () => CreateVehicleRequest$, () => CreateVehicleResponse$
|
|
1915
|
-
];
|
|
1916
|
-
var DeleteCampaign$ = [9, n0, _DC,
|
|
1917
|
-
{ [_ht]: ["DELETE", "/campaigns/{name}", 204] }, () => DeleteCampaignRequest$, () => DeleteCampaignResponse$
|
|
1918
|
-
];
|
|
1919
|
-
var DeleteDecoderManifest$ = [9, n0, _DDM,
|
|
1920
|
-
{ [_ht]: ["DELETE", "/decoder-manifests/{name}", 200] }, () => DeleteDecoderManifestRequest$, () => DeleteDecoderManifestResponse$
|
|
1921
|
-
];
|
|
1922
|
-
var DeleteFleet$ = [9, n0, _DF,
|
|
1923
|
-
{ [_ht]: ["DELETE", "/fleets/{fleetId}", 200] }, () => DeleteFleetRequest$, () => DeleteFleetResponse$
|
|
1924
|
-
];
|
|
1925
|
-
var DeleteModelManifest$ = [9, n0, _DMM,
|
|
1926
|
-
{ [_ht]: ["DELETE", "/model-manifests/{name}", 200] }, () => DeleteModelManifestRequest$, () => DeleteModelManifestResponse$
|
|
1927
|
-
];
|
|
1928
|
-
var DeleteSignalCatalog$ = [9, n0, _DSC,
|
|
1929
|
-
{ [_ht]: ["DELETE", "/signal-catalogs/{name}", 200] }, () => DeleteSignalCatalogRequest$, () => DeleteSignalCatalogResponse$
|
|
1930
|
-
];
|
|
1931
|
-
var DeleteStateTemplate$ = [9, n0, _DST,
|
|
1932
|
-
{ [_ht]: ["DELETE", "/state-templates/{identifier}", 200] }, () => DeleteStateTemplateRequest$, () => DeleteStateTemplateResponse$
|
|
1933
|
-
];
|
|
1934
|
-
var DeleteVehicle$ = [9, n0, _DV,
|
|
1935
|
-
{ [_ht]: ["DELETE", "/vehicles/{vehicleName}", 204] }, () => DeleteVehicleRequest$, () => DeleteVehicleResponse$
|
|
1936
|
-
];
|
|
1937
|
-
var DisassociateVehicleFleet$ = [9, n0, _DVF,
|
|
1938
|
-
{ [_ht]: ["PUT", "/vehicles/{vehicleName}/disassociate", 204] }, () => DisassociateVehicleFleetRequest$, () => DisassociateVehicleFleetResponse$
|
|
1939
|
-
];
|
|
1940
|
-
var GetCampaign$ = [9, n0, _GC,
|
|
1941
|
-
{ [_ht]: ["GET", "/campaigns/{name}", 200] }, () => GetCampaignRequest$, () => GetCampaignResponse$
|
|
1942
|
-
];
|
|
1943
|
-
var GetDecoderManifest$ = [9, n0, _GDM,
|
|
1944
|
-
{ [_ht]: ["GET", "/decoder-manifests/{name}", 200] }, () => GetDecoderManifestRequest$, () => GetDecoderManifestResponse$
|
|
1945
|
-
];
|
|
1946
|
-
var GetEncryptionConfiguration$ = [9, n0, _GEC,
|
|
1947
|
-
{ [_ht]: ["GET", "/encryptionConfiguration", 200] }, () => GetEncryptionConfigurationRequest$, () => GetEncryptionConfigurationResponse$
|
|
1948
|
-
];
|
|
1949
|
-
var GetFleet$ = [9, n0, _GF,
|
|
1950
|
-
{ [_ht]: ["GET", "/fleets/{fleetId}", 200] }, () => GetFleetRequest$, () => GetFleetResponse$
|
|
1951
|
-
];
|
|
1952
|
-
var GetLoggingOptions$ = [9, n0, _GLO,
|
|
1953
|
-
{ [_ht]: ["GET", "/loggingOptions", 200] }, () => GetLoggingOptionsRequest$, () => GetLoggingOptionsResponse$
|
|
1954
|
-
];
|
|
1955
|
-
var GetModelManifest$ = [9, n0, _GMM,
|
|
1956
|
-
{ [_ht]: ["GET", "/model-manifests/{name}", 200] }, () => GetModelManifestRequest$, () => GetModelManifestResponse$
|
|
1957
|
-
];
|
|
1958
|
-
var GetRegisterAccountStatus$ = [9, n0, _GRAS,
|
|
1959
|
-
{ [_ht]: ["GET", "/account/registration_status", 200] }, () => GetRegisterAccountStatusRequest$, () => GetRegisterAccountStatusResponse$
|
|
1960
|
-
];
|
|
1961
|
-
var GetSignalCatalog$ = [9, n0, _GSC,
|
|
1962
|
-
{ [_ht]: ["GET", "/signal-catalogs/{name}", 200] }, () => GetSignalCatalogRequest$, () => GetSignalCatalogResponse$
|
|
1963
|
-
];
|
|
1964
|
-
var GetStateTemplate$ = [9, n0, _GST,
|
|
1965
|
-
{ [_ht]: ["GET", "/state-templates/{identifier}", 200] }, () => GetStateTemplateRequest$, () => GetStateTemplateResponse$
|
|
1966
|
-
];
|
|
1967
|
-
var GetVehicle$ = [9, n0, _GV,
|
|
1968
|
-
{ [_ht]: ["GET", "/vehicles/{vehicleName}", 200] }, () => GetVehicleRequest$, () => GetVehicleResponse$
|
|
1969
|
-
];
|
|
1970
|
-
var GetVehicleStatus$ = [9, n0, _GVS,
|
|
1971
|
-
{ [_ht]: ["GET", "/vehicles/{vehicleName}/status", 200] }, () => GetVehicleStatusRequest$, () => GetVehicleStatusResponse$
|
|
1972
|
-
];
|
|
1973
|
-
var ImportDecoderManifest$ = [9, n0, _IDM,
|
|
1974
|
-
{ [_ht]: ["PUT", "/decoder-manifests/{name}", 200] }, () => ImportDecoderManifestRequest$, () => ImportDecoderManifestResponse$
|
|
1975
|
-
];
|
|
1976
|
-
var ImportSignalCatalog$ = [9, n0, _ISC,
|
|
1977
|
-
{ [_ht]: ["PUT", "/signal-catalogs/{name}/nodes", 200] }, () => ImportSignalCatalogRequest$, () => ImportSignalCatalogResponse$
|
|
1978
|
-
];
|
|
1979
|
-
var ListCampaigns$ = [9, n0, _LC,
|
|
1980
|
-
{ [_ht]: ["GET", "/campaigns", 200] }, () => ListCampaignsRequest$, () => ListCampaignsResponse$
|
|
1981
|
-
];
|
|
1982
|
-
var ListDecoderManifestNetworkInterfaces$ = [9, n0, _LDMNI,
|
|
1983
|
-
{ [_ht]: ["GET", "/decoder-manifests/{name}/network-interfaces", 200] }, () => ListDecoderManifestNetworkInterfacesRequest$, () => ListDecoderManifestNetworkInterfacesResponse$
|
|
1984
|
-
];
|
|
1985
|
-
var ListDecoderManifests$ = [9, n0, _LDM,
|
|
1986
|
-
{ [_ht]: ["GET", "/decoder-manifests", 200] }, () => ListDecoderManifestsRequest$, () => ListDecoderManifestsResponse$
|
|
1987
|
-
];
|
|
1988
|
-
var ListDecoderManifestSignals$ = [9, n0, _LDMS,
|
|
1989
|
-
{ [_ht]: ["GET", "/decoder-manifests/{name}/signals", 200] }, () => ListDecoderManifestSignalsRequest$, () => ListDecoderManifestSignalsResponse$
|
|
1990
|
-
];
|
|
1991
|
-
var ListFleets$ = [9, n0, _LF,
|
|
1992
|
-
{ [_ht]: ["GET", "/fleets", 200] }, () => ListFleetsRequest$, () => ListFleetsResponse$
|
|
1993
|
-
];
|
|
1994
|
-
var ListFleetsForVehicle$ = [9, n0, _LFFV,
|
|
1995
|
-
{ [_ht]: ["GET", "/vehicles/{vehicleName}/fleets", 200] }, () => ListFleetsForVehicleRequest$, () => ListFleetsForVehicleResponse$
|
|
1996
|
-
];
|
|
1997
|
-
var ListModelManifestNodes$ = [9, n0, _LMMN,
|
|
1998
|
-
{ [_ht]: ["GET", "/model-manifests/{name}/nodes", 200] }, () => ListModelManifestNodesRequest$, () => ListModelManifestNodesResponse$
|
|
1999
|
-
];
|
|
2000
|
-
var ListModelManifests$ = [9, n0, _LMM,
|
|
2001
|
-
{ [_ht]: ["GET", "/model-manifests", 200] }, () => ListModelManifestsRequest$, () => ListModelManifestsResponse$
|
|
2002
|
-
];
|
|
2003
|
-
var ListSignalCatalogNodes$ = [9, n0, _LSCN,
|
|
2004
|
-
{ [_ht]: ["GET", "/signal-catalogs/{name}/nodes", 200] }, () => ListSignalCatalogNodesRequest$, () => ListSignalCatalogNodesResponse$
|
|
2005
|
-
];
|
|
2006
|
-
var ListSignalCatalogs$ = [9, n0, _LSC,
|
|
2007
|
-
{ [_ht]: ["GET", "/signal-catalogs", 200] }, () => ListSignalCatalogsRequest$, () => ListSignalCatalogsResponse$
|
|
2008
|
-
];
|
|
2009
|
-
var ListStateTemplates$ = [9, n0, _LST,
|
|
2010
|
-
{ [_ht]: ["GET", "/state-templates", 200] }, () => ListStateTemplatesRequest$, () => ListStateTemplatesResponse$
|
|
2011
|
-
];
|
|
2012
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2013
|
-
{ [_ht]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2014
|
-
];
|
|
2015
|
-
var ListVehicles$ = [9, n0, _LV,
|
|
2016
|
-
{ [_ht]: ["GET", "/vehicles", 200] }, () => ListVehiclesRequest$, () => ListVehiclesResponse$
|
|
2017
|
-
];
|
|
2018
|
-
var ListVehiclesInFleet$ = [9, n0, _LVIF,
|
|
2019
|
-
{ [_ht]: ["GET", "/fleets/{fleetId}/vehicles", 200] }, () => ListVehiclesInFleetRequest$, () => ListVehiclesInFleetResponse$
|
|
2020
|
-
];
|
|
2021
|
-
var PutEncryptionConfiguration$ = [9, n0, _PEC,
|
|
2022
|
-
{ [_ht]: ["POST", "/encryptionConfiguration", 200] }, () => PutEncryptionConfigurationRequest$, () => PutEncryptionConfigurationResponse$
|
|
2023
|
-
];
|
|
2024
|
-
var PutLoggingOptions$ = [9, n0, _PLO,
|
|
2025
|
-
{ [_ht]: ["PUT", "/loggingOptions", 204] }, () => PutLoggingOptionsRequest$, () => PutLoggingOptionsResponse$
|
|
2026
|
-
];
|
|
2027
|
-
var RegisterAccount$ = [9, n0, _RAe,
|
|
2028
|
-
{ [_ht]: ["POST", "/account/registration", 200] }, () => RegisterAccountRequest$, () => RegisterAccountResponse$
|
|
2029
|
-
];
|
|
2030
|
-
var TagResource$ = [9, n0, _TRa,
|
|
2031
|
-
{ [_ht]: ["POST", "/tags", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2032
|
-
];
|
|
2033
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2034
|
-
{ [_ht]: ["DELETE", "/tags", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2035
|
-
];
|
|
2036
|
-
var UpdateCampaign$ = [9, n0, _UC,
|
|
2037
|
-
{ [_ht]: ["PUT", "/campaigns/{name}", 200] }, () => UpdateCampaignRequest$, () => UpdateCampaignResponse$
|
|
2038
|
-
];
|
|
2039
|
-
var UpdateDecoderManifest$ = [9, n0, _UDM,
|
|
2040
|
-
{ [_ht]: ["PATCH", "/decoder-manifests/{name}", 200] }, () => UpdateDecoderManifestRequest$, () => UpdateDecoderManifestResponse$
|
|
2041
|
-
];
|
|
2042
|
-
var UpdateFleet$ = [9, n0, _UF,
|
|
2043
|
-
{ [_ht]: ["PATCH", "/fleets/{fleetId}", 204] }, () => UpdateFleetRequest$, () => UpdateFleetResponse$
|
|
2044
|
-
];
|
|
2045
|
-
var UpdateModelManifest$ = [9, n0, _UMM,
|
|
2046
|
-
{ [_ht]: ["PATCH", "/model-manifests/{name}", 200] }, () => UpdateModelManifestRequest$, () => UpdateModelManifestResponse$
|
|
2047
|
-
];
|
|
2048
|
-
var UpdateSignalCatalog$ = [9, n0, _USC,
|
|
2049
|
-
{ [_ht]: ["PATCH", "/signal-catalogs/{name}", 200] }, () => UpdateSignalCatalogRequest$, () => UpdateSignalCatalogResponse$
|
|
2050
|
-
];
|
|
2051
|
-
var UpdateStateTemplate$ = [9, n0, _UST,
|
|
2052
|
-
{ [_ht]: ["PATCH", "/state-templates/{identifier}", 200] }, () => UpdateStateTemplateRequest$, () => UpdateStateTemplateResponse$
|
|
2053
|
-
];
|
|
2054
|
-
var UpdateVehicle$ = [9, n0, _UV,
|
|
2055
|
-
{ [_ht]: ["PATCH", "/vehicles/{vehicleName}", 204] }, () => UpdateVehicleRequest$, () => UpdateVehicleResponse$
|
|
2056
|
-
];
|
|
2057
|
-
|
|
2058
116
|
class AssociateVehicleFleetCommand extends smithyClient.Command
|
|
2059
117
|
.classBuilder()
|
|
2060
118
|
.ep(commonParams)
|
|
@@ -2063,7 +121,7 @@ class AssociateVehicleFleetCommand extends smithyClient.Command
|
|
|
2063
121
|
})
|
|
2064
122
|
.s("IoTAutobahnControlPlane", "AssociateVehicleFleet", {})
|
|
2065
123
|
.n("IoTFleetWiseClient", "AssociateVehicleFleetCommand")
|
|
2066
|
-
.sc(AssociateVehicleFleet$)
|
|
124
|
+
.sc(schemas_0.AssociateVehicleFleet$)
|
|
2067
125
|
.build() {
|
|
2068
126
|
}
|
|
2069
127
|
|
|
@@ -2075,7 +133,7 @@ class BatchCreateVehicleCommand extends smithyClient.Command
|
|
|
2075
133
|
})
|
|
2076
134
|
.s("IoTAutobahnControlPlane", "BatchCreateVehicle", {})
|
|
2077
135
|
.n("IoTFleetWiseClient", "BatchCreateVehicleCommand")
|
|
2078
|
-
.sc(BatchCreateVehicle$)
|
|
136
|
+
.sc(schemas_0.BatchCreateVehicle$)
|
|
2079
137
|
.build() {
|
|
2080
138
|
}
|
|
2081
139
|
|
|
@@ -2087,7 +145,7 @@ class BatchUpdateVehicleCommand extends smithyClient.Command
|
|
|
2087
145
|
})
|
|
2088
146
|
.s("IoTAutobahnControlPlane", "BatchUpdateVehicle", {})
|
|
2089
147
|
.n("IoTFleetWiseClient", "BatchUpdateVehicleCommand")
|
|
2090
|
-
.sc(BatchUpdateVehicle$)
|
|
148
|
+
.sc(schemas_0.BatchUpdateVehicle$)
|
|
2091
149
|
.build() {
|
|
2092
150
|
}
|
|
2093
151
|
|
|
@@ -2099,7 +157,7 @@ class CreateCampaignCommand extends smithyClient.Command
|
|
|
2099
157
|
})
|
|
2100
158
|
.s("IoTAutobahnControlPlane", "CreateCampaign", {})
|
|
2101
159
|
.n("IoTFleetWiseClient", "CreateCampaignCommand")
|
|
2102
|
-
.sc(CreateCampaign$)
|
|
160
|
+
.sc(schemas_0.CreateCampaign$)
|
|
2103
161
|
.build() {
|
|
2104
162
|
}
|
|
2105
163
|
|
|
@@ -2111,7 +169,7 @@ class CreateDecoderManifestCommand extends smithyClient.Command
|
|
|
2111
169
|
})
|
|
2112
170
|
.s("IoTAutobahnControlPlane", "CreateDecoderManifest", {})
|
|
2113
171
|
.n("IoTFleetWiseClient", "CreateDecoderManifestCommand")
|
|
2114
|
-
.sc(CreateDecoderManifest$)
|
|
172
|
+
.sc(schemas_0.CreateDecoderManifest$)
|
|
2115
173
|
.build() {
|
|
2116
174
|
}
|
|
2117
175
|
|
|
@@ -2123,7 +181,7 @@ class CreateFleetCommand extends smithyClient.Command
|
|
|
2123
181
|
})
|
|
2124
182
|
.s("IoTAutobahnControlPlane", "CreateFleet", {})
|
|
2125
183
|
.n("IoTFleetWiseClient", "CreateFleetCommand")
|
|
2126
|
-
.sc(CreateFleet$)
|
|
184
|
+
.sc(schemas_0.CreateFleet$)
|
|
2127
185
|
.build() {
|
|
2128
186
|
}
|
|
2129
187
|
|
|
@@ -2135,7 +193,7 @@ class CreateModelManifestCommand extends smithyClient.Command
|
|
|
2135
193
|
})
|
|
2136
194
|
.s("IoTAutobahnControlPlane", "CreateModelManifest", {})
|
|
2137
195
|
.n("IoTFleetWiseClient", "CreateModelManifestCommand")
|
|
2138
|
-
.sc(CreateModelManifest$)
|
|
196
|
+
.sc(schemas_0.CreateModelManifest$)
|
|
2139
197
|
.build() {
|
|
2140
198
|
}
|
|
2141
199
|
|
|
@@ -2147,7 +205,7 @@ class CreateSignalCatalogCommand extends smithyClient.Command
|
|
|
2147
205
|
})
|
|
2148
206
|
.s("IoTAutobahnControlPlane", "CreateSignalCatalog", {})
|
|
2149
207
|
.n("IoTFleetWiseClient", "CreateSignalCatalogCommand")
|
|
2150
|
-
.sc(CreateSignalCatalog$)
|
|
208
|
+
.sc(schemas_0.CreateSignalCatalog$)
|
|
2151
209
|
.build() {
|
|
2152
210
|
}
|
|
2153
211
|
|
|
@@ -2159,7 +217,7 @@ class CreateStateTemplateCommand extends smithyClient.Command
|
|
|
2159
217
|
})
|
|
2160
218
|
.s("IoTAutobahnControlPlane", "CreateStateTemplate", {})
|
|
2161
219
|
.n("IoTFleetWiseClient", "CreateStateTemplateCommand")
|
|
2162
|
-
.sc(CreateStateTemplate$)
|
|
220
|
+
.sc(schemas_0.CreateStateTemplate$)
|
|
2163
221
|
.build() {
|
|
2164
222
|
}
|
|
2165
223
|
|
|
@@ -2171,7 +229,7 @@ class CreateVehicleCommand extends smithyClient.Command
|
|
|
2171
229
|
})
|
|
2172
230
|
.s("IoTAutobahnControlPlane", "CreateVehicle", {})
|
|
2173
231
|
.n("IoTFleetWiseClient", "CreateVehicleCommand")
|
|
2174
|
-
.sc(CreateVehicle$)
|
|
232
|
+
.sc(schemas_0.CreateVehicle$)
|
|
2175
233
|
.build() {
|
|
2176
234
|
}
|
|
2177
235
|
|
|
@@ -2183,7 +241,7 @@ class DeleteCampaignCommand extends smithyClient.Command
|
|
|
2183
241
|
})
|
|
2184
242
|
.s("IoTAutobahnControlPlane", "DeleteCampaign", {})
|
|
2185
243
|
.n("IoTFleetWiseClient", "DeleteCampaignCommand")
|
|
2186
|
-
.sc(DeleteCampaign$)
|
|
244
|
+
.sc(schemas_0.DeleteCampaign$)
|
|
2187
245
|
.build() {
|
|
2188
246
|
}
|
|
2189
247
|
|
|
@@ -2195,7 +253,7 @@ class DeleteDecoderManifestCommand extends smithyClient.Command
|
|
|
2195
253
|
})
|
|
2196
254
|
.s("IoTAutobahnControlPlane", "DeleteDecoderManifest", {})
|
|
2197
255
|
.n("IoTFleetWiseClient", "DeleteDecoderManifestCommand")
|
|
2198
|
-
.sc(DeleteDecoderManifest$)
|
|
256
|
+
.sc(schemas_0.DeleteDecoderManifest$)
|
|
2199
257
|
.build() {
|
|
2200
258
|
}
|
|
2201
259
|
|
|
@@ -2207,7 +265,7 @@ class DeleteFleetCommand extends smithyClient.Command
|
|
|
2207
265
|
})
|
|
2208
266
|
.s("IoTAutobahnControlPlane", "DeleteFleet", {})
|
|
2209
267
|
.n("IoTFleetWiseClient", "DeleteFleetCommand")
|
|
2210
|
-
.sc(DeleteFleet$)
|
|
268
|
+
.sc(schemas_0.DeleteFleet$)
|
|
2211
269
|
.build() {
|
|
2212
270
|
}
|
|
2213
271
|
|
|
@@ -2219,7 +277,7 @@ class DeleteModelManifestCommand extends smithyClient.Command
|
|
|
2219
277
|
})
|
|
2220
278
|
.s("IoTAutobahnControlPlane", "DeleteModelManifest", {})
|
|
2221
279
|
.n("IoTFleetWiseClient", "DeleteModelManifestCommand")
|
|
2222
|
-
.sc(DeleteModelManifest$)
|
|
280
|
+
.sc(schemas_0.DeleteModelManifest$)
|
|
2223
281
|
.build() {
|
|
2224
282
|
}
|
|
2225
283
|
|
|
@@ -2231,7 +289,7 @@ class DeleteSignalCatalogCommand extends smithyClient.Command
|
|
|
2231
289
|
})
|
|
2232
290
|
.s("IoTAutobahnControlPlane", "DeleteSignalCatalog", {})
|
|
2233
291
|
.n("IoTFleetWiseClient", "DeleteSignalCatalogCommand")
|
|
2234
|
-
.sc(DeleteSignalCatalog$)
|
|
292
|
+
.sc(schemas_0.DeleteSignalCatalog$)
|
|
2235
293
|
.build() {
|
|
2236
294
|
}
|
|
2237
295
|
|
|
@@ -2243,7 +301,7 @@ class DeleteStateTemplateCommand extends smithyClient.Command
|
|
|
2243
301
|
})
|
|
2244
302
|
.s("IoTAutobahnControlPlane", "DeleteStateTemplate", {})
|
|
2245
303
|
.n("IoTFleetWiseClient", "DeleteStateTemplateCommand")
|
|
2246
|
-
.sc(DeleteStateTemplate$)
|
|
304
|
+
.sc(schemas_0.DeleteStateTemplate$)
|
|
2247
305
|
.build() {
|
|
2248
306
|
}
|
|
2249
307
|
|
|
@@ -2255,7 +313,7 @@ class DeleteVehicleCommand extends smithyClient.Command
|
|
|
2255
313
|
})
|
|
2256
314
|
.s("IoTAutobahnControlPlane", "DeleteVehicle", {})
|
|
2257
315
|
.n("IoTFleetWiseClient", "DeleteVehicleCommand")
|
|
2258
|
-
.sc(DeleteVehicle$)
|
|
316
|
+
.sc(schemas_0.DeleteVehicle$)
|
|
2259
317
|
.build() {
|
|
2260
318
|
}
|
|
2261
319
|
|
|
@@ -2267,7 +325,7 @@ class DisassociateVehicleFleetCommand extends smithyClient.Command
|
|
|
2267
325
|
})
|
|
2268
326
|
.s("IoTAutobahnControlPlane", "DisassociateVehicleFleet", {})
|
|
2269
327
|
.n("IoTFleetWiseClient", "DisassociateVehicleFleetCommand")
|
|
2270
|
-
.sc(DisassociateVehicleFleet$)
|
|
328
|
+
.sc(schemas_0.DisassociateVehicleFleet$)
|
|
2271
329
|
.build() {
|
|
2272
330
|
}
|
|
2273
331
|
|
|
@@ -2279,7 +337,7 @@ class GetCampaignCommand extends smithyClient.Command
|
|
|
2279
337
|
})
|
|
2280
338
|
.s("IoTAutobahnControlPlane", "GetCampaign", {})
|
|
2281
339
|
.n("IoTFleetWiseClient", "GetCampaignCommand")
|
|
2282
|
-
.sc(GetCampaign$)
|
|
340
|
+
.sc(schemas_0.GetCampaign$)
|
|
2283
341
|
.build() {
|
|
2284
342
|
}
|
|
2285
343
|
|
|
@@ -2291,7 +349,7 @@ class GetDecoderManifestCommand extends smithyClient.Command
|
|
|
2291
349
|
})
|
|
2292
350
|
.s("IoTAutobahnControlPlane", "GetDecoderManifest", {})
|
|
2293
351
|
.n("IoTFleetWiseClient", "GetDecoderManifestCommand")
|
|
2294
|
-
.sc(GetDecoderManifest$)
|
|
352
|
+
.sc(schemas_0.GetDecoderManifest$)
|
|
2295
353
|
.build() {
|
|
2296
354
|
}
|
|
2297
355
|
|
|
@@ -2303,7 +361,7 @@ class GetEncryptionConfigurationCommand extends smithyClient.Command
|
|
|
2303
361
|
})
|
|
2304
362
|
.s("IoTAutobahnControlPlane", "GetEncryptionConfiguration", {})
|
|
2305
363
|
.n("IoTFleetWiseClient", "GetEncryptionConfigurationCommand")
|
|
2306
|
-
.sc(GetEncryptionConfiguration$)
|
|
364
|
+
.sc(schemas_0.GetEncryptionConfiguration$)
|
|
2307
365
|
.build() {
|
|
2308
366
|
}
|
|
2309
367
|
|
|
@@ -2315,7 +373,7 @@ class GetFleetCommand extends smithyClient.Command
|
|
|
2315
373
|
})
|
|
2316
374
|
.s("IoTAutobahnControlPlane", "GetFleet", {})
|
|
2317
375
|
.n("IoTFleetWiseClient", "GetFleetCommand")
|
|
2318
|
-
.sc(GetFleet$)
|
|
376
|
+
.sc(schemas_0.GetFleet$)
|
|
2319
377
|
.build() {
|
|
2320
378
|
}
|
|
2321
379
|
|
|
@@ -2327,7 +385,7 @@ class GetLoggingOptionsCommand extends smithyClient.Command
|
|
|
2327
385
|
})
|
|
2328
386
|
.s("IoTAutobahnControlPlane", "GetLoggingOptions", {})
|
|
2329
387
|
.n("IoTFleetWiseClient", "GetLoggingOptionsCommand")
|
|
2330
|
-
.sc(GetLoggingOptions$)
|
|
388
|
+
.sc(schemas_0.GetLoggingOptions$)
|
|
2331
389
|
.build() {
|
|
2332
390
|
}
|
|
2333
391
|
|
|
@@ -2339,7 +397,7 @@ class GetModelManifestCommand extends smithyClient.Command
|
|
|
2339
397
|
})
|
|
2340
398
|
.s("IoTAutobahnControlPlane", "GetModelManifest", {})
|
|
2341
399
|
.n("IoTFleetWiseClient", "GetModelManifestCommand")
|
|
2342
|
-
.sc(GetModelManifest$)
|
|
400
|
+
.sc(schemas_0.GetModelManifest$)
|
|
2343
401
|
.build() {
|
|
2344
402
|
}
|
|
2345
403
|
|
|
@@ -2351,7 +409,7 @@ class GetRegisterAccountStatusCommand extends smithyClient.Command
|
|
|
2351
409
|
})
|
|
2352
410
|
.s("IoTAutobahnControlPlane", "GetRegisterAccountStatus", {})
|
|
2353
411
|
.n("IoTFleetWiseClient", "GetRegisterAccountStatusCommand")
|
|
2354
|
-
.sc(GetRegisterAccountStatus$)
|
|
412
|
+
.sc(schemas_0.GetRegisterAccountStatus$)
|
|
2355
413
|
.build() {
|
|
2356
414
|
}
|
|
2357
415
|
|
|
@@ -2363,7 +421,7 @@ class GetSignalCatalogCommand extends smithyClient.Command
|
|
|
2363
421
|
})
|
|
2364
422
|
.s("IoTAutobahnControlPlane", "GetSignalCatalog", {})
|
|
2365
423
|
.n("IoTFleetWiseClient", "GetSignalCatalogCommand")
|
|
2366
|
-
.sc(GetSignalCatalog$)
|
|
424
|
+
.sc(schemas_0.GetSignalCatalog$)
|
|
2367
425
|
.build() {
|
|
2368
426
|
}
|
|
2369
427
|
|
|
@@ -2375,7 +433,7 @@ class GetStateTemplateCommand extends smithyClient.Command
|
|
|
2375
433
|
})
|
|
2376
434
|
.s("IoTAutobahnControlPlane", "GetStateTemplate", {})
|
|
2377
435
|
.n("IoTFleetWiseClient", "GetStateTemplateCommand")
|
|
2378
|
-
.sc(GetStateTemplate$)
|
|
436
|
+
.sc(schemas_0.GetStateTemplate$)
|
|
2379
437
|
.build() {
|
|
2380
438
|
}
|
|
2381
439
|
|
|
@@ -2387,7 +445,7 @@ class GetVehicleCommand extends smithyClient.Command
|
|
|
2387
445
|
})
|
|
2388
446
|
.s("IoTAutobahnControlPlane", "GetVehicle", {})
|
|
2389
447
|
.n("IoTFleetWiseClient", "GetVehicleCommand")
|
|
2390
|
-
.sc(GetVehicle$)
|
|
448
|
+
.sc(schemas_0.GetVehicle$)
|
|
2391
449
|
.build() {
|
|
2392
450
|
}
|
|
2393
451
|
|
|
@@ -2399,7 +457,7 @@ class GetVehicleStatusCommand extends smithyClient.Command
|
|
|
2399
457
|
})
|
|
2400
458
|
.s("IoTAutobahnControlPlane", "GetVehicleStatus", {})
|
|
2401
459
|
.n("IoTFleetWiseClient", "GetVehicleStatusCommand")
|
|
2402
|
-
.sc(GetVehicleStatus$)
|
|
460
|
+
.sc(schemas_0.GetVehicleStatus$)
|
|
2403
461
|
.build() {
|
|
2404
462
|
}
|
|
2405
463
|
|
|
@@ -2411,7 +469,7 @@ class ImportDecoderManifestCommand extends smithyClient.Command
|
|
|
2411
469
|
})
|
|
2412
470
|
.s("IoTAutobahnControlPlane", "ImportDecoderManifest", {})
|
|
2413
471
|
.n("IoTFleetWiseClient", "ImportDecoderManifestCommand")
|
|
2414
|
-
.sc(ImportDecoderManifest$)
|
|
472
|
+
.sc(schemas_0.ImportDecoderManifest$)
|
|
2415
473
|
.build() {
|
|
2416
474
|
}
|
|
2417
475
|
|
|
@@ -2423,7 +481,7 @@ class ImportSignalCatalogCommand extends smithyClient.Command
|
|
|
2423
481
|
})
|
|
2424
482
|
.s("IoTAutobahnControlPlane", "ImportSignalCatalog", {})
|
|
2425
483
|
.n("IoTFleetWiseClient", "ImportSignalCatalogCommand")
|
|
2426
|
-
.sc(ImportSignalCatalog$)
|
|
484
|
+
.sc(schemas_0.ImportSignalCatalog$)
|
|
2427
485
|
.build() {
|
|
2428
486
|
}
|
|
2429
487
|
|
|
@@ -2435,7 +493,7 @@ class ListCampaignsCommand extends smithyClient.Command
|
|
|
2435
493
|
})
|
|
2436
494
|
.s("IoTAutobahnControlPlane", "ListCampaigns", {})
|
|
2437
495
|
.n("IoTFleetWiseClient", "ListCampaignsCommand")
|
|
2438
|
-
.sc(ListCampaigns$)
|
|
496
|
+
.sc(schemas_0.ListCampaigns$)
|
|
2439
497
|
.build() {
|
|
2440
498
|
}
|
|
2441
499
|
|
|
@@ -2447,7 +505,7 @@ class ListDecoderManifestNetworkInterfacesCommand extends smithyClient.Command
|
|
|
2447
505
|
})
|
|
2448
506
|
.s("IoTAutobahnControlPlane", "ListDecoderManifestNetworkInterfaces", {})
|
|
2449
507
|
.n("IoTFleetWiseClient", "ListDecoderManifestNetworkInterfacesCommand")
|
|
2450
|
-
.sc(ListDecoderManifestNetworkInterfaces$)
|
|
508
|
+
.sc(schemas_0.ListDecoderManifestNetworkInterfaces$)
|
|
2451
509
|
.build() {
|
|
2452
510
|
}
|
|
2453
511
|
|
|
@@ -2459,7 +517,7 @@ class ListDecoderManifestsCommand extends smithyClient.Command
|
|
|
2459
517
|
})
|
|
2460
518
|
.s("IoTAutobahnControlPlane", "ListDecoderManifests", {})
|
|
2461
519
|
.n("IoTFleetWiseClient", "ListDecoderManifestsCommand")
|
|
2462
|
-
.sc(ListDecoderManifests$)
|
|
520
|
+
.sc(schemas_0.ListDecoderManifests$)
|
|
2463
521
|
.build() {
|
|
2464
522
|
}
|
|
2465
523
|
|
|
@@ -2471,7 +529,7 @@ class ListDecoderManifestSignalsCommand extends smithyClient.Command
|
|
|
2471
529
|
})
|
|
2472
530
|
.s("IoTAutobahnControlPlane", "ListDecoderManifestSignals", {})
|
|
2473
531
|
.n("IoTFleetWiseClient", "ListDecoderManifestSignalsCommand")
|
|
2474
|
-
.sc(ListDecoderManifestSignals$)
|
|
532
|
+
.sc(schemas_0.ListDecoderManifestSignals$)
|
|
2475
533
|
.build() {
|
|
2476
534
|
}
|
|
2477
535
|
|
|
@@ -2483,7 +541,7 @@ class ListFleetsCommand extends smithyClient.Command
|
|
|
2483
541
|
})
|
|
2484
542
|
.s("IoTAutobahnControlPlane", "ListFleets", {})
|
|
2485
543
|
.n("IoTFleetWiseClient", "ListFleetsCommand")
|
|
2486
|
-
.sc(ListFleets$)
|
|
544
|
+
.sc(schemas_0.ListFleets$)
|
|
2487
545
|
.build() {
|
|
2488
546
|
}
|
|
2489
547
|
|
|
@@ -2495,7 +553,7 @@ class ListFleetsForVehicleCommand extends smithyClient.Command
|
|
|
2495
553
|
})
|
|
2496
554
|
.s("IoTAutobahnControlPlane", "ListFleetsForVehicle", {})
|
|
2497
555
|
.n("IoTFleetWiseClient", "ListFleetsForVehicleCommand")
|
|
2498
|
-
.sc(ListFleetsForVehicle$)
|
|
556
|
+
.sc(schemas_0.ListFleetsForVehicle$)
|
|
2499
557
|
.build() {
|
|
2500
558
|
}
|
|
2501
559
|
|
|
@@ -2507,7 +565,7 @@ class ListModelManifestNodesCommand extends smithyClient.Command
|
|
|
2507
565
|
})
|
|
2508
566
|
.s("IoTAutobahnControlPlane", "ListModelManifestNodes", {})
|
|
2509
567
|
.n("IoTFleetWiseClient", "ListModelManifestNodesCommand")
|
|
2510
|
-
.sc(ListModelManifestNodes$)
|
|
568
|
+
.sc(schemas_0.ListModelManifestNodes$)
|
|
2511
569
|
.build() {
|
|
2512
570
|
}
|
|
2513
571
|
|
|
@@ -2519,7 +577,7 @@ class ListModelManifestsCommand extends smithyClient.Command
|
|
|
2519
577
|
})
|
|
2520
578
|
.s("IoTAutobahnControlPlane", "ListModelManifests", {})
|
|
2521
579
|
.n("IoTFleetWiseClient", "ListModelManifestsCommand")
|
|
2522
|
-
.sc(ListModelManifests$)
|
|
580
|
+
.sc(schemas_0.ListModelManifests$)
|
|
2523
581
|
.build() {
|
|
2524
582
|
}
|
|
2525
583
|
|
|
@@ -2531,7 +589,7 @@ class ListSignalCatalogNodesCommand extends smithyClient.Command
|
|
|
2531
589
|
})
|
|
2532
590
|
.s("IoTAutobahnControlPlane", "ListSignalCatalogNodes", {})
|
|
2533
591
|
.n("IoTFleetWiseClient", "ListSignalCatalogNodesCommand")
|
|
2534
|
-
.sc(ListSignalCatalogNodes$)
|
|
592
|
+
.sc(schemas_0.ListSignalCatalogNodes$)
|
|
2535
593
|
.build() {
|
|
2536
594
|
}
|
|
2537
595
|
|
|
@@ -2543,7 +601,7 @@ class ListSignalCatalogsCommand extends smithyClient.Command
|
|
|
2543
601
|
})
|
|
2544
602
|
.s("IoTAutobahnControlPlane", "ListSignalCatalogs", {})
|
|
2545
603
|
.n("IoTFleetWiseClient", "ListSignalCatalogsCommand")
|
|
2546
|
-
.sc(ListSignalCatalogs$)
|
|
604
|
+
.sc(schemas_0.ListSignalCatalogs$)
|
|
2547
605
|
.build() {
|
|
2548
606
|
}
|
|
2549
607
|
|
|
@@ -2555,7 +613,7 @@ class ListStateTemplatesCommand extends smithyClient.Command
|
|
|
2555
613
|
})
|
|
2556
614
|
.s("IoTAutobahnControlPlane", "ListStateTemplates", {})
|
|
2557
615
|
.n("IoTFleetWiseClient", "ListStateTemplatesCommand")
|
|
2558
|
-
.sc(ListStateTemplates$)
|
|
616
|
+
.sc(schemas_0.ListStateTemplates$)
|
|
2559
617
|
.build() {
|
|
2560
618
|
}
|
|
2561
619
|
|
|
@@ -2567,7 +625,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2567
625
|
})
|
|
2568
626
|
.s("IoTAutobahnControlPlane", "ListTagsForResource", {})
|
|
2569
627
|
.n("IoTFleetWiseClient", "ListTagsForResourceCommand")
|
|
2570
|
-
.sc(ListTagsForResource$)
|
|
628
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2571
629
|
.build() {
|
|
2572
630
|
}
|
|
2573
631
|
|
|
@@ -2579,7 +637,7 @@ class ListVehiclesCommand extends smithyClient.Command
|
|
|
2579
637
|
})
|
|
2580
638
|
.s("IoTAutobahnControlPlane", "ListVehicles", {})
|
|
2581
639
|
.n("IoTFleetWiseClient", "ListVehiclesCommand")
|
|
2582
|
-
.sc(ListVehicles$)
|
|
640
|
+
.sc(schemas_0.ListVehicles$)
|
|
2583
641
|
.build() {
|
|
2584
642
|
}
|
|
2585
643
|
|
|
@@ -2591,7 +649,7 @@ class ListVehiclesInFleetCommand extends smithyClient.Command
|
|
|
2591
649
|
})
|
|
2592
650
|
.s("IoTAutobahnControlPlane", "ListVehiclesInFleet", {})
|
|
2593
651
|
.n("IoTFleetWiseClient", "ListVehiclesInFleetCommand")
|
|
2594
|
-
.sc(ListVehiclesInFleet$)
|
|
652
|
+
.sc(schemas_0.ListVehiclesInFleet$)
|
|
2595
653
|
.build() {
|
|
2596
654
|
}
|
|
2597
655
|
|
|
@@ -2603,7 +661,7 @@ class PutEncryptionConfigurationCommand extends smithyClient.Command
|
|
|
2603
661
|
})
|
|
2604
662
|
.s("IoTAutobahnControlPlane", "PutEncryptionConfiguration", {})
|
|
2605
663
|
.n("IoTFleetWiseClient", "PutEncryptionConfigurationCommand")
|
|
2606
|
-
.sc(PutEncryptionConfiguration$)
|
|
664
|
+
.sc(schemas_0.PutEncryptionConfiguration$)
|
|
2607
665
|
.build() {
|
|
2608
666
|
}
|
|
2609
667
|
|
|
@@ -2615,7 +673,7 @@ class PutLoggingOptionsCommand extends smithyClient.Command
|
|
|
2615
673
|
})
|
|
2616
674
|
.s("IoTAutobahnControlPlane", "PutLoggingOptions", {})
|
|
2617
675
|
.n("IoTFleetWiseClient", "PutLoggingOptionsCommand")
|
|
2618
|
-
.sc(PutLoggingOptions$)
|
|
676
|
+
.sc(schemas_0.PutLoggingOptions$)
|
|
2619
677
|
.build() {
|
|
2620
678
|
}
|
|
2621
679
|
|
|
@@ -2627,7 +685,7 @@ class RegisterAccountCommand extends smithyClient.Command
|
|
|
2627
685
|
})
|
|
2628
686
|
.s("IoTAutobahnControlPlane", "RegisterAccount", {})
|
|
2629
687
|
.n("IoTFleetWiseClient", "RegisterAccountCommand")
|
|
2630
|
-
.sc(RegisterAccount$)
|
|
688
|
+
.sc(schemas_0.RegisterAccount$)
|
|
2631
689
|
.build() {
|
|
2632
690
|
}
|
|
2633
691
|
|
|
@@ -2639,7 +697,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2639
697
|
})
|
|
2640
698
|
.s("IoTAutobahnControlPlane", "TagResource", {})
|
|
2641
699
|
.n("IoTFleetWiseClient", "TagResourceCommand")
|
|
2642
|
-
.sc(TagResource$)
|
|
700
|
+
.sc(schemas_0.TagResource$)
|
|
2643
701
|
.build() {
|
|
2644
702
|
}
|
|
2645
703
|
|
|
@@ -2651,7 +709,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2651
709
|
})
|
|
2652
710
|
.s("IoTAutobahnControlPlane", "UntagResource", {})
|
|
2653
711
|
.n("IoTFleetWiseClient", "UntagResourceCommand")
|
|
2654
|
-
.sc(UntagResource$)
|
|
712
|
+
.sc(schemas_0.UntagResource$)
|
|
2655
713
|
.build() {
|
|
2656
714
|
}
|
|
2657
715
|
|
|
@@ -2663,7 +721,7 @@ class UpdateCampaignCommand extends smithyClient.Command
|
|
|
2663
721
|
})
|
|
2664
722
|
.s("IoTAutobahnControlPlane", "UpdateCampaign", {})
|
|
2665
723
|
.n("IoTFleetWiseClient", "UpdateCampaignCommand")
|
|
2666
|
-
.sc(UpdateCampaign$)
|
|
724
|
+
.sc(schemas_0.UpdateCampaign$)
|
|
2667
725
|
.build() {
|
|
2668
726
|
}
|
|
2669
727
|
|
|
@@ -2675,7 +733,7 @@ class UpdateDecoderManifestCommand extends smithyClient.Command
|
|
|
2675
733
|
})
|
|
2676
734
|
.s("IoTAutobahnControlPlane", "UpdateDecoderManifest", {})
|
|
2677
735
|
.n("IoTFleetWiseClient", "UpdateDecoderManifestCommand")
|
|
2678
|
-
.sc(UpdateDecoderManifest$)
|
|
736
|
+
.sc(schemas_0.UpdateDecoderManifest$)
|
|
2679
737
|
.build() {
|
|
2680
738
|
}
|
|
2681
739
|
|
|
@@ -2687,7 +745,7 @@ class UpdateFleetCommand extends smithyClient.Command
|
|
|
2687
745
|
})
|
|
2688
746
|
.s("IoTAutobahnControlPlane", "UpdateFleet", {})
|
|
2689
747
|
.n("IoTFleetWiseClient", "UpdateFleetCommand")
|
|
2690
|
-
.sc(UpdateFleet$)
|
|
748
|
+
.sc(schemas_0.UpdateFleet$)
|
|
2691
749
|
.build() {
|
|
2692
750
|
}
|
|
2693
751
|
|
|
@@ -2699,7 +757,7 @@ class UpdateModelManifestCommand extends smithyClient.Command
|
|
|
2699
757
|
})
|
|
2700
758
|
.s("IoTAutobahnControlPlane", "UpdateModelManifest", {})
|
|
2701
759
|
.n("IoTFleetWiseClient", "UpdateModelManifestCommand")
|
|
2702
|
-
.sc(UpdateModelManifest$)
|
|
760
|
+
.sc(schemas_0.UpdateModelManifest$)
|
|
2703
761
|
.build() {
|
|
2704
762
|
}
|
|
2705
763
|
|
|
@@ -2711,7 +769,7 @@ class UpdateSignalCatalogCommand extends smithyClient.Command
|
|
|
2711
769
|
})
|
|
2712
770
|
.s("IoTAutobahnControlPlane", "UpdateSignalCatalog", {})
|
|
2713
771
|
.n("IoTFleetWiseClient", "UpdateSignalCatalogCommand")
|
|
2714
|
-
.sc(UpdateSignalCatalog$)
|
|
772
|
+
.sc(schemas_0.UpdateSignalCatalog$)
|
|
2715
773
|
.build() {
|
|
2716
774
|
}
|
|
2717
775
|
|
|
@@ -2723,7 +781,7 @@ class UpdateStateTemplateCommand extends smithyClient.Command
|
|
|
2723
781
|
})
|
|
2724
782
|
.s("IoTAutobahnControlPlane", "UpdateStateTemplate", {})
|
|
2725
783
|
.n("IoTFleetWiseClient", "UpdateStateTemplateCommand")
|
|
2726
|
-
.sc(UpdateStateTemplate$)
|
|
784
|
+
.sc(schemas_0.UpdateStateTemplate$)
|
|
2727
785
|
.build() {
|
|
2728
786
|
}
|
|
2729
787
|
|
|
@@ -2735,7 +793,7 @@ class UpdateVehicleCommand extends smithyClient.Command
|
|
|
2735
793
|
})
|
|
2736
794
|
.s("IoTAutobahnControlPlane", "UpdateVehicle", {})
|
|
2737
795
|
.n("IoTFleetWiseClient", "UpdateVehicleCommand")
|
|
2738
|
-
.sc(UpdateVehicle$)
|
|
796
|
+
.sc(schemas_0.UpdateVehicle$)
|
|
2739
797
|
.build() {
|
|
2740
798
|
}
|
|
2741
799
|
|
|
@@ -3071,363 +1129,102 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3071
1129
|
enumerable: true,
|
|
3072
1130
|
get: function () { return smithyClient.Client; }
|
|
3073
1131
|
});
|
|
3074
|
-
exports
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
1132
|
+
Object.defineProperty(exports, "IoTFleetWiseServiceException", {
|
|
1133
|
+
enumerable: true,
|
|
1134
|
+
get: function () { return IoTFleetWiseServiceException.IoTFleetWiseServiceException; }
|
|
1135
|
+
});
|
|
3078
1136
|
exports.AssociateVehicleFleetCommand = AssociateVehicleFleetCommand;
|
|
3079
|
-
exports.AssociateVehicleFleetRequest$ = AssociateVehicleFleetRequest$;
|
|
3080
|
-
exports.AssociateVehicleFleetResponse$ = AssociateVehicleFleetResponse$;
|
|
3081
|
-
exports.Attribute$ = Attribute$;
|
|
3082
|
-
exports.BatchCreateVehicle$ = BatchCreateVehicle$;
|
|
3083
1137
|
exports.BatchCreateVehicleCommand = BatchCreateVehicleCommand;
|
|
3084
|
-
exports.BatchCreateVehicleRequest$ = BatchCreateVehicleRequest$;
|
|
3085
|
-
exports.BatchCreateVehicleResponse$ = BatchCreateVehicleResponse$;
|
|
3086
|
-
exports.BatchUpdateVehicle$ = BatchUpdateVehicle$;
|
|
3087
1138
|
exports.BatchUpdateVehicleCommand = BatchUpdateVehicleCommand;
|
|
3088
|
-
exports.BatchUpdateVehicleRequest$ = BatchUpdateVehicleRequest$;
|
|
3089
|
-
exports.BatchUpdateVehicleResponse$ = BatchUpdateVehicleResponse$;
|
|
3090
|
-
exports.Branch$ = Branch$;
|
|
3091
1139
|
exports.CampaignStatus = CampaignStatus;
|
|
3092
|
-
exports.CampaignSummary$ = CampaignSummary$;
|
|
3093
|
-
exports.CanDbcDefinition$ = CanDbcDefinition$;
|
|
3094
|
-
exports.CanInterface$ = CanInterface$;
|
|
3095
|
-
exports.CanSignal$ = CanSignal$;
|
|
3096
|
-
exports.CloudWatchLogDeliveryOptions$ = CloudWatchLogDeliveryOptions$;
|
|
3097
|
-
exports.CollectionScheme$ = CollectionScheme$;
|
|
3098
1140
|
exports.Compression = Compression;
|
|
3099
|
-
exports.ConditionBasedCollectionScheme$ = ConditionBasedCollectionScheme$;
|
|
3100
|
-
exports.ConditionBasedSignalFetchConfig$ = ConditionBasedSignalFetchConfig$;
|
|
3101
|
-
exports.ConflictException = ConflictException;
|
|
3102
|
-
exports.ConflictException$ = ConflictException$;
|
|
3103
|
-
exports.CreateCampaign$ = CreateCampaign$;
|
|
3104
1141
|
exports.CreateCampaignCommand = CreateCampaignCommand;
|
|
3105
|
-
exports.CreateCampaignRequest$ = CreateCampaignRequest$;
|
|
3106
|
-
exports.CreateCampaignResponse$ = CreateCampaignResponse$;
|
|
3107
|
-
exports.CreateDecoderManifest$ = CreateDecoderManifest$;
|
|
3108
1142
|
exports.CreateDecoderManifestCommand = CreateDecoderManifestCommand;
|
|
3109
|
-
exports.CreateDecoderManifestRequest$ = CreateDecoderManifestRequest$;
|
|
3110
|
-
exports.CreateDecoderManifestResponse$ = CreateDecoderManifestResponse$;
|
|
3111
|
-
exports.CreateFleet$ = CreateFleet$;
|
|
3112
1143
|
exports.CreateFleetCommand = CreateFleetCommand;
|
|
3113
|
-
exports.CreateFleetRequest$ = CreateFleetRequest$;
|
|
3114
|
-
exports.CreateFleetResponse$ = CreateFleetResponse$;
|
|
3115
|
-
exports.CreateModelManifest$ = CreateModelManifest$;
|
|
3116
1144
|
exports.CreateModelManifestCommand = CreateModelManifestCommand;
|
|
3117
|
-
exports.CreateModelManifestRequest$ = CreateModelManifestRequest$;
|
|
3118
|
-
exports.CreateModelManifestResponse$ = CreateModelManifestResponse$;
|
|
3119
|
-
exports.CreateSignalCatalog$ = CreateSignalCatalog$;
|
|
3120
1145
|
exports.CreateSignalCatalogCommand = CreateSignalCatalogCommand;
|
|
3121
|
-
exports.CreateSignalCatalogRequest$ = CreateSignalCatalogRequest$;
|
|
3122
|
-
exports.CreateSignalCatalogResponse$ = CreateSignalCatalogResponse$;
|
|
3123
|
-
exports.CreateStateTemplate$ = CreateStateTemplate$;
|
|
3124
1146
|
exports.CreateStateTemplateCommand = CreateStateTemplateCommand;
|
|
3125
|
-
exports.CreateStateTemplateRequest$ = CreateStateTemplateRequest$;
|
|
3126
|
-
exports.CreateStateTemplateResponse$ = CreateStateTemplateResponse$;
|
|
3127
|
-
exports.CreateVehicle$ = CreateVehicle$;
|
|
3128
1147
|
exports.CreateVehicleCommand = CreateVehicleCommand;
|
|
3129
|
-
exports.CreateVehicleError$ = CreateVehicleError$;
|
|
3130
|
-
exports.CreateVehicleRequest$ = CreateVehicleRequest$;
|
|
3131
|
-
exports.CreateVehicleRequestItem$ = CreateVehicleRequestItem$;
|
|
3132
|
-
exports.CreateVehicleResponse$ = CreateVehicleResponse$;
|
|
3133
|
-
exports.CreateVehicleResponseItem$ = CreateVehicleResponseItem$;
|
|
3134
|
-
exports.CustomDecodingInterface$ = CustomDecodingInterface$;
|
|
3135
|
-
exports.CustomDecodingSignal$ = CustomDecodingSignal$;
|
|
3136
|
-
exports.CustomProperty$ = CustomProperty$;
|
|
3137
|
-
exports.CustomStruct$ = CustomStruct$;
|
|
3138
|
-
exports.DataDestinationConfig$ = DataDestinationConfig$;
|
|
3139
1148
|
exports.DataFormat = DataFormat;
|
|
3140
|
-
exports.DataPartition$ = DataPartition$;
|
|
3141
|
-
exports.DataPartitionStorageOptions$ = DataPartitionStorageOptions$;
|
|
3142
|
-
exports.DataPartitionUploadOptions$ = DataPartitionUploadOptions$;
|
|
3143
|
-
exports.DecoderManifestSummary$ = DecoderManifestSummary$;
|
|
3144
|
-
exports.DecoderManifestValidationException = DecoderManifestValidationException;
|
|
3145
|
-
exports.DecoderManifestValidationException$ = DecoderManifestValidationException$;
|
|
3146
1149
|
exports.DefaultForUnmappedSignalsType = DefaultForUnmappedSignalsType;
|
|
3147
|
-
exports.DeleteCampaign$ = DeleteCampaign$;
|
|
3148
1150
|
exports.DeleteCampaignCommand = DeleteCampaignCommand;
|
|
3149
|
-
exports.DeleteCampaignRequest$ = DeleteCampaignRequest$;
|
|
3150
|
-
exports.DeleteCampaignResponse$ = DeleteCampaignResponse$;
|
|
3151
|
-
exports.DeleteDecoderManifest$ = DeleteDecoderManifest$;
|
|
3152
1151
|
exports.DeleteDecoderManifestCommand = DeleteDecoderManifestCommand;
|
|
3153
|
-
exports.DeleteDecoderManifestRequest$ = DeleteDecoderManifestRequest$;
|
|
3154
|
-
exports.DeleteDecoderManifestResponse$ = DeleteDecoderManifestResponse$;
|
|
3155
|
-
exports.DeleteFleet$ = DeleteFleet$;
|
|
3156
1152
|
exports.DeleteFleetCommand = DeleteFleetCommand;
|
|
3157
|
-
exports.DeleteFleetRequest$ = DeleteFleetRequest$;
|
|
3158
|
-
exports.DeleteFleetResponse$ = DeleteFleetResponse$;
|
|
3159
|
-
exports.DeleteModelManifest$ = DeleteModelManifest$;
|
|
3160
1153
|
exports.DeleteModelManifestCommand = DeleteModelManifestCommand;
|
|
3161
|
-
exports.DeleteModelManifestRequest$ = DeleteModelManifestRequest$;
|
|
3162
|
-
exports.DeleteModelManifestResponse$ = DeleteModelManifestResponse$;
|
|
3163
|
-
exports.DeleteSignalCatalog$ = DeleteSignalCatalog$;
|
|
3164
1154
|
exports.DeleteSignalCatalogCommand = DeleteSignalCatalogCommand;
|
|
3165
|
-
exports.DeleteSignalCatalogRequest$ = DeleteSignalCatalogRequest$;
|
|
3166
|
-
exports.DeleteSignalCatalogResponse$ = DeleteSignalCatalogResponse$;
|
|
3167
|
-
exports.DeleteStateTemplate$ = DeleteStateTemplate$;
|
|
3168
1155
|
exports.DeleteStateTemplateCommand = DeleteStateTemplateCommand;
|
|
3169
|
-
exports.DeleteStateTemplateRequest$ = DeleteStateTemplateRequest$;
|
|
3170
|
-
exports.DeleteStateTemplateResponse$ = DeleteStateTemplateResponse$;
|
|
3171
|
-
exports.DeleteVehicle$ = DeleteVehicle$;
|
|
3172
1156
|
exports.DeleteVehicleCommand = DeleteVehicleCommand;
|
|
3173
|
-
exports.DeleteVehicleRequest$ = DeleteVehicleRequest$;
|
|
3174
|
-
exports.DeleteVehicleResponse$ = DeleteVehicleResponse$;
|
|
3175
1157
|
exports.DiagnosticsMode = DiagnosticsMode;
|
|
3176
|
-
exports.DisassociateVehicleFleet$ = DisassociateVehicleFleet$;
|
|
3177
1158
|
exports.DisassociateVehicleFleetCommand = DisassociateVehicleFleetCommand;
|
|
3178
|
-
exports.DisassociateVehicleFleetRequest$ = DisassociateVehicleFleetRequest$;
|
|
3179
|
-
exports.DisassociateVehicleFleetResponse$ = DisassociateVehicleFleetResponse$;
|
|
3180
1159
|
exports.EncryptionStatus = EncryptionStatus;
|
|
3181
1160
|
exports.EncryptionType = EncryptionType;
|
|
3182
|
-
exports.FleetSummary$ = FleetSummary$;
|
|
3183
|
-
exports.FormattedVss$ = FormattedVss$;
|
|
3184
|
-
exports.GetCampaign$ = GetCampaign$;
|
|
3185
1161
|
exports.GetCampaignCommand = GetCampaignCommand;
|
|
3186
|
-
exports.GetCampaignRequest$ = GetCampaignRequest$;
|
|
3187
|
-
exports.GetCampaignResponse$ = GetCampaignResponse$;
|
|
3188
|
-
exports.GetDecoderManifest$ = GetDecoderManifest$;
|
|
3189
1162
|
exports.GetDecoderManifestCommand = GetDecoderManifestCommand;
|
|
3190
|
-
exports.GetDecoderManifestRequest$ = GetDecoderManifestRequest$;
|
|
3191
|
-
exports.GetDecoderManifestResponse$ = GetDecoderManifestResponse$;
|
|
3192
|
-
exports.GetEncryptionConfiguration$ = GetEncryptionConfiguration$;
|
|
3193
1163
|
exports.GetEncryptionConfigurationCommand = GetEncryptionConfigurationCommand;
|
|
3194
|
-
exports.GetEncryptionConfigurationRequest$ = GetEncryptionConfigurationRequest$;
|
|
3195
|
-
exports.GetEncryptionConfigurationResponse$ = GetEncryptionConfigurationResponse$;
|
|
3196
|
-
exports.GetFleet$ = GetFleet$;
|
|
3197
1164
|
exports.GetFleetCommand = GetFleetCommand;
|
|
3198
|
-
exports.GetFleetRequest$ = GetFleetRequest$;
|
|
3199
|
-
exports.GetFleetResponse$ = GetFleetResponse$;
|
|
3200
|
-
exports.GetLoggingOptions$ = GetLoggingOptions$;
|
|
3201
1165
|
exports.GetLoggingOptionsCommand = GetLoggingOptionsCommand;
|
|
3202
|
-
exports.GetLoggingOptionsRequest$ = GetLoggingOptionsRequest$;
|
|
3203
|
-
exports.GetLoggingOptionsResponse$ = GetLoggingOptionsResponse$;
|
|
3204
|
-
exports.GetModelManifest$ = GetModelManifest$;
|
|
3205
1166
|
exports.GetModelManifestCommand = GetModelManifestCommand;
|
|
3206
|
-
exports.GetModelManifestRequest$ = GetModelManifestRequest$;
|
|
3207
|
-
exports.GetModelManifestResponse$ = GetModelManifestResponse$;
|
|
3208
|
-
exports.GetRegisterAccountStatus$ = GetRegisterAccountStatus$;
|
|
3209
1167
|
exports.GetRegisterAccountStatusCommand = GetRegisterAccountStatusCommand;
|
|
3210
|
-
exports.GetRegisterAccountStatusRequest$ = GetRegisterAccountStatusRequest$;
|
|
3211
|
-
exports.GetRegisterAccountStatusResponse$ = GetRegisterAccountStatusResponse$;
|
|
3212
|
-
exports.GetSignalCatalog$ = GetSignalCatalog$;
|
|
3213
1168
|
exports.GetSignalCatalogCommand = GetSignalCatalogCommand;
|
|
3214
|
-
exports.GetSignalCatalogRequest$ = GetSignalCatalogRequest$;
|
|
3215
|
-
exports.GetSignalCatalogResponse$ = GetSignalCatalogResponse$;
|
|
3216
|
-
exports.GetStateTemplate$ = GetStateTemplate$;
|
|
3217
1169
|
exports.GetStateTemplateCommand = GetStateTemplateCommand;
|
|
3218
|
-
exports.GetStateTemplateRequest$ = GetStateTemplateRequest$;
|
|
3219
|
-
exports.GetStateTemplateResponse$ = GetStateTemplateResponse$;
|
|
3220
|
-
exports.GetVehicle$ = GetVehicle$;
|
|
3221
1170
|
exports.GetVehicleCommand = GetVehicleCommand;
|
|
3222
|
-
exports.GetVehicleRequest$ = GetVehicleRequest$;
|
|
3223
|
-
exports.GetVehicleResponse$ = GetVehicleResponse$;
|
|
3224
|
-
exports.GetVehicleStatus$ = GetVehicleStatus$;
|
|
3225
1171
|
exports.GetVehicleStatusCommand = GetVehicleStatusCommand;
|
|
3226
|
-
exports.GetVehicleStatusRequest$ = GetVehicleStatusRequest$;
|
|
3227
|
-
exports.GetVehicleStatusResponse$ = GetVehicleStatusResponse$;
|
|
3228
|
-
exports.IamRegistrationResponse$ = IamRegistrationResponse$;
|
|
3229
|
-
exports.IamResources$ = IamResources$;
|
|
3230
|
-
exports.ImportDecoderManifest$ = ImportDecoderManifest$;
|
|
3231
1172
|
exports.ImportDecoderManifestCommand = ImportDecoderManifestCommand;
|
|
3232
|
-
exports.ImportDecoderManifestRequest$ = ImportDecoderManifestRequest$;
|
|
3233
|
-
exports.ImportDecoderManifestResponse$ = ImportDecoderManifestResponse$;
|
|
3234
|
-
exports.ImportSignalCatalog$ = ImportSignalCatalog$;
|
|
3235
1173
|
exports.ImportSignalCatalogCommand = ImportSignalCatalogCommand;
|
|
3236
|
-
exports.ImportSignalCatalogRequest$ = ImportSignalCatalogRequest$;
|
|
3237
|
-
exports.ImportSignalCatalogResponse$ = ImportSignalCatalogResponse$;
|
|
3238
|
-
exports.InternalServerException = InternalServerException;
|
|
3239
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
3240
|
-
exports.InvalidNetworkInterface$ = InvalidNetworkInterface$;
|
|
3241
|
-
exports.InvalidNodeException = InvalidNodeException;
|
|
3242
|
-
exports.InvalidNodeException$ = InvalidNodeException$;
|
|
3243
|
-
exports.InvalidSignal$ = InvalidSignal$;
|
|
3244
|
-
exports.InvalidSignalDecoder$ = InvalidSignalDecoder$;
|
|
3245
|
-
exports.InvalidSignalsException = InvalidSignalsException;
|
|
3246
|
-
exports.InvalidSignalsException$ = InvalidSignalsException$;
|
|
3247
1174
|
exports.IoTFleetWise = IoTFleetWise;
|
|
3248
1175
|
exports.IoTFleetWiseClient = IoTFleetWiseClient;
|
|
3249
|
-
exports.IoTFleetWiseServiceException = IoTFleetWiseServiceException;
|
|
3250
|
-
exports.IoTFleetWiseServiceException$ = IoTFleetWiseServiceException$;
|
|
3251
|
-
exports.LimitExceededException = LimitExceededException;
|
|
3252
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
3253
|
-
exports.ListCampaigns$ = ListCampaigns$;
|
|
3254
1176
|
exports.ListCampaignsCommand = ListCampaignsCommand;
|
|
3255
|
-
exports.ListCampaignsRequest$ = ListCampaignsRequest$;
|
|
3256
|
-
exports.ListCampaignsResponse$ = ListCampaignsResponse$;
|
|
3257
|
-
exports.ListDecoderManifestNetworkInterfaces$ = ListDecoderManifestNetworkInterfaces$;
|
|
3258
1177
|
exports.ListDecoderManifestNetworkInterfacesCommand = ListDecoderManifestNetworkInterfacesCommand;
|
|
3259
|
-
exports.ListDecoderManifestNetworkInterfacesRequest$ = ListDecoderManifestNetworkInterfacesRequest$;
|
|
3260
|
-
exports.ListDecoderManifestNetworkInterfacesResponse$ = ListDecoderManifestNetworkInterfacesResponse$;
|
|
3261
|
-
exports.ListDecoderManifestSignals$ = ListDecoderManifestSignals$;
|
|
3262
1178
|
exports.ListDecoderManifestSignalsCommand = ListDecoderManifestSignalsCommand;
|
|
3263
|
-
exports.ListDecoderManifestSignalsRequest$ = ListDecoderManifestSignalsRequest$;
|
|
3264
|
-
exports.ListDecoderManifestSignalsResponse$ = ListDecoderManifestSignalsResponse$;
|
|
3265
|
-
exports.ListDecoderManifests$ = ListDecoderManifests$;
|
|
3266
1179
|
exports.ListDecoderManifestsCommand = ListDecoderManifestsCommand;
|
|
3267
|
-
exports.ListDecoderManifestsRequest$ = ListDecoderManifestsRequest$;
|
|
3268
|
-
exports.ListDecoderManifestsResponse$ = ListDecoderManifestsResponse$;
|
|
3269
|
-
exports.ListFleets$ = ListFleets$;
|
|
3270
1180
|
exports.ListFleetsCommand = ListFleetsCommand;
|
|
3271
|
-
exports.ListFleetsForVehicle$ = ListFleetsForVehicle$;
|
|
3272
1181
|
exports.ListFleetsForVehicleCommand = ListFleetsForVehicleCommand;
|
|
3273
|
-
exports.ListFleetsForVehicleRequest$ = ListFleetsForVehicleRequest$;
|
|
3274
|
-
exports.ListFleetsForVehicleResponse$ = ListFleetsForVehicleResponse$;
|
|
3275
|
-
exports.ListFleetsRequest$ = ListFleetsRequest$;
|
|
3276
|
-
exports.ListFleetsResponse$ = ListFleetsResponse$;
|
|
3277
|
-
exports.ListModelManifestNodes$ = ListModelManifestNodes$;
|
|
3278
1182
|
exports.ListModelManifestNodesCommand = ListModelManifestNodesCommand;
|
|
3279
|
-
exports.ListModelManifestNodesRequest$ = ListModelManifestNodesRequest$;
|
|
3280
|
-
exports.ListModelManifestNodesResponse$ = ListModelManifestNodesResponse$;
|
|
3281
|
-
exports.ListModelManifests$ = ListModelManifests$;
|
|
3282
1183
|
exports.ListModelManifestsCommand = ListModelManifestsCommand;
|
|
3283
|
-
exports.ListModelManifestsRequest$ = ListModelManifestsRequest$;
|
|
3284
|
-
exports.ListModelManifestsResponse$ = ListModelManifestsResponse$;
|
|
3285
1184
|
exports.ListResponseScope = ListResponseScope;
|
|
3286
|
-
exports.ListSignalCatalogNodes$ = ListSignalCatalogNodes$;
|
|
3287
1185
|
exports.ListSignalCatalogNodesCommand = ListSignalCatalogNodesCommand;
|
|
3288
|
-
exports.ListSignalCatalogNodesRequest$ = ListSignalCatalogNodesRequest$;
|
|
3289
|
-
exports.ListSignalCatalogNodesResponse$ = ListSignalCatalogNodesResponse$;
|
|
3290
|
-
exports.ListSignalCatalogs$ = ListSignalCatalogs$;
|
|
3291
1186
|
exports.ListSignalCatalogsCommand = ListSignalCatalogsCommand;
|
|
3292
|
-
exports.ListSignalCatalogsRequest$ = ListSignalCatalogsRequest$;
|
|
3293
|
-
exports.ListSignalCatalogsResponse$ = ListSignalCatalogsResponse$;
|
|
3294
|
-
exports.ListStateTemplates$ = ListStateTemplates$;
|
|
3295
1187
|
exports.ListStateTemplatesCommand = ListStateTemplatesCommand;
|
|
3296
|
-
exports.ListStateTemplatesRequest$ = ListStateTemplatesRequest$;
|
|
3297
|
-
exports.ListStateTemplatesResponse$ = ListStateTemplatesResponse$;
|
|
3298
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3299
1188
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3300
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3301
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3302
|
-
exports.ListVehicles$ = ListVehicles$;
|
|
3303
1189
|
exports.ListVehiclesCommand = ListVehiclesCommand;
|
|
3304
|
-
exports.ListVehiclesInFleet$ = ListVehiclesInFleet$;
|
|
3305
1190
|
exports.ListVehiclesInFleetCommand = ListVehiclesInFleetCommand;
|
|
3306
|
-
exports.ListVehiclesInFleetRequest$ = ListVehiclesInFleetRequest$;
|
|
3307
|
-
exports.ListVehiclesInFleetResponse$ = ListVehiclesInFleetResponse$;
|
|
3308
|
-
exports.ListVehiclesRequest$ = ListVehiclesRequest$;
|
|
3309
|
-
exports.ListVehiclesResponse$ = ListVehiclesResponse$;
|
|
3310
1191
|
exports.LogType = LogType;
|
|
3311
1192
|
exports.ManifestStatus = ManifestStatus;
|
|
3312
|
-
exports.MessageSignal$ = MessageSignal$;
|
|
3313
|
-
exports.ModelManifestSummary$ = ModelManifestSummary$;
|
|
3314
|
-
exports.MqttTopicConfig$ = MqttTopicConfig$;
|
|
3315
|
-
exports.NetworkFileDefinition$ = NetworkFileDefinition$;
|
|
3316
|
-
exports.NetworkInterface$ = NetworkInterface$;
|
|
3317
1193
|
exports.NetworkInterfaceFailureReason = NetworkInterfaceFailureReason;
|
|
3318
1194
|
exports.NetworkInterfaceType = NetworkInterfaceType;
|
|
3319
|
-
exports.Node$ = Node$;
|
|
3320
|
-
exports.NodeCounts$ = NodeCounts$;
|
|
3321
1195
|
exports.NodeDataEncoding = NodeDataEncoding;
|
|
3322
1196
|
exports.NodeDataType = NodeDataType;
|
|
3323
|
-
exports.ObdInterface$ = ObdInterface$;
|
|
3324
|
-
exports.ObdSignal$ = ObdSignal$;
|
|
3325
|
-
exports.OnChangeStateTemplateUpdateStrategy$ = OnChangeStateTemplateUpdateStrategy$;
|
|
3326
|
-
exports.PeriodicStateTemplateUpdateStrategy$ = PeriodicStateTemplateUpdateStrategy$;
|
|
3327
|
-
exports.PrimitiveMessageDefinition$ = PrimitiveMessageDefinition$;
|
|
3328
|
-
exports.PutEncryptionConfiguration$ = PutEncryptionConfiguration$;
|
|
3329
1197
|
exports.PutEncryptionConfigurationCommand = PutEncryptionConfigurationCommand;
|
|
3330
|
-
exports.PutEncryptionConfigurationRequest$ = PutEncryptionConfigurationRequest$;
|
|
3331
|
-
exports.PutEncryptionConfigurationResponse$ = PutEncryptionConfigurationResponse$;
|
|
3332
|
-
exports.PutLoggingOptions$ = PutLoggingOptions$;
|
|
3333
1198
|
exports.PutLoggingOptionsCommand = PutLoggingOptionsCommand;
|
|
3334
|
-
exports.PutLoggingOptionsRequest$ = PutLoggingOptionsRequest$;
|
|
3335
|
-
exports.PutLoggingOptionsResponse$ = PutLoggingOptionsResponse$;
|
|
3336
|
-
exports.ROS2PrimitiveMessageDefinition$ = ROS2PrimitiveMessageDefinition$;
|
|
3337
1199
|
exports.ROS2PrimitiveType = ROS2PrimitiveType;
|
|
3338
|
-
exports.RegisterAccount$ = RegisterAccount$;
|
|
3339
1200
|
exports.RegisterAccountCommand = RegisterAccountCommand;
|
|
3340
|
-
exports.RegisterAccountRequest$ = RegisterAccountRequest$;
|
|
3341
|
-
exports.RegisterAccountResponse$ = RegisterAccountResponse$;
|
|
3342
1201
|
exports.RegistrationStatus = RegistrationStatus;
|
|
3343
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3344
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3345
|
-
exports.S3Config$ = S3Config$;
|
|
3346
|
-
exports.Sensor$ = Sensor$;
|
|
3347
|
-
exports.SignalCatalogSummary$ = SignalCatalogSummary$;
|
|
3348
|
-
exports.SignalDecoder$ = SignalDecoder$;
|
|
3349
1202
|
exports.SignalDecoderFailureReason = SignalDecoderFailureReason;
|
|
3350
1203
|
exports.SignalDecoderType = SignalDecoderType;
|
|
3351
|
-
exports.SignalFetchConfig$ = SignalFetchConfig$;
|
|
3352
|
-
exports.SignalFetchInformation$ = SignalFetchInformation$;
|
|
3353
|
-
exports.SignalInformation$ = SignalInformation$;
|
|
3354
1204
|
exports.SignalNodeType = SignalNodeType;
|
|
3355
1205
|
exports.SignalValueType = SignalValueType;
|
|
3356
1206
|
exports.SpoolingMode = SpoolingMode;
|
|
3357
|
-
exports.StateTemplateAssociation$ = StateTemplateAssociation$;
|
|
3358
|
-
exports.StateTemplateSummary$ = StateTemplateSummary$;
|
|
3359
|
-
exports.StateTemplateUpdateStrategy$ = StateTemplateUpdateStrategy$;
|
|
3360
1207
|
exports.StorageCompressionFormat = StorageCompressionFormat;
|
|
3361
|
-
exports.StorageMaximumSize$ = StorageMaximumSize$;
|
|
3362
1208
|
exports.StorageMaximumSizeUnit = StorageMaximumSizeUnit;
|
|
3363
|
-
exports.StorageMinimumTimeToLive$ = StorageMinimumTimeToLive$;
|
|
3364
1209
|
exports.StorageMinimumTimeToLiveUnit = StorageMinimumTimeToLiveUnit;
|
|
3365
|
-
exports.StructuredMessage$ = StructuredMessage$;
|
|
3366
|
-
exports.StructuredMessageFieldNameAndDataTypePair$ = StructuredMessageFieldNameAndDataTypePair$;
|
|
3367
|
-
exports.StructuredMessageListDefinition$ = StructuredMessageListDefinition$;
|
|
3368
1210
|
exports.StructuredMessageListType = StructuredMessageListType;
|
|
3369
|
-
exports.Tag$ = Tag$;
|
|
3370
|
-
exports.TagResource$ = TagResource$;
|
|
3371
1211
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3372
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3373
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3374
|
-
exports.ThrottlingException = ThrottlingException;
|
|
3375
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
3376
|
-
exports.TimeBasedCollectionScheme$ = TimeBasedCollectionScheme$;
|
|
3377
|
-
exports.TimeBasedSignalFetchConfig$ = TimeBasedSignalFetchConfig$;
|
|
3378
|
-
exports.TimePeriod$ = TimePeriod$;
|
|
3379
1212
|
exports.TimeUnit = TimeUnit;
|
|
3380
|
-
exports.TimestreamConfig$ = TimestreamConfig$;
|
|
3381
|
-
exports.TimestreamRegistrationResponse$ = TimestreamRegistrationResponse$;
|
|
3382
|
-
exports.TimestreamResources$ = TimestreamResources$;
|
|
3383
1213
|
exports.TriggerMode = TriggerMode;
|
|
3384
|
-
exports.UntagResource$ = UntagResource$;
|
|
3385
1214
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3386
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3387
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3388
|
-
exports.UpdateCampaign$ = UpdateCampaign$;
|
|
3389
1215
|
exports.UpdateCampaignAction = UpdateCampaignAction;
|
|
3390
1216
|
exports.UpdateCampaignCommand = UpdateCampaignCommand;
|
|
3391
|
-
exports.UpdateCampaignRequest$ = UpdateCampaignRequest$;
|
|
3392
|
-
exports.UpdateCampaignResponse$ = UpdateCampaignResponse$;
|
|
3393
|
-
exports.UpdateDecoderManifest$ = UpdateDecoderManifest$;
|
|
3394
1217
|
exports.UpdateDecoderManifestCommand = UpdateDecoderManifestCommand;
|
|
3395
|
-
exports.UpdateDecoderManifestRequest$ = UpdateDecoderManifestRequest$;
|
|
3396
|
-
exports.UpdateDecoderManifestResponse$ = UpdateDecoderManifestResponse$;
|
|
3397
|
-
exports.UpdateFleet$ = UpdateFleet$;
|
|
3398
1218
|
exports.UpdateFleetCommand = UpdateFleetCommand;
|
|
3399
|
-
exports.UpdateFleetRequest$ = UpdateFleetRequest$;
|
|
3400
|
-
exports.UpdateFleetResponse$ = UpdateFleetResponse$;
|
|
3401
1219
|
exports.UpdateMode = UpdateMode;
|
|
3402
|
-
exports.UpdateModelManifest$ = UpdateModelManifest$;
|
|
3403
1220
|
exports.UpdateModelManifestCommand = UpdateModelManifestCommand;
|
|
3404
|
-
exports.UpdateModelManifestRequest$ = UpdateModelManifestRequest$;
|
|
3405
|
-
exports.UpdateModelManifestResponse$ = UpdateModelManifestResponse$;
|
|
3406
|
-
exports.UpdateSignalCatalog$ = UpdateSignalCatalog$;
|
|
3407
1221
|
exports.UpdateSignalCatalogCommand = UpdateSignalCatalogCommand;
|
|
3408
|
-
exports.UpdateSignalCatalogRequest$ = UpdateSignalCatalogRequest$;
|
|
3409
|
-
exports.UpdateSignalCatalogResponse$ = UpdateSignalCatalogResponse$;
|
|
3410
|
-
exports.UpdateStateTemplate$ = UpdateStateTemplate$;
|
|
3411
1222
|
exports.UpdateStateTemplateCommand = UpdateStateTemplateCommand;
|
|
3412
|
-
exports.UpdateStateTemplateRequest$ = UpdateStateTemplateRequest$;
|
|
3413
|
-
exports.UpdateStateTemplateResponse$ = UpdateStateTemplateResponse$;
|
|
3414
|
-
exports.UpdateVehicle$ = UpdateVehicle$;
|
|
3415
1223
|
exports.UpdateVehicleCommand = UpdateVehicleCommand;
|
|
3416
|
-
exports.UpdateVehicleError$ = UpdateVehicleError$;
|
|
3417
|
-
exports.UpdateVehicleRequest$ = UpdateVehicleRequest$;
|
|
3418
|
-
exports.UpdateVehicleRequestItem$ = UpdateVehicleRequestItem$;
|
|
3419
|
-
exports.UpdateVehicleResponse$ = UpdateVehicleResponse$;
|
|
3420
|
-
exports.UpdateVehicleResponseItem$ = UpdateVehicleResponseItem$;
|
|
3421
|
-
exports.ValidationException = ValidationException;
|
|
3422
|
-
exports.ValidationException$ = ValidationException$;
|
|
3423
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
3424
1224
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
3425
1225
|
exports.VehicleAssociationBehavior = VehicleAssociationBehavior;
|
|
3426
|
-
exports.VehicleMiddleware$ = VehicleMiddleware$;
|
|
3427
1226
|
exports.VehicleMiddlewareProtocol = VehicleMiddlewareProtocol;
|
|
3428
1227
|
exports.VehicleState = VehicleState;
|
|
3429
|
-
exports.VehicleStatus$ = VehicleStatus$;
|
|
3430
|
-
exports.VehicleSummary$ = VehicleSummary$;
|
|
3431
1228
|
exports.paginateGetVehicleStatus = paginateGetVehicleStatus;
|
|
3432
1229
|
exports.paginateListCampaigns = paginateListCampaigns;
|
|
3433
1230
|
exports.paginateListDecoderManifestNetworkInterfaces = paginateListDecoderManifestNetworkInterfaces;
|
|
@@ -3442,3 +1239,15 @@ exports.paginateListSignalCatalogs = paginateListSignalCatalogs;
|
|
|
3442
1239
|
exports.paginateListStateTemplates = paginateListStateTemplates;
|
|
3443
1240
|
exports.paginateListVehicles = paginateListVehicles;
|
|
3444
1241
|
exports.paginateListVehiclesInFleet = paginateListVehiclesInFleet;
|
|
1242
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1243
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1244
|
+
enumerable: true,
|
|
1245
|
+
get: function () { return schemas_0[k]; }
|
|
1246
|
+
});
|
|
1247
|
+
});
|
|
1248
|
+
Object.keys(errors).forEach(function (k) {
|
|
1249
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1250
|
+
enumerable: true,
|
|
1251
|
+
get: function () { return errors[k]; }
|
|
1252
|
+
});
|
|
1253
|
+
});
|