@aws-sdk/client-iotfleetwise 3.696.0 → 3.698.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/README.md +43 -0
- package/dist-cjs/index.js +345 -2
- package/dist-es/IoTFleetWise.js +10 -0
- package/dist-es/commands/CreateStateTemplateCommand.js +22 -0
- package/dist-es/commands/DeleteStateTemplateCommand.js +22 -0
- package/dist-es/commands/GetStateTemplateCommand.js +22 -0
- package/dist-es/commands/ListStateTemplatesCommand.js +22 -0
- package/dist-es/commands/UpdateStateTemplateCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +87 -0
- package/dist-es/pagination/ListStateTemplatesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +143 -0
- package/dist-types/IoTFleetWise.d.ts +39 -0
- package/dist-types/IoTFleetWiseClient.d.ts +10 -2
- package/dist-types/commands/BatchCreateVehicleCommand.d.ts +14 -0
- package/dist-types/commands/BatchUpdateVehicleCommand.d.ts +17 -0
- package/dist-types/commands/CreateCampaignCommand.d.ts +46 -0
- package/dist-types/commands/CreateDecoderManifestCommand.d.ts +11 -3
- package/dist-types/commands/CreateModelManifestCommand.d.ts +2 -1
- package/dist-types/commands/CreateSignalCatalogCommand.d.ts +2 -1
- package/dist-types/commands/CreateStateTemplateCommand.d.ts +119 -0
- package/dist-types/commands/CreateVehicleCommand.d.ts +14 -0
- package/dist-types/commands/DeleteDecoderManifestCommand.d.ts +0 -4
- package/dist-types/commands/DeleteFleetCommand.d.ts +0 -4
- package/dist-types/commands/DeleteModelManifestCommand.d.ts +0 -4
- package/dist-types/commands/DeleteSignalCatalogCommand.d.ts +0 -4
- package/dist-types/commands/DeleteStateTemplateCommand.d.ts +85 -0
- package/dist-types/commands/DeleteVehicleCommand.d.ts +0 -4
- package/dist-types/commands/DisassociateVehicleFleetCommand.d.ts +0 -4
- package/dist-types/commands/GetCampaignCommand.d.ts +46 -0
- package/dist-types/commands/GetStateTemplateCommand.d.ts +104 -0
- package/dist-types/commands/GetVehicleCommand.d.ts +14 -0
- package/dist-types/commands/GetVehicleStatusCommand.d.ts +2 -2
- package/dist-types/commands/ImportDecoderManifestCommand.d.ts +5 -2
- package/dist-types/commands/ImportSignalCatalogCommand.d.ts +2 -1
- package/dist-types/commands/ListDecoderManifestNetworkInterfacesCommand.d.ts +4 -1
- package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +4 -1
- package/dist-types/commands/ListStateTemplatesCommand.d.ts +98 -0
- package/dist-types/commands/PutEncryptionConfigurationCommand.d.ts +4 -1
- package/dist-types/commands/RegisterAccountCommand.d.ts +12 -4
- package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +19 -5
- package/dist-types/commands/UpdateFleetCommand.d.ts +0 -4
- package/dist-types/commands/UpdateModelManifestCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSignalCatalogCommand.d.ts +2 -1
- package/dist-types/commands/UpdateStateTemplateCommand.d.ts +111 -0
- package/dist-types/commands/UpdateVehicleCommand.d.ts +17 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +1137 -146
- package/dist-types/pagination/ListStateTemplatesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +45 -0
- package/dist-types/ts3.4/IoTFleetWise.d.ts +86 -0
- package/dist-types/ts3.4/IoTFleetWiseClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateStateTemplateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteStateTemplateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetStateTemplateCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListStateTemplatesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateStateTemplateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +256 -0
- package/dist-types/ts3.4/pagination/ListStateTemplatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
- package/package.json +1 -1
|
@@ -35,6 +35,10 @@ import {
|
|
|
35
35
|
CreateSignalCatalogCommandInput,
|
|
36
36
|
CreateSignalCatalogCommandOutput,
|
|
37
37
|
} from "../commands/CreateSignalCatalogCommand";
|
|
38
|
+
import {
|
|
39
|
+
CreateStateTemplateCommandInput,
|
|
40
|
+
CreateStateTemplateCommandOutput,
|
|
41
|
+
} from "../commands/CreateStateTemplateCommand";
|
|
38
42
|
import {
|
|
39
43
|
CreateVehicleCommandInput,
|
|
40
44
|
CreateVehicleCommandOutput,
|
|
@@ -59,6 +63,10 @@ import {
|
|
|
59
63
|
DeleteSignalCatalogCommandInput,
|
|
60
64
|
DeleteSignalCatalogCommandOutput,
|
|
61
65
|
} from "../commands/DeleteSignalCatalogCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteStateTemplateCommandInput,
|
|
68
|
+
DeleteStateTemplateCommandOutput,
|
|
69
|
+
} from "../commands/DeleteStateTemplateCommand";
|
|
62
70
|
import {
|
|
63
71
|
DeleteVehicleCommandInput,
|
|
64
72
|
DeleteVehicleCommandOutput,
|
|
@@ -99,6 +107,10 @@ import {
|
|
|
99
107
|
GetSignalCatalogCommandInput,
|
|
100
108
|
GetSignalCatalogCommandOutput,
|
|
101
109
|
} from "../commands/GetSignalCatalogCommand";
|
|
110
|
+
import {
|
|
111
|
+
GetStateTemplateCommandInput,
|
|
112
|
+
GetStateTemplateCommandOutput,
|
|
113
|
+
} from "../commands/GetStateTemplateCommand";
|
|
102
114
|
import {
|
|
103
115
|
GetVehicleCommandInput,
|
|
104
116
|
GetVehicleCommandOutput,
|
|
@@ -155,6 +167,10 @@ import {
|
|
|
155
167
|
ListSignalCatalogsCommandInput,
|
|
156
168
|
ListSignalCatalogsCommandOutput,
|
|
157
169
|
} from "../commands/ListSignalCatalogsCommand";
|
|
170
|
+
import {
|
|
171
|
+
ListStateTemplatesCommandInput,
|
|
172
|
+
ListStateTemplatesCommandOutput,
|
|
173
|
+
} from "../commands/ListStateTemplatesCommand";
|
|
158
174
|
import {
|
|
159
175
|
ListTagsForResourceCommandInput,
|
|
160
176
|
ListTagsForResourceCommandOutput,
|
|
@@ -207,6 +223,10 @@ import {
|
|
|
207
223
|
UpdateSignalCatalogCommandInput,
|
|
208
224
|
UpdateSignalCatalogCommandOutput,
|
|
209
225
|
} from "../commands/UpdateSignalCatalogCommand";
|
|
226
|
+
import {
|
|
227
|
+
UpdateStateTemplateCommandInput,
|
|
228
|
+
UpdateStateTemplateCommandOutput,
|
|
229
|
+
} from "../commands/UpdateStateTemplateCommand";
|
|
210
230
|
import {
|
|
211
231
|
UpdateVehicleCommandInput,
|
|
212
232
|
UpdateVehicleCommandOutput,
|
|
@@ -243,6 +263,10 @@ export declare const se_CreateSignalCatalogCommand: (
|
|
|
243
263
|
input: CreateSignalCatalogCommandInput,
|
|
244
264
|
context: __SerdeContext
|
|
245
265
|
) => Promise<__HttpRequest>;
|
|
266
|
+
export declare const se_CreateStateTemplateCommand: (
|
|
267
|
+
input: CreateStateTemplateCommandInput,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<__HttpRequest>;
|
|
246
270
|
export declare const se_CreateVehicleCommand: (
|
|
247
271
|
input: CreateVehicleCommandInput,
|
|
248
272
|
context: __SerdeContext
|
|
@@ -267,6 +291,10 @@ export declare const se_DeleteSignalCatalogCommand: (
|
|
|
267
291
|
input: DeleteSignalCatalogCommandInput,
|
|
268
292
|
context: __SerdeContext
|
|
269
293
|
) => Promise<__HttpRequest>;
|
|
294
|
+
export declare const se_DeleteStateTemplateCommand: (
|
|
295
|
+
input: DeleteStateTemplateCommandInput,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<__HttpRequest>;
|
|
270
298
|
export declare const se_DeleteVehicleCommand: (
|
|
271
299
|
input: DeleteVehicleCommandInput,
|
|
272
300
|
context: __SerdeContext
|
|
@@ -307,6 +335,10 @@ export declare const se_GetSignalCatalogCommand: (
|
|
|
307
335
|
input: GetSignalCatalogCommandInput,
|
|
308
336
|
context: __SerdeContext
|
|
309
337
|
) => Promise<__HttpRequest>;
|
|
338
|
+
export declare const se_GetStateTemplateCommand: (
|
|
339
|
+
input: GetStateTemplateCommandInput,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<__HttpRequest>;
|
|
310
342
|
export declare const se_GetVehicleCommand: (
|
|
311
343
|
input: GetVehicleCommandInput,
|
|
312
344
|
context: __SerdeContext
|
|
@@ -363,6 +395,10 @@ export declare const se_ListSignalCatalogsCommand: (
|
|
|
363
395
|
input: ListSignalCatalogsCommandInput,
|
|
364
396
|
context: __SerdeContext
|
|
365
397
|
) => Promise<__HttpRequest>;
|
|
398
|
+
export declare const se_ListStateTemplatesCommand: (
|
|
399
|
+
input: ListStateTemplatesCommandInput,
|
|
400
|
+
context: __SerdeContext
|
|
401
|
+
) => Promise<__HttpRequest>;
|
|
366
402
|
export declare const se_ListTagsForResourceCommand: (
|
|
367
403
|
input: ListTagsForResourceCommandInput,
|
|
368
404
|
context: __SerdeContext
|
|
@@ -415,6 +451,10 @@ export declare const se_UpdateSignalCatalogCommand: (
|
|
|
415
451
|
input: UpdateSignalCatalogCommandInput,
|
|
416
452
|
context: __SerdeContext
|
|
417
453
|
) => Promise<__HttpRequest>;
|
|
454
|
+
export declare const se_UpdateStateTemplateCommand: (
|
|
455
|
+
input: UpdateStateTemplateCommandInput,
|
|
456
|
+
context: __SerdeContext
|
|
457
|
+
) => Promise<__HttpRequest>;
|
|
418
458
|
export declare const se_UpdateVehicleCommand: (
|
|
419
459
|
input: UpdateVehicleCommandInput,
|
|
420
460
|
context: __SerdeContext
|
|
@@ -451,6 +491,10 @@ export declare const de_CreateSignalCatalogCommand: (
|
|
|
451
491
|
output: __HttpResponse,
|
|
452
492
|
context: __SerdeContext
|
|
453
493
|
) => Promise<CreateSignalCatalogCommandOutput>;
|
|
494
|
+
export declare const de_CreateStateTemplateCommand: (
|
|
495
|
+
output: __HttpResponse,
|
|
496
|
+
context: __SerdeContext
|
|
497
|
+
) => Promise<CreateStateTemplateCommandOutput>;
|
|
454
498
|
export declare const de_CreateVehicleCommand: (
|
|
455
499
|
output: __HttpResponse,
|
|
456
500
|
context: __SerdeContext
|
|
@@ -475,6 +519,10 @@ export declare const de_DeleteSignalCatalogCommand: (
|
|
|
475
519
|
output: __HttpResponse,
|
|
476
520
|
context: __SerdeContext
|
|
477
521
|
) => Promise<DeleteSignalCatalogCommandOutput>;
|
|
522
|
+
export declare const de_DeleteStateTemplateCommand: (
|
|
523
|
+
output: __HttpResponse,
|
|
524
|
+
context: __SerdeContext
|
|
525
|
+
) => Promise<DeleteStateTemplateCommandOutput>;
|
|
478
526
|
export declare const de_DeleteVehicleCommand: (
|
|
479
527
|
output: __HttpResponse,
|
|
480
528
|
context: __SerdeContext
|
|
@@ -515,6 +563,10 @@ export declare const de_GetSignalCatalogCommand: (
|
|
|
515
563
|
output: __HttpResponse,
|
|
516
564
|
context: __SerdeContext
|
|
517
565
|
) => Promise<GetSignalCatalogCommandOutput>;
|
|
566
|
+
export declare const de_GetStateTemplateCommand: (
|
|
567
|
+
output: __HttpResponse,
|
|
568
|
+
context: __SerdeContext
|
|
569
|
+
) => Promise<GetStateTemplateCommandOutput>;
|
|
518
570
|
export declare const de_GetVehicleCommand: (
|
|
519
571
|
output: __HttpResponse,
|
|
520
572
|
context: __SerdeContext
|
|
@@ -571,6 +623,10 @@ export declare const de_ListSignalCatalogsCommand: (
|
|
|
571
623
|
output: __HttpResponse,
|
|
572
624
|
context: __SerdeContext
|
|
573
625
|
) => Promise<ListSignalCatalogsCommandOutput>;
|
|
626
|
+
export declare const de_ListStateTemplatesCommand: (
|
|
627
|
+
output: __HttpResponse,
|
|
628
|
+
context: __SerdeContext
|
|
629
|
+
) => Promise<ListStateTemplatesCommandOutput>;
|
|
574
630
|
export declare const de_ListTagsForResourceCommand: (
|
|
575
631
|
output: __HttpResponse,
|
|
576
632
|
context: __SerdeContext
|
|
@@ -623,6 +679,10 @@ export declare const de_UpdateSignalCatalogCommand: (
|
|
|
623
679
|
output: __HttpResponse,
|
|
624
680
|
context: __SerdeContext
|
|
625
681
|
) => Promise<UpdateSignalCatalogCommandOutput>;
|
|
682
|
+
export declare const de_UpdateStateTemplateCommand: (
|
|
683
|
+
output: __HttpResponse,
|
|
684
|
+
context: __SerdeContext
|
|
685
|
+
) => Promise<UpdateStateTemplateCommandOutput>;
|
|
626
686
|
export declare const de_UpdateVehicleCommand: (
|
|
627
687
|
output: __HttpResponse,
|
|
628
688
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotfleetwise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.698.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iotfleetwise",
|