@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListStateTemplatesCommandInput, ListStateTemplatesCommandOutput } from "../commands/ListStateTemplatesCommand";
|
|
3
|
+
import { IoTFleetWisePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListStateTemplates: (config: IoTFleetWisePaginationConfiguration, input: ListStateTemplatesCommandInput, ...rest: any[]) => Paginator<ListStateTemplatesCommandOutput>;
|
|
@@ -10,5 +10,6 @@ export * from "./ListModelManifestNodesPaginator";
|
|
|
10
10
|
export * from "./ListModelManifestsPaginator";
|
|
11
11
|
export * from "./ListSignalCatalogNodesPaginator";
|
|
12
12
|
export * from "./ListSignalCatalogsPaginator";
|
|
13
|
+
export * from "./ListStateTemplatesPaginator";
|
|
13
14
|
export * from "./ListVehiclesInFleetPaginator";
|
|
14
15
|
export * from "./ListVehiclesPaginator";
|
|
@@ -8,12 +8,14 @@ import { CreateDecoderManifestCommandInput, CreateDecoderManifestCommandOutput }
|
|
|
8
8
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "../commands/CreateFleetCommand";
|
|
9
9
|
import { CreateModelManifestCommandInput, CreateModelManifestCommandOutput } from "../commands/CreateModelManifestCommand";
|
|
10
10
|
import { CreateSignalCatalogCommandInput, CreateSignalCatalogCommandOutput } from "../commands/CreateSignalCatalogCommand";
|
|
11
|
+
import { CreateStateTemplateCommandInput, CreateStateTemplateCommandOutput } from "../commands/CreateStateTemplateCommand";
|
|
11
12
|
import { CreateVehicleCommandInput, CreateVehicleCommandOutput } from "../commands/CreateVehicleCommand";
|
|
12
13
|
import { DeleteCampaignCommandInput, DeleteCampaignCommandOutput } from "../commands/DeleteCampaignCommand";
|
|
13
14
|
import { DeleteDecoderManifestCommandInput, DeleteDecoderManifestCommandOutput } from "../commands/DeleteDecoderManifestCommand";
|
|
14
15
|
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "../commands/DeleteFleetCommand";
|
|
15
16
|
import { DeleteModelManifestCommandInput, DeleteModelManifestCommandOutput } from "../commands/DeleteModelManifestCommand";
|
|
16
17
|
import { DeleteSignalCatalogCommandInput, DeleteSignalCatalogCommandOutput } from "../commands/DeleteSignalCatalogCommand";
|
|
18
|
+
import { DeleteStateTemplateCommandInput, DeleteStateTemplateCommandOutput } from "../commands/DeleteStateTemplateCommand";
|
|
17
19
|
import { DeleteVehicleCommandInput, DeleteVehicleCommandOutput } from "../commands/DeleteVehicleCommand";
|
|
18
20
|
import { DisassociateVehicleFleetCommandInput, DisassociateVehicleFleetCommandOutput } from "../commands/DisassociateVehicleFleetCommand";
|
|
19
21
|
import { GetCampaignCommandInput, GetCampaignCommandOutput } from "../commands/GetCampaignCommand";
|
|
@@ -24,6 +26,7 @@ import { GetLoggingOptionsCommandInput, GetLoggingOptionsCommandOutput } from ".
|
|
|
24
26
|
import { GetModelManifestCommandInput, GetModelManifestCommandOutput } from "../commands/GetModelManifestCommand";
|
|
25
27
|
import { GetRegisterAccountStatusCommandInput, GetRegisterAccountStatusCommandOutput } from "../commands/GetRegisterAccountStatusCommand";
|
|
26
28
|
import { GetSignalCatalogCommandInput, GetSignalCatalogCommandOutput } from "../commands/GetSignalCatalogCommand";
|
|
29
|
+
import { GetStateTemplateCommandInput, GetStateTemplateCommandOutput } from "../commands/GetStateTemplateCommand";
|
|
27
30
|
import { GetVehicleCommandInput, GetVehicleCommandOutput } from "../commands/GetVehicleCommand";
|
|
28
31
|
import { GetVehicleStatusCommandInput, GetVehicleStatusCommandOutput } from "../commands/GetVehicleStatusCommand";
|
|
29
32
|
import { ImportDecoderManifestCommandInput, ImportDecoderManifestCommandOutput } from "../commands/ImportDecoderManifestCommand";
|
|
@@ -38,6 +41,7 @@ import { ListModelManifestNodesCommandInput, ListModelManifestNodesCommandOutput
|
|
|
38
41
|
import { ListModelManifestsCommandInput, ListModelManifestsCommandOutput } from "../commands/ListModelManifestsCommand";
|
|
39
42
|
import { ListSignalCatalogNodesCommandInput, ListSignalCatalogNodesCommandOutput } from "../commands/ListSignalCatalogNodesCommand";
|
|
40
43
|
import { ListSignalCatalogsCommandInput, ListSignalCatalogsCommandOutput } from "../commands/ListSignalCatalogsCommand";
|
|
44
|
+
import { ListStateTemplatesCommandInput, ListStateTemplatesCommandOutput } from "../commands/ListStateTemplatesCommand";
|
|
41
45
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
42
46
|
import { ListVehiclesCommandInput, ListVehiclesCommandOutput } from "../commands/ListVehiclesCommand";
|
|
43
47
|
import { ListVehiclesInFleetCommandInput, ListVehiclesInFleetCommandOutput } from "../commands/ListVehiclesInFleetCommand";
|
|
@@ -51,6 +55,7 @@ import { UpdateDecoderManifestCommandInput, UpdateDecoderManifestCommandOutput }
|
|
|
51
55
|
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "../commands/UpdateFleetCommand";
|
|
52
56
|
import { UpdateModelManifestCommandInput, UpdateModelManifestCommandOutput } from "../commands/UpdateModelManifestCommand";
|
|
53
57
|
import { UpdateSignalCatalogCommandInput, UpdateSignalCatalogCommandOutput } from "../commands/UpdateSignalCatalogCommand";
|
|
58
|
+
import { UpdateStateTemplateCommandInput, UpdateStateTemplateCommandOutput } from "../commands/UpdateStateTemplateCommand";
|
|
54
59
|
import { UpdateVehicleCommandInput, UpdateVehicleCommandOutput } from "../commands/UpdateVehicleCommand";
|
|
55
60
|
/**
|
|
56
61
|
* serializeAws_json1_0AssociateVehicleFleetCommand
|
|
@@ -84,6 +89,10 @@ export declare const se_CreateModelManifestCommand: (input: CreateModelManifestC
|
|
|
84
89
|
* serializeAws_json1_0CreateSignalCatalogCommand
|
|
85
90
|
*/
|
|
86
91
|
export declare const se_CreateSignalCatalogCommand: (input: CreateSignalCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
+
/**
|
|
93
|
+
* serializeAws_json1_0CreateStateTemplateCommand
|
|
94
|
+
*/
|
|
95
|
+
export declare const se_CreateStateTemplateCommand: (input: CreateStateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
96
|
/**
|
|
88
97
|
* serializeAws_json1_0CreateVehicleCommand
|
|
89
98
|
*/
|
|
@@ -108,6 +117,10 @@ export declare const se_DeleteModelManifestCommand: (input: DeleteModelManifestC
|
|
|
108
117
|
* serializeAws_json1_0DeleteSignalCatalogCommand
|
|
109
118
|
*/
|
|
110
119
|
export declare const se_DeleteSignalCatalogCommand: (input: DeleteSignalCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
+
/**
|
|
121
|
+
* serializeAws_json1_0DeleteStateTemplateCommand
|
|
122
|
+
*/
|
|
123
|
+
export declare const se_DeleteStateTemplateCommand: (input: DeleteStateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
124
|
/**
|
|
112
125
|
* serializeAws_json1_0DeleteVehicleCommand
|
|
113
126
|
*/
|
|
@@ -148,6 +161,10 @@ export declare const se_GetRegisterAccountStatusCommand: (input: GetRegisterAcco
|
|
|
148
161
|
* serializeAws_json1_0GetSignalCatalogCommand
|
|
149
162
|
*/
|
|
150
163
|
export declare const se_GetSignalCatalogCommand: (input: GetSignalCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
|
+
/**
|
|
165
|
+
* serializeAws_json1_0GetStateTemplateCommand
|
|
166
|
+
*/
|
|
167
|
+
export declare const se_GetStateTemplateCommand: (input: GetStateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
151
168
|
/**
|
|
152
169
|
* serializeAws_json1_0GetVehicleCommand
|
|
153
170
|
*/
|
|
@@ -204,6 +221,10 @@ export declare const se_ListSignalCatalogNodesCommand: (input: ListSignalCatalog
|
|
|
204
221
|
* serializeAws_json1_0ListSignalCatalogsCommand
|
|
205
222
|
*/
|
|
206
223
|
export declare const se_ListSignalCatalogsCommand: (input: ListSignalCatalogsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
224
|
+
/**
|
|
225
|
+
* serializeAws_json1_0ListStateTemplatesCommand
|
|
226
|
+
*/
|
|
227
|
+
export declare const se_ListStateTemplatesCommand: (input: ListStateTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
207
228
|
/**
|
|
208
229
|
* serializeAws_json1_0ListTagsForResourceCommand
|
|
209
230
|
*/
|
|
@@ -256,6 +277,10 @@ export declare const se_UpdateModelManifestCommand: (input: UpdateModelManifestC
|
|
|
256
277
|
* serializeAws_json1_0UpdateSignalCatalogCommand
|
|
257
278
|
*/
|
|
258
279
|
export declare const se_UpdateSignalCatalogCommand: (input: UpdateSignalCatalogCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
280
|
+
/**
|
|
281
|
+
* serializeAws_json1_0UpdateStateTemplateCommand
|
|
282
|
+
*/
|
|
283
|
+
export declare const se_UpdateStateTemplateCommand: (input: UpdateStateTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
284
|
/**
|
|
260
285
|
* serializeAws_json1_0UpdateVehicleCommand
|
|
261
286
|
*/
|
|
@@ -292,6 +317,10 @@ export declare const de_CreateModelManifestCommand: (output: __HttpResponse, con
|
|
|
292
317
|
* deserializeAws_json1_0CreateSignalCatalogCommand
|
|
293
318
|
*/
|
|
294
319
|
export declare const de_CreateSignalCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSignalCatalogCommandOutput>;
|
|
320
|
+
/**
|
|
321
|
+
* deserializeAws_json1_0CreateStateTemplateCommand
|
|
322
|
+
*/
|
|
323
|
+
export declare const de_CreateStateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStateTemplateCommandOutput>;
|
|
295
324
|
/**
|
|
296
325
|
* deserializeAws_json1_0CreateVehicleCommand
|
|
297
326
|
*/
|
|
@@ -316,6 +345,10 @@ export declare const de_DeleteModelManifestCommand: (output: __HttpResponse, con
|
|
|
316
345
|
* deserializeAws_json1_0DeleteSignalCatalogCommand
|
|
317
346
|
*/
|
|
318
347
|
export declare const de_DeleteSignalCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSignalCatalogCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* deserializeAws_json1_0DeleteStateTemplateCommand
|
|
350
|
+
*/
|
|
351
|
+
export declare const de_DeleteStateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStateTemplateCommandOutput>;
|
|
319
352
|
/**
|
|
320
353
|
* deserializeAws_json1_0DeleteVehicleCommand
|
|
321
354
|
*/
|
|
@@ -356,6 +389,10 @@ export declare const de_GetRegisterAccountStatusCommand: (output: __HttpResponse
|
|
|
356
389
|
* deserializeAws_json1_0GetSignalCatalogCommand
|
|
357
390
|
*/
|
|
358
391
|
export declare const de_GetSignalCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSignalCatalogCommandOutput>;
|
|
392
|
+
/**
|
|
393
|
+
* deserializeAws_json1_0GetStateTemplateCommand
|
|
394
|
+
*/
|
|
395
|
+
export declare const de_GetStateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStateTemplateCommandOutput>;
|
|
359
396
|
/**
|
|
360
397
|
* deserializeAws_json1_0GetVehicleCommand
|
|
361
398
|
*/
|
|
@@ -412,6 +449,10 @@ export declare const de_ListSignalCatalogNodesCommand: (output: __HttpResponse,
|
|
|
412
449
|
* deserializeAws_json1_0ListSignalCatalogsCommand
|
|
413
450
|
*/
|
|
414
451
|
export declare const de_ListSignalCatalogsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSignalCatalogsCommandOutput>;
|
|
452
|
+
/**
|
|
453
|
+
* deserializeAws_json1_0ListStateTemplatesCommand
|
|
454
|
+
*/
|
|
455
|
+
export declare const de_ListStateTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStateTemplatesCommandOutput>;
|
|
415
456
|
/**
|
|
416
457
|
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
417
458
|
*/
|
|
@@ -464,6 +505,10 @@ export declare const de_UpdateModelManifestCommand: (output: __HttpResponse, con
|
|
|
464
505
|
* deserializeAws_json1_0UpdateSignalCatalogCommand
|
|
465
506
|
*/
|
|
466
507
|
export declare const de_UpdateSignalCatalogCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSignalCatalogCommandOutput>;
|
|
508
|
+
/**
|
|
509
|
+
* deserializeAws_json1_0UpdateStateTemplateCommand
|
|
510
|
+
*/
|
|
511
|
+
export declare const de_UpdateStateTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStateTemplateCommandOutput>;
|
|
467
512
|
/**
|
|
468
513
|
* deserializeAws_json1_0UpdateVehicleCommand
|
|
469
514
|
*/
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
CreateSignalCatalogCommandInput,
|
|
32
32
|
CreateSignalCatalogCommandOutput,
|
|
33
33
|
} from "./commands/CreateSignalCatalogCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateStateTemplateCommandInput,
|
|
36
|
+
CreateStateTemplateCommandOutput,
|
|
37
|
+
} from "./commands/CreateStateTemplateCommand";
|
|
34
38
|
import {
|
|
35
39
|
CreateVehicleCommandInput,
|
|
36
40
|
CreateVehicleCommandOutput,
|
|
@@ -55,6 +59,10 @@ import {
|
|
|
55
59
|
DeleteSignalCatalogCommandInput,
|
|
56
60
|
DeleteSignalCatalogCommandOutput,
|
|
57
61
|
} from "./commands/DeleteSignalCatalogCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteStateTemplateCommandInput,
|
|
64
|
+
DeleteStateTemplateCommandOutput,
|
|
65
|
+
} from "./commands/DeleteStateTemplateCommand";
|
|
58
66
|
import {
|
|
59
67
|
DeleteVehicleCommandInput,
|
|
60
68
|
DeleteVehicleCommandOutput,
|
|
@@ -95,6 +103,10 @@ import {
|
|
|
95
103
|
GetSignalCatalogCommandInput,
|
|
96
104
|
GetSignalCatalogCommandOutput,
|
|
97
105
|
} from "./commands/GetSignalCatalogCommand";
|
|
106
|
+
import {
|
|
107
|
+
GetStateTemplateCommandInput,
|
|
108
|
+
GetStateTemplateCommandOutput,
|
|
109
|
+
} from "./commands/GetStateTemplateCommand";
|
|
98
110
|
import {
|
|
99
111
|
GetVehicleCommandInput,
|
|
100
112
|
GetVehicleCommandOutput,
|
|
@@ -151,6 +163,10 @@ import {
|
|
|
151
163
|
ListSignalCatalogsCommandInput,
|
|
152
164
|
ListSignalCatalogsCommandOutput,
|
|
153
165
|
} from "./commands/ListSignalCatalogsCommand";
|
|
166
|
+
import {
|
|
167
|
+
ListStateTemplatesCommandInput,
|
|
168
|
+
ListStateTemplatesCommandOutput,
|
|
169
|
+
} from "./commands/ListStateTemplatesCommand";
|
|
154
170
|
import {
|
|
155
171
|
ListTagsForResourceCommandInput,
|
|
156
172
|
ListTagsForResourceCommandOutput,
|
|
@@ -203,6 +219,10 @@ import {
|
|
|
203
219
|
UpdateSignalCatalogCommandInput,
|
|
204
220
|
UpdateSignalCatalogCommandOutput,
|
|
205
221
|
} from "./commands/UpdateSignalCatalogCommand";
|
|
222
|
+
import {
|
|
223
|
+
UpdateStateTemplateCommandInput,
|
|
224
|
+
UpdateStateTemplateCommandOutput,
|
|
225
|
+
} from "./commands/UpdateStateTemplateCommand";
|
|
206
226
|
import {
|
|
207
227
|
UpdateVehicleCommandInput,
|
|
208
228
|
UpdateVehicleCommandOutput,
|
|
@@ -313,6 +333,19 @@ export interface IoTFleetWise {
|
|
|
313
333
|
options: __HttpHandlerOptions,
|
|
314
334
|
cb: (err: any, data?: CreateSignalCatalogCommandOutput) => void
|
|
315
335
|
): void;
|
|
336
|
+
createStateTemplate(
|
|
337
|
+
args: CreateStateTemplateCommandInput,
|
|
338
|
+
options?: __HttpHandlerOptions
|
|
339
|
+
): Promise<CreateStateTemplateCommandOutput>;
|
|
340
|
+
createStateTemplate(
|
|
341
|
+
args: CreateStateTemplateCommandInput,
|
|
342
|
+
cb: (err: any, data?: CreateStateTemplateCommandOutput) => void
|
|
343
|
+
): void;
|
|
344
|
+
createStateTemplate(
|
|
345
|
+
args: CreateStateTemplateCommandInput,
|
|
346
|
+
options: __HttpHandlerOptions,
|
|
347
|
+
cb: (err: any, data?: CreateStateTemplateCommandOutput) => void
|
|
348
|
+
): void;
|
|
316
349
|
createVehicle(
|
|
317
350
|
args: CreateVehicleCommandInput,
|
|
318
351
|
options?: __HttpHandlerOptions
|
|
@@ -391,6 +424,19 @@ export interface IoTFleetWise {
|
|
|
391
424
|
options: __HttpHandlerOptions,
|
|
392
425
|
cb: (err: any, data?: DeleteSignalCatalogCommandOutput) => void
|
|
393
426
|
): void;
|
|
427
|
+
deleteStateTemplate(
|
|
428
|
+
args: DeleteStateTemplateCommandInput,
|
|
429
|
+
options?: __HttpHandlerOptions
|
|
430
|
+
): Promise<DeleteStateTemplateCommandOutput>;
|
|
431
|
+
deleteStateTemplate(
|
|
432
|
+
args: DeleteStateTemplateCommandInput,
|
|
433
|
+
cb: (err: any, data?: DeleteStateTemplateCommandOutput) => void
|
|
434
|
+
): void;
|
|
435
|
+
deleteStateTemplate(
|
|
436
|
+
args: DeleteStateTemplateCommandInput,
|
|
437
|
+
options: __HttpHandlerOptions,
|
|
438
|
+
cb: (err: any, data?: DeleteStateTemplateCommandOutput) => void
|
|
439
|
+
): void;
|
|
394
440
|
deleteVehicle(
|
|
395
441
|
args: DeleteVehicleCommandInput,
|
|
396
442
|
options?: __HttpHandlerOptions
|
|
@@ -524,6 +570,19 @@ export interface IoTFleetWise {
|
|
|
524
570
|
options: __HttpHandlerOptions,
|
|
525
571
|
cb: (err: any, data?: GetSignalCatalogCommandOutput) => void
|
|
526
572
|
): void;
|
|
573
|
+
getStateTemplate(
|
|
574
|
+
args: GetStateTemplateCommandInput,
|
|
575
|
+
options?: __HttpHandlerOptions
|
|
576
|
+
): Promise<GetStateTemplateCommandOutput>;
|
|
577
|
+
getStateTemplate(
|
|
578
|
+
args: GetStateTemplateCommandInput,
|
|
579
|
+
cb: (err: any, data?: GetStateTemplateCommandOutput) => void
|
|
580
|
+
): void;
|
|
581
|
+
getStateTemplate(
|
|
582
|
+
args: GetStateTemplateCommandInput,
|
|
583
|
+
options: __HttpHandlerOptions,
|
|
584
|
+
cb: (err: any, data?: GetStateTemplateCommandOutput) => void
|
|
585
|
+
): void;
|
|
527
586
|
getVehicle(
|
|
528
587
|
args: GetVehicleCommandInput,
|
|
529
588
|
options?: __HttpHandlerOptions
|
|
@@ -717,6 +776,20 @@ export interface IoTFleetWise {
|
|
|
717
776
|
options: __HttpHandlerOptions,
|
|
718
777
|
cb: (err: any, data?: ListSignalCatalogsCommandOutput) => void
|
|
719
778
|
): void;
|
|
779
|
+
listStateTemplates(): Promise<ListStateTemplatesCommandOutput>;
|
|
780
|
+
listStateTemplates(
|
|
781
|
+
args: ListStateTemplatesCommandInput,
|
|
782
|
+
options?: __HttpHandlerOptions
|
|
783
|
+
): Promise<ListStateTemplatesCommandOutput>;
|
|
784
|
+
listStateTemplates(
|
|
785
|
+
args: ListStateTemplatesCommandInput,
|
|
786
|
+
cb: (err: any, data?: ListStateTemplatesCommandOutput) => void
|
|
787
|
+
): void;
|
|
788
|
+
listStateTemplates(
|
|
789
|
+
args: ListStateTemplatesCommandInput,
|
|
790
|
+
options: __HttpHandlerOptions,
|
|
791
|
+
cb: (err: any, data?: ListStateTemplatesCommandOutput) => void
|
|
792
|
+
): void;
|
|
720
793
|
listTagsForResource(
|
|
721
794
|
args: ListTagsForResourceCommandInput,
|
|
722
795
|
options?: __HttpHandlerOptions
|
|
@@ -888,6 +961,19 @@ export interface IoTFleetWise {
|
|
|
888
961
|
options: __HttpHandlerOptions,
|
|
889
962
|
cb: (err: any, data?: UpdateSignalCatalogCommandOutput) => void
|
|
890
963
|
): void;
|
|
964
|
+
updateStateTemplate(
|
|
965
|
+
args: UpdateStateTemplateCommandInput,
|
|
966
|
+
options?: __HttpHandlerOptions
|
|
967
|
+
): Promise<UpdateStateTemplateCommandOutput>;
|
|
968
|
+
updateStateTemplate(
|
|
969
|
+
args: UpdateStateTemplateCommandInput,
|
|
970
|
+
cb: (err: any, data?: UpdateStateTemplateCommandOutput) => void
|
|
971
|
+
): void;
|
|
972
|
+
updateStateTemplate(
|
|
973
|
+
args: UpdateStateTemplateCommandInput,
|
|
974
|
+
options: __HttpHandlerOptions,
|
|
975
|
+
cb: (err: any, data?: UpdateStateTemplateCommandOutput) => void
|
|
976
|
+
): void;
|
|
891
977
|
updateVehicle(
|
|
892
978
|
args: UpdateVehicleCommandInput,
|
|
893
979
|
options?: __HttpHandlerOptions
|
|
@@ -77,6 +77,10 @@ import {
|
|
|
77
77
|
CreateSignalCatalogCommandInput,
|
|
78
78
|
CreateSignalCatalogCommandOutput,
|
|
79
79
|
} from "./commands/CreateSignalCatalogCommand";
|
|
80
|
+
import {
|
|
81
|
+
CreateStateTemplateCommandInput,
|
|
82
|
+
CreateStateTemplateCommandOutput,
|
|
83
|
+
} from "./commands/CreateStateTemplateCommand";
|
|
80
84
|
import {
|
|
81
85
|
CreateVehicleCommandInput,
|
|
82
86
|
CreateVehicleCommandOutput,
|
|
@@ -101,6 +105,10 @@ import {
|
|
|
101
105
|
DeleteSignalCatalogCommandInput,
|
|
102
106
|
DeleteSignalCatalogCommandOutput,
|
|
103
107
|
} from "./commands/DeleteSignalCatalogCommand";
|
|
108
|
+
import {
|
|
109
|
+
DeleteStateTemplateCommandInput,
|
|
110
|
+
DeleteStateTemplateCommandOutput,
|
|
111
|
+
} from "./commands/DeleteStateTemplateCommand";
|
|
104
112
|
import {
|
|
105
113
|
DeleteVehicleCommandInput,
|
|
106
114
|
DeleteVehicleCommandOutput,
|
|
@@ -141,6 +149,10 @@ import {
|
|
|
141
149
|
GetSignalCatalogCommandInput,
|
|
142
150
|
GetSignalCatalogCommandOutput,
|
|
143
151
|
} from "./commands/GetSignalCatalogCommand";
|
|
152
|
+
import {
|
|
153
|
+
GetStateTemplateCommandInput,
|
|
154
|
+
GetStateTemplateCommandOutput,
|
|
155
|
+
} from "./commands/GetStateTemplateCommand";
|
|
144
156
|
import {
|
|
145
157
|
GetVehicleCommandInput,
|
|
146
158
|
GetVehicleCommandOutput,
|
|
@@ -197,6 +209,10 @@ import {
|
|
|
197
209
|
ListSignalCatalogsCommandInput,
|
|
198
210
|
ListSignalCatalogsCommandOutput,
|
|
199
211
|
} from "./commands/ListSignalCatalogsCommand";
|
|
212
|
+
import {
|
|
213
|
+
ListStateTemplatesCommandInput,
|
|
214
|
+
ListStateTemplatesCommandOutput,
|
|
215
|
+
} from "./commands/ListStateTemplatesCommand";
|
|
200
216
|
import {
|
|
201
217
|
ListTagsForResourceCommandInput,
|
|
202
218
|
ListTagsForResourceCommandOutput,
|
|
@@ -249,6 +265,10 @@ import {
|
|
|
249
265
|
UpdateSignalCatalogCommandInput,
|
|
250
266
|
UpdateSignalCatalogCommandOutput,
|
|
251
267
|
} from "./commands/UpdateSignalCatalogCommand";
|
|
268
|
+
import {
|
|
269
|
+
UpdateStateTemplateCommandInput,
|
|
270
|
+
UpdateStateTemplateCommandOutput,
|
|
271
|
+
} from "./commands/UpdateStateTemplateCommand";
|
|
252
272
|
import {
|
|
253
273
|
UpdateVehicleCommandInput,
|
|
254
274
|
UpdateVehicleCommandOutput,
|
|
@@ -269,12 +289,14 @@ export type ServiceInputTypes =
|
|
|
269
289
|
| CreateFleetCommandInput
|
|
270
290
|
| CreateModelManifestCommandInput
|
|
271
291
|
| CreateSignalCatalogCommandInput
|
|
292
|
+
| CreateStateTemplateCommandInput
|
|
272
293
|
| CreateVehicleCommandInput
|
|
273
294
|
| DeleteCampaignCommandInput
|
|
274
295
|
| DeleteDecoderManifestCommandInput
|
|
275
296
|
| DeleteFleetCommandInput
|
|
276
297
|
| DeleteModelManifestCommandInput
|
|
277
298
|
| DeleteSignalCatalogCommandInput
|
|
299
|
+
| DeleteStateTemplateCommandInput
|
|
278
300
|
| DeleteVehicleCommandInput
|
|
279
301
|
| DisassociateVehicleFleetCommandInput
|
|
280
302
|
| GetCampaignCommandInput
|
|
@@ -285,6 +307,7 @@ export type ServiceInputTypes =
|
|
|
285
307
|
| GetModelManifestCommandInput
|
|
286
308
|
| GetRegisterAccountStatusCommandInput
|
|
287
309
|
| GetSignalCatalogCommandInput
|
|
310
|
+
| GetStateTemplateCommandInput
|
|
288
311
|
| GetVehicleCommandInput
|
|
289
312
|
| GetVehicleStatusCommandInput
|
|
290
313
|
| ImportDecoderManifestCommandInput
|
|
@@ -299,6 +322,7 @@ export type ServiceInputTypes =
|
|
|
299
322
|
| ListModelManifestsCommandInput
|
|
300
323
|
| ListSignalCatalogNodesCommandInput
|
|
301
324
|
| ListSignalCatalogsCommandInput
|
|
325
|
+
| ListStateTemplatesCommandInput
|
|
302
326
|
| ListTagsForResourceCommandInput
|
|
303
327
|
| ListVehiclesCommandInput
|
|
304
328
|
| ListVehiclesInFleetCommandInput
|
|
@@ -312,6 +336,7 @@ export type ServiceInputTypes =
|
|
|
312
336
|
| UpdateFleetCommandInput
|
|
313
337
|
| UpdateModelManifestCommandInput
|
|
314
338
|
| UpdateSignalCatalogCommandInput
|
|
339
|
+
| UpdateStateTemplateCommandInput
|
|
315
340
|
| UpdateVehicleCommandInput;
|
|
316
341
|
export type ServiceOutputTypes =
|
|
317
342
|
| AssociateVehicleFleetCommandOutput
|
|
@@ -322,12 +347,14 @@ export type ServiceOutputTypes =
|
|
|
322
347
|
| CreateFleetCommandOutput
|
|
323
348
|
| CreateModelManifestCommandOutput
|
|
324
349
|
| CreateSignalCatalogCommandOutput
|
|
350
|
+
| CreateStateTemplateCommandOutput
|
|
325
351
|
| CreateVehicleCommandOutput
|
|
326
352
|
| DeleteCampaignCommandOutput
|
|
327
353
|
| DeleteDecoderManifestCommandOutput
|
|
328
354
|
| DeleteFleetCommandOutput
|
|
329
355
|
| DeleteModelManifestCommandOutput
|
|
330
356
|
| DeleteSignalCatalogCommandOutput
|
|
357
|
+
| DeleteStateTemplateCommandOutput
|
|
331
358
|
| DeleteVehicleCommandOutput
|
|
332
359
|
| DisassociateVehicleFleetCommandOutput
|
|
333
360
|
| GetCampaignCommandOutput
|
|
@@ -338,6 +365,7 @@ export type ServiceOutputTypes =
|
|
|
338
365
|
| GetModelManifestCommandOutput
|
|
339
366
|
| GetRegisterAccountStatusCommandOutput
|
|
340
367
|
| GetSignalCatalogCommandOutput
|
|
368
|
+
| GetStateTemplateCommandOutput
|
|
341
369
|
| GetVehicleCommandOutput
|
|
342
370
|
| GetVehicleStatusCommandOutput
|
|
343
371
|
| ImportDecoderManifestCommandOutput
|
|
@@ -352,6 +380,7 @@ export type ServiceOutputTypes =
|
|
|
352
380
|
| ListModelManifestsCommandOutput
|
|
353
381
|
| ListSignalCatalogNodesCommandOutput
|
|
354
382
|
| ListSignalCatalogsCommandOutput
|
|
383
|
+
| ListStateTemplatesCommandOutput
|
|
355
384
|
| ListTagsForResourceCommandOutput
|
|
356
385
|
| ListVehiclesCommandOutput
|
|
357
386
|
| ListVehiclesInFleetCommandOutput
|
|
@@ -365,6 +394,7 @@ export type ServiceOutputTypes =
|
|
|
365
394
|
| UpdateFleetCommandOutput
|
|
366
395
|
| UpdateModelManifestCommandOutput
|
|
367
396
|
| UpdateSignalCatalogCommandOutput
|
|
397
|
+
| UpdateStateTemplateCommandOutput
|
|
368
398
|
| UpdateVehicleCommandOutput;
|
|
369
399
|
export interface ClientDefaults
|
|
370
400
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IoTFleetWiseClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IoTFleetWiseClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateStateTemplateRequest,
|
|
10
|
+
CreateStateTemplateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateStateTemplateCommandInput
|
|
15
|
+
extends CreateStateTemplateRequest {}
|
|
16
|
+
export interface CreateStateTemplateCommandOutput
|
|
17
|
+
extends CreateStateTemplateResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateStateTemplateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateStateTemplateCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateStateTemplateCommandInput,
|
|
24
|
+
CreateStateTemplateCommandOutput,
|
|
25
|
+
IoTFleetWiseClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateStateTemplateCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateStateTemplateCommandInput,
|
|
33
|
+
CreateStateTemplateCommandOutput,
|
|
34
|
+
IoTFleetWiseClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateStateTemplateCommand extends CreateStateTemplateCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateStateTemplateRequest;
|
|
44
|
+
output: CreateStateTemplateResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateStateTemplateCommandInput;
|
|
48
|
+
output: CreateStateTemplateCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IoTFleetWiseClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IoTFleetWiseClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteStateTemplateRequest,
|
|
10
|
+
DeleteStateTemplateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteStateTemplateCommandInput
|
|
15
|
+
extends DeleteStateTemplateRequest {}
|
|
16
|
+
export interface DeleteStateTemplateCommandOutput
|
|
17
|
+
extends DeleteStateTemplateResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteStateTemplateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteStateTemplateCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteStateTemplateCommandInput,
|
|
24
|
+
DeleteStateTemplateCommandOutput,
|
|
25
|
+
IoTFleetWiseClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteStateTemplateCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteStateTemplateCommandInput,
|
|
33
|
+
DeleteStateTemplateCommandOutput,
|
|
34
|
+
IoTFleetWiseClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteStateTemplateCommand extends DeleteStateTemplateCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteStateTemplateRequest;
|
|
44
|
+
output: DeleteStateTemplateResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteStateTemplateCommandInput;
|
|
48
|
+
output: DeleteStateTemplateCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IoTFleetWiseClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IoTFleetWiseClient";
|
|
8
|
+
import {
|
|
9
|
+
GetStateTemplateRequest,
|
|
10
|
+
GetStateTemplateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetStateTemplateCommandInput extends GetStateTemplateRequest {}
|
|
15
|
+
export interface GetStateTemplateCommandOutput
|
|
16
|
+
extends GetStateTemplateResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetStateTemplateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetStateTemplateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetStateTemplateCommandInput,
|
|
23
|
+
GetStateTemplateCommandOutput,
|
|
24
|
+
IoTFleetWiseClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetStateTemplateCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetStateTemplateCommandInput,
|
|
32
|
+
GetStateTemplateCommandOutput,
|
|
33
|
+
IoTFleetWiseClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetStateTemplateCommand extends GetStateTemplateCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetStateTemplateRequest;
|
|
43
|
+
output: GetStateTemplateResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetStateTemplateCommandInput;
|
|
47
|
+
output: GetStateTemplateCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IoTFleetWiseClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IoTFleetWiseClient";
|
|
8
|
+
import {
|
|
9
|
+
ListStateTemplatesRequest,
|
|
10
|
+
ListStateTemplatesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListStateTemplatesCommandInput
|
|
15
|
+
extends ListStateTemplatesRequest {}
|
|
16
|
+
export interface ListStateTemplatesCommandOutput
|
|
17
|
+
extends ListStateTemplatesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListStateTemplatesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListStateTemplatesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListStateTemplatesCommandInput,
|
|
24
|
+
ListStateTemplatesCommandOutput,
|
|
25
|
+
IoTFleetWiseClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListStateTemplatesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListStateTemplatesCommandInput,
|
|
33
|
+
ListStateTemplatesCommandOutput,
|
|
34
|
+
IoTFleetWiseClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListStateTemplatesCommand extends ListStateTemplatesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListStateTemplatesRequest;
|
|
44
|
+
output: ListStateTemplatesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListStateTemplatesCommandInput;
|
|
48
|
+
output: ListStateTemplatesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|