@aws-sdk/client-iotfleetwise 3.751.0 → 3.758.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -88,6 +88,7 @@ __export(src_exports, {
88
88
  ListFleetsForVehicleCommand: () => ListFleetsForVehicleCommand,
89
89
  ListModelManifestNodesCommand: () => ListModelManifestNodesCommand,
90
90
  ListModelManifestsCommand: () => ListModelManifestsCommand,
91
+ ListResponseScope: () => ListResponseScope,
91
92
  ListSignalCatalogNodesCommand: () => ListSignalCatalogNodesCommand,
92
93
  ListSignalCatalogsCommand: () => ListSignalCatalogsCommand,
93
94
  ListStateTemplatesCommand: () => ListStateTemplatesCommand,
@@ -665,6 +666,9 @@ var CampaignStatus = {
665
666
  SUSPENDED: "SUSPENDED",
666
667
  WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL"
667
668
  };
669
+ var ListResponseScope = {
670
+ METADATA_ONLY: "METADATA_ONLY"
671
+ };
668
672
  var UpdateCampaignAction = {
669
673
  APPROVE: "APPROVE",
670
674
  RESUME: "RESUME",
@@ -976,9 +980,7 @@ var CreateCampaignRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
976
980
  ...obj.dataPartitions && {
977
981
  dataPartitions: obj.dataPartitions.map((item) => DataPartitionFilterSensitiveLog(item))
978
982
  },
979
- ...obj.signalsToFetch && {
980
- signalsToFetch: obj.signalsToFetch.map((item) => SignalFetchInformationFilterSensitiveLog(item))
981
- }
983
+ ...obj.signalsToFetch && { signalsToFetch: import_smithy_client.SENSITIVE_STRING }
982
984
  }), "CreateCampaignRequestFilterSensitiveLog");
983
985
  var GetCampaignResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
984
986
  ...obj,
@@ -989,9 +991,7 @@ var GetCampaignResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
989
991
  ...obj.dataPartitions && {
990
992
  dataPartitions: obj.dataPartitions.map((item) => DataPartitionFilterSensitiveLog(item))
991
993
  },
992
- ...obj.signalsToFetch && {
993
- signalsToFetch: obj.signalsToFetch.map((item) => SignalFetchInformationFilterSensitiveLog(item))
994
- }
994
+ ...obj.signalsToFetch && { signalsToFetch: import_smithy_client.SENSITIVE_STRING }
995
995
  }), "GetCampaignResponseFilterSensitiveLog");
996
996
  var UpdateCampaignRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
997
997
  ...obj,
@@ -4076,6 +4076,7 @@ var paginateListVehicles = (0, import_core.createPaginator)(IoTFleetWiseClient,
4076
4076
  SignalFetchConfig,
4077
4077
  SpoolingMode,
4078
4078
  CampaignStatus,
4079
+ ListResponseScope,
4079
4080
  UpdateCampaignAction,
4080
4081
  LogType,
4081
4082
  DefaultForUnmappedSignalsType,
@@ -241,6 +241,9 @@ export const CampaignStatus = {
241
241
  SUSPENDED: "SUSPENDED",
242
242
  WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL",
243
243
  };
244
+ export const ListResponseScope = {
245
+ METADATA_ONLY: "METADATA_ONLY",
246
+ };
244
247
  export const UpdateCampaignAction = {
245
248
  APPROVE: "APPROVE",
246
249
  RESUME: "RESUME",
@@ -511,9 +514,7 @@ export const CreateCampaignRequestFilterSensitiveLog = (obj) => ({
511
514
  ...(obj.dataPartitions && {
512
515
  dataPartitions: obj.dataPartitions.map((item) => DataPartitionFilterSensitiveLog(item)),
513
516
  }),
514
- ...(obj.signalsToFetch && {
515
- signalsToFetch: obj.signalsToFetch.map((item) => SignalFetchInformationFilterSensitiveLog(item)),
516
- }),
517
+ ...(obj.signalsToFetch && { signalsToFetch: SENSITIVE_STRING }),
517
518
  });
518
519
  export const GetCampaignResponseFilterSensitiveLog = (obj) => ({
519
520
  ...obj,
@@ -524,9 +525,7 @@ export const GetCampaignResponseFilterSensitiveLog = (obj) => ({
524
525
  ...(obj.dataPartitions && {
525
526
  dataPartitions: obj.dataPartitions.map((item) => DataPartitionFilterSensitiveLog(item)),
526
527
  }),
527
- ...(obj.signalsToFetch && {
528
- signalsToFetch: obj.signalsToFetch.map((item) => SignalFetchInformationFilterSensitiveLog(item)),
529
- }),
528
+ ...(obj.signalsToFetch && { signalsToFetch: SENSITIVE_STRING }),
530
529
  });
531
530
  export const UpdateCampaignRequestFilterSensitiveLog = (obj) => ({
532
531
  ...obj,
@@ -41,6 +41,7 @@ declare const ListCampaignsCommand_base: {
41
41
  * nextToken: "STRING_VALUE",
42
42
  * maxResults: Number("int"),
43
43
  * status: "STRING_VALUE",
44
+ * listResponseScope: "METADATA_ONLY",
44
45
  * };
45
46
  * const command = new ListCampaignsCommand(input);
46
47
  * const response = await client.send(command);
@@ -41,6 +41,7 @@ declare const ListDecoderManifestsCommand_base: {
41
41
  * modelManifestArn: "STRING_VALUE",
42
42
  * nextToken: "STRING_VALUE",
43
43
  * maxResults: Number("int"),
44
+ * listResponseScope: "METADATA_ONLY",
44
45
  * };
45
46
  * const command = new ListDecoderManifestsCommand(input);
46
47
  * const response = await client.send(command);
@@ -40,6 +40,7 @@ declare const ListFleetsCommand_base: {
40
40
  * const input = { // ListFleetsRequest
41
41
  * nextToken: "STRING_VALUE",
42
42
  * maxResults: Number("int"),
43
+ * listResponseScope: "METADATA_ONLY",
43
44
  * };
44
45
  * const command = new ListFleetsCommand(input);
45
46
  * const response = await client.send(command);
@@ -24,7 +24,7 @@ export interface ListModelManifestsCommandOutput extends ListModelManifestsRespo
24
24
  declare const ListModelManifestsCommand_base: {
25
25
  new (input: ListModelManifestsCommandInput): import("@smithy/smithy-client").CommandImpl<ListModelManifestsCommandInput, ListModelManifestsCommandOutput, IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
26
  new (...[input]: [] | [ListModelManifestsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListModelManifestsCommandInput, ListModelManifestsCommandOutput, IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; /** @internal type navigation helper, not in runtime. */
28
28
  };
29
29
  /**
30
30
  * <p> Retrieves a list of vehicle models (model manifests). </p>
@@ -41,6 +41,7 @@ declare const ListModelManifestsCommand_base: {
41
41
  * signalCatalogArn: "STRING_VALUE",
42
42
  * nextToken: "STRING_VALUE",
43
43
  * maxResults: Number("int"),
44
+ * listResponseScope: "METADATA_ONLY",
44
45
  * };
45
46
  * const command = new ListModelManifestsCommand(input);
46
47
  * const response = await client.send(command);
@@ -40,6 +40,7 @@ declare const ListStateTemplatesCommand_base: {
40
40
  * const input = { // ListStateTemplatesRequest
41
41
  * nextToken: "STRING_VALUE",
42
42
  * maxResults: Number("int"),
43
+ * listResponseScope: "METADATA_ONLY",
43
44
  * };
44
45
  * const command = new ListStateTemplatesCommand(input);
45
46
  * const response = await client.send(command);
@@ -47,6 +47,7 @@ declare const ListVehiclesCommand_base: {
47
47
  * ],
48
48
  * nextToken: "STRING_VALUE",
49
49
  * maxResults: Number("int"),
50
+ * listResponseScope: "METADATA_ONLY",
50
51
  * };
51
52
  * const command = new ListVehiclesCommand(input);
52
53
  * const response = await client.send(command);
@@ -464,7 +464,7 @@ export declare namespace StateTemplateUpdateStrategy {
464
464
  */
465
465
  export interface StateTemplateAssociation {
466
466
  /**
467
- * <p>A unique, service-generated identifier.</p>
467
+ * <p>The unique ID of the state template.</p>
468
468
  * @public
469
469
  */
470
470
  identifier: string | undefined;
@@ -1729,6 +1729,17 @@ export interface GetCampaignResponse {
1729
1729
  */
1730
1730
  signalsToFetch?: SignalFetchInformation[] | undefined;
1731
1731
  }
1732
+ /**
1733
+ * @public
1734
+ * @enum
1735
+ */
1736
+ export declare const ListResponseScope: {
1737
+ readonly METADATA_ONLY: "METADATA_ONLY";
1738
+ };
1739
+ /**
1740
+ * @public
1741
+ */
1742
+ export type ListResponseScope = (typeof ListResponseScope)[keyof typeof ListResponseScope];
1732
1743
  /**
1733
1744
  * @public
1734
1745
  */
@@ -1752,6 +1763,11 @@ export interface ListCampaignsRequest {
1752
1763
  * @public
1753
1764
  */
1754
1765
  status?: string | undefined;
1766
+ /**
1767
+ * <p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: campaign name, Amazon Resource Name (ARN), creation time, and last modification time.</p>
1768
+ * @public
1769
+ */
1770
+ listResponseScope?: ListResponseScope | undefined;
1755
1771
  }
1756
1772
  /**
1757
1773
  * <p>Information about a campaign. </p>
@@ -3337,6 +3353,11 @@ export interface ListDecoderManifestsRequest {
3337
3353
  * @public
3338
3354
  */
3339
3355
  maxResults?: number | undefined;
3356
+ /**
3357
+ * <p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: decoder manifest name, Amazon Resource Name (ARN), creation time, and last modification time.</p>
3358
+ * @public
3359
+ */
3360
+ listResponseScope?: ListResponseScope | undefined;
3340
3361
  }
3341
3362
  /**
3342
3363
  * <p>Information about a created decoder manifest. You can use the API operation to return this information about
@@ -3524,7 +3545,7 @@ export interface DeleteSignalCatalogResponse {
3524
3545
  */
3525
3546
  export interface DeleteStateTemplateRequest {
3526
3547
  /**
3527
- * <p>A unique, service-generated identifier.</p>
3548
+ * <p>The unique ID of the state template.</p>
3528
3549
  * @public
3529
3550
  */
3530
3551
  identifier: string | undefined;
@@ -3717,6 +3738,11 @@ export interface ListFleetsRequest {
3717
3738
  * @public
3718
3739
  */
3719
3740
  maxResults?: number | undefined;
3741
+ /**
3742
+ * <p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: fleet ID, Amazon Resource Name (ARN), creation time, and last modification time.</p>
3743
+ * @public
3744
+ */
3745
+ listResponseScope?: ListResponseScope | undefined;
3720
3746
  }
3721
3747
  /**
3722
3748
  * <p>Information about a fleet.</p>
@@ -4211,7 +4237,7 @@ export interface GetSignalCatalogResponse {
4211
4237
  */
4212
4238
  export interface GetStateTemplateRequest {
4213
4239
  /**
4214
- * <p>A unique, service-generated identifier.</p>
4240
+ * <p>The unique ID of the state template.</p>
4215
4241
  * @public
4216
4242
  */
4217
4243
  identifier: string | undefined;
@@ -4569,6 +4595,11 @@ export interface ListModelManifestsRequest {
4569
4595
  * @public
4570
4596
  */
4571
4597
  maxResults?: number | undefined;
4598
+ /**
4599
+ * <p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: model manifest name, Amazon Resource Name (ARN), creation time, and last modification time.</p>
4600
+ * @public
4601
+ */
4602
+ listResponseScope?: ListResponseScope | undefined;
4572
4603
  }
4573
4604
  /**
4574
4605
  * <p>Information about a vehicle model (model manifest). You can use the API operation to return this information about
@@ -4979,6 +5010,11 @@ export interface ListStateTemplatesRequest {
4979
5010
  * @public
4980
5011
  */
4981
5012
  maxResults?: number | undefined;
5013
+ /**
5014
+ * <p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: state template ID, Amazon Resource Name (ARN), creation time, and last modification time.</p>
5015
+ * @public
5016
+ */
5017
+ listResponseScope?: ListResponseScope | undefined;
4982
5018
  }
4983
5019
  /**
4984
5020
  * <p>Information about a state template.</p>
@@ -5044,7 +5080,7 @@ export interface ListStateTemplatesResponse {
5044
5080
  */
5045
5081
  export interface UpdateStateTemplateRequest {
5046
5082
  /**
5047
- * <p>A unique, service-generated identifier.</p>
5083
+ * <p>The unique ID of the state template.</p>
5048
5084
  * @public
5049
5085
  */
5050
5086
  identifier: string | undefined;
@@ -5192,6 +5228,11 @@ export interface ListVehiclesRequest {
5192
5228
  * @public
5193
5229
  */
5194
5230
  maxResults?: number | undefined;
5231
+ /**
5232
+ * <p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: vehicle name, Amazon Resource Name (ARN), creation time, and last modification time.</p>
5233
+ * @public
5234
+ */
5235
+ listResponseScope?: ListResponseScope | undefined;
5195
5236
  }
5196
5237
  /**
5197
5238
  * <p>Information about a vehicle.</p>
@@ -524,10 +524,16 @@ export interface GetCampaignResponse {
524
524
  dataPartitions?: DataPartition[] | undefined;
525
525
  signalsToFetch?: SignalFetchInformation[] | undefined;
526
526
  }
527
+ export declare const ListResponseScope: {
528
+ readonly METADATA_ONLY: "METADATA_ONLY";
529
+ };
530
+ export type ListResponseScope =
531
+ (typeof ListResponseScope)[keyof typeof ListResponseScope];
527
532
  export interface ListCampaignsRequest {
528
533
  nextToken?: string | undefined;
529
534
  maxResults?: number | undefined;
530
535
  status?: string | undefined;
536
+ listResponseScope?: ListResponseScope | undefined;
531
537
  }
532
538
  export interface CampaignSummary {
533
539
  arn?: string | undefined;
@@ -1027,6 +1033,7 @@ export interface ListDecoderManifestsRequest {
1027
1033
  modelManifestArn?: string | undefined;
1028
1034
  nextToken?: string | undefined;
1029
1035
  maxResults?: number | undefined;
1036
+ listResponseScope?: ListResponseScope | undefined;
1030
1037
  }
1031
1038
  export interface DecoderManifestSummary {
1032
1039
  name?: string | undefined;
@@ -1128,6 +1135,7 @@ export interface GetFleetResponse {
1128
1135
  export interface ListFleetsRequest {
1129
1136
  nextToken?: string | undefined;
1130
1137
  maxResults?: number | undefined;
1138
+ listResponseScope?: ListResponseScope | undefined;
1131
1139
  }
1132
1140
  export interface FleetSummary {
1133
1141
  id: string | undefined;
@@ -1332,6 +1340,7 @@ export interface ListModelManifestsRequest {
1332
1340
  signalCatalogArn?: string | undefined;
1333
1341
  nextToken?: string | undefined;
1334
1342
  maxResults?: number | undefined;
1343
+ listResponseScope?: ListResponseScope | undefined;
1335
1344
  }
1336
1345
  export interface ModelManifestSummary {
1337
1346
  name?: string | undefined;
@@ -1433,6 +1442,7 @@ export interface UpdateSignalCatalogResponse {
1433
1442
  export interface ListStateTemplatesRequest {
1434
1443
  nextToken?: string | undefined;
1435
1444
  maxResults?: number | undefined;
1445
+ listResponseScope?: ListResponseScope | undefined;
1436
1446
  }
1437
1447
  export interface StateTemplateSummary {
1438
1448
  name?: string | undefined;
@@ -1476,6 +1486,7 @@ export interface ListVehiclesRequest {
1476
1486
  attributeValues?: string[] | undefined;
1477
1487
  nextToken?: string | undefined;
1478
1488
  maxResults?: number | undefined;
1489
+ listResponseScope?: ListResponseScope | undefined;
1479
1490
  }
1480
1491
  export interface VehicleSummary {
1481
1492
  vehicleName: string | undefined;
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.751.0",
4
+ "version": "3.758.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iotfleetwise",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.750.0",
24
- "@aws-sdk/credential-provider-node": "3.750.0",
23
+ "@aws-sdk/core": "3.758.0",
24
+ "@aws-sdk/credential-provider-node": "3.758.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",
28
- "@aws-sdk/middleware-user-agent": "3.750.0",
28
+ "@aws-sdk/middleware-user-agent": "3.758.0",
29
29
  "@aws-sdk/region-config-resolver": "3.734.0",
30
30
  "@aws-sdk/types": "3.734.0",
31
31
  "@aws-sdk/util-endpoints": "3.743.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.750.0",
33
+ "@aws-sdk/util-user-agent-node": "3.758.0",
34
34
  "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.4",
35
+ "@smithy/core": "^3.1.5",
36
36
  "@smithy/fetch-http-handler": "^5.0.1",
37
37
  "@smithy/hash-node": "^4.0.1",
38
38
  "@smithy/invalid-dependency": "^4.0.1",
39
39
  "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.5",
41
- "@smithy/middleware-retry": "^4.0.6",
40
+ "@smithy/middleware-endpoint": "^4.0.6",
41
+ "@smithy/middleware-retry": "^4.0.7",
42
42
  "@smithy/middleware-serde": "^4.0.2",
43
43
  "@smithy/middleware-stack": "^4.0.1",
44
44
  "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.3",
46
46
  "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.5",
47
+ "@smithy/smithy-client": "^4.1.6",
48
48
  "@smithy/types": "^4.1.0",
49
49
  "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.6",
54
- "@smithy/util-defaults-mode-node": "^4.0.6",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.7",
54
+ "@smithy/util-defaults-mode-node": "^4.0.7",
55
55
  "@smithy/util-endpoints": "^3.0.1",
56
56
  "@smithy/util-middleware": "^4.0.1",
57
57
  "@smithy/util-retry": "^4.0.1",