@aws-sdk/client-iotfleetwise 3.933.0 → 3.935.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.
@@ -1,44 +1,37 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { IoTFleetWiseServiceException as __BaseException } from "./IoTFleetWiseServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- constructor(
7
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
- );
9
- }
10
- export declare const NodeDataType: {
11
- readonly BOOLEAN: "BOOLEAN";
12
- readonly BOOLEAN_ARRAY: "BOOLEAN_ARRAY";
13
- readonly DOUBLE: "DOUBLE";
14
- readonly DOUBLE_ARRAY: "DOUBLE_ARRAY";
15
- readonly FLOAT: "FLOAT";
16
- readonly FLOAT_ARRAY: "FLOAT_ARRAY";
17
- readonly INT16: "INT16";
18
- readonly INT16_ARRAY: "INT16_ARRAY";
19
- readonly INT32: "INT32";
20
- readonly INT32_ARRAY: "INT32_ARRAY";
21
- readonly INT64: "INT64";
22
- readonly INT64_ARRAY: "INT64_ARRAY";
23
- readonly INT8: "INT8";
24
- readonly INT8_ARRAY: "INT8_ARRAY";
25
- readonly STRING: "STRING";
26
- readonly STRING_ARRAY: "STRING_ARRAY";
27
- readonly STRUCT: "STRUCT";
28
- readonly STRUCT_ARRAY: "STRUCT_ARRAY";
29
- readonly UINT16: "UINT16";
30
- readonly UINT16_ARRAY: "UINT16_ARRAY";
31
- readonly UINT32: "UINT32";
32
- readonly UINT32_ARRAY: "UINT32_ARRAY";
33
- readonly UINT64: "UINT64";
34
- readonly UINT64_ARRAY: "UINT64_ARRAY";
35
- readonly UINT8: "UINT8";
36
- readonly UINT8_ARRAY: "UINT8_ARRAY";
37
- readonly UNIX_TIMESTAMP: "UNIX_TIMESTAMP";
38
- readonly UNIX_TIMESTAMP_ARRAY: "UNIX_TIMESTAMP_ARRAY";
39
- readonly UNKNOWN: "UNKNOWN";
40
- };
41
- export type NodeDataType = (typeof NodeDataType)[keyof typeof NodeDataType];
1
+ import {
2
+ CampaignStatus,
3
+ Compression,
4
+ DataFormat,
5
+ DefaultForUnmappedSignalsType,
6
+ DiagnosticsMode,
7
+ EncryptionStatus,
8
+ EncryptionType,
9
+ ListResponseScope,
10
+ LogType,
11
+ ManifestStatus,
12
+ NetworkInterfaceFailureReason,
13
+ NetworkInterfaceType,
14
+ NodeDataEncoding,
15
+ NodeDataType,
16
+ RegistrationStatus,
17
+ ROS2PrimitiveType,
18
+ SignalDecoderFailureReason,
19
+ SignalDecoderType,
20
+ SignalNodeType,
21
+ SignalValueType,
22
+ SpoolingMode,
23
+ StorageCompressionFormat,
24
+ StorageMaximumSizeUnit,
25
+ StorageMinimumTimeToLiveUnit,
26
+ StructuredMessageListType,
27
+ TimeUnit,
28
+ TriggerMode,
29
+ UpdateCampaignAction,
30
+ UpdateMode,
31
+ VehicleAssociationBehavior,
32
+ VehicleMiddlewareProtocol,
33
+ VehicleState,
34
+ } from "./enums";
42
35
  export interface Actuator {
43
36
  fullyQualifiedName: string | undefined;
44
37
  dataType: NodeDataType | undefined;
@@ -57,63 +50,10 @@ export interface AssociateVehicleFleetRequest {
57
50
  fleetId: string | undefined;
58
51
  }
59
52
  export interface AssociateVehicleFleetResponse {}
60
- export declare class InternalServerException extends __BaseException {
61
- readonly name: "InternalServerException";
62
- readonly $fault: "server";
63
- retryAfterSeconds?: number | undefined;
64
- constructor(
65
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
66
- );
67
- }
68
- export declare class LimitExceededException extends __BaseException {
69
- readonly name: "LimitExceededException";
70
- readonly $fault: "client";
71
- resourceId: string | undefined;
72
- resourceType: string | undefined;
73
- constructor(
74
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
75
- );
76
- }
77
- export declare class ResourceNotFoundException extends __BaseException {
78
- readonly name: "ResourceNotFoundException";
79
- readonly $fault: "client";
80
- resourceId: string | undefined;
81
- resourceType: string | undefined;
82
- constructor(
83
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
84
- );
85
- }
86
- export declare class ThrottlingException extends __BaseException {
87
- readonly name: "ThrottlingException";
88
- readonly $fault: "client";
89
- quotaCode?: string | undefined;
90
- serviceCode?: string | undefined;
91
- retryAfterSeconds?: number | undefined;
92
- constructor(
93
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
94
- );
95
- }
96
53
  export interface ValidationExceptionField {
97
54
  name: string | undefined;
98
55
  message: string | undefined;
99
56
  }
100
- export declare const ValidationExceptionReason: {
101
- readonly CANNOT_PARSE: "cannotParse";
102
- readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
103
- readonly OTHER: "other";
104
- readonly UNKNOWN_OPERATION: "unknownOperation";
105
- };
106
- export type ValidationExceptionReason =
107
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
108
- export declare class ValidationException extends __BaseException {
109
- readonly name: "ValidationException";
110
- readonly $fault: "client";
111
- reason?: ValidationExceptionReason | undefined;
112
- fieldList?: ValidationExceptionField[] | undefined;
113
- constructor(
114
- opts: __ExceptionOptionType<ValidationException, __BaseException>
115
- );
116
- }
117
57
  export interface Attribute {
118
58
  fullyQualifiedName: string | undefined;
119
59
  dataType: NodeDataType | undefined;
@@ -127,20 +67,7 @@ export interface Attribute {
127
67
  deprecationMessage?: string | undefined;
128
68
  comment?: string | undefined;
129
69
  }
130
- export declare const VehicleAssociationBehavior: {
131
- readonly CREATE_IOT_THING: "CreateIotThing";
132
- readonly VALIDATE_IOT_THING_EXISTS: "ValidateIotThingExists";
133
- };
134
- export type VehicleAssociationBehavior =
135
- (typeof VehicleAssociationBehavior)[keyof typeof VehicleAssociationBehavior];
136
70
  export interface OnChangeStateTemplateUpdateStrategy {}
137
- export declare const TimeUnit: {
138
- readonly HOUR: "HOUR";
139
- readonly MILLISECOND: "MILLISECOND";
140
- readonly MINUTE: "MINUTE";
141
- readonly SECOND: "SECOND";
142
- };
143
- export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
144
71
  export interface TimePeriod {
145
72
  unit: TimeUnit | undefined;
146
73
  value: number | undefined;
@@ -208,11 +135,6 @@ export interface BatchCreateVehicleResponse {
208
135
  vehicles?: CreateVehicleResponseItem[] | undefined;
209
136
  errors?: CreateVehicleError[] | undefined;
210
137
  }
211
- export declare const UpdateMode: {
212
- readonly MERGE: "Merge";
213
- readonly OVERWRITE: "Overwrite";
214
- };
215
- export type UpdateMode = (typeof UpdateMode)[keyof typeof UpdateMode];
216
138
  export interface UpdateVehicleRequestItem {
217
139
  vehicleName: string | undefined;
218
140
  modelManifestArn?: string | undefined;
@@ -245,18 +167,6 @@ export interface Branch {
245
167
  deprecationMessage?: string | undefined;
246
168
  comment?: string | undefined;
247
169
  }
248
- export declare class ConflictException extends __BaseException {
249
- readonly name: "ConflictException";
250
- readonly $fault: "client";
251
- resource: string | undefined;
252
- resourceType: string | undefined;
253
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
254
- }
255
- export declare const TriggerMode: {
256
- readonly ALWAYS: "ALWAYS";
257
- readonly RISING_EDGE: "RISING_EDGE";
258
- };
259
- export type TriggerMode = (typeof TriggerMode)[keyof typeof TriggerMode];
260
170
  export interface ConditionBasedCollectionScheme {
261
171
  expression: string | undefined;
262
172
  minimumTriggerIntervalMs?: number | undefined;
@@ -294,26 +204,10 @@ export declare namespace CollectionScheme {
294
204
  _: (name: string, value: any) => T;
295
205
  }
296
206
  }
297
- export declare const Compression: {
298
- readonly OFF: "OFF";
299
- readonly SNAPPY: "SNAPPY";
300
- };
301
- export type Compression = (typeof Compression)[keyof typeof Compression];
302
207
  export interface MqttTopicConfig {
303
208
  mqttTopicArn: string | undefined;
304
209
  executionRoleArn: string | undefined;
305
210
  }
306
- export declare const DataFormat: {
307
- readonly JSON: "JSON";
308
- readonly PARQUET: "PARQUET";
309
- };
310
- export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
311
- export declare const StorageCompressionFormat: {
312
- readonly GZIP: "GZIP";
313
- readonly NONE: "NONE";
314
- };
315
- export type StorageCompressionFormat =
316
- (typeof StorageCompressionFormat)[keyof typeof StorageCompressionFormat];
317
211
  export interface S3Config {
318
212
  bucketArn: string | undefined;
319
213
  dataFormat?: DataFormat | undefined;
@@ -361,24 +255,10 @@ export declare namespace DataDestinationConfig {
361
255
  _: (name: string, value: any) => T;
362
256
  }
363
257
  }
364
- export declare const StorageMaximumSizeUnit: {
365
- readonly GB: "GB";
366
- readonly MB: "MB";
367
- readonly TB: "TB";
368
- };
369
- export type StorageMaximumSizeUnit =
370
- (typeof StorageMaximumSizeUnit)[keyof typeof StorageMaximumSizeUnit];
371
258
  export interface StorageMaximumSize {
372
259
  unit: StorageMaximumSizeUnit | undefined;
373
260
  value: number | undefined;
374
261
  }
375
- export declare const StorageMinimumTimeToLiveUnit: {
376
- readonly DAYS: "DAYS";
377
- readonly HOURS: "HOURS";
378
- readonly WEEKS: "WEEKS";
379
- };
380
- export type StorageMinimumTimeToLiveUnit =
381
- (typeof StorageMinimumTimeToLiveUnit)[keyof typeof StorageMinimumTimeToLiveUnit];
382
262
  export interface StorageMinimumTimeToLive {
383
263
  unit: StorageMinimumTimeToLiveUnit | undefined;
384
264
  value: number | undefined;
@@ -397,12 +277,6 @@ export interface DataPartition {
397
277
  storageOptions: DataPartitionStorageOptions | undefined;
398
278
  uploadOptions?: DataPartitionUploadOptions | undefined;
399
279
  }
400
- export declare const DiagnosticsMode: {
401
- readonly OFF: "OFF";
402
- readonly SEND_ACTIVE_DTCS: "SEND_ACTIVE_DTCS";
403
- };
404
- export type DiagnosticsMode =
405
- (typeof DiagnosticsMode)[keyof typeof DiagnosticsMode];
406
280
  export interface SignalInformation {
407
281
  name: string | undefined;
408
282
  maxSampleCount?: number | undefined;
@@ -448,11 +322,6 @@ export interface SignalFetchInformation {
448
322
  conditionLanguageVersion?: number | undefined;
449
323
  actions: string[] | undefined;
450
324
  }
451
- export declare const SpoolingMode: {
452
- readonly OFF: "OFF";
453
- readonly TO_DISK: "TO_DISK";
454
- };
455
- export type SpoolingMode = (typeof SpoolingMode)[keyof typeof SpoolingMode];
456
325
  export interface CreateCampaignRequest {
457
326
  name: string | undefined;
458
327
  description?: string | undefined;
@@ -487,14 +356,6 @@ export interface DeleteCampaignResponse {
487
356
  export interface GetCampaignRequest {
488
357
  name: string | undefined;
489
358
  }
490
- export declare const CampaignStatus: {
491
- readonly CREATING: "CREATING";
492
- readonly RUNNING: "RUNNING";
493
- readonly SUSPENDED: "SUSPENDED";
494
- readonly WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL";
495
- };
496
- export type CampaignStatus =
497
- (typeof CampaignStatus)[keyof typeof CampaignStatus];
498
359
  export interface GetCampaignResponse {
499
360
  name?: string | undefined;
500
361
  arn?: string | undefined;
@@ -518,11 +379,6 @@ export interface GetCampaignResponse {
518
379
  dataPartitions?: DataPartition[] | undefined;
519
380
  signalsToFetch?: SignalFetchInformation[] | undefined;
520
381
  }
521
- export declare const ListResponseScope: {
522
- readonly METADATA_ONLY: "METADATA_ONLY";
523
- };
524
- export type ListResponseScope =
525
- (typeof ListResponseScope)[keyof typeof ListResponseScope];
526
382
  export interface ListCampaignsRequest {
527
383
  nextToken?: string | undefined;
528
384
  maxResults?: number | undefined;
@@ -543,14 +399,6 @@ export interface ListCampaignsResponse {
543
399
  campaignSummaries?: CampaignSummary[] | undefined;
544
400
  nextToken?: string | undefined;
545
401
  }
546
- export declare const UpdateCampaignAction: {
547
- readonly APPROVE: "APPROVE";
548
- readonly RESUME: "RESUME";
549
- readonly SUSPEND: "SUSPEND";
550
- readonly UPDATE: "UPDATE";
551
- };
552
- export type UpdateCampaignAction =
553
- (typeof UpdateCampaignAction)[keyof typeof UpdateCampaignAction];
554
402
  export interface UpdateCampaignRequest {
555
403
  name: string | undefined;
556
404
  description?: string | undefined;
@@ -572,12 +420,6 @@ export interface CanInterface {
572
420
  protocolName?: string | undefined;
573
421
  protocolVersion?: string | undefined;
574
422
  }
575
- export declare const SignalValueType: {
576
- readonly FLOATING_POINT: "FLOATING_POINT";
577
- readonly INTEGER: "INTEGER";
578
- };
579
- export type SignalValueType =
580
- (typeof SignalValueType)[keyof typeof SignalValueType];
581
423
  export interface CanSignal {
582
424
  messageId: number | undefined;
583
425
  isBigEndian: boolean | undefined;
@@ -589,20 +431,10 @@ export interface CanSignal {
589
431
  name?: string | undefined;
590
432
  signalValueType?: SignalValueType | undefined;
591
433
  }
592
- export declare const LogType: {
593
- readonly ERROR: "ERROR";
594
- readonly OFF: "OFF";
595
- };
596
- export type LogType = (typeof LogType)[keyof typeof LogType];
597
434
  export interface CloudWatchLogDeliveryOptions {
598
435
  logType: LogType | undefined;
599
436
  logGroupName?: string | undefined;
600
437
  }
601
- export declare const DefaultForUnmappedSignalsType: {
602
- readonly CUSTOM_DECODING: "CUSTOM_DECODING";
603
- };
604
- export type DefaultForUnmappedSignalsType =
605
- (typeof DefaultForUnmappedSignalsType)[keyof typeof DefaultForUnmappedSignalsType];
606
438
  export interface CustomDecodingInterface {
607
439
  name: string | undefined;
608
440
  }
@@ -615,19 +447,6 @@ export interface ObdInterface {
615
447
  useExtendedIds?: boolean | undefined;
616
448
  hasTransmissionEcu?: boolean | undefined;
617
449
  }
618
- export declare const NetworkInterfaceType: {
619
- readonly CAN_INTERFACE: "CAN_INTERFACE";
620
- readonly CUSTOM_DECODING_INTERFACE: "CUSTOM_DECODING_INTERFACE";
621
- readonly OBD_INTERFACE: "OBD_INTERFACE";
622
- readonly VEHICLE_MIDDLEWARE: "VEHICLE_MIDDLEWARE";
623
- };
624
- export type NetworkInterfaceType =
625
- (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
626
- export declare const VehicleMiddlewareProtocol: {
627
- readonly ROS_2: "ROS_2";
628
- };
629
- export type VehicleMiddlewareProtocol =
630
- (typeof VehicleMiddlewareProtocol)[keyof typeof VehicleMiddlewareProtocol];
631
450
  export interface VehicleMiddleware {
632
451
  name: string | undefined;
633
452
  protocolName: VehicleMiddlewareProtocol | undefined;
@@ -643,25 +462,6 @@ export interface NetworkInterface {
643
462
  export interface CustomDecodingSignal {
644
463
  id: string | undefined;
645
464
  }
646
- export declare const ROS2PrimitiveType: {
647
- readonly BOOL: "BOOL";
648
- readonly BYTE: "BYTE";
649
- readonly CHAR: "CHAR";
650
- readonly FLOAT32: "FLOAT32";
651
- readonly FLOAT64: "FLOAT64";
652
- readonly INT16: "INT16";
653
- readonly INT32: "INT32";
654
- readonly INT64: "INT64";
655
- readonly INT8: "INT8";
656
- readonly STRING: "STRING";
657
- readonly UINT16: "UINT16";
658
- readonly UINT32: "UINT32";
659
- readonly UINT64: "UINT64";
660
- readonly UINT8: "UINT8";
661
- readonly WSTRING: "WSTRING";
662
- };
663
- export type ROS2PrimitiveType =
664
- (typeof ROS2PrimitiveType)[keyof typeof ROS2PrimitiveType];
665
465
  export interface ROS2PrimitiveMessageDefinition {
666
466
  primitiveType: ROS2PrimitiveType | undefined;
667
467
  offset?: number | undefined;
@@ -687,13 +487,6 @@ export declare namespace PrimitiveMessageDefinition {
687
487
  _: (name: string, value: any) => T;
688
488
  }
689
489
  }
690
- export declare const StructuredMessageListType: {
691
- readonly DYNAMIC_BOUNDED_CAPACITY: "DYNAMIC_BOUNDED_CAPACITY";
692
- readonly DYNAMIC_UNBOUNDED_CAPACITY: "DYNAMIC_UNBOUNDED_CAPACITY";
693
- readonly FIXED_CAPACITY: "FIXED_CAPACITY";
694
- };
695
- export type StructuredMessageListType =
696
- (typeof StructuredMessageListType)[keyof typeof StructuredMessageListType];
697
490
  export interface ObdSignal {
698
491
  pidResponseLength: number | undefined;
699
492
  serviceMode: number | undefined;
@@ -707,71 +500,19 @@ export interface ObdSignal {
707
500
  isSigned?: boolean | undefined;
708
501
  signalValueType?: SignalValueType | undefined;
709
502
  }
710
- export declare const SignalDecoderType: {
711
- readonly CAN_SIGNAL: "CAN_SIGNAL";
712
- readonly CUSTOM_DECODING_SIGNAL: "CUSTOM_DECODING_SIGNAL";
713
- readonly MESSAGE_SIGNAL: "MESSAGE_SIGNAL";
714
- readonly OBD_SIGNAL: "OBD_SIGNAL";
715
- };
716
- export type SignalDecoderType =
717
- (typeof SignalDecoderType)[keyof typeof SignalDecoderType];
718
503
  export interface CreateDecoderManifestResponse {
719
504
  name: string | undefined;
720
505
  arn: string | undefined;
721
506
  }
722
- export declare const NetworkInterfaceFailureReason: {
723
- readonly CAN_NETWORK_INTERFACE_INFO_IS_NULL: "CAN_NETWORK_INTERFACE_INFO_IS_NULL";
724
- readonly CONFLICTING_NETWORK_INTERFACE: "CONFLICTING_NETWORK_INTERFACE";
725
- readonly CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL";
726
- readonly DUPLICATE_INTERFACE: "DUPLICATE_NETWORK_INTERFACE";
727
- readonly NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS: "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS";
728
- readonly NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS: "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS";
729
- readonly OBD_NETWORK_INTERFACE_INFO_IS_NULL: "OBD_NETWORK_INTERFACE_INFO_IS_NULL";
730
- readonly VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL: "VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL";
731
- };
732
- export type NetworkInterfaceFailureReason =
733
- (typeof NetworkInterfaceFailureReason)[keyof typeof NetworkInterfaceFailureReason];
734
507
  export interface InvalidNetworkInterface {
735
508
  interfaceId?: string | undefined;
736
509
  reason?: NetworkInterfaceFailureReason | undefined;
737
510
  }
738
- export declare const SignalDecoderFailureReason: {
739
- readonly CAN_SIGNAL_INFO_IS_NULL: "CAN_SIGNAL_INFO_IS_NULL";
740
- readonly CONFLICTING_SIGNAL: "CONFLICTING_SIGNAL";
741
- readonly CUSTOM_DECODING_SIGNAL_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_INFO_IS_NULL";
742
- readonly DUPLICATE_SIGNAL: "DUPLICATE_SIGNAL";
743
- readonly EMPTY_MESSAGE_SIGNAL: "EMPTY_MESSAGE_SIGNAL";
744
- readonly MESSAGE_SIGNAL_INFO_IS_NULL: "MESSAGE_SIGNAL_INFO_IS_NULL";
745
- readonly NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE: "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE";
746
- readonly NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL: "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL";
747
- readonly NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL: "NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL";
748
- readonly OBD_SIGNAL_INFO_IS_NULL: "OBD_SIGNAL_INFO_IS_NULL";
749
- readonly SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG: "SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG";
750
- readonly SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE: "SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE";
751
- readonly SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE: "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE";
752
- readonly SIGNAL_NOT_IN_MODEL: "SIGNAL_NOT_IN_MODEL";
753
- readonly SIGNAL_TO_ADD_ALREADY_EXISTS: "SIGNAL_TO_ADD_ALREADY_EXISTS";
754
- readonly STRUCT_SIZE_MISMATCH: "STRUCT_SIZE_MISMATCH";
755
- };
756
- export type SignalDecoderFailureReason =
757
- (typeof SignalDecoderFailureReason)[keyof typeof SignalDecoderFailureReason];
758
511
  export interface InvalidSignalDecoder {
759
512
  name?: string | undefined;
760
513
  reason?: SignalDecoderFailureReason | undefined;
761
514
  hint?: string | undefined;
762
515
  }
763
- export declare class DecoderManifestValidationException extends __BaseException {
764
- readonly name: "DecoderManifestValidationException";
765
- readonly $fault: "client";
766
- invalidSignals?: InvalidSignalDecoder[] | undefined;
767
- invalidNetworkInterfaces?: InvalidNetworkInterface[] | undefined;
768
- constructor(
769
- opts: __ExceptionOptionType<
770
- DecoderManifestValidationException,
771
- __BaseException
772
- >
773
- );
774
- }
775
516
  export interface CreateFleetRequest {
776
517
  fleetId: string | undefined;
777
518
  description?: string | undefined;
@@ -797,20 +538,6 @@ export interface InvalidSignal {
797
538
  name?: string | undefined;
798
539
  reason?: string | undefined;
799
540
  }
800
- export declare class InvalidSignalsException extends __BaseException {
801
- readonly name: "InvalidSignalsException";
802
- readonly $fault: "client";
803
- invalidSignals?: InvalidSignal[] | undefined;
804
- constructor(
805
- opts: __ExceptionOptionType<InvalidSignalsException, __BaseException>
806
- );
807
- }
808
- export declare const NodeDataEncoding: {
809
- readonly BINARY: "BINARY";
810
- readonly TYPED: "TYPED";
811
- };
812
- export type NodeDataEncoding =
813
- (typeof NodeDataEncoding)[keyof typeof NodeDataEncoding];
814
541
  export interface CustomProperty {
815
542
  fullyQualifiedName: string | undefined;
816
543
  dataType: NodeDataType | undefined;
@@ -930,15 +657,6 @@ export interface CreateSignalCatalogResponse {
930
657
  name: string | undefined;
931
658
  arn: string | undefined;
932
659
  }
933
- export declare class InvalidNodeException extends __BaseException {
934
- readonly name: "InvalidNodeException";
935
- readonly $fault: "client";
936
- invalidNodes?: Node[] | undefined;
937
- reason?: string | undefined;
938
- constructor(
939
- opts: __ExceptionOptionType<InvalidNodeException, __BaseException>
940
- );
941
- }
942
660
  export interface CreateStateTemplateRequest {
943
661
  name: string | undefined;
944
662
  description?: string | undefined;
@@ -977,14 +695,6 @@ export interface DeleteDecoderManifestResponse {
977
695
  export interface GetDecoderManifestRequest {
978
696
  name: string | undefined;
979
697
  }
980
- export declare const ManifestStatus: {
981
- readonly ACTIVE: "ACTIVE";
982
- readonly DRAFT: "DRAFT";
983
- readonly INVALID: "INVALID";
984
- readonly VALIDATING: "VALIDATING";
985
- };
986
- export type ManifestStatus =
987
- (typeof ManifestStatus)[keyof typeof ManifestStatus];
988
698
  export interface GetDecoderManifestResponse {
989
699
  name: string | undefined;
990
700
  arn: string | undefined;
@@ -1099,19 +809,6 @@ export interface DisassociateVehicleFleetRequest {
1099
809
  fleetId: string | undefined;
1100
810
  }
1101
811
  export interface DisassociateVehicleFleetResponse {}
1102
- export declare const EncryptionStatus: {
1103
- readonly FAILURE: "FAILURE";
1104
- readonly PENDING: "PENDING";
1105
- readonly SUCCESS: "SUCCESS";
1106
- };
1107
- export type EncryptionStatus =
1108
- (typeof EncryptionStatus)[keyof typeof EncryptionStatus];
1109
- export declare const EncryptionType: {
1110
- readonly FLEETWISE_DEFAULT_ENCRYPTION: "FLEETWISE_DEFAULT_ENCRYPTION";
1111
- readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
1112
- };
1113
- export type EncryptionType =
1114
- (typeof EncryptionType)[keyof typeof EncryptionType];
1115
812
  export interface ListFleetsForVehicleRequest {
1116
813
  vehicleName: string | undefined;
1117
814
  nextToken?: string | undefined;
@@ -1209,13 +906,6 @@ export interface GetModelManifestResponse {
1209
906
  lastModificationTime: Date | undefined;
1210
907
  }
1211
908
  export interface GetRegisterAccountStatusRequest {}
1212
- export declare const RegistrationStatus: {
1213
- readonly REGISTRATION_FAILURE: "REGISTRATION_FAILURE";
1214
- readonly REGISTRATION_PENDING: "REGISTRATION_PENDING";
1215
- readonly REGISTRATION_SUCCESS: "REGISTRATION_SUCCESS";
1216
- };
1217
- export type RegistrationStatus =
1218
- (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
1219
909
  export interface IamRegistrationResponse {
1220
910
  roleArn: string | undefined;
1221
911
  registrationStatus: RegistrationStatus | undefined;
@@ -1290,15 +980,6 @@ export interface GetVehicleStatusRequest {
1290
980
  maxResults?: number | undefined;
1291
981
  vehicleName: string | undefined;
1292
982
  }
1293
- export declare const VehicleState: {
1294
- readonly CREATED: "CREATED";
1295
- readonly DELETING: "DELETING";
1296
- readonly HEALTHY: "HEALTHY";
1297
- readonly READY: "READY";
1298
- readonly READY_FOR_CHECKIN: "READY_FOR_CHECKIN";
1299
- readonly SUSPENDED: "SUSPENDED";
1300
- };
1301
- export type VehicleState = (typeof VehicleState)[keyof typeof VehicleState];
1302
983
  export interface VehicleStatus {
1303
984
  campaignName?: string | undefined;
1304
985
  vehicleName?: string | undefined;
@@ -1394,16 +1075,6 @@ export interface RegisterAccountResponse {
1394
1075
  creationTime: Date | undefined;
1395
1076
  lastModificationTime: Date | undefined;
1396
1077
  }
1397
- export declare const SignalNodeType: {
1398
- readonly ACTUATOR: "ACTUATOR";
1399
- readonly ATTRIBUTE: "ATTRIBUTE";
1400
- readonly BRANCH: "BRANCH";
1401
- readonly CUSTOM_PROPERTY: "CUSTOM_PROPERTY";
1402
- readonly CUSTOM_STRUCT: "CUSTOM_STRUCT";
1403
- readonly SENSOR: "SENSOR";
1404
- };
1405
- export type SignalNodeType =
1406
- (typeof SignalNodeType)[keyof typeof SignalNodeType];
1407
1078
  export interface ListSignalCatalogNodesRequest {
1408
1079
  name: string | undefined;
1409
1080
  nextToken?: 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.933.0",
4
+ "version": "3.935.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.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";