@aws-sdk/client-iotfleetwise 3.325.0 → 3.327.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-types/commands/AssociateVehicleFleetCommand.d.ts +4 -0
- package/dist-types/commands/BatchCreateVehicleCommand.d.ts +19 -0
- package/dist-types/commands/BatchUpdateVehicleCommand.d.ts +18 -0
- package/dist-types/commands/CreateCampaignCommand.d.ts +7 -0
- package/dist-types/commands/CreateDecoderManifestCommand.d.ts +7 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +7 -0
- package/dist-types/commands/CreateModelManifestCommand.d.ts +7 -0
- package/dist-types/commands/CreateSignalCatalogCommand.d.ts +7 -0
- package/dist-types/commands/CreateVehicleCommand.d.ts +8 -0
- package/dist-types/commands/DeleteCampaignCommand.d.ts +7 -0
- package/dist-types/commands/DeleteDecoderManifestCommand.d.ts +7 -0
- package/dist-types/commands/DeleteFleetCommand.d.ts +7 -0
- package/dist-types/commands/DeleteModelManifestCommand.d.ts +7 -0
- package/dist-types/commands/DeleteSignalCatalogCommand.d.ts +7 -0
- package/dist-types/commands/DeleteVehicleCommand.d.ts +7 -0
- package/dist-types/commands/DisassociateVehicleFleetCommand.d.ts +4 -0
- package/dist-types/commands/GetCampaignCommand.d.ts +41 -0
- package/dist-types/commands/GetDecoderManifestCommand.d.ts +12 -0
- package/dist-types/commands/GetFleetCommand.d.ts +11 -0
- package/dist-types/commands/GetLoggingOptionsCommand.d.ts +9 -0
- package/dist-types/commands/GetModelManifestCommand.d.ts +12 -0
- package/dist-types/commands/GetRegisterAccountStatusCommand.d.ts +22 -0
- package/dist-types/commands/GetSignalCatalogCommand.d.ts +17 -0
- package/dist-types/commands/GetVehicleCommand.d.ts +14 -0
- package/dist-types/commands/GetVehicleStatusCommand.d.ts +13 -0
- package/dist-types/commands/ImportDecoderManifestCommand.d.ts +7 -0
- package/dist-types/commands/ImportSignalCatalogCommand.d.ts +7 -0
- package/dist-types/commands/ListCampaignsCommand.d.ts +18 -0
- package/dist-types/commands/ListDecoderManifestNetworkInterfacesCommand.d.ts +26 -0
- package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +34 -0
- package/dist-types/commands/ListDecoderManifestsCommand.d.ts +17 -0
- package/dist-types/commands/ListFleetsCommand.d.ts +16 -0
- package/dist-types/commands/ListFleetsForVehicleCommand.d.ts +9 -0
- package/dist-types/commands/ListModelManifestNodesCommand.d.ts +50 -0
- package/dist-types/commands/ListModelManifestsCommand.d.ts +17 -0
- package/dist-types/commands/ListSignalCatalogNodesCommand.d.ts +50 -0
- package/dist-types/commands/ListSignalCatalogsCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ListVehiclesCommand.d.ts +16 -0
- package/dist-types/commands/ListVehiclesInFleetCommand.d.ts +9 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +4 -0
- package/dist-types/commands/RegisterAccountCommand.d.ts +15 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCampaignCommand.d.ts +8 -0
- package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +7 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +7 -0
- package/dist-types/commands/UpdateModelManifestCommand.d.ts +7 -0
- package/dist-types/commands/UpdateSignalCatalogCommand.d.ts +7 -0
- package/dist-types/commands/UpdateVehicleCommand.d.ts +7 -0
- package/package.json +7 -7
|
@@ -32,6 +32,8 @@ export interface AssociateVehicleFleetCommandOutput extends AssociateVehicleFlee
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateVehicleFleetCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param AssociateVehicleFleetCommandInput - {@link AssociateVehicleFleetCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface AssociateVehicleFleetCommandOutput extends AssociateVehicleFlee
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class AssociateVehicleFleetCommand extends $Command<AssociateVehicleFleetCommandInput, AssociateVehicleFleetCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -53,6 +53,23 @@ export interface BatchCreateVehicleCommandOutput extends BatchCreateVehicleRespo
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new BatchCreateVehicleCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // BatchCreateVehicleResponse
|
|
57
|
+
* // vehicles: [ // createVehicleResponses
|
|
58
|
+
* // { // CreateVehicleResponseItem
|
|
59
|
+
* // vehicleName: "STRING_VALUE",
|
|
60
|
+
* // arn: "STRING_VALUE",
|
|
61
|
+
* // thingArn: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // errors: [ // createVehicleErrors
|
|
65
|
+
* // { // CreateVehicleError
|
|
66
|
+
* // vehicleName: "STRING_VALUE",
|
|
67
|
+
* // code: "STRING_VALUE",
|
|
68
|
+
* // message: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
56
73
|
* ```
|
|
57
74
|
*
|
|
58
75
|
* @param BatchCreateVehicleCommandInput - {@link BatchCreateVehicleCommandInput}
|
|
@@ -76,6 +93,8 @@ export interface BatchCreateVehicleCommandOutput extends BatchCreateVehicleRespo
|
|
|
76
93
|
* @throws {@link ValidationException} (client fault)
|
|
77
94
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
78
95
|
*
|
|
96
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
79
98
|
*
|
|
80
99
|
*/
|
|
81
100
|
export declare class BatchCreateVehicleCommand extends $Command<BatchCreateVehicleCommandInput, BatchCreateVehicleCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -47,6 +47,22 @@ export interface BatchUpdateVehicleCommandOutput extends BatchUpdateVehicleRespo
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new BatchUpdateVehicleCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // BatchUpdateVehicleResponse
|
|
51
|
+
* // vehicles: [ // updateVehicleResponseItems
|
|
52
|
+
* // { // UpdateVehicleResponseItem
|
|
53
|
+
* // vehicleName: "STRING_VALUE",
|
|
54
|
+
* // arn: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // errors: [ // updateVehicleErrors
|
|
58
|
+
* // { // UpdateVehicleError
|
|
59
|
+
* // vehicleName: "STRING_VALUE",
|
|
60
|
+
* // code: Number("int"),
|
|
61
|
+
* // message: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
50
66
|
* ```
|
|
51
67
|
*
|
|
52
68
|
* @param BatchUpdateVehicleCommandInput - {@link BatchUpdateVehicleCommandInput}
|
|
@@ -67,6 +83,8 @@ export interface BatchUpdateVehicleCommandOutput extends BatchUpdateVehicleRespo
|
|
|
67
83
|
* @throws {@link ValidationException} (client fault)
|
|
68
84
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
69
85
|
*
|
|
86
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
70
88
|
*
|
|
71
89
|
*/
|
|
72
90
|
export declare class BatchUpdateVehicleCommand extends $Command<BatchUpdateVehicleCommandInput, BatchUpdateVehicleCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -73,6 +73,11 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
|
|
|
73
73
|
* };
|
|
74
74
|
* const command = new CreateCampaignCommand(input);
|
|
75
75
|
* const response = await client.send(command);
|
|
76
|
+
* // { // CreateCampaignResponse
|
|
77
|
+
* // name: "STRING_VALUE",
|
|
78
|
+
* // arn: "STRING_VALUE",
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
76
81
|
* ```
|
|
77
82
|
*
|
|
78
83
|
* @param CreateCampaignCommandInput - {@link CreateCampaignCommandInput}
|
|
@@ -103,6 +108,8 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
|
|
|
103
108
|
* @throws {@link InternalServerException} (server fault)
|
|
104
109
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
105
110
|
*
|
|
111
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
106
113
|
*
|
|
107
114
|
*/
|
|
108
115
|
export declare class CreateCampaignCommand extends $Command<CreateCampaignCommandInput, CreateCampaignCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -102,6 +102,11 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
|
|
|
102
102
|
* };
|
|
103
103
|
* const command = new CreateDecoderManifestCommand(input);
|
|
104
104
|
* const response = await client.send(command);
|
|
105
|
+
* // { // CreateDecoderManifestResponse
|
|
106
|
+
* // name: "STRING_VALUE", // required
|
|
107
|
+
* // arn: "STRING_VALUE", // required
|
|
108
|
+
* // };
|
|
109
|
+
*
|
|
105
110
|
* ```
|
|
106
111
|
*
|
|
107
112
|
* @param CreateDecoderManifestCommandInput - {@link CreateDecoderManifestCommandInput}
|
|
@@ -135,6 +140,8 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
|
|
|
135
140
|
* @throws {@link InternalServerException} (server fault)
|
|
136
141
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
137
142
|
*
|
|
143
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
144
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
138
145
|
*
|
|
139
146
|
*/
|
|
140
147
|
export declare class CreateDecoderManifestCommand extends $Command<CreateDecoderManifestCommandInput, CreateDecoderManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -46,6 +46,11 @@ export interface CreateFleetCommandOutput extends CreateFleetResponse, __Metadat
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new CreateFleetCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateFleetResponse
|
|
50
|
+
* // id: "STRING_VALUE", // required
|
|
51
|
+
* // arn: "STRING_VALUE", // required
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
51
56
|
* @param CreateFleetCommandInput - {@link CreateFleetCommandInput}
|
|
@@ -76,6 +81,8 @@ export interface CreateFleetCommandOutput extends CreateFleetResponse, __Metadat
|
|
|
76
81
|
* @throws {@link ValidationException} (client fault)
|
|
77
82
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
78
83
|
*
|
|
84
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
79
86
|
*
|
|
80
87
|
*/
|
|
81
88
|
export declare class CreateFleetCommand extends $Command<CreateFleetCommandInput, CreateFleetCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -45,6 +45,11 @@ export interface CreateModelManifestCommandOutput extends CreateModelManifestRes
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new CreateModelManifestCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // CreateModelManifestResponse
|
|
49
|
+
* // name: "STRING_VALUE", // required
|
|
50
|
+
* // arn: "STRING_VALUE", // required
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
50
55
|
* @param CreateModelManifestCommandInput - {@link CreateModelManifestCommandInput}
|
|
@@ -78,6 +83,8 @@ export interface CreateModelManifestCommandOutput extends CreateModelManifestRes
|
|
|
78
83
|
* @throws {@link InternalServerException} (server fault)
|
|
79
84
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
80
85
|
*
|
|
86
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
81
88
|
*
|
|
82
89
|
*/
|
|
83
90
|
export declare class CreateModelManifestCommand extends $Command<CreateModelManifestCommandInput, CreateModelManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -83,6 +83,11 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
|
|
|
83
83
|
* };
|
|
84
84
|
* const command = new CreateSignalCatalogCommand(input);
|
|
85
85
|
* const response = await client.send(command);
|
|
86
|
+
* // { // CreateSignalCatalogResponse
|
|
87
|
+
* // name: "STRING_VALUE", // required
|
|
88
|
+
* // arn: "STRING_VALUE", // required
|
|
89
|
+
* // };
|
|
90
|
+
*
|
|
86
91
|
* ```
|
|
87
92
|
*
|
|
88
93
|
* @param CreateSignalCatalogCommandInput - {@link CreateSignalCatalogCommandInput}
|
|
@@ -117,6 +122,8 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
|
|
|
117
122
|
* @throws {@link InternalServerException} (server fault)
|
|
118
123
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
119
124
|
*
|
|
125
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
120
127
|
*
|
|
121
128
|
*/
|
|
122
129
|
export declare class CreateSignalCatalogCommand extends $Command<CreateSignalCatalogCommandInput, CreateSignalCatalogCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -51,6 +51,12 @@ export interface CreateVehicleCommandOutput extends CreateVehicleResponse, __Met
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new CreateVehicleCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // CreateVehicleResponse
|
|
55
|
+
* // vehicleName: "STRING_VALUE",
|
|
56
|
+
* // arn: "STRING_VALUE",
|
|
57
|
+
* // thingArn: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
54
60
|
* ```
|
|
55
61
|
*
|
|
56
62
|
* @param CreateVehicleCommandInput - {@link CreateVehicleCommandInput}
|
|
@@ -81,6 +87,8 @@ export interface CreateVehicleCommandOutput extends CreateVehicleResponse, __Met
|
|
|
81
87
|
* @throws {@link ValidationException} (client fault)
|
|
82
88
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
83
89
|
*
|
|
90
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
84
92
|
*
|
|
85
93
|
*/
|
|
86
94
|
export declare class CreateVehicleCommand extends $Command<CreateVehicleCommandInput, CreateVehicleCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface DeleteCampaignCommandOutput extends DeleteCampaignResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteCampaignCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteCampaignResponse
|
|
36
|
+
* // name: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param DeleteCampaignCommandInput - {@link DeleteCampaignCommandInput}
|
|
@@ -55,6 +60,8 @@ export interface DeleteCampaignCommandOutput extends DeleteCampaignResponse, __M
|
|
|
55
60
|
* @throws {@link InternalServerException} (server fault)
|
|
56
61
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
57
62
|
*
|
|
63
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
58
65
|
*
|
|
59
66
|
*/
|
|
60
67
|
export declare class DeleteCampaignCommand extends $Command<DeleteCampaignCommandInput, DeleteCampaignCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -36,6 +36,11 @@ export interface DeleteDecoderManifestCommandOutput extends DeleteDecoderManifes
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteDecoderManifestCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DeleteDecoderManifestResponse
|
|
40
|
+
* // name: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
41
46
|
* @param DeleteDecoderManifestCommandInput - {@link DeleteDecoderManifestCommandInput}
|
|
@@ -60,6 +65,8 @@ export interface DeleteDecoderManifestCommandOutput extends DeleteDecoderManifes
|
|
|
60
65
|
* @throws {@link ValidationException} (client fault)
|
|
61
66
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
62
67
|
*
|
|
68
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
63
70
|
*
|
|
64
71
|
*/
|
|
65
72
|
export declare class DeleteDecoderManifestCommand extends $Command<DeleteDecoderManifestCommandInput, DeleteDecoderManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -37,6 +37,11 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __Metadat
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeleteFleetCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DeleteFleetResponse
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // arn: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
42
47
|
* @param DeleteFleetCommandInput - {@link DeleteFleetCommandInput}
|
|
@@ -57,6 +62,8 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __Metadat
|
|
|
57
62
|
* @throws {@link ValidationException} (client fault)
|
|
58
63
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
59
64
|
*
|
|
65
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
60
67
|
*
|
|
61
68
|
*/
|
|
62
69
|
export declare class DeleteFleetCommand extends $Command<DeleteFleetCommandInput, DeleteFleetCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -35,6 +35,11 @@ export interface DeleteModelManifestCommandOutput extends DeleteModelManifestRes
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteModelManifestCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DeleteModelManifestResponse
|
|
39
|
+
* // name: "STRING_VALUE", // required
|
|
40
|
+
* // arn: "STRING_VALUE", // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param DeleteModelManifestCommandInput - {@link DeleteModelManifestCommandInput}
|
|
@@ -59,6 +64,8 @@ export interface DeleteModelManifestCommandOutput extends DeleteModelManifestRes
|
|
|
59
64
|
* @throws {@link ValidationException} (client fault)
|
|
60
65
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
61
66
|
*
|
|
67
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
62
69
|
*
|
|
63
70
|
*/
|
|
64
71
|
export declare class DeleteModelManifestCommand extends $Command<DeleteModelManifestCommandInput, DeleteModelManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -35,6 +35,11 @@ export interface DeleteSignalCatalogCommandOutput extends DeleteSignalCatalogRes
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteSignalCatalogCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DeleteSignalCatalogResponse
|
|
39
|
+
* // name: "STRING_VALUE", // required
|
|
40
|
+
* // arn: "STRING_VALUE", // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param DeleteSignalCatalogCommandInput - {@link DeleteSignalCatalogCommandInput}
|
|
@@ -59,6 +64,8 @@ export interface DeleteSignalCatalogCommandOutput extends DeleteSignalCatalogRes
|
|
|
59
64
|
* @throws {@link ValidationException} (client fault)
|
|
60
65
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
61
66
|
*
|
|
67
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
62
69
|
*
|
|
63
70
|
*/
|
|
64
71
|
export declare class DeleteSignalCatalogCommand extends $Command<DeleteSignalCatalogCommandInput, DeleteSignalCatalogCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -35,6 +35,11 @@ export interface DeleteVehicleCommandOutput extends DeleteVehicleResponse, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteVehicleCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DeleteVehicleResponse
|
|
39
|
+
* // vehicleName: "STRING_VALUE", // required
|
|
40
|
+
* // arn: "STRING_VALUE", // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param DeleteVehicleCommandInput - {@link DeleteVehicleCommandInput}
|
|
@@ -55,6 +60,8 @@ export interface DeleteVehicleCommandOutput extends DeleteVehicleResponse, __Met
|
|
|
55
60
|
* @throws {@link ValidationException} (client fault)
|
|
56
61
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
57
62
|
*
|
|
63
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
58
65
|
*
|
|
59
66
|
*/
|
|
60
67
|
export declare class DeleteVehicleCommand extends $Command<DeleteVehicleCommandInput, DeleteVehicleCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface DisassociateVehicleFleetCommandOutput extends DisassociateVehic
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DisassociateVehicleFleetCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param DisassociateVehicleFleetCommandInput - {@link DisassociateVehicleFleetCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DisassociateVehicleFleetCommandOutput extends DisassociateVehic
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DisassociateVehicleFleetCommand extends $Command<DisassociateVehicleFleetCommandInput, DisassociateVehicleFleetCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -31,6 +31,45 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCampaignCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetCampaignResponse
|
|
35
|
+
* // name: "STRING_VALUE",
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // description: "STRING_VALUE",
|
|
38
|
+
* // signalCatalogArn: "STRING_VALUE",
|
|
39
|
+
* // targetArn: "STRING_VALUE",
|
|
40
|
+
* // status: "STRING_VALUE",
|
|
41
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // expiryTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // postTriggerCollectionDuration: Number("long"),
|
|
44
|
+
* // diagnosticsMode: "STRING_VALUE",
|
|
45
|
+
* // spoolingMode: "STRING_VALUE",
|
|
46
|
+
* // compression: "STRING_VALUE",
|
|
47
|
+
* // priority: Number("int"),
|
|
48
|
+
* // signalsToCollect: [ // SignalInformationList
|
|
49
|
+
* // { // SignalInformation
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // maxSampleCount: Number("long"),
|
|
52
|
+
* // minimumSamplingIntervalMs: Number("long"),
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // collectionScheme: { // CollectionScheme Union: only one key present
|
|
56
|
+
* // timeBasedCollectionScheme: { // TimeBasedCollectionScheme
|
|
57
|
+
* // periodMs: Number("long"), // required
|
|
58
|
+
* // },
|
|
59
|
+
* // conditionBasedCollectionScheme: { // ConditionBasedCollectionScheme
|
|
60
|
+
* // expression: "STRING_VALUE", // required
|
|
61
|
+
* // minimumTriggerIntervalMs: Number("long"),
|
|
62
|
+
* // triggerMode: "STRING_VALUE",
|
|
63
|
+
* // conditionLanguageVersion: Number("int"),
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // dataExtraDimensions: [ // DataExtraDimensionNodePathList
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
70
|
+
* // lastModificationTime: new Date("TIMESTAMP"),
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
34
73
|
* ```
|
|
35
74
|
*
|
|
36
75
|
* @param GetCampaignCommandInput - {@link GetCampaignCommandInput}
|
|
@@ -54,6 +93,8 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat
|
|
|
54
93
|
* @throws {@link InternalServerException} (server fault)
|
|
55
94
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
56
95
|
*
|
|
96
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
57
98
|
*
|
|
58
99
|
*/
|
|
59
100
|
export declare class GetCampaignCommand extends $Command<GetCampaignCommandInput, GetCampaignCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface GetDecoderManifestCommandOutput extends GetDecoderManifestRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDecoderManifestCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetDecoderManifestResponse
|
|
35
|
+
* // name: "STRING_VALUE", // required
|
|
36
|
+
* // arn: "STRING_VALUE", // required
|
|
37
|
+
* // description: "STRING_VALUE",
|
|
38
|
+
* // modelManifestArn: "STRING_VALUE",
|
|
39
|
+
* // status: "STRING_VALUE",
|
|
40
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // lastModificationTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param GetDecoderManifestCommandInput - {@link GetDecoderManifestCommandInput}
|
|
@@ -54,6 +64,8 @@ export interface GetDecoderManifestCommandOutput extends GetDecoderManifestRespo
|
|
|
54
64
|
* @throws {@link InternalServerException} (server fault)
|
|
55
65
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
56
66
|
*
|
|
67
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
57
69
|
*
|
|
58
70
|
*/
|
|
59
71
|
export declare class GetDecoderManifestCommand extends $Command<GetDecoderManifestCommandInput, GetDecoderManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface GetFleetCommandOutput extends GetFleetResponse, __MetadataBeare
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetFleetCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetFleetResponse
|
|
35
|
+
* // id: "STRING_VALUE", // required
|
|
36
|
+
* // arn: "STRING_VALUE", // required
|
|
37
|
+
* // description: "STRING_VALUE",
|
|
38
|
+
* // signalCatalogArn: "STRING_VALUE", // required
|
|
39
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
40
|
+
* // lastModificationTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param GetFleetCommandInput - {@link GetFleetCommandInput}
|
|
@@ -54,6 +63,8 @@ export interface GetFleetCommandOutput extends GetFleetResponse, __MetadataBeare
|
|
|
54
63
|
* @throws {@link ValidationException} (client fault)
|
|
55
64
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
56
65
|
*
|
|
66
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
57
68
|
*
|
|
58
69
|
*/
|
|
59
70
|
export declare class GetFleetCommand extends $Command<GetFleetCommandInput, GetFleetCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -29,6 +29,13 @@ export interface GetLoggingOptionsCommandOutput extends GetLoggingOptionsRespons
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new GetLoggingOptionsCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // GetLoggingOptionsResponse
|
|
33
|
+
* // cloudWatchLogDelivery: { // CloudWatchLogDeliveryOptions
|
|
34
|
+
* // logType: "STRING_VALUE", // required
|
|
35
|
+
* // logGroupName: "STRING_VALUE",
|
|
36
|
+
* // },
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
32
39
|
* ```
|
|
33
40
|
*
|
|
34
41
|
* @param GetLoggingOptionsCommandInput - {@link GetLoggingOptionsCommandInput}
|
|
@@ -46,6 +53,8 @@ export interface GetLoggingOptionsCommandOutput extends GetLoggingOptionsRespons
|
|
|
46
53
|
* @throws {@link InternalServerException} (server fault)
|
|
47
54
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
48
55
|
*
|
|
56
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
49
58
|
*
|
|
50
59
|
*/
|
|
51
60
|
export declare class GetLoggingOptionsCommand extends $Command<GetLoggingOptionsCommandInput, GetLoggingOptionsCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface GetModelManifestCommandOutput extends GetModelManifestResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetModelManifestCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetModelManifestResponse
|
|
35
|
+
* // name: "STRING_VALUE", // required
|
|
36
|
+
* // arn: "STRING_VALUE", // required
|
|
37
|
+
* // description: "STRING_VALUE",
|
|
38
|
+
* // signalCatalogArn: "STRING_VALUE",
|
|
39
|
+
* // status: "STRING_VALUE",
|
|
40
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // lastModificationTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param GetModelManifestCommandInput - {@link GetModelManifestCommandInput}
|
|
@@ -54,6 +64,8 @@ export interface GetModelManifestCommandOutput extends GetModelManifestResponse,
|
|
|
54
64
|
* @throws {@link InternalServerException} (server fault)
|
|
55
65
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
56
66
|
*
|
|
67
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
57
69
|
*
|
|
58
70
|
*/
|
|
59
71
|
export declare class GetModelManifestCommand extends $Command<GetModelManifestCommandInput, GetModelManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -35,6 +35,26 @@ export interface GetRegisterAccountStatusCommandOutput extends GetRegisterAccoun
|
|
|
35
35
|
* const input = {};
|
|
36
36
|
* const command = new GetRegisterAccountStatusCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetRegisterAccountStatusResponse
|
|
39
|
+
* // customerAccountId: "STRING_VALUE", // required
|
|
40
|
+
* // accountStatus: "STRING_VALUE", // required
|
|
41
|
+
* // timestreamRegistrationResponse: { // TimestreamRegistrationResponse
|
|
42
|
+
* // timestreamDatabaseName: "STRING_VALUE", // required
|
|
43
|
+
* // timestreamTableName: "STRING_VALUE", // required
|
|
44
|
+
* // timestreamDatabaseArn: "STRING_VALUE",
|
|
45
|
+
* // timestreamTableArn: "STRING_VALUE",
|
|
46
|
+
* // registrationStatus: "STRING_VALUE", // required
|
|
47
|
+
* // errorMessage: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // iamRegistrationResponse: { // IamRegistrationResponse
|
|
50
|
+
* // roleArn: "STRING_VALUE", // required
|
|
51
|
+
* // registrationStatus: "STRING_VALUE", // required
|
|
52
|
+
* // errorMessage: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // lastModificationTime: new Date("TIMESTAMP"), // required
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
38
58
|
* ```
|
|
39
59
|
*
|
|
40
60
|
* @param GetRegisterAccountStatusCommandInput - {@link GetRegisterAccountStatusCommandInput}
|
|
@@ -58,6 +78,8 @@ export interface GetRegisterAccountStatusCommandOutput extends GetRegisterAccoun
|
|
|
58
78
|
* @throws {@link ValidationException} (client fault)
|
|
59
79
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
60
80
|
*
|
|
81
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
61
83
|
*
|
|
62
84
|
*/
|
|
63
85
|
export declare class GetRegisterAccountStatusCommand extends $Command<GetRegisterAccountStatusCommandInput, GetRegisterAccountStatusCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -31,6 +31,21 @@ export interface GetSignalCatalogCommandOutput extends GetSignalCatalogResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetSignalCatalogCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetSignalCatalogResponse
|
|
35
|
+
* // name: "STRING_VALUE", // required
|
|
36
|
+
* // arn: "STRING_VALUE", // required
|
|
37
|
+
* // description: "STRING_VALUE",
|
|
38
|
+
* // nodeCounts: { // NodeCounts
|
|
39
|
+
* // totalNodes: Number("int"),
|
|
40
|
+
* // totalBranches: Number("int"),
|
|
41
|
+
* // totalSensors: Number("int"),
|
|
42
|
+
* // totalAttributes: Number("int"),
|
|
43
|
+
* // totalActuators: Number("int"),
|
|
44
|
+
* // },
|
|
45
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // lastModificationTime: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
34
49
|
* ```
|
|
35
50
|
*
|
|
36
51
|
* @param GetSignalCatalogCommandInput - {@link GetSignalCatalogCommandInput}
|
|
@@ -54,6 +69,8 @@ export interface GetSignalCatalogCommandOutput extends GetSignalCatalogResponse,
|
|
|
54
69
|
* @throws {@link InternalServerException} (server fault)
|
|
55
70
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
56
71
|
*
|
|
72
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
57
74
|
*
|
|
58
75
|
*/
|
|
59
76
|
export declare class GetSignalCatalogCommand extends $Command<GetSignalCatalogCommandInput, GetSignalCatalogCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -31,6 +31,18 @@ export interface GetVehicleCommandOutput extends GetVehicleResponse, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetVehicleCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetVehicleResponse
|
|
35
|
+
* // vehicleName: "STRING_VALUE",
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // modelManifestArn: "STRING_VALUE",
|
|
38
|
+
* // decoderManifestArn: "STRING_VALUE",
|
|
39
|
+
* // attributes: { // attributesMap
|
|
40
|
+
* // "<keys>": "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // lastModificationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
34
46
|
* ```
|
|
35
47
|
*
|
|
36
48
|
* @param GetVehicleCommandInput - {@link GetVehicleCommandInput}
|
|
@@ -54,6 +66,8 @@ export interface GetVehicleCommandOutput extends GetVehicleResponse, __MetadataB
|
|
|
54
66
|
* @throws {@link ValidationException} (client fault)
|
|
55
67
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
56
68
|
*
|
|
69
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
57
71
|
*
|
|
58
72
|
*/
|
|
59
73
|
export declare class GetVehicleCommand extends $Command<GetVehicleCommandInput, GetVehicleCommandOutput, IoTFleetWiseClientResolvedConfig> {
|
|
@@ -34,6 +34,17 @@ export interface GetVehicleStatusCommandOutput extends GetVehicleStatusResponse,
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetVehicleStatusCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetVehicleStatusResponse
|
|
38
|
+
* // campaigns: [ // VehicleStatusList
|
|
39
|
+
* // { // VehicleStatus
|
|
40
|
+
* // campaignName: "STRING_VALUE",
|
|
41
|
+
* // vehicleName: "STRING_VALUE",
|
|
42
|
+
* // status: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // nextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
37
48
|
* ```
|
|
38
49
|
*
|
|
39
50
|
* @param GetVehicleStatusCommandInput - {@link GetVehicleStatusCommandInput}
|
|
@@ -57,6 +68,8 @@ export interface GetVehicleStatusCommandOutput extends GetVehicleStatusResponse,
|
|
|
57
68
|
* @throws {@link InternalServerException} (server fault)
|
|
58
69
|
* <p>The request couldn't be completed because the server temporarily failed.</p>
|
|
59
70
|
*
|
|
71
|
+
* @throws {@link IoTFleetWiseServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
|
|
60
73
|
*
|
|
61
74
|
*/
|
|
62
75
|
export declare class GetVehicleStatusCommand extends $Command<GetVehicleStatusCommandInput, GetVehicleStatusCommandOutput, IoTFleetWiseClientResolvedConfig> {
|