@aws-sdk/client-iotfleetwise 3.975.0 → 3.978.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 +45 -29
- package/dist-es/IoTFleetWise.js +31 -1
- package/dist-types/IoTFleetWise.d.ts +99 -1
- package/dist-types/ts3.4/IoTFleetWise.d.ts +103 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2739,6 +2739,34 @@ class UpdateVehicleCommand extends smithyClient.Command
|
|
|
2739
2739
|
.build() {
|
|
2740
2740
|
}
|
|
2741
2741
|
|
|
2742
|
+
const paginateGetVehicleStatus = core.createPaginator(IoTFleetWiseClient, GetVehicleStatusCommand, "nextToken", "nextToken", "maxResults");
|
|
2743
|
+
|
|
2744
|
+
const paginateListCampaigns = core.createPaginator(IoTFleetWiseClient, ListCampaignsCommand, "nextToken", "nextToken", "maxResults");
|
|
2745
|
+
|
|
2746
|
+
const paginateListDecoderManifestNetworkInterfaces = core.createPaginator(IoTFleetWiseClient, ListDecoderManifestNetworkInterfacesCommand, "nextToken", "nextToken", "maxResults");
|
|
2747
|
+
|
|
2748
|
+
const paginateListDecoderManifestSignals = core.createPaginator(IoTFleetWiseClient, ListDecoderManifestSignalsCommand, "nextToken", "nextToken", "maxResults");
|
|
2749
|
+
|
|
2750
|
+
const paginateListDecoderManifests = core.createPaginator(IoTFleetWiseClient, ListDecoderManifestsCommand, "nextToken", "nextToken", "maxResults");
|
|
2751
|
+
|
|
2752
|
+
const paginateListFleetsForVehicle = core.createPaginator(IoTFleetWiseClient, ListFleetsForVehicleCommand, "nextToken", "nextToken", "maxResults");
|
|
2753
|
+
|
|
2754
|
+
const paginateListFleets = core.createPaginator(IoTFleetWiseClient, ListFleetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2755
|
+
|
|
2756
|
+
const paginateListModelManifestNodes = core.createPaginator(IoTFleetWiseClient, ListModelManifestNodesCommand, "nextToken", "nextToken", "maxResults");
|
|
2757
|
+
|
|
2758
|
+
const paginateListModelManifests = core.createPaginator(IoTFleetWiseClient, ListModelManifestsCommand, "nextToken", "nextToken", "maxResults");
|
|
2759
|
+
|
|
2760
|
+
const paginateListSignalCatalogNodes = core.createPaginator(IoTFleetWiseClient, ListSignalCatalogNodesCommand, "nextToken", "nextToken", "maxResults");
|
|
2761
|
+
|
|
2762
|
+
const paginateListSignalCatalogs = core.createPaginator(IoTFleetWiseClient, ListSignalCatalogsCommand, "nextToken", "nextToken", "maxResults");
|
|
2763
|
+
|
|
2764
|
+
const paginateListStateTemplates = core.createPaginator(IoTFleetWiseClient, ListStateTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2765
|
+
|
|
2766
|
+
const paginateListVehiclesInFleet = core.createPaginator(IoTFleetWiseClient, ListVehiclesInFleetCommand, "nextToken", "nextToken", "maxResults");
|
|
2767
|
+
|
|
2768
|
+
const paginateListVehicles = core.createPaginator(IoTFleetWiseClient, ListVehiclesCommand, "nextToken", "nextToken", "maxResults");
|
|
2769
|
+
|
|
2742
2770
|
const commands = {
|
|
2743
2771
|
AssociateVehicleFleetCommand,
|
|
2744
2772
|
BatchCreateVehicleCommand,
|
|
@@ -2798,37 +2826,25 @@ const commands = {
|
|
|
2798
2826
|
UpdateStateTemplateCommand,
|
|
2799
2827
|
UpdateVehicleCommand,
|
|
2800
2828
|
};
|
|
2829
|
+
const paginators = {
|
|
2830
|
+
paginateGetVehicleStatus,
|
|
2831
|
+
paginateListCampaigns,
|
|
2832
|
+
paginateListDecoderManifestNetworkInterfaces,
|
|
2833
|
+
paginateListDecoderManifests,
|
|
2834
|
+
paginateListDecoderManifestSignals,
|
|
2835
|
+
paginateListFleets,
|
|
2836
|
+
paginateListFleetsForVehicle,
|
|
2837
|
+
paginateListModelManifestNodes,
|
|
2838
|
+
paginateListModelManifests,
|
|
2839
|
+
paginateListSignalCatalogNodes,
|
|
2840
|
+
paginateListSignalCatalogs,
|
|
2841
|
+
paginateListStateTemplates,
|
|
2842
|
+
paginateListVehicles,
|
|
2843
|
+
paginateListVehiclesInFleet,
|
|
2844
|
+
};
|
|
2801
2845
|
class IoTFleetWise extends IoTFleetWiseClient {
|
|
2802
2846
|
}
|
|
2803
|
-
smithyClient.createAggregatedClient(commands, IoTFleetWise);
|
|
2804
|
-
|
|
2805
|
-
const paginateGetVehicleStatus = core.createPaginator(IoTFleetWiseClient, GetVehicleStatusCommand, "nextToken", "nextToken", "maxResults");
|
|
2806
|
-
|
|
2807
|
-
const paginateListCampaigns = core.createPaginator(IoTFleetWiseClient, ListCampaignsCommand, "nextToken", "nextToken", "maxResults");
|
|
2808
|
-
|
|
2809
|
-
const paginateListDecoderManifestNetworkInterfaces = core.createPaginator(IoTFleetWiseClient, ListDecoderManifestNetworkInterfacesCommand, "nextToken", "nextToken", "maxResults");
|
|
2810
|
-
|
|
2811
|
-
const paginateListDecoderManifests = core.createPaginator(IoTFleetWiseClient, ListDecoderManifestsCommand, "nextToken", "nextToken", "maxResults");
|
|
2812
|
-
|
|
2813
|
-
const paginateListDecoderManifestSignals = core.createPaginator(IoTFleetWiseClient, ListDecoderManifestSignalsCommand, "nextToken", "nextToken", "maxResults");
|
|
2814
|
-
|
|
2815
|
-
const paginateListFleets = core.createPaginator(IoTFleetWiseClient, ListFleetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2816
|
-
|
|
2817
|
-
const paginateListFleetsForVehicle = core.createPaginator(IoTFleetWiseClient, ListFleetsForVehicleCommand, "nextToken", "nextToken", "maxResults");
|
|
2818
|
-
|
|
2819
|
-
const paginateListModelManifestNodes = core.createPaginator(IoTFleetWiseClient, ListModelManifestNodesCommand, "nextToken", "nextToken", "maxResults");
|
|
2820
|
-
|
|
2821
|
-
const paginateListModelManifests = core.createPaginator(IoTFleetWiseClient, ListModelManifestsCommand, "nextToken", "nextToken", "maxResults");
|
|
2822
|
-
|
|
2823
|
-
const paginateListSignalCatalogNodes = core.createPaginator(IoTFleetWiseClient, ListSignalCatalogNodesCommand, "nextToken", "nextToken", "maxResults");
|
|
2824
|
-
|
|
2825
|
-
const paginateListSignalCatalogs = core.createPaginator(IoTFleetWiseClient, ListSignalCatalogsCommand, "nextToken", "nextToken", "maxResults");
|
|
2826
|
-
|
|
2827
|
-
const paginateListStateTemplates = core.createPaginator(IoTFleetWiseClient, ListStateTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2828
|
-
|
|
2829
|
-
const paginateListVehicles = core.createPaginator(IoTFleetWiseClient, ListVehiclesCommand, "nextToken", "nextToken", "maxResults");
|
|
2830
|
-
|
|
2831
|
-
const paginateListVehiclesInFleet = core.createPaginator(IoTFleetWiseClient, ListVehiclesInFleetCommand, "nextToken", "nextToken", "maxResults");
|
|
2847
|
+
smithyClient.createAggregatedClient(commands, IoTFleetWise, { paginators });
|
|
2832
2848
|
|
|
2833
2849
|
const NodeDataType = {
|
|
2834
2850
|
BOOLEAN: "BOOLEAN",
|
package/dist-es/IoTFleetWise.js
CHANGED
|
@@ -57,6 +57,20 @@ import { UpdateSignalCatalogCommand, } from "./commands/UpdateSignalCatalogComma
|
|
|
57
57
|
import { UpdateStateTemplateCommand, } from "./commands/UpdateStateTemplateCommand";
|
|
58
58
|
import { UpdateVehicleCommand, } from "./commands/UpdateVehicleCommand";
|
|
59
59
|
import { IoTFleetWiseClient } from "./IoTFleetWiseClient";
|
|
60
|
+
import { paginateGetVehicleStatus } from "./pagination/GetVehicleStatusPaginator";
|
|
61
|
+
import { paginateListCampaigns } from "./pagination/ListCampaignsPaginator";
|
|
62
|
+
import { paginateListDecoderManifestNetworkInterfaces, } from "./pagination/ListDecoderManifestNetworkInterfacesPaginator";
|
|
63
|
+
import { paginateListDecoderManifestSignals } from "./pagination/ListDecoderManifestSignalsPaginator";
|
|
64
|
+
import { paginateListDecoderManifests } from "./pagination/ListDecoderManifestsPaginator";
|
|
65
|
+
import { paginateListFleetsForVehicle } from "./pagination/ListFleetsForVehiclePaginator";
|
|
66
|
+
import { paginateListFleets } from "./pagination/ListFleetsPaginator";
|
|
67
|
+
import { paginateListModelManifestNodes } from "./pagination/ListModelManifestNodesPaginator";
|
|
68
|
+
import { paginateListModelManifests } from "./pagination/ListModelManifestsPaginator";
|
|
69
|
+
import { paginateListSignalCatalogNodes } from "./pagination/ListSignalCatalogNodesPaginator";
|
|
70
|
+
import { paginateListSignalCatalogs } from "./pagination/ListSignalCatalogsPaginator";
|
|
71
|
+
import { paginateListStateTemplates } from "./pagination/ListStateTemplatesPaginator";
|
|
72
|
+
import { paginateListVehiclesInFleet } from "./pagination/ListVehiclesInFleetPaginator";
|
|
73
|
+
import { paginateListVehicles } from "./pagination/ListVehiclesPaginator";
|
|
60
74
|
const commands = {
|
|
61
75
|
AssociateVehicleFleetCommand,
|
|
62
76
|
BatchCreateVehicleCommand,
|
|
@@ -116,6 +130,22 @@ const commands = {
|
|
|
116
130
|
UpdateStateTemplateCommand,
|
|
117
131
|
UpdateVehicleCommand,
|
|
118
132
|
};
|
|
133
|
+
const paginators = {
|
|
134
|
+
paginateGetVehicleStatus,
|
|
135
|
+
paginateListCampaigns,
|
|
136
|
+
paginateListDecoderManifestNetworkInterfaces,
|
|
137
|
+
paginateListDecoderManifests,
|
|
138
|
+
paginateListDecoderManifestSignals,
|
|
139
|
+
paginateListFleets,
|
|
140
|
+
paginateListFleetsForVehicle,
|
|
141
|
+
paginateListModelManifestNodes,
|
|
142
|
+
paginateListModelManifests,
|
|
143
|
+
paginateListSignalCatalogNodes,
|
|
144
|
+
paginateListSignalCatalogs,
|
|
145
|
+
paginateListStateTemplates,
|
|
146
|
+
paginateListVehicles,
|
|
147
|
+
paginateListVehiclesInFleet,
|
|
148
|
+
};
|
|
119
149
|
export class IoTFleetWise extends IoTFleetWiseClient {
|
|
120
150
|
}
|
|
121
|
-
createAggregatedClient(commands, IoTFleetWise);
|
|
151
|
+
createAggregatedClient(commands, IoTFleetWise, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateVehicleFleetCommandInput, AssociateVehicleFleetCommandOutput } from "./commands/AssociateVehicleFleetCommand";
|
|
3
3
|
import { BatchCreateVehicleCommandInput, BatchCreateVehicleCommandOutput } from "./commands/BatchCreateVehicleCommand";
|
|
4
4
|
import { BatchUpdateVehicleCommandInput, BatchUpdateVehicleCommandOutput } from "./commands/BatchUpdateVehicleCommand";
|
|
@@ -411,6 +411,104 @@ export interface IoTFleetWise {
|
|
|
411
411
|
updateVehicle(args: UpdateVehicleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVehicleCommandOutput>;
|
|
412
412
|
updateVehicle(args: UpdateVehicleCommandInput, cb: (err: any, data?: UpdateVehicleCommandOutput) => void): void;
|
|
413
413
|
updateVehicle(args: UpdateVehicleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVehicleCommandOutput) => void): void;
|
|
414
|
+
/**
|
|
415
|
+
* @see {@link GetVehicleStatusCommand}
|
|
416
|
+
* @param args - command input.
|
|
417
|
+
* @param paginationConfig - optional pagination config.
|
|
418
|
+
* @returns AsyncIterable of {@link GetVehicleStatusCommandOutput}.
|
|
419
|
+
*/
|
|
420
|
+
paginateGetVehicleStatus(args: GetVehicleStatusCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetVehicleStatusCommandOutput>;
|
|
421
|
+
/**
|
|
422
|
+
* @see {@link ListCampaignsCommand}
|
|
423
|
+
* @param args - command input.
|
|
424
|
+
* @param paginationConfig - optional pagination config.
|
|
425
|
+
* @returns AsyncIterable of {@link ListCampaignsCommandOutput}.
|
|
426
|
+
*/
|
|
427
|
+
paginateListCampaigns(args?: ListCampaignsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCampaignsCommandOutput>;
|
|
428
|
+
/**
|
|
429
|
+
* @see {@link ListDecoderManifestNetworkInterfacesCommand}
|
|
430
|
+
* @param args - command input.
|
|
431
|
+
* @param paginationConfig - optional pagination config.
|
|
432
|
+
* @returns AsyncIterable of {@link ListDecoderManifestNetworkInterfacesCommandOutput}.
|
|
433
|
+
*/
|
|
434
|
+
paginateListDecoderManifestNetworkInterfaces(args: ListDecoderManifestNetworkInterfacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDecoderManifestNetworkInterfacesCommandOutput>;
|
|
435
|
+
/**
|
|
436
|
+
* @see {@link ListDecoderManifestsCommand}
|
|
437
|
+
* @param args - command input.
|
|
438
|
+
* @param paginationConfig - optional pagination config.
|
|
439
|
+
* @returns AsyncIterable of {@link ListDecoderManifestsCommandOutput}.
|
|
440
|
+
*/
|
|
441
|
+
paginateListDecoderManifests(args?: ListDecoderManifestsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDecoderManifestsCommandOutput>;
|
|
442
|
+
/**
|
|
443
|
+
* @see {@link ListDecoderManifestSignalsCommand}
|
|
444
|
+
* @param args - command input.
|
|
445
|
+
* @param paginationConfig - optional pagination config.
|
|
446
|
+
* @returns AsyncIterable of {@link ListDecoderManifestSignalsCommandOutput}.
|
|
447
|
+
*/
|
|
448
|
+
paginateListDecoderManifestSignals(args: ListDecoderManifestSignalsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDecoderManifestSignalsCommandOutput>;
|
|
449
|
+
/**
|
|
450
|
+
* @see {@link ListFleetsCommand}
|
|
451
|
+
* @param args - command input.
|
|
452
|
+
* @param paginationConfig - optional pagination config.
|
|
453
|
+
* @returns AsyncIterable of {@link ListFleetsCommandOutput}.
|
|
454
|
+
*/
|
|
455
|
+
paginateListFleets(args?: ListFleetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFleetsCommandOutput>;
|
|
456
|
+
/**
|
|
457
|
+
* @see {@link ListFleetsForVehicleCommand}
|
|
458
|
+
* @param args - command input.
|
|
459
|
+
* @param paginationConfig - optional pagination config.
|
|
460
|
+
* @returns AsyncIterable of {@link ListFleetsForVehicleCommandOutput}.
|
|
461
|
+
*/
|
|
462
|
+
paginateListFleetsForVehicle(args: ListFleetsForVehicleCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFleetsForVehicleCommandOutput>;
|
|
463
|
+
/**
|
|
464
|
+
* @see {@link ListModelManifestNodesCommand}
|
|
465
|
+
* @param args - command input.
|
|
466
|
+
* @param paginationConfig - optional pagination config.
|
|
467
|
+
* @returns AsyncIterable of {@link ListModelManifestNodesCommandOutput}.
|
|
468
|
+
*/
|
|
469
|
+
paginateListModelManifestNodes(args: ListModelManifestNodesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListModelManifestNodesCommandOutput>;
|
|
470
|
+
/**
|
|
471
|
+
* @see {@link ListModelManifestsCommand}
|
|
472
|
+
* @param args - command input.
|
|
473
|
+
* @param paginationConfig - optional pagination config.
|
|
474
|
+
* @returns AsyncIterable of {@link ListModelManifestsCommandOutput}.
|
|
475
|
+
*/
|
|
476
|
+
paginateListModelManifests(args?: ListModelManifestsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListModelManifestsCommandOutput>;
|
|
477
|
+
/**
|
|
478
|
+
* @see {@link ListSignalCatalogNodesCommand}
|
|
479
|
+
* @param args - command input.
|
|
480
|
+
* @param paginationConfig - optional pagination config.
|
|
481
|
+
* @returns AsyncIterable of {@link ListSignalCatalogNodesCommandOutput}.
|
|
482
|
+
*/
|
|
483
|
+
paginateListSignalCatalogNodes(args: ListSignalCatalogNodesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSignalCatalogNodesCommandOutput>;
|
|
484
|
+
/**
|
|
485
|
+
* @see {@link ListSignalCatalogsCommand}
|
|
486
|
+
* @param args - command input.
|
|
487
|
+
* @param paginationConfig - optional pagination config.
|
|
488
|
+
* @returns AsyncIterable of {@link ListSignalCatalogsCommandOutput}.
|
|
489
|
+
*/
|
|
490
|
+
paginateListSignalCatalogs(args?: ListSignalCatalogsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSignalCatalogsCommandOutput>;
|
|
491
|
+
/**
|
|
492
|
+
* @see {@link ListStateTemplatesCommand}
|
|
493
|
+
* @param args - command input.
|
|
494
|
+
* @param paginationConfig - optional pagination config.
|
|
495
|
+
* @returns AsyncIterable of {@link ListStateTemplatesCommandOutput}.
|
|
496
|
+
*/
|
|
497
|
+
paginateListStateTemplates(args?: ListStateTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStateTemplatesCommandOutput>;
|
|
498
|
+
/**
|
|
499
|
+
* @see {@link ListVehiclesCommand}
|
|
500
|
+
* @param args - command input.
|
|
501
|
+
* @param paginationConfig - optional pagination config.
|
|
502
|
+
* @returns AsyncIterable of {@link ListVehiclesCommandOutput}.
|
|
503
|
+
*/
|
|
504
|
+
paginateListVehicles(args?: ListVehiclesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListVehiclesCommandOutput>;
|
|
505
|
+
/**
|
|
506
|
+
* @see {@link ListVehiclesInFleetCommand}
|
|
507
|
+
* @param args - command input.
|
|
508
|
+
* @param paginationConfig - optional pagination config.
|
|
509
|
+
* @returns AsyncIterable of {@link ListVehiclesInFleetCommandOutput}.
|
|
510
|
+
*/
|
|
511
|
+
paginateListVehiclesInFleet(args: ListVehiclesInFleetCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListVehiclesInFleetCommandOutput>;
|
|
414
512
|
}
|
|
415
513
|
/**
|
|
416
514
|
* <p>Amazon Web Services IoT FleetWise is a fully managed service that you can use to collect, model, and transfer
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateVehicleFleetCommandInput,
|
|
4
8
|
AssociateVehicleFleetCommandOutput,
|
|
@@ -987,6 +991,104 @@ export interface IoTFleetWise {
|
|
|
987
991
|
options: __HttpHandlerOptions,
|
|
988
992
|
cb: (err: any, data?: UpdateVehicleCommandOutput) => void
|
|
989
993
|
): void;
|
|
994
|
+
paginateGetVehicleStatus(
|
|
995
|
+
args: GetVehicleStatusCommandInput,
|
|
996
|
+
paginationConfig?: Pick<
|
|
997
|
+
PaginationConfiguration,
|
|
998
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
999
|
+
>
|
|
1000
|
+
): Paginator<GetVehicleStatusCommandOutput>;
|
|
1001
|
+
paginateListCampaigns(
|
|
1002
|
+
args?: ListCampaignsCommandInput,
|
|
1003
|
+
paginationConfig?: Pick<
|
|
1004
|
+
PaginationConfiguration,
|
|
1005
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1006
|
+
>
|
|
1007
|
+
): Paginator<ListCampaignsCommandOutput>;
|
|
1008
|
+
paginateListDecoderManifestNetworkInterfaces(
|
|
1009
|
+
args: ListDecoderManifestNetworkInterfacesCommandInput,
|
|
1010
|
+
paginationConfig?: Pick<
|
|
1011
|
+
PaginationConfiguration,
|
|
1012
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1013
|
+
>
|
|
1014
|
+
): Paginator<ListDecoderManifestNetworkInterfacesCommandOutput>;
|
|
1015
|
+
paginateListDecoderManifests(
|
|
1016
|
+
args?: ListDecoderManifestsCommandInput,
|
|
1017
|
+
paginationConfig?: Pick<
|
|
1018
|
+
PaginationConfiguration,
|
|
1019
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1020
|
+
>
|
|
1021
|
+
): Paginator<ListDecoderManifestsCommandOutput>;
|
|
1022
|
+
paginateListDecoderManifestSignals(
|
|
1023
|
+
args: ListDecoderManifestSignalsCommandInput,
|
|
1024
|
+
paginationConfig?: Pick<
|
|
1025
|
+
PaginationConfiguration,
|
|
1026
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1027
|
+
>
|
|
1028
|
+
): Paginator<ListDecoderManifestSignalsCommandOutput>;
|
|
1029
|
+
paginateListFleets(
|
|
1030
|
+
args?: ListFleetsCommandInput,
|
|
1031
|
+
paginationConfig?: Pick<
|
|
1032
|
+
PaginationConfiguration,
|
|
1033
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1034
|
+
>
|
|
1035
|
+
): Paginator<ListFleetsCommandOutput>;
|
|
1036
|
+
paginateListFleetsForVehicle(
|
|
1037
|
+
args: ListFleetsForVehicleCommandInput,
|
|
1038
|
+
paginationConfig?: Pick<
|
|
1039
|
+
PaginationConfiguration,
|
|
1040
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1041
|
+
>
|
|
1042
|
+
): Paginator<ListFleetsForVehicleCommandOutput>;
|
|
1043
|
+
paginateListModelManifestNodes(
|
|
1044
|
+
args: ListModelManifestNodesCommandInput,
|
|
1045
|
+
paginationConfig?: Pick<
|
|
1046
|
+
PaginationConfiguration,
|
|
1047
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1048
|
+
>
|
|
1049
|
+
): Paginator<ListModelManifestNodesCommandOutput>;
|
|
1050
|
+
paginateListModelManifests(
|
|
1051
|
+
args?: ListModelManifestsCommandInput,
|
|
1052
|
+
paginationConfig?: Pick<
|
|
1053
|
+
PaginationConfiguration,
|
|
1054
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1055
|
+
>
|
|
1056
|
+
): Paginator<ListModelManifestsCommandOutput>;
|
|
1057
|
+
paginateListSignalCatalogNodes(
|
|
1058
|
+
args: ListSignalCatalogNodesCommandInput,
|
|
1059
|
+
paginationConfig?: Pick<
|
|
1060
|
+
PaginationConfiguration,
|
|
1061
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1062
|
+
>
|
|
1063
|
+
): Paginator<ListSignalCatalogNodesCommandOutput>;
|
|
1064
|
+
paginateListSignalCatalogs(
|
|
1065
|
+
args?: ListSignalCatalogsCommandInput,
|
|
1066
|
+
paginationConfig?: Pick<
|
|
1067
|
+
PaginationConfiguration,
|
|
1068
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1069
|
+
>
|
|
1070
|
+
): Paginator<ListSignalCatalogsCommandOutput>;
|
|
1071
|
+
paginateListStateTemplates(
|
|
1072
|
+
args?: ListStateTemplatesCommandInput,
|
|
1073
|
+
paginationConfig?: Pick<
|
|
1074
|
+
PaginationConfiguration,
|
|
1075
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1076
|
+
>
|
|
1077
|
+
): Paginator<ListStateTemplatesCommandOutput>;
|
|
1078
|
+
paginateListVehicles(
|
|
1079
|
+
args?: ListVehiclesCommandInput,
|
|
1080
|
+
paginationConfig?: Pick<
|
|
1081
|
+
PaginationConfiguration,
|
|
1082
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1083
|
+
>
|
|
1084
|
+
): Paginator<ListVehiclesCommandOutput>;
|
|
1085
|
+
paginateListVehiclesInFleet(
|
|
1086
|
+
args: ListVehiclesInFleetCommandInput,
|
|
1087
|
+
paginationConfig?: Pick<
|
|
1088
|
+
PaginationConfiguration,
|
|
1089
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1090
|
+
>
|
|
1091
|
+
): Paginator<ListVehiclesInFleetCommandOutput>;
|
|
990
1092
|
}
|
|
991
1093
|
export declare class IoTFleetWise
|
|
992
1094
|
extends IoTFleetWiseClient
|
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.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iotfleetwise",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|