@aws-sdk/client-iotfleetwise 3.299.0 → 3.301.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 +13 -0
  4. package/dist-types/commands/CreateCampaignCommand.d.ts +40 -0
  5. package/dist-types/commands/CreateDecoderManifestCommand.d.ts +59 -0
  6. package/dist-types/commands/CreateFleetCommand.d.ts +11 -0
  7. package/dist-types/commands/CreateModelManifestCommand.d.ts +14 -0
  8. package/dist-types/commands/CreateSignalCatalogCommand.d.ts +54 -0
  9. package/dist-types/commands/CreateVehicleCommand.d.ts +15 -0
  10. package/dist-types/commands/DeleteCampaignCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteDecoderManifestCommand.d.ts +3 -0
  12. package/dist-types/commands/DeleteFleetCommand.d.ts +3 -0
  13. package/dist-types/commands/DeleteModelManifestCommand.d.ts +3 -0
  14. package/dist-types/commands/DeleteSignalCatalogCommand.d.ts +3 -0
  15. package/dist-types/commands/DeleteVehicleCommand.d.ts +3 -0
  16. package/dist-types/commands/DisassociateVehicleFleetCommand.d.ts +4 -0
  17. package/dist-types/commands/GetCampaignCommand.d.ts +3 -0
  18. package/dist-types/commands/GetDecoderManifestCommand.d.ts +3 -0
  19. package/dist-types/commands/GetFleetCommand.d.ts +3 -0
  20. package/dist-types/commands/GetLoggingOptionsCommand.d.ts +1 -0
  21. package/dist-types/commands/GetModelManifestCommand.d.ts +3 -0
  22. package/dist-types/commands/GetRegisterAccountStatusCommand.d.ts +1 -0
  23. package/dist-types/commands/GetSignalCatalogCommand.d.ts +3 -0
  24. package/dist-types/commands/GetVehicleCommand.d.ts +3 -0
  25. package/dist-types/commands/GetVehicleStatusCommand.d.ts +5 -0
  26. package/dist-types/commands/ImportDecoderManifestCommand.d.ts +16 -0
  27. package/dist-types/commands/ImportSignalCatalogCommand.d.ts +13 -0
  28. package/dist-types/commands/ListCampaignsCommand.d.ts +5 -0
  29. package/dist-types/commands/ListDecoderManifestNetworkInterfacesCommand.d.ts +5 -0
  30. package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +5 -0
  31. package/dist-types/commands/ListDecoderManifestsCommand.d.ts +5 -0
  32. package/dist-types/commands/ListFleetsCommand.d.ts +4 -0
  33. package/dist-types/commands/ListFleetsForVehicleCommand.d.ts +5 -0
  34. package/dist-types/commands/ListModelManifestNodesCommand.d.ts +5 -0
  35. package/dist-types/commands/ListModelManifestsCommand.d.ts +5 -0
  36. package/dist-types/commands/ListSignalCatalogNodesCommand.d.ts +5 -0
  37. package/dist-types/commands/ListSignalCatalogsCommand.d.ts +4 -0
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  39. package/dist-types/commands/ListVehiclesCommand.d.ts +5 -0
  40. package/dist-types/commands/ListVehiclesInFleetCommand.d.ts +5 -0
  41. package/dist-types/commands/PutLoggingOptionsCommand.d.ts +6 -0
  42. package/dist-types/commands/RegisterAccountCommand.d.ts +9 -0
  43. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  44. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  45. package/dist-types/commands/UpdateCampaignCommand.d.ts +8 -0
  46. package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +107 -0
  47. package/dist-types/commands/UpdateFleetCommand.d.ts +4 -0
  48. package/dist-types/commands/UpdateModelManifestCommand.d.ts +11 -0
  49. package/dist-types/commands/UpdateSignalCatalogCommand.d.ts +93 -0
  50. package/dist-types/commands/UpdateVehicleCommand.d.ts +9 -0
  51. package/package.json +8 -8
@@ -26,6 +26,10 @@ export interface AssociateVehicleFleetCommandOutput extends AssociateVehicleFlee
26
26
  * import { IoTFleetWiseClient, AssociateVehicleFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, AssociateVehicleFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // AssociateVehicleFleetRequest
30
+ * vehicleName: "STRING_VALUE", // required
31
+ * fleetId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new AssociateVehicleFleetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -32,6 +32,25 @@ export interface BatchCreateVehicleCommandOutput extends BatchCreateVehicleRespo
32
32
  * import { IoTFleetWiseClient, BatchCreateVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
33
33
  * // const { IoTFleetWiseClient, BatchCreateVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
34
34
  * const client = new IoTFleetWiseClient(config);
35
+ * const input = { // BatchCreateVehicleRequest
36
+ * vehicles: [ // createVehicleRequestItems // required
37
+ * { // CreateVehicleRequestItem
38
+ * vehicleName: "STRING_VALUE", // required
39
+ * modelManifestArn: "STRING_VALUE", // required
40
+ * decoderManifestArn: "STRING_VALUE", // required
41
+ * attributes: { // attributesMap
42
+ * "<keys>": "STRING_VALUE",
43
+ * },
44
+ * associationBehavior: "STRING_VALUE",
45
+ * tags: [ // TagList
46
+ * { // Tag
47
+ * Key: "STRING_VALUE", // required
48
+ * Value: "STRING_VALUE", // required
49
+ * },
50
+ * ],
51
+ * },
52
+ * ],
53
+ * };
35
54
  * const command = new BatchCreateVehicleCommand(input);
36
55
  * const response = await client.send(command);
37
56
  * ```
@@ -32,6 +32,19 @@ export interface BatchUpdateVehicleCommandOutput extends BatchUpdateVehicleRespo
32
32
  * import { IoTFleetWiseClient, BatchUpdateVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
33
33
  * // const { IoTFleetWiseClient, BatchUpdateVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
34
34
  * const client = new IoTFleetWiseClient(config);
35
+ * const input = { // BatchUpdateVehicleRequest
36
+ * vehicles: [ // updateVehicleRequestItems // required
37
+ * { // UpdateVehicleRequestItem
38
+ * vehicleName: "STRING_VALUE", // required
39
+ * modelManifestArn: "STRING_VALUE",
40
+ * decoderManifestArn: "STRING_VALUE",
41
+ * attributes: { // attributesMap
42
+ * "<keys>": "STRING_VALUE",
43
+ * },
44
+ * attributeUpdateMode: "STRING_VALUE",
45
+ * },
46
+ * ],
47
+ * };
35
48
  * const command = new BatchUpdateVehicleCommand(input);
36
49
  * const response = await client.send(command);
37
50
  * ```
@@ -31,6 +31,46 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
31
31
  * import { IoTFleetWiseClient, CreateCampaignCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
32
32
  * // const { IoTFleetWiseClient, CreateCampaignCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
33
33
  * const client = new IoTFleetWiseClient(config);
34
+ * const input = { // CreateCampaignRequest
35
+ * name: "STRING_VALUE", // required
36
+ * description: "STRING_VALUE",
37
+ * signalCatalogArn: "STRING_VALUE", // required
38
+ * targetArn: "STRING_VALUE", // required
39
+ * startTime: new Date("TIMESTAMP"),
40
+ * expiryTime: new Date("TIMESTAMP"),
41
+ * postTriggerCollectionDuration: Number("long"),
42
+ * diagnosticsMode: "STRING_VALUE",
43
+ * spoolingMode: "STRING_VALUE",
44
+ * compression: "STRING_VALUE",
45
+ * priority: Number("int"),
46
+ * signalsToCollect: [ // SignalInformationList
47
+ * { // SignalInformation
48
+ * name: "STRING_VALUE", // required
49
+ * maxSampleCount: Number("long"),
50
+ * minimumSamplingIntervalMs: Number("long"),
51
+ * },
52
+ * ],
53
+ * collectionScheme: { // CollectionScheme Union: only one key present
54
+ * timeBasedCollectionScheme: { // TimeBasedCollectionScheme
55
+ * periodMs: Number("long"), // required
56
+ * },
57
+ * conditionBasedCollectionScheme: { // ConditionBasedCollectionScheme
58
+ * expression: "STRING_VALUE", // required
59
+ * minimumTriggerIntervalMs: Number("long"),
60
+ * triggerMode: "STRING_VALUE",
61
+ * conditionLanguageVersion: Number("int"),
62
+ * },
63
+ * },
64
+ * dataExtraDimensions: [ // DataExtraDimensionNodePathList
65
+ * "STRING_VALUE",
66
+ * ],
67
+ * tags: [ // TagList
68
+ * { // Tag
69
+ * Key: "STRING_VALUE", // required
70
+ * Value: "STRING_VALUE", // required
71
+ * },
72
+ * ],
73
+ * };
34
74
  * const command = new CreateCampaignCommand(input);
35
75
  * const response = await client.send(command);
36
76
  * ```
@@ -41,6 +41,65 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
41
41
  * import { IoTFleetWiseClient, CreateDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
42
42
  * // const { IoTFleetWiseClient, CreateDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
43
43
  * const client = new IoTFleetWiseClient(config);
44
+ * const input = { // CreateDecoderManifestRequest
45
+ * name: "STRING_VALUE", // required
46
+ * description: "STRING_VALUE",
47
+ * modelManifestArn: "STRING_VALUE", // required
48
+ * signalDecoders: [ // SignalDecoders
49
+ * { // SignalDecoder
50
+ * fullyQualifiedName: "STRING_VALUE", // required
51
+ * type: "STRING_VALUE", // required
52
+ * interfaceId: "STRING_VALUE", // required
53
+ * canSignal: { // CanSignal
54
+ * messageId: Number("int"), // required
55
+ * isBigEndian: true || false, // required
56
+ * isSigned: true || false, // required
57
+ * startBit: Number("int"), // required
58
+ * offset: Number("double"), // required
59
+ * factor: Number("double"), // required
60
+ * length: Number("int"), // required
61
+ * name: "STRING_VALUE",
62
+ * },
63
+ * obdSignal: { // ObdSignal
64
+ * pidResponseLength: Number("int"), // required
65
+ * serviceMode: Number("int"), // required
66
+ * pid: Number("int"), // required
67
+ * scaling: Number("double"), // required
68
+ * offset: Number("double"), // required
69
+ * startByte: Number("int"), // required
70
+ * byteLength: Number("int"), // required
71
+ * bitRightShift: Number("int"),
72
+ * bitMaskLength: Number("int"),
73
+ * },
74
+ * },
75
+ * ],
76
+ * networkInterfaces: [ // NetworkInterfaces
77
+ * { // NetworkInterface
78
+ * interfaceId: "STRING_VALUE", // required
79
+ * type: "STRING_VALUE", // required
80
+ * canInterface: { // CanInterface
81
+ * name: "STRING_VALUE", // required
82
+ * protocolName: "STRING_VALUE",
83
+ * protocolVersion: "STRING_VALUE",
84
+ * },
85
+ * obdInterface: { // ObdInterface
86
+ * name: "STRING_VALUE", // required
87
+ * requestMessageId: Number("int"), // required
88
+ * obdStandard: "STRING_VALUE",
89
+ * pidRequestIntervalSeconds: Number("int"),
90
+ * dtcRequestIntervalSeconds: Number("int"),
91
+ * useExtendedIds: true || false,
92
+ * hasTransmissionEcu: true || false,
93
+ * },
94
+ * },
95
+ * ],
96
+ * tags: [ // TagList
97
+ * { // Tag
98
+ * Key: "STRING_VALUE", // required
99
+ * Value: "STRING_VALUE", // required
100
+ * },
101
+ * ],
102
+ * };
44
103
  * const command = new CreateDecoderManifestCommand(input);
45
104
  * const response = await client.send(command);
46
105
  * ```
@@ -33,6 +33,17 @@ export interface CreateFleetCommandOutput extends CreateFleetResponse, __Metadat
33
33
  * import { IoTFleetWiseClient, CreateFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
34
34
  * // const { IoTFleetWiseClient, CreateFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
35
35
  * const client = new IoTFleetWiseClient(config);
36
+ * const input = { // CreateFleetRequest
37
+ * fleetId: "STRING_VALUE", // required
38
+ * description: "STRING_VALUE",
39
+ * signalCatalogArn: "STRING_VALUE", // required
40
+ * tags: [ // TagList
41
+ * { // Tag
42
+ * Key: "STRING_VALUE", // required
43
+ * Value: "STRING_VALUE", // required
44
+ * },
45
+ * ],
46
+ * };
36
47
  * const command = new CreateFleetCommand(input);
37
48
  * const response = await client.send(command);
38
49
  * ```
@@ -29,6 +29,20 @@ export interface CreateModelManifestCommandOutput extends CreateModelManifestRes
29
29
  * import { IoTFleetWiseClient, CreateModelManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, CreateModelManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // CreateModelManifestRequest
33
+ * name: "STRING_VALUE", // required
34
+ * description: "STRING_VALUE",
35
+ * nodes: [ // listOfStrings // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * signalCatalogArn: "STRING_VALUE", // required
39
+ * tags: [ // TagList
40
+ * { // Tag
41
+ * Key: "STRING_VALUE", // required
42
+ * Value: "STRING_VALUE", // required
43
+ * },
44
+ * ],
45
+ * };
32
46
  * const command = new CreateModelManifestCommand(input);
33
47
  * const response = await client.send(command);
34
48
  * ```
@@ -27,6 +27,60 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
27
27
  * import { IoTFleetWiseClient, CreateSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
28
28
  * // const { IoTFleetWiseClient, CreateSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
29
29
  * const client = new IoTFleetWiseClient(config);
30
+ * const input = { // CreateSignalCatalogRequest
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * nodes: [ // Nodes
34
+ * { // Node Union: only one key present
35
+ * branch: { // Branch
36
+ * fullyQualifiedName: "STRING_VALUE", // required
37
+ * description: "STRING_VALUE",
38
+ * },
39
+ * sensor: { // Sensor
40
+ * fullyQualifiedName: "STRING_VALUE", // required
41
+ * dataType: "STRING_VALUE", // required
42
+ * description: "STRING_VALUE",
43
+ * unit: "STRING_VALUE",
44
+ * allowedValues: [ // listOfStrings
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * min: Number("double"),
48
+ * max: Number("double"),
49
+ * },
50
+ * actuator: { // Actuator
51
+ * fullyQualifiedName: "STRING_VALUE", // required
52
+ * dataType: "STRING_VALUE", // required
53
+ * description: "STRING_VALUE",
54
+ * unit: "STRING_VALUE",
55
+ * allowedValues: [
56
+ * "STRING_VALUE",
57
+ * ],
58
+ * min: Number("double"),
59
+ * max: Number("double"),
60
+ * assignedValue: "STRING_VALUE",
61
+ * },
62
+ * attribute: { // Attribute
63
+ * fullyQualifiedName: "STRING_VALUE", // required
64
+ * dataType: "STRING_VALUE", // required
65
+ * description: "STRING_VALUE",
66
+ * unit: "STRING_VALUE",
67
+ * allowedValues: [
68
+ * "STRING_VALUE",
69
+ * ],
70
+ * min: Number("double"),
71
+ * max: Number("double"),
72
+ * assignedValue: "STRING_VALUE",
73
+ * defaultValue: "STRING_VALUE",
74
+ * },
75
+ * },
76
+ * ],
77
+ * tags: [ // TagList
78
+ * { // Tag
79
+ * Key: "STRING_VALUE", // required
80
+ * Value: "STRING_VALUE", // required
81
+ * },
82
+ * ],
83
+ * };
30
84
  * const command = new CreateSignalCatalogCommand(input);
31
85
  * const response = await client.send(command);
32
86
  * ```
@@ -34,6 +34,21 @@ export interface CreateVehicleCommandOutput extends CreateVehicleResponse, __Met
34
34
  * import { IoTFleetWiseClient, CreateVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
35
35
  * // const { IoTFleetWiseClient, CreateVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
36
36
  * const client = new IoTFleetWiseClient(config);
37
+ * const input = { // CreateVehicleRequest
38
+ * vehicleName: "STRING_VALUE", // required
39
+ * modelManifestArn: "STRING_VALUE", // required
40
+ * decoderManifestArn: "STRING_VALUE", // required
41
+ * attributes: { // attributesMap
42
+ * "<keys>": "STRING_VALUE",
43
+ * },
44
+ * associationBehavior: "STRING_VALUE",
45
+ * tags: [ // TagList
46
+ * { // Tag
47
+ * Key: "STRING_VALUE", // required
48
+ * Value: "STRING_VALUE", // required
49
+ * },
50
+ * ],
51
+ * };
37
52
  * const command = new CreateVehicleCommand(input);
38
53
  * const response = await client.send(command);
39
54
  * ```
@@ -27,6 +27,9 @@ export interface DeleteCampaignCommandOutput extends DeleteCampaignResponse, __M
27
27
  * import { IoTFleetWiseClient, DeleteCampaignCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
28
28
  * // const { IoTFleetWiseClient, DeleteCampaignCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
29
29
  * const client = new IoTFleetWiseClient(config);
30
+ * const input = { // DeleteCampaignRequest
31
+ * name: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteCampaignCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -31,6 +31,9 @@ export interface DeleteDecoderManifestCommandOutput extends DeleteDecoderManifes
31
31
  * import { IoTFleetWiseClient, DeleteDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
32
32
  * // const { IoTFleetWiseClient, DeleteDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
33
33
  * const client = new IoTFleetWiseClient(config);
34
+ * const input = { // DeleteDecoderManifestRequest
35
+ * name: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new DeleteDecoderManifestCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -32,6 +32,9 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __Metadat
32
32
  * import { IoTFleetWiseClient, DeleteFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
33
33
  * // const { IoTFleetWiseClient, DeleteFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
34
34
  * const client = new IoTFleetWiseClient(config);
35
+ * const input = { // DeleteFleetRequest
36
+ * fleetId: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new DeleteFleetCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -30,6 +30,9 @@ export interface DeleteModelManifestCommandOutput extends DeleteModelManifestRes
30
30
  * import { IoTFleetWiseClient, DeleteModelManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
31
31
  * // const { IoTFleetWiseClient, DeleteModelManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
32
32
  * const client = new IoTFleetWiseClient(config);
33
+ * const input = { // DeleteModelManifestRequest
34
+ * name: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteModelManifestCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -30,6 +30,9 @@ export interface DeleteSignalCatalogCommandOutput extends DeleteSignalCatalogRes
30
30
  * import { IoTFleetWiseClient, DeleteSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
31
31
  * // const { IoTFleetWiseClient, DeleteSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
32
32
  * const client = new IoTFleetWiseClient(config);
33
+ * const input = { // DeleteSignalCatalogRequest
34
+ * name: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteSignalCatalogCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -30,6 +30,9 @@ export interface DeleteVehicleCommandOutput extends DeleteVehicleResponse, __Met
30
30
  * import { IoTFleetWiseClient, DeleteVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
31
31
  * // const { IoTFleetWiseClient, DeleteVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
32
32
  * const client = new IoTFleetWiseClient(config);
33
+ * const input = { // DeleteVehicleRequest
34
+ * vehicleName: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteVehicleCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -31,6 +31,10 @@ export interface DisassociateVehicleFleetCommandOutput extends DisassociateVehic
31
31
  * import { IoTFleetWiseClient, DisassociateVehicleFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
32
32
  * // const { IoTFleetWiseClient, DisassociateVehicleFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
33
33
  * const client = new IoTFleetWiseClient(config);
34
+ * const input = { // DisassociateVehicleFleetRequest
35
+ * vehicleName: "STRING_VALUE", // required
36
+ * fleetId: "STRING_VALUE", // required
37
+ * };
34
38
  * const command = new DisassociateVehicleFleetCommand(input);
35
39
  * const response = await client.send(command);
36
40
  * ```
@@ -26,6 +26,9 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat
26
26
  * import { IoTFleetWiseClient, GetCampaignCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, GetCampaignCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // GetCampaignRequest
30
+ * name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetCampaignCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetDecoderManifestCommandOutput extends GetDecoderManifestRespo
26
26
  * import { IoTFleetWiseClient, GetDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, GetDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // GetDecoderManifestRequest
30
+ * name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetDecoderManifestCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetFleetCommandOutput extends GetFleetResponse, __MetadataBeare
26
26
  * import { IoTFleetWiseClient, GetFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, GetFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // GetFleetRequest
30
+ * fleetId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetFleetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,7 @@ export interface GetLoggingOptionsCommandOutput extends GetLoggingOptionsRespons
26
26
  * import { IoTFleetWiseClient, GetLoggingOptionsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, GetLoggingOptionsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = {};
29
30
  * const command = new GetLoggingOptionsCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -26,6 +26,9 @@ export interface GetModelManifestCommandOutput extends GetModelManifestResponse,
26
26
  * import { IoTFleetWiseClient, GetModelManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, GetModelManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // GetModelManifestRequest
30
+ * name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetModelManifestCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -32,6 +32,7 @@ export interface GetRegisterAccountStatusCommandOutput extends GetRegisterAccoun
32
32
  * import { IoTFleetWiseClient, GetRegisterAccountStatusCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
33
33
  * // const { IoTFleetWiseClient, GetRegisterAccountStatusCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
34
34
  * const client = new IoTFleetWiseClient(config);
35
+ * const input = {};
35
36
  * const command = new GetRegisterAccountStatusCommand(input);
36
37
  * const response = await client.send(command);
37
38
  * ```
@@ -26,6 +26,9 @@ export interface GetSignalCatalogCommandOutput extends GetSignalCatalogResponse,
26
26
  * import { IoTFleetWiseClient, GetSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, GetSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // GetSignalCatalogRequest
30
+ * name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetSignalCatalogCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetVehicleCommandOutput extends GetVehicleResponse, __MetadataB
26
26
  * import { IoTFleetWiseClient, GetVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, GetVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // GetVehicleRequest
30
+ * vehicleName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetVehicleCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,11 @@ export interface GetVehicleStatusCommandOutput extends GetVehicleStatusResponse,
27
27
  * import { IoTFleetWiseClient, GetVehicleStatusCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
28
28
  * // const { IoTFleetWiseClient, GetVehicleStatusCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
29
29
  * const client = new IoTFleetWiseClient(config);
30
+ * const input = { // GetVehicleStatusRequest
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"),
33
+ * vehicleName: "STRING_VALUE", // required
34
+ * };
30
35
  * const command = new GetVehicleStatusCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,22 @@ export interface ImportDecoderManifestCommandOutput extends ImportDecoderManifes
27
27
  * import { IoTFleetWiseClient, ImportDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
28
28
  * // const { IoTFleetWiseClient, ImportDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
29
29
  * const client = new IoTFleetWiseClient(config);
30
+ * const input = { // ImportDecoderManifestRequest
31
+ * name: "STRING_VALUE", // required
32
+ * networkFileDefinitions: [ // NetworkFileDefinitions // required
33
+ * { // NetworkFileDefinition Union: only one key present
34
+ * canDbc: { // CanDbcDefinition
35
+ * networkInterface: "STRING_VALUE", // required
36
+ * canDbcFiles: [ // NetworkFilesList // required
37
+ * "BLOB_VALUE",
38
+ * ],
39
+ * signalsMap: { // ModelSignalsMap
40
+ * "<keys>": "STRING_VALUE",
41
+ * },
42
+ * },
43
+ * },
44
+ * ],
45
+ * };
30
46
  * const command = new ImportDecoderManifestCommand(input);
31
47
  * const response = await client.send(command);
32
48
  * ```
@@ -27,6 +27,19 @@ export interface ImportSignalCatalogCommandOutput extends ImportSignalCatalogRes
27
27
  * import { IoTFleetWiseClient, ImportSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
28
28
  * // const { IoTFleetWiseClient, ImportSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
29
29
  * const client = new IoTFleetWiseClient(config);
30
+ * const input = { // ImportSignalCatalogRequest
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * vss: { // FormattedVss Union: only one key present
34
+ * vssJson: "STRING_VALUE",
35
+ * },
36
+ * tags: [ // TagList
37
+ * { // Tag
38
+ * Key: "STRING_VALUE", // required
39
+ * Value: "STRING_VALUE", // required
40
+ * },
41
+ * ],
42
+ * };
30
43
  * const command = new ImportSignalCatalogCommand(input);
31
44
  * const response = await client.send(command);
32
45
  * ```
@@ -29,6 +29,11 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
29
29
  * import { IoTFleetWiseClient, ListCampaignsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListCampaignsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListCampaignsRequest
33
+ * nextToken: "STRING_VALUE",
34
+ * maxResults: Number("int"),
35
+ * status: "STRING_VALUE",
36
+ * };
32
37
  * const command = new ListCampaignsCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,11 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput extends ListD
29
29
  * import { IoTFleetWiseClient, ListDecoderManifestNetworkInterfacesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListDecoderManifestNetworkInterfacesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListDecoderManifestNetworkInterfacesRequest
33
+ * name: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListDecoderManifestNetworkInterfacesCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,11 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
29
29
  * import { IoTFleetWiseClient, ListDecoderManifestSignalsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListDecoderManifestSignalsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListDecoderManifestSignalsRequest
33
+ * name: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListDecoderManifestSignalsCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,11 @@ export interface ListDecoderManifestsCommandOutput extends ListDecoderManifestsR
29
29
  * import { IoTFleetWiseClient, ListDecoderManifestsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListDecoderManifestsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListDecoderManifestsRequest
33
+ * modelManifestArn: "STRING_VALUE",
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListDecoderManifestsCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,10 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB
29
29
  * import { IoTFleetWiseClient, ListFleetsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListFleetsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListFleetsRequest
33
+ * nextToken: "STRING_VALUE",
34
+ * maxResults: Number("int"),
35
+ * };
32
36
  * const command = new ListFleetsCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -29,6 +29,11 @@ export interface ListFleetsForVehicleCommandOutput extends ListFleetsForVehicleR
29
29
  * import { IoTFleetWiseClient, ListFleetsForVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListFleetsForVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListFleetsForVehicleRequest
33
+ * vehicleName: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListFleetsForVehicleCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,11 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
29
29
  * import { IoTFleetWiseClient, ListModelManifestNodesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListModelManifestNodesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListModelManifestNodesRequest
33
+ * name: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListModelManifestNodesCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,11 @@ export interface ListModelManifestsCommandOutput extends ListModelManifestsRespo
29
29
  * import { IoTFleetWiseClient, ListModelManifestsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListModelManifestsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListModelManifestsRequest
33
+ * signalCatalogArn: "STRING_VALUE",
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListModelManifestsCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,11 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
29
29
  * import { IoTFleetWiseClient, ListSignalCatalogNodesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListSignalCatalogNodesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListSignalCatalogNodesRequest
33
+ * name: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListSignalCatalogNodesCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -31,6 +31,10 @@ export interface ListSignalCatalogsCommandOutput extends ListSignalCatalogsRespo
31
31
  * import { IoTFleetWiseClient, ListSignalCatalogsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
32
32
  * // const { IoTFleetWiseClient, ListSignalCatalogsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
33
33
  * const client = new IoTFleetWiseClient(config);
34
+ * const input = { // ListSignalCatalogsRequest
35
+ * nextToken: "STRING_VALUE",
36
+ * maxResults: Number("int"),
37
+ * };
34
38
  * const command = new ListSignalCatalogsCommand(input);
35
39
  * const response = await client.send(command);
36
40
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { IoTFleetWiseClient, ListTagsForResourceCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -29,6 +29,11 @@ export interface ListVehiclesCommandOutput extends ListVehiclesResponse, __Metad
29
29
  * import { IoTFleetWiseClient, ListVehiclesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListVehiclesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListVehiclesRequest
33
+ * modelManifestArn: "STRING_VALUE",
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListVehiclesCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -29,6 +29,11 @@ export interface ListVehiclesInFleetCommandOutput extends ListVehiclesInFleetRes
29
29
  * import { IoTFleetWiseClient, ListVehiclesInFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
30
30
  * // const { IoTFleetWiseClient, ListVehiclesInFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
31
31
  * const client = new IoTFleetWiseClient(config);
32
+ * const input = { // ListVehiclesInFleetRequest
33
+ * fleetId: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new ListVehiclesInFleetCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -26,6 +26,12 @@ export interface PutLoggingOptionsCommandOutput extends PutLoggingOptionsRespons
26
26
  * import { IoTFleetWiseClient, PutLoggingOptionsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, PutLoggingOptionsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // PutLoggingOptionsRequest
30
+ * cloudWatchLogDelivery: { // CloudWatchLogDeliveryOptions
31
+ * logType: "STRING_VALUE", // required
32
+ * logGroupName: "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new PutLoggingOptionsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -36,6 +36,15 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _
36
36
  * import { IoTFleetWiseClient, RegisterAccountCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
37
37
  * // const { IoTFleetWiseClient, RegisterAccountCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
38
38
  * const client = new IoTFleetWiseClient(config);
39
+ * const input = { // RegisterAccountRequest
40
+ * timestreamResources: { // TimestreamResources
41
+ * timestreamDatabaseName: "STRING_VALUE", // required
42
+ * timestreamTableName: "STRING_VALUE", // required
43
+ * },
44
+ * iamResources: { // IamResources
45
+ * roleArn: "STRING_VALUE", // required
46
+ * },
47
+ * };
39
48
  * const command = new RegisterAccountCommand(input);
40
49
  * const response = await client.send(command);
41
50
  * ```
@@ -27,6 +27,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
27
  * import { IoTFleetWiseClient, TagResourceCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
28
28
  * // const { IoTFleetWiseClient, TagResourceCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
29
29
  * const client = new IoTFleetWiseClient(config);
30
+ * const input = { // TagResourceRequest
31
+ * ResourceARN: "STRING_VALUE", // required
32
+ * Tags: [ // TagList // required
33
+ * { // Tag
34
+ * Key: "STRING_VALUE", // required
35
+ * Value: "STRING_VALUE", // required
36
+ * },
37
+ * ],
38
+ * };
30
39
  * const command = new TagResourceCommand(input);
31
40
  * const response = await client.send(command);
32
41
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { IoTFleetWiseClient, UntagResourceCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, UntagResourceCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // UntagResourceRequest
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * TagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,14 @@ export interface UpdateCampaignCommandOutput extends UpdateCampaignResponse, __M
26
26
  * import { IoTFleetWiseClient, UpdateCampaignCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, UpdateCampaignCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // UpdateCampaignRequest
30
+ * name: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * dataExtraDimensions: [ // DataExtraDimensionNodePathList
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * action: "STRING_VALUE", // required
36
+ * };
29
37
  * const command = new UpdateCampaignCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -28,6 +28,113 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
28
28
  * import { IoTFleetWiseClient, UpdateDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
29
29
  * // const { IoTFleetWiseClient, UpdateDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
30
30
  * const client = new IoTFleetWiseClient(config);
31
+ * const input = { // UpdateDecoderManifestRequest
32
+ * name: "STRING_VALUE", // required
33
+ * description: "STRING_VALUE",
34
+ * signalDecodersToAdd: [ // SignalDecoders
35
+ * { // SignalDecoder
36
+ * fullyQualifiedName: "STRING_VALUE", // required
37
+ * type: "STRING_VALUE", // required
38
+ * interfaceId: "STRING_VALUE", // required
39
+ * canSignal: { // CanSignal
40
+ * messageId: Number("int"), // required
41
+ * isBigEndian: true || false, // required
42
+ * isSigned: true || false, // required
43
+ * startBit: Number("int"), // required
44
+ * offset: Number("double"), // required
45
+ * factor: Number("double"), // required
46
+ * length: Number("int"), // required
47
+ * name: "STRING_VALUE",
48
+ * },
49
+ * obdSignal: { // ObdSignal
50
+ * pidResponseLength: Number("int"), // required
51
+ * serviceMode: Number("int"), // required
52
+ * pid: Number("int"), // required
53
+ * scaling: Number("double"), // required
54
+ * offset: Number("double"), // required
55
+ * startByte: Number("int"), // required
56
+ * byteLength: Number("int"), // required
57
+ * bitRightShift: Number("int"),
58
+ * bitMaskLength: Number("int"),
59
+ * },
60
+ * },
61
+ * ],
62
+ * signalDecodersToUpdate: [
63
+ * {
64
+ * fullyQualifiedName: "STRING_VALUE", // required
65
+ * type: "STRING_VALUE", // required
66
+ * interfaceId: "STRING_VALUE", // required
67
+ * canSignal: {
68
+ * messageId: Number("int"), // required
69
+ * isBigEndian: true || false, // required
70
+ * isSigned: true || false, // required
71
+ * startBit: Number("int"), // required
72
+ * offset: Number("double"), // required
73
+ * factor: Number("double"), // required
74
+ * length: Number("int"), // required
75
+ * name: "STRING_VALUE",
76
+ * },
77
+ * obdSignal: {
78
+ * pidResponseLength: Number("int"), // required
79
+ * serviceMode: Number("int"), // required
80
+ * pid: Number("int"), // required
81
+ * scaling: Number("double"), // required
82
+ * offset: Number("double"), // required
83
+ * startByte: Number("int"), // required
84
+ * byteLength: Number("int"), // required
85
+ * bitRightShift: Number("int"),
86
+ * bitMaskLength: Number("int"),
87
+ * },
88
+ * },
89
+ * ],
90
+ * signalDecodersToRemove: [ // Fqns
91
+ * "STRING_VALUE",
92
+ * ],
93
+ * networkInterfacesToAdd: [ // NetworkInterfaces
94
+ * { // NetworkInterface
95
+ * interfaceId: "STRING_VALUE", // required
96
+ * type: "STRING_VALUE", // required
97
+ * canInterface: { // CanInterface
98
+ * name: "STRING_VALUE", // required
99
+ * protocolName: "STRING_VALUE",
100
+ * protocolVersion: "STRING_VALUE",
101
+ * },
102
+ * obdInterface: { // ObdInterface
103
+ * name: "STRING_VALUE", // required
104
+ * requestMessageId: Number("int"), // required
105
+ * obdStandard: "STRING_VALUE",
106
+ * pidRequestIntervalSeconds: Number("int"),
107
+ * dtcRequestIntervalSeconds: Number("int"),
108
+ * useExtendedIds: true || false,
109
+ * hasTransmissionEcu: true || false,
110
+ * },
111
+ * },
112
+ * ],
113
+ * networkInterfacesToUpdate: [
114
+ * {
115
+ * interfaceId: "STRING_VALUE", // required
116
+ * type: "STRING_VALUE", // required
117
+ * canInterface: {
118
+ * name: "STRING_VALUE", // required
119
+ * protocolName: "STRING_VALUE",
120
+ * protocolVersion: "STRING_VALUE",
121
+ * },
122
+ * obdInterface: {
123
+ * name: "STRING_VALUE", // required
124
+ * requestMessageId: Number("int"), // required
125
+ * obdStandard: "STRING_VALUE",
126
+ * pidRequestIntervalSeconds: Number("int"),
127
+ * dtcRequestIntervalSeconds: Number("int"),
128
+ * useExtendedIds: true || false,
129
+ * hasTransmissionEcu: true || false,
130
+ * },
131
+ * },
132
+ * ],
133
+ * networkInterfacesToRemove: [ // InterfaceIds
134
+ * "STRING_VALUE",
135
+ * ],
136
+ * status: "STRING_VALUE",
137
+ * };
31
138
  * const command = new UpdateDecoderManifestCommand(input);
32
139
  * const response = await client.send(command);
33
140
  * ```
@@ -30,6 +30,10 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResponse, __Metadat
30
30
  * import { IoTFleetWiseClient, UpdateFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
31
31
  * // const { IoTFleetWiseClient, UpdateFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
32
32
  * const client = new IoTFleetWiseClient(config);
33
+ * const input = { // UpdateFleetRequest
34
+ * fleetId: "STRING_VALUE", // required
35
+ * description: "STRING_VALUE",
36
+ * };
33
37
  * const command = new UpdateFleetCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -27,6 +27,17 @@ export interface UpdateModelManifestCommandOutput extends UpdateModelManifestRes
27
27
  * import { IoTFleetWiseClient, UpdateModelManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
28
28
  * // const { IoTFleetWiseClient, UpdateModelManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
29
29
  * const client = new IoTFleetWiseClient(config);
30
+ * const input = { // UpdateModelManifestRequest
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * nodesToAdd: [ // NodePaths
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * nodesToRemove: [
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * status: "STRING_VALUE",
40
+ * };
30
41
  * const command = new UpdateModelManifestCommand(input);
31
42
  * const response = await client.send(command);
32
43
  * ```
@@ -26,6 +26,99 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes
26
26
  * import { IoTFleetWiseClient, UpdateSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, UpdateSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // UpdateSignalCatalogRequest
30
+ * name: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * nodesToAdd: [ // Nodes
33
+ * { // Node Union: only one key present
34
+ * branch: { // Branch
35
+ * fullyQualifiedName: "STRING_VALUE", // required
36
+ * description: "STRING_VALUE",
37
+ * },
38
+ * sensor: { // Sensor
39
+ * fullyQualifiedName: "STRING_VALUE", // required
40
+ * dataType: "STRING_VALUE", // required
41
+ * description: "STRING_VALUE",
42
+ * unit: "STRING_VALUE",
43
+ * allowedValues: [ // listOfStrings
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * min: Number("double"),
47
+ * max: Number("double"),
48
+ * },
49
+ * actuator: { // Actuator
50
+ * fullyQualifiedName: "STRING_VALUE", // required
51
+ * dataType: "STRING_VALUE", // required
52
+ * description: "STRING_VALUE",
53
+ * unit: "STRING_VALUE",
54
+ * allowedValues: [
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * min: Number("double"),
58
+ * max: Number("double"),
59
+ * assignedValue: "STRING_VALUE",
60
+ * },
61
+ * attribute: { // Attribute
62
+ * fullyQualifiedName: "STRING_VALUE", // required
63
+ * dataType: "STRING_VALUE", // required
64
+ * description: "STRING_VALUE",
65
+ * unit: "STRING_VALUE",
66
+ * allowedValues: [
67
+ * "STRING_VALUE",
68
+ * ],
69
+ * min: Number("double"),
70
+ * max: Number("double"),
71
+ * assignedValue: "STRING_VALUE",
72
+ * defaultValue: "STRING_VALUE",
73
+ * },
74
+ * },
75
+ * ],
76
+ * nodesToUpdate: [
77
+ * {// Union: only one key present
78
+ * branch: {
79
+ * fullyQualifiedName: "STRING_VALUE", // required
80
+ * description: "STRING_VALUE",
81
+ * },
82
+ * sensor: {
83
+ * fullyQualifiedName: "STRING_VALUE", // required
84
+ * dataType: "STRING_VALUE", // required
85
+ * description: "STRING_VALUE",
86
+ * unit: "STRING_VALUE",
87
+ * allowedValues: [
88
+ * "STRING_VALUE",
89
+ * ],
90
+ * min: Number("double"),
91
+ * max: Number("double"),
92
+ * },
93
+ * actuator: {
94
+ * fullyQualifiedName: "STRING_VALUE", // required
95
+ * dataType: "STRING_VALUE", // required
96
+ * description: "STRING_VALUE",
97
+ * unit: "STRING_VALUE",
98
+ * allowedValues: [
99
+ * "STRING_VALUE",
100
+ * ],
101
+ * min: Number("double"),
102
+ * max: Number("double"),
103
+ * assignedValue: "STRING_VALUE",
104
+ * },
105
+ * attribute: {
106
+ * fullyQualifiedName: "STRING_VALUE", // required
107
+ * dataType: "STRING_VALUE", // required
108
+ * description: "STRING_VALUE",
109
+ * unit: "STRING_VALUE",
110
+ * allowedValues: "<listOfStrings>",
111
+ * min: Number("double"),
112
+ * max: Number("double"),
113
+ * assignedValue: "STRING_VALUE",
114
+ * defaultValue: "STRING_VALUE",
115
+ * },
116
+ * },
117
+ * ],
118
+ * nodesToRemove: [ // NodePaths
119
+ * "STRING_VALUE",
120
+ * ],
121
+ * };
29
122
  * const command = new UpdateSignalCatalogCommand(input);
30
123
  * const response = await client.send(command);
31
124
  * ```
@@ -26,6 +26,15 @@ export interface UpdateVehicleCommandOutput extends UpdateVehicleResponse, __Met
26
26
  * import { IoTFleetWiseClient, UpdateVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
27
27
  * // const { IoTFleetWiseClient, UpdateVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
28
28
  * const client = new IoTFleetWiseClient(config);
29
+ * const input = { // UpdateVehicleRequest
30
+ * vehicleName: "STRING_VALUE", // required
31
+ * modelManifestArn: "STRING_VALUE",
32
+ * decoderManifestArn: "STRING_VALUE",
33
+ * attributes: { // attributesMap
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * attributeUpdateMode: "STRING_VALUE",
37
+ * };
29
38
  * const command = new UpdateVehicleCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
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.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },