@aws-sdk/client-iotfleetwise 3.321.1 → 3.326.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.
Files changed (51) hide show
  1. package/dist-types/commands/AssociateVehicleFleetCommand.d.ts +4 -0
  2. package/dist-types/commands/BatchCreateVehicleCommand.d.ts +19 -0
  3. package/dist-types/commands/BatchUpdateVehicleCommand.d.ts +18 -0
  4. package/dist-types/commands/CreateCampaignCommand.d.ts +7 -0
  5. package/dist-types/commands/CreateDecoderManifestCommand.d.ts +7 -0
  6. package/dist-types/commands/CreateFleetCommand.d.ts +7 -0
  7. package/dist-types/commands/CreateModelManifestCommand.d.ts +7 -0
  8. package/dist-types/commands/CreateSignalCatalogCommand.d.ts +7 -0
  9. package/dist-types/commands/CreateVehicleCommand.d.ts +8 -0
  10. package/dist-types/commands/DeleteCampaignCommand.d.ts +7 -0
  11. package/dist-types/commands/DeleteDecoderManifestCommand.d.ts +7 -0
  12. package/dist-types/commands/DeleteFleetCommand.d.ts +7 -0
  13. package/dist-types/commands/DeleteModelManifestCommand.d.ts +7 -0
  14. package/dist-types/commands/DeleteSignalCatalogCommand.d.ts +7 -0
  15. package/dist-types/commands/DeleteVehicleCommand.d.ts +7 -0
  16. package/dist-types/commands/DisassociateVehicleFleetCommand.d.ts +4 -0
  17. package/dist-types/commands/GetCampaignCommand.d.ts +41 -0
  18. package/dist-types/commands/GetDecoderManifestCommand.d.ts +12 -0
  19. package/dist-types/commands/GetFleetCommand.d.ts +11 -0
  20. package/dist-types/commands/GetLoggingOptionsCommand.d.ts +9 -0
  21. package/dist-types/commands/GetModelManifestCommand.d.ts +12 -0
  22. package/dist-types/commands/GetRegisterAccountStatusCommand.d.ts +22 -0
  23. package/dist-types/commands/GetSignalCatalogCommand.d.ts +17 -0
  24. package/dist-types/commands/GetVehicleCommand.d.ts +14 -0
  25. package/dist-types/commands/GetVehicleStatusCommand.d.ts +13 -0
  26. package/dist-types/commands/ImportDecoderManifestCommand.d.ts +7 -0
  27. package/dist-types/commands/ImportSignalCatalogCommand.d.ts +7 -0
  28. package/dist-types/commands/ListCampaignsCommand.d.ts +18 -0
  29. package/dist-types/commands/ListDecoderManifestNetworkInterfacesCommand.d.ts +26 -0
  30. package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +34 -0
  31. package/dist-types/commands/ListDecoderManifestsCommand.d.ts +17 -0
  32. package/dist-types/commands/ListFleetsCommand.d.ts +16 -0
  33. package/dist-types/commands/ListFleetsForVehicleCommand.d.ts +9 -0
  34. package/dist-types/commands/ListModelManifestNodesCommand.d.ts +50 -0
  35. package/dist-types/commands/ListModelManifestsCommand.d.ts +17 -0
  36. package/dist-types/commands/ListSignalCatalogNodesCommand.d.ts +50 -0
  37. package/dist-types/commands/ListSignalCatalogsCommand.d.ts +14 -0
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  39. package/dist-types/commands/ListVehiclesCommand.d.ts +16 -0
  40. package/dist-types/commands/ListVehiclesInFleetCommand.d.ts +9 -0
  41. package/dist-types/commands/PutLoggingOptionsCommand.d.ts +4 -0
  42. package/dist-types/commands/RegisterAccountCommand.d.ts +15 -0
  43. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  44. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  45. package/dist-types/commands/UpdateCampaignCommand.d.ts +8 -0
  46. package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +7 -0
  47. package/dist-types/commands/UpdateFleetCommand.d.ts +7 -0
  48. package/dist-types/commands/UpdateModelManifestCommand.d.ts +7 -0
  49. package/dist-types/commands/UpdateSignalCatalogCommand.d.ts +7 -0
  50. package/dist-types/commands/UpdateVehicleCommand.d.ts +7 -0
  51. package/package.json +16 -16
@@ -45,6 +45,11 @@ export interface ImportDecoderManifestCommandOutput extends ImportDecoderManifes
45
45
  * };
46
46
  * const command = new ImportDecoderManifestCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // ImportDecoderManifestResponse
49
+ * // name: "STRING_VALUE", // required
50
+ * // arn: "STRING_VALUE", // required
51
+ * // };
52
+ *
48
53
  * ```
49
54
  *
50
55
  * @param ImportDecoderManifestCommandInput - {@link ImportDecoderManifestCommandInput}
@@ -78,6 +83,8 @@ export interface ImportDecoderManifestCommandOutput extends ImportDecoderManifes
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 ImportDecoderManifestCommand extends $Command<ImportDecoderManifestCommandInput, ImportDecoderManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -42,6 +42,11 @@ export interface ImportSignalCatalogCommandOutput extends ImportSignalCatalogRes
42
42
  * };
43
43
  * const command = new ImportSignalCatalogCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ImportSignalCatalogResponse
46
+ * // name: "STRING_VALUE", // required
47
+ * // arn: "STRING_VALUE", // required
48
+ * // };
49
+ *
45
50
  * ```
46
51
  *
47
52
  * @param ImportSignalCatalogCommandInput - {@link ImportSignalCatalogCommandInput}
@@ -75,6 +80,8 @@ export interface ImportSignalCatalogCommandOutput extends ImportSignalCatalogRes
75
80
  * @throws {@link ValidationException} (client fault)
76
81
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
77
82
  *
83
+ * @throws {@link IoTFleetWiseServiceException}
84
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
78
85
  *
79
86
  */
80
87
  export declare class ImportSignalCatalogCommand extends $Command<ImportSignalCatalogCommandInput, ImportSignalCatalogCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,22 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
36
36
  * };
37
37
  * const command = new ListCampaignsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListCampaignsResponse
40
+ * // campaignSummaries: [ // campaignSummaries
41
+ * // { // CampaignSummary
42
+ * // arn: "STRING_VALUE",
43
+ * // name: "STRING_VALUE",
44
+ * // description: "STRING_VALUE",
45
+ * // signalCatalogArn: "STRING_VALUE",
46
+ * // targetArn: "STRING_VALUE",
47
+ * // status: "STRING_VALUE",
48
+ * // creationTime: new Date("TIMESTAMP"), // required
49
+ * // lastModificationTime: new Date("TIMESTAMP"), // required
50
+ * // },
51
+ * // ],
52
+ * // nextToken: "STRING_VALUE",
53
+ * // };
54
+ *
39
55
  * ```
40
56
  *
41
57
  * @param ListCampaignsCommandInput - {@link ListCampaignsCommandInput}
@@ -56,6 +72,8 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
56
72
  * @throws {@link InternalServerException} (server fault)
57
73
  * <p>The request couldn't be completed because the server temporarily failed.</p>
58
74
  *
75
+ * @throws {@link IoTFleetWiseServiceException}
76
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
59
77
  *
60
78
  */
61
79
  export declare class ListCampaignsCommand extends $Command<ListCampaignsCommandInput, ListCampaignsCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,30 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput extends ListD
36
36
  * };
37
37
  * const command = new ListDecoderManifestNetworkInterfacesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListDecoderManifestNetworkInterfacesResponse
40
+ * // networkInterfaces: [ // NetworkInterfaces
41
+ * // { // NetworkInterface
42
+ * // interfaceId: "STRING_VALUE", // required
43
+ * // type: "STRING_VALUE", // required
44
+ * // canInterface: { // CanInterface
45
+ * // name: "STRING_VALUE", // required
46
+ * // protocolName: "STRING_VALUE",
47
+ * // protocolVersion: "STRING_VALUE",
48
+ * // },
49
+ * // obdInterface: { // ObdInterface
50
+ * // name: "STRING_VALUE", // required
51
+ * // requestMessageId: Number("int"), // required
52
+ * // obdStandard: "STRING_VALUE",
53
+ * // pidRequestIntervalSeconds: Number("int"),
54
+ * // dtcRequestIntervalSeconds: Number("int"),
55
+ * // useExtendedIds: true || false,
56
+ * // hasTransmissionEcu: true || false,
57
+ * // },
58
+ * // },
59
+ * // ],
60
+ * // nextToken: "STRING_VALUE",
61
+ * // };
62
+ *
39
63
  * ```
40
64
  *
41
65
  * @param ListDecoderManifestNetworkInterfacesCommandInput - {@link ListDecoderManifestNetworkInterfacesCommandInput}
@@ -59,6 +83,8 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput extends ListD
59
83
  * @throws {@link ValidationException} (client fault)
60
84
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
61
85
  *
86
+ * @throws {@link IoTFleetWiseServiceException}
87
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
62
88
  *
63
89
  */
64
90
  export declare class ListDecoderManifestNetworkInterfacesCommand extends $Command<ListDecoderManifestNetworkInterfacesCommandInput, ListDecoderManifestNetworkInterfacesCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,38 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
36
36
  * };
37
37
  * const command = new ListDecoderManifestSignalsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListDecoderManifestSignalsResponse
40
+ * // signalDecoders: [ // SignalDecoders
41
+ * // { // SignalDecoder
42
+ * // fullyQualifiedName: "STRING_VALUE", // required
43
+ * // type: "STRING_VALUE", // required
44
+ * // interfaceId: "STRING_VALUE", // required
45
+ * // canSignal: { // CanSignal
46
+ * // messageId: Number("int"), // required
47
+ * // isBigEndian: true || false, // required
48
+ * // isSigned: true || false, // required
49
+ * // startBit: Number("int"), // required
50
+ * // offset: Number("double"), // required
51
+ * // factor: Number("double"), // required
52
+ * // length: Number("int"), // required
53
+ * // name: "STRING_VALUE",
54
+ * // },
55
+ * // obdSignal: { // ObdSignal
56
+ * // pidResponseLength: Number("int"), // required
57
+ * // serviceMode: Number("int"), // required
58
+ * // pid: Number("int"), // required
59
+ * // scaling: Number("double"), // required
60
+ * // offset: Number("double"), // required
61
+ * // startByte: Number("int"), // required
62
+ * // byteLength: Number("int"), // required
63
+ * // bitRightShift: Number("int"),
64
+ * // bitMaskLength: Number("int"),
65
+ * // },
66
+ * // },
67
+ * // ],
68
+ * // nextToken: "STRING_VALUE",
69
+ * // };
70
+ *
39
71
  * ```
40
72
  *
41
73
  * @param ListDecoderManifestSignalsCommandInput - {@link ListDecoderManifestSignalsCommandInput}
@@ -59,6 +91,8 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
59
91
  * @throws {@link ValidationException} (client fault)
60
92
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
61
93
  *
94
+ * @throws {@link IoTFleetWiseServiceException}
95
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
62
96
  *
63
97
  */
64
98
  export declare class ListDecoderManifestSignalsCommand extends $Command<ListDecoderManifestSignalsCommandInput, ListDecoderManifestSignalsCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,21 @@ export interface ListDecoderManifestsCommandOutput extends ListDecoderManifestsR
36
36
  * };
37
37
  * const command = new ListDecoderManifestsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListDecoderManifestsResponse
40
+ * // summaries: [ // decoderManifestSummaries
41
+ * // { // DecoderManifestSummary
42
+ * // name: "STRING_VALUE",
43
+ * // arn: "STRING_VALUE",
44
+ * // modelManifestArn: "STRING_VALUE",
45
+ * // description: "STRING_VALUE",
46
+ * // status: "STRING_VALUE",
47
+ * // creationTime: new Date("TIMESTAMP"), // required
48
+ * // lastModificationTime: new Date("TIMESTAMP"), // required
49
+ * // },
50
+ * // ],
51
+ * // nextToken: "STRING_VALUE",
52
+ * // };
53
+ *
39
54
  * ```
40
55
  *
41
56
  * @param ListDecoderManifestsCommandInput - {@link ListDecoderManifestsCommandInput}
@@ -56,6 +71,8 @@ export interface ListDecoderManifestsCommandOutput extends ListDecoderManifestsR
56
71
  * @throws {@link ValidationException} (client fault)
57
72
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
58
73
  *
74
+ * @throws {@link IoTFleetWiseServiceException}
75
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
59
76
  *
60
77
  */
61
78
  export declare class ListDecoderManifestsCommand extends $Command<ListDecoderManifestsCommandInput, ListDecoderManifestsCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -35,6 +35,20 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB
35
35
  * };
36
36
  * const command = new ListFleetsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListFleetsResponse
39
+ * // fleetSummaries: [ // fleetSummaries
40
+ * // { // FleetSummary
41
+ * // id: "STRING_VALUE", // required
42
+ * // arn: "STRING_VALUE", // required
43
+ * // description: "STRING_VALUE",
44
+ * // signalCatalogArn: "STRING_VALUE", // required
45
+ * // creationTime: new Date("TIMESTAMP"), // required
46
+ * // lastModificationTime: new Date("TIMESTAMP"),
47
+ * // },
48
+ * // ],
49
+ * // nextToken: "STRING_VALUE",
50
+ * // };
51
+ *
38
52
  * ```
39
53
  *
40
54
  * @param ListFleetsCommandInput - {@link ListFleetsCommandInput}
@@ -58,6 +72,8 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB
58
72
  * @throws {@link ValidationException} (client fault)
59
73
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
60
74
  *
75
+ * @throws {@link IoTFleetWiseServiceException}
76
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
61
77
  *
62
78
  */
63
79
  export declare class ListFleetsCommand extends $Command<ListFleetsCommandInput, ListFleetsCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,13 @@ export interface ListFleetsForVehicleCommandOutput extends ListFleetsForVehicleR
36
36
  * };
37
37
  * const command = new ListFleetsForVehicleCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListFleetsForVehicleResponse
40
+ * // fleets: [ // fleets
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // nextToken: "STRING_VALUE",
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param ListFleetsForVehicleCommandInput - {@link ListFleetsForVehicleCommandInput}
@@ -59,6 +66,8 @@ export interface ListFleetsForVehicleCommandOutput extends ListFleetsForVehicleR
59
66
  * @throws {@link ValidationException} (client fault)
60
67
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
61
68
  *
69
+ * @throws {@link IoTFleetWiseServiceException}
70
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
62
71
  *
63
72
  */
64
73
  export declare class ListFleetsForVehicleCommand extends $Command<ListFleetsForVehicleCommandInput, ListFleetsForVehicleCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,54 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
36
36
  * };
37
37
  * const command = new ListModelManifestNodesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListModelManifestNodesResponse
40
+ * // nodes: [ // Nodes
41
+ * // { // Node Union: only one key present
42
+ * // branch: { // Branch
43
+ * // fullyQualifiedName: "STRING_VALUE", // required
44
+ * // description: "STRING_VALUE",
45
+ * // },
46
+ * // sensor: { // Sensor
47
+ * // fullyQualifiedName: "STRING_VALUE", // required
48
+ * // dataType: "STRING_VALUE", // required
49
+ * // description: "STRING_VALUE",
50
+ * // unit: "STRING_VALUE",
51
+ * // allowedValues: [ // listOfStrings
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // min: Number("double"),
55
+ * // max: Number("double"),
56
+ * // },
57
+ * // actuator: { // Actuator
58
+ * // fullyQualifiedName: "STRING_VALUE", // required
59
+ * // dataType: "STRING_VALUE", // required
60
+ * // description: "STRING_VALUE",
61
+ * // unit: "STRING_VALUE",
62
+ * // allowedValues: [
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // min: Number("double"),
66
+ * // max: Number("double"),
67
+ * // assignedValue: "STRING_VALUE",
68
+ * // },
69
+ * // attribute: { // Attribute
70
+ * // fullyQualifiedName: "STRING_VALUE", // required
71
+ * // dataType: "STRING_VALUE", // required
72
+ * // description: "STRING_VALUE",
73
+ * // unit: "STRING_VALUE",
74
+ * // allowedValues: [
75
+ * // "STRING_VALUE",
76
+ * // ],
77
+ * // min: Number("double"),
78
+ * // max: Number("double"),
79
+ * // assignedValue: "STRING_VALUE",
80
+ * // defaultValue: "STRING_VALUE",
81
+ * // },
82
+ * // },
83
+ * // ],
84
+ * // nextToken: "STRING_VALUE",
85
+ * // };
86
+ *
39
87
  * ```
40
88
  *
41
89
  * @param ListModelManifestNodesCommandInput - {@link ListModelManifestNodesCommandInput}
@@ -62,6 +110,8 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
62
110
  * @throws {@link ValidationException} (client fault)
63
111
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
64
112
  *
113
+ * @throws {@link IoTFleetWiseServiceException}
114
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
65
115
  *
66
116
  */
67
117
  export declare class ListModelManifestNodesCommand extends $Command<ListModelManifestNodesCommandInput, ListModelManifestNodesCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,21 @@ export interface ListModelManifestsCommandOutput extends ListModelManifestsRespo
36
36
  * };
37
37
  * const command = new ListModelManifestsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListModelManifestsResponse
40
+ * // summaries: [ // modelManifestSummaries
41
+ * // { // ModelManifestSummary
42
+ * // name: "STRING_VALUE",
43
+ * // arn: "STRING_VALUE",
44
+ * // signalCatalogArn: "STRING_VALUE",
45
+ * // description: "STRING_VALUE",
46
+ * // status: "STRING_VALUE",
47
+ * // creationTime: new Date("TIMESTAMP"), // required
48
+ * // lastModificationTime: new Date("TIMESTAMP"), // required
49
+ * // },
50
+ * // ],
51
+ * // nextToken: "STRING_VALUE",
52
+ * // };
53
+ *
39
54
  * ```
40
55
  *
41
56
  * @param ListModelManifestsCommandInput - {@link ListModelManifestsCommandInput}
@@ -56,6 +71,8 @@ export interface ListModelManifestsCommandOutput extends ListModelManifestsRespo
56
71
  * @throws {@link ValidationException} (client fault)
57
72
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
58
73
  *
74
+ * @throws {@link IoTFleetWiseServiceException}
75
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
59
76
  *
60
77
  */
61
78
  export declare class ListModelManifestsCommand extends $Command<ListModelManifestsCommandInput, ListModelManifestsCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,54 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
36
36
  * };
37
37
  * const command = new ListSignalCatalogNodesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListSignalCatalogNodesResponse
40
+ * // nodes: [ // Nodes
41
+ * // { // Node Union: only one key present
42
+ * // branch: { // Branch
43
+ * // fullyQualifiedName: "STRING_VALUE", // required
44
+ * // description: "STRING_VALUE",
45
+ * // },
46
+ * // sensor: { // Sensor
47
+ * // fullyQualifiedName: "STRING_VALUE", // required
48
+ * // dataType: "STRING_VALUE", // required
49
+ * // description: "STRING_VALUE",
50
+ * // unit: "STRING_VALUE",
51
+ * // allowedValues: [ // listOfStrings
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // min: Number("double"),
55
+ * // max: Number("double"),
56
+ * // },
57
+ * // actuator: { // Actuator
58
+ * // fullyQualifiedName: "STRING_VALUE", // required
59
+ * // dataType: "STRING_VALUE", // required
60
+ * // description: "STRING_VALUE",
61
+ * // unit: "STRING_VALUE",
62
+ * // allowedValues: [
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // min: Number("double"),
66
+ * // max: Number("double"),
67
+ * // assignedValue: "STRING_VALUE",
68
+ * // },
69
+ * // attribute: { // Attribute
70
+ * // fullyQualifiedName: "STRING_VALUE", // required
71
+ * // dataType: "STRING_VALUE", // required
72
+ * // description: "STRING_VALUE",
73
+ * // unit: "STRING_VALUE",
74
+ * // allowedValues: [
75
+ * // "STRING_VALUE",
76
+ * // ],
77
+ * // min: Number("double"),
78
+ * // max: Number("double"),
79
+ * // assignedValue: "STRING_VALUE",
80
+ * // defaultValue: "STRING_VALUE",
81
+ * // },
82
+ * // },
83
+ * // ],
84
+ * // nextToken: "STRING_VALUE",
85
+ * // };
86
+ *
39
87
  * ```
40
88
  *
41
89
  * @param ListSignalCatalogNodesCommandInput - {@link ListSignalCatalogNodesCommandInput}
@@ -62,6 +110,8 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
62
110
  * @throws {@link ValidationException} (client fault)
63
111
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
64
112
  *
113
+ * @throws {@link IoTFleetWiseServiceException}
114
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
65
115
  *
66
116
  */
67
117
  export declare class ListSignalCatalogNodesCommand extends $Command<ListSignalCatalogNodesCommandInput, ListSignalCatalogNodesCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -37,6 +37,18 @@ export interface ListSignalCatalogsCommandOutput extends ListSignalCatalogsRespo
37
37
  * };
38
38
  * const command = new ListSignalCatalogsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListSignalCatalogsResponse
41
+ * // summaries: [ // signalCatalogSummaries
42
+ * // { // SignalCatalogSummary
43
+ * // name: "STRING_VALUE",
44
+ * // arn: "STRING_VALUE",
45
+ * // creationTime: new Date("TIMESTAMP"),
46
+ * // lastModificationTime: new Date("TIMESTAMP"),
47
+ * // },
48
+ * // ],
49
+ * // nextToken: "STRING_VALUE",
50
+ * // };
51
+ *
40
52
  * ```
41
53
  *
42
54
  * @param ListSignalCatalogsCommandInput - {@link ListSignalCatalogsCommandInput}
@@ -57,6 +69,8 @@ export interface ListSignalCatalogsCommandOutput extends ListSignalCatalogsRespo
57
69
  * @throws {@link ValidationException} (client fault)
58
70
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
59
71
  *
72
+ * @throws {@link IoTFleetWiseServiceException}
73
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
60
74
  *
61
75
  */
62
76
  export declare class ListSignalCatalogsCommand extends $Command<ListSignalCatalogsCommandInput, ListSignalCatalogsCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListTagsForResourceResponse
35
+ * // Tags: [ // TagList
36
+ * // { // Tag
37
+ * // Key: "STRING_VALUE", // required
38
+ * // Value: "STRING_VALUE", // required
39
+ * // },
40
+ * // ],
41
+ * // };
42
+ *
34
43
  * ```
35
44
  *
36
45
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -54,6 +63,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
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 ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface ListVehiclesCommandOutput extends ListVehiclesResponse, __Metad
36
36
  * };
37
37
  * const command = new ListVehiclesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListVehiclesResponse
40
+ * // vehicleSummaries: [ // vehicleSummaries
41
+ * // { // VehicleSummary
42
+ * // vehicleName: "STRING_VALUE", // required
43
+ * // arn: "STRING_VALUE", // required
44
+ * // modelManifestArn: "STRING_VALUE", // required
45
+ * // decoderManifestArn: "STRING_VALUE", // required
46
+ * // creationTime: new Date("TIMESTAMP"), // required
47
+ * // lastModificationTime: new Date("TIMESTAMP"), // required
48
+ * // },
49
+ * // ],
50
+ * // nextToken: "STRING_VALUE",
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param ListVehiclesCommandInput - {@link ListVehiclesCommandInput}
@@ -56,6 +70,8 @@ export interface ListVehiclesCommandOutput extends ListVehiclesResponse, __Metad
56
70
  * @throws {@link ValidationException} (client fault)
57
71
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
58
72
  *
73
+ * @throws {@link IoTFleetWiseServiceException}
74
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
59
75
  *
60
76
  */
61
77
  export declare class ListVehiclesCommand extends $Command<ListVehiclesCommandInput, ListVehiclesCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,13 @@ export interface ListVehiclesInFleetCommandOutput extends ListVehiclesInFleetRes
36
36
  * };
37
37
  * const command = new ListVehiclesInFleetCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListVehiclesInFleetResponse
40
+ * // vehicles: [ // vehicles
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // nextToken: "STRING_VALUE",
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param ListVehiclesInFleetCommandInput - {@link ListVehiclesInFleetCommandInput}
@@ -59,6 +66,8 @@ export interface ListVehiclesInFleetCommandOutput extends ListVehiclesInFleetRes
59
66
  * @throws {@link ValidationException} (client fault)
60
67
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
61
68
  *
69
+ * @throws {@link IoTFleetWiseServiceException}
70
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
62
71
  *
63
72
  */
64
73
  export declare class ListVehiclesInFleetCommand extends $Command<ListVehiclesInFleetCommandInput, ListVehiclesInFleetCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface PutLoggingOptionsCommandOutput extends PutLoggingOptionsRespons
34
34
  * };
35
35
  * const command = new PutLoggingOptionsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param PutLoggingOptionsCommandInput - {@link PutLoggingOptionsCommandInput}
@@ -61,6 +63,8 @@ export interface PutLoggingOptionsCommandOutput extends PutLoggingOptionsRespons
61
63
  * @throws {@link InternalServerException} (server fault)
62
64
  * <p>The request couldn't be completed because the server temporarily failed.</p>
63
65
  *
66
+ * @throws {@link IoTFleetWiseServiceException}
67
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
64
68
  *
65
69
  */
66
70
  export declare class PutLoggingOptionsCommand extends $Command<PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -47,6 +47,19 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _
47
47
  * };
48
48
  * const command = new RegisterAccountCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // RegisterAccountResponse
51
+ * // registerAccountStatus: "STRING_VALUE", // required
52
+ * // timestreamResources: { // TimestreamResources
53
+ * // timestreamDatabaseName: "STRING_VALUE", // required
54
+ * // timestreamTableName: "STRING_VALUE", // required
55
+ * // },
56
+ * // iamResources: { // IamResources
57
+ * // roleArn: "STRING_VALUE", // required
58
+ * // },
59
+ * // creationTime: new Date("TIMESTAMP"), // required
60
+ * // lastModificationTime: new Date("TIMESTAMP"), // required
61
+ * // };
62
+ *
50
63
  * ```
51
64
  *
52
65
  * @param RegisterAccountCommandInput - {@link RegisterAccountCommandInput}
@@ -74,6 +87,8 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _
74
87
  * @throws {@link ValidationException} (client fault)
75
88
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
76
89
  *
90
+ * @throws {@link IoTFleetWiseServiceException}
91
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
77
92
  *
78
93
  */
79
94
  export declare class RegisterAccountCommand extends $Command<RegisterAccountCommandInput, RegisterAccountCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -38,6 +38,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
38
38
  * };
39
39
  * const command = new TagResourceCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // {};
42
+ *
41
43
  * ```
42
44
  *
43
45
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -61,6 +63,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
61
63
  * @throws {@link ValidationException} (client fault)
62
64
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
63
65
  *
66
+ * @throws {@link IoTFleetWiseServiceException}
67
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
64
68
  *
65
69
  */
66
70
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
57
59
  * @throws {@link ValidationException} (client fault)
58
60
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
59
61
  *
62
+ * @throws {@link IoTFleetWiseServiceException}
63
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
60
64
  *
61
65
  */
62
66
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -36,6 +36,12 @@ export interface UpdateCampaignCommandOutput extends UpdateCampaignResponse, __M
36
36
  * };
37
37
  * const command = new UpdateCampaignCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // UpdateCampaignResponse
40
+ * // arn: "STRING_VALUE",
41
+ * // name: "STRING_VALUE",
42
+ * // status: "STRING_VALUE",
43
+ * // };
44
+ *
39
45
  * ```
40
46
  *
41
47
  * @param UpdateCampaignCommandInput - {@link UpdateCampaignCommandInput}
@@ -63,6 +69,8 @@ export interface UpdateCampaignCommandOutput extends UpdateCampaignResponse, __M
63
69
  * @throws {@link InternalServerException} (server fault)
64
70
  * <p>The request couldn't be completed because the server temporarily failed.</p>
65
71
  *
72
+ * @throws {@link IoTFleetWiseServiceException}
73
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
66
74
  *
67
75
  */
68
76
  export declare class UpdateCampaignCommand extends $Command<UpdateCampaignCommandInput, UpdateCampaignCommandOutput, IoTFleetWiseClientResolvedConfig> {
@@ -137,6 +137,11 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
137
137
  * };
138
138
  * const command = new UpdateDecoderManifestCommand(input);
139
139
  * const response = await client.send(command);
140
+ * // { // UpdateDecoderManifestResponse
141
+ * // name: "STRING_VALUE", // required
142
+ * // arn: "STRING_VALUE", // required
143
+ * // };
144
+ *
140
145
  * ```
141
146
  *
142
147
  * @param UpdateDecoderManifestCommandInput - {@link UpdateDecoderManifestCommandInput}
@@ -170,6 +175,8 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
170
175
  * @throws {@link InternalServerException} (server fault)
171
176
  * <p>The request couldn't be completed because the server temporarily failed.</p>
172
177
  *
178
+ * @throws {@link IoTFleetWiseServiceException}
179
+ * <p>Base exception class for all service exceptions from IoTFleetWise service.</p>
173
180
  *
174
181
  */
175
182
  export declare class UpdateDecoderManifestCommand extends $Command<UpdateDecoderManifestCommandInput, UpdateDecoderManifestCommandOutput, IoTFleetWiseClientResolvedConfig> {