@aws-sdk/client-iotfleetwise 3.934.0 → 3.936.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 +217 -216
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +216 -0
- package/dist-es/models/errors.js +155 -0
- package/dist-es/models/models_0.js +1 -371
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +480 -0
- package/dist-types/models/errors.d.ts +216 -0
- package/dist-types/models/models_0.d.ts +1 -694
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +273 -0
- package/dist-types/ts3.4/models/errors.d.ts +98 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -363
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { IoTFleetWiseExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { IoTFleetWiseServiceException } from "./models/IoTFleetWiseServiceException";
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
export declare const NodeDataType: {
|
|
2
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
3
|
+
readonly BOOLEAN_ARRAY: "BOOLEAN_ARRAY";
|
|
4
|
+
readonly DOUBLE: "DOUBLE";
|
|
5
|
+
readonly DOUBLE_ARRAY: "DOUBLE_ARRAY";
|
|
6
|
+
readonly FLOAT: "FLOAT";
|
|
7
|
+
readonly FLOAT_ARRAY: "FLOAT_ARRAY";
|
|
8
|
+
readonly INT16: "INT16";
|
|
9
|
+
readonly INT16_ARRAY: "INT16_ARRAY";
|
|
10
|
+
readonly INT32: "INT32";
|
|
11
|
+
readonly INT32_ARRAY: "INT32_ARRAY";
|
|
12
|
+
readonly INT64: "INT64";
|
|
13
|
+
readonly INT64_ARRAY: "INT64_ARRAY";
|
|
14
|
+
readonly INT8: "INT8";
|
|
15
|
+
readonly INT8_ARRAY: "INT8_ARRAY";
|
|
16
|
+
readonly STRING: "STRING";
|
|
17
|
+
readonly STRING_ARRAY: "STRING_ARRAY";
|
|
18
|
+
readonly STRUCT: "STRUCT";
|
|
19
|
+
readonly STRUCT_ARRAY: "STRUCT_ARRAY";
|
|
20
|
+
readonly UINT16: "UINT16";
|
|
21
|
+
readonly UINT16_ARRAY: "UINT16_ARRAY";
|
|
22
|
+
readonly UINT32: "UINT32";
|
|
23
|
+
readonly UINT32_ARRAY: "UINT32_ARRAY";
|
|
24
|
+
readonly UINT64: "UINT64";
|
|
25
|
+
readonly UINT64_ARRAY: "UINT64_ARRAY";
|
|
26
|
+
readonly UINT8: "UINT8";
|
|
27
|
+
readonly UINT8_ARRAY: "UINT8_ARRAY";
|
|
28
|
+
readonly UNIX_TIMESTAMP: "UNIX_TIMESTAMP";
|
|
29
|
+
readonly UNIX_TIMESTAMP_ARRAY: "UNIX_TIMESTAMP_ARRAY";
|
|
30
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
31
|
+
};
|
|
32
|
+
export type NodeDataType = (typeof NodeDataType)[keyof typeof NodeDataType];
|
|
33
|
+
export declare const ValidationExceptionReason: {
|
|
34
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
35
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
36
|
+
readonly OTHER: "other";
|
|
37
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
38
|
+
};
|
|
39
|
+
export type ValidationExceptionReason =
|
|
40
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
41
|
+
export declare const VehicleAssociationBehavior: {
|
|
42
|
+
readonly CREATE_IOT_THING: "CreateIotThing";
|
|
43
|
+
readonly VALIDATE_IOT_THING_EXISTS: "ValidateIotThingExists";
|
|
44
|
+
};
|
|
45
|
+
export type VehicleAssociationBehavior =
|
|
46
|
+
(typeof VehicleAssociationBehavior)[keyof typeof VehicleAssociationBehavior];
|
|
47
|
+
export declare const TimeUnit: {
|
|
48
|
+
readonly HOUR: "HOUR";
|
|
49
|
+
readonly MILLISECOND: "MILLISECOND";
|
|
50
|
+
readonly MINUTE: "MINUTE";
|
|
51
|
+
readonly SECOND: "SECOND";
|
|
52
|
+
};
|
|
53
|
+
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
54
|
+
export declare const UpdateMode: {
|
|
55
|
+
readonly MERGE: "Merge";
|
|
56
|
+
readonly OVERWRITE: "Overwrite";
|
|
57
|
+
};
|
|
58
|
+
export type UpdateMode = (typeof UpdateMode)[keyof typeof UpdateMode];
|
|
59
|
+
export declare const TriggerMode: {
|
|
60
|
+
readonly ALWAYS: "ALWAYS";
|
|
61
|
+
readonly RISING_EDGE: "RISING_EDGE";
|
|
62
|
+
};
|
|
63
|
+
export type TriggerMode = (typeof TriggerMode)[keyof typeof TriggerMode];
|
|
64
|
+
export declare const Compression: {
|
|
65
|
+
readonly OFF: "OFF";
|
|
66
|
+
readonly SNAPPY: "SNAPPY";
|
|
67
|
+
};
|
|
68
|
+
export type Compression = (typeof Compression)[keyof typeof Compression];
|
|
69
|
+
export declare const DataFormat: {
|
|
70
|
+
readonly JSON: "JSON";
|
|
71
|
+
readonly PARQUET: "PARQUET";
|
|
72
|
+
};
|
|
73
|
+
export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
|
|
74
|
+
export declare const StorageCompressionFormat: {
|
|
75
|
+
readonly GZIP: "GZIP";
|
|
76
|
+
readonly NONE: "NONE";
|
|
77
|
+
};
|
|
78
|
+
export type StorageCompressionFormat =
|
|
79
|
+
(typeof StorageCompressionFormat)[keyof typeof StorageCompressionFormat];
|
|
80
|
+
export declare const StorageMaximumSizeUnit: {
|
|
81
|
+
readonly GB: "GB";
|
|
82
|
+
readonly MB: "MB";
|
|
83
|
+
readonly TB: "TB";
|
|
84
|
+
};
|
|
85
|
+
export type StorageMaximumSizeUnit =
|
|
86
|
+
(typeof StorageMaximumSizeUnit)[keyof typeof StorageMaximumSizeUnit];
|
|
87
|
+
export declare const StorageMinimumTimeToLiveUnit: {
|
|
88
|
+
readonly DAYS: "DAYS";
|
|
89
|
+
readonly HOURS: "HOURS";
|
|
90
|
+
readonly WEEKS: "WEEKS";
|
|
91
|
+
};
|
|
92
|
+
export type StorageMinimumTimeToLiveUnit =
|
|
93
|
+
(typeof StorageMinimumTimeToLiveUnit)[keyof typeof StorageMinimumTimeToLiveUnit];
|
|
94
|
+
export declare const DiagnosticsMode: {
|
|
95
|
+
readonly OFF: "OFF";
|
|
96
|
+
readonly SEND_ACTIVE_DTCS: "SEND_ACTIVE_DTCS";
|
|
97
|
+
};
|
|
98
|
+
export type DiagnosticsMode =
|
|
99
|
+
(typeof DiagnosticsMode)[keyof typeof DiagnosticsMode];
|
|
100
|
+
export declare const SpoolingMode: {
|
|
101
|
+
readonly OFF: "OFF";
|
|
102
|
+
readonly TO_DISK: "TO_DISK";
|
|
103
|
+
};
|
|
104
|
+
export type SpoolingMode = (typeof SpoolingMode)[keyof typeof SpoolingMode];
|
|
105
|
+
export declare const CampaignStatus: {
|
|
106
|
+
readonly CREATING: "CREATING";
|
|
107
|
+
readonly RUNNING: "RUNNING";
|
|
108
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
109
|
+
readonly WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL";
|
|
110
|
+
};
|
|
111
|
+
export type CampaignStatus =
|
|
112
|
+
(typeof CampaignStatus)[keyof typeof CampaignStatus];
|
|
113
|
+
export declare const ListResponseScope: {
|
|
114
|
+
readonly METADATA_ONLY: "METADATA_ONLY";
|
|
115
|
+
};
|
|
116
|
+
export type ListResponseScope =
|
|
117
|
+
(typeof ListResponseScope)[keyof typeof ListResponseScope];
|
|
118
|
+
export declare const UpdateCampaignAction: {
|
|
119
|
+
readonly APPROVE: "APPROVE";
|
|
120
|
+
readonly RESUME: "RESUME";
|
|
121
|
+
readonly SUSPEND: "SUSPEND";
|
|
122
|
+
readonly UPDATE: "UPDATE";
|
|
123
|
+
};
|
|
124
|
+
export type UpdateCampaignAction =
|
|
125
|
+
(typeof UpdateCampaignAction)[keyof typeof UpdateCampaignAction];
|
|
126
|
+
export declare const SignalValueType: {
|
|
127
|
+
readonly FLOATING_POINT: "FLOATING_POINT";
|
|
128
|
+
readonly INTEGER: "INTEGER";
|
|
129
|
+
};
|
|
130
|
+
export type SignalValueType =
|
|
131
|
+
(typeof SignalValueType)[keyof typeof SignalValueType];
|
|
132
|
+
export declare const LogType: {
|
|
133
|
+
readonly ERROR: "ERROR";
|
|
134
|
+
readonly OFF: "OFF";
|
|
135
|
+
};
|
|
136
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
137
|
+
export declare const DefaultForUnmappedSignalsType: {
|
|
138
|
+
readonly CUSTOM_DECODING: "CUSTOM_DECODING";
|
|
139
|
+
};
|
|
140
|
+
export type DefaultForUnmappedSignalsType =
|
|
141
|
+
(typeof DefaultForUnmappedSignalsType)[keyof typeof DefaultForUnmappedSignalsType];
|
|
142
|
+
export declare const NetworkInterfaceType: {
|
|
143
|
+
readonly CAN_INTERFACE: "CAN_INTERFACE";
|
|
144
|
+
readonly CUSTOM_DECODING_INTERFACE: "CUSTOM_DECODING_INTERFACE";
|
|
145
|
+
readonly OBD_INTERFACE: "OBD_INTERFACE";
|
|
146
|
+
readonly VEHICLE_MIDDLEWARE: "VEHICLE_MIDDLEWARE";
|
|
147
|
+
};
|
|
148
|
+
export type NetworkInterfaceType =
|
|
149
|
+
(typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
|
|
150
|
+
export declare const VehicleMiddlewareProtocol: {
|
|
151
|
+
readonly ROS_2: "ROS_2";
|
|
152
|
+
};
|
|
153
|
+
export type VehicleMiddlewareProtocol =
|
|
154
|
+
(typeof VehicleMiddlewareProtocol)[keyof typeof VehicleMiddlewareProtocol];
|
|
155
|
+
export declare const ROS2PrimitiveType: {
|
|
156
|
+
readonly BOOL: "BOOL";
|
|
157
|
+
readonly BYTE: "BYTE";
|
|
158
|
+
readonly CHAR: "CHAR";
|
|
159
|
+
readonly FLOAT32: "FLOAT32";
|
|
160
|
+
readonly FLOAT64: "FLOAT64";
|
|
161
|
+
readonly INT16: "INT16";
|
|
162
|
+
readonly INT32: "INT32";
|
|
163
|
+
readonly INT64: "INT64";
|
|
164
|
+
readonly INT8: "INT8";
|
|
165
|
+
readonly STRING: "STRING";
|
|
166
|
+
readonly UINT16: "UINT16";
|
|
167
|
+
readonly UINT32: "UINT32";
|
|
168
|
+
readonly UINT64: "UINT64";
|
|
169
|
+
readonly UINT8: "UINT8";
|
|
170
|
+
readonly WSTRING: "WSTRING";
|
|
171
|
+
};
|
|
172
|
+
export type ROS2PrimitiveType =
|
|
173
|
+
(typeof ROS2PrimitiveType)[keyof typeof ROS2PrimitiveType];
|
|
174
|
+
export declare const StructuredMessageListType: {
|
|
175
|
+
readonly DYNAMIC_BOUNDED_CAPACITY: "DYNAMIC_BOUNDED_CAPACITY";
|
|
176
|
+
readonly DYNAMIC_UNBOUNDED_CAPACITY: "DYNAMIC_UNBOUNDED_CAPACITY";
|
|
177
|
+
readonly FIXED_CAPACITY: "FIXED_CAPACITY";
|
|
178
|
+
};
|
|
179
|
+
export type StructuredMessageListType =
|
|
180
|
+
(typeof StructuredMessageListType)[keyof typeof StructuredMessageListType];
|
|
181
|
+
export declare const SignalDecoderType: {
|
|
182
|
+
readonly CAN_SIGNAL: "CAN_SIGNAL";
|
|
183
|
+
readonly CUSTOM_DECODING_SIGNAL: "CUSTOM_DECODING_SIGNAL";
|
|
184
|
+
readonly MESSAGE_SIGNAL: "MESSAGE_SIGNAL";
|
|
185
|
+
readonly OBD_SIGNAL: "OBD_SIGNAL";
|
|
186
|
+
};
|
|
187
|
+
export type SignalDecoderType =
|
|
188
|
+
(typeof SignalDecoderType)[keyof typeof SignalDecoderType];
|
|
189
|
+
export declare const NetworkInterfaceFailureReason: {
|
|
190
|
+
readonly CAN_NETWORK_INTERFACE_INFO_IS_NULL: "CAN_NETWORK_INTERFACE_INFO_IS_NULL";
|
|
191
|
+
readonly CONFLICTING_NETWORK_INTERFACE: "CONFLICTING_NETWORK_INTERFACE";
|
|
192
|
+
readonly CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL";
|
|
193
|
+
readonly DUPLICATE_INTERFACE: "DUPLICATE_NETWORK_INTERFACE";
|
|
194
|
+
readonly NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS: "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS";
|
|
195
|
+
readonly NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS: "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS";
|
|
196
|
+
readonly OBD_NETWORK_INTERFACE_INFO_IS_NULL: "OBD_NETWORK_INTERFACE_INFO_IS_NULL";
|
|
197
|
+
readonly VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL: "VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL";
|
|
198
|
+
};
|
|
199
|
+
export type NetworkInterfaceFailureReason =
|
|
200
|
+
(typeof NetworkInterfaceFailureReason)[keyof typeof NetworkInterfaceFailureReason];
|
|
201
|
+
export declare const SignalDecoderFailureReason: {
|
|
202
|
+
readonly CAN_SIGNAL_INFO_IS_NULL: "CAN_SIGNAL_INFO_IS_NULL";
|
|
203
|
+
readonly CONFLICTING_SIGNAL: "CONFLICTING_SIGNAL";
|
|
204
|
+
readonly CUSTOM_DECODING_SIGNAL_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_INFO_IS_NULL";
|
|
205
|
+
readonly DUPLICATE_SIGNAL: "DUPLICATE_SIGNAL";
|
|
206
|
+
readonly EMPTY_MESSAGE_SIGNAL: "EMPTY_MESSAGE_SIGNAL";
|
|
207
|
+
readonly MESSAGE_SIGNAL_INFO_IS_NULL: "MESSAGE_SIGNAL_INFO_IS_NULL";
|
|
208
|
+
readonly NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE: "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE";
|
|
209
|
+
readonly NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL: "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL";
|
|
210
|
+
readonly NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL: "NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL";
|
|
211
|
+
readonly OBD_SIGNAL_INFO_IS_NULL: "OBD_SIGNAL_INFO_IS_NULL";
|
|
212
|
+
readonly SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG: "SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG";
|
|
213
|
+
readonly SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE: "SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE";
|
|
214
|
+
readonly SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE: "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE";
|
|
215
|
+
readonly SIGNAL_NOT_IN_MODEL: "SIGNAL_NOT_IN_MODEL";
|
|
216
|
+
readonly SIGNAL_TO_ADD_ALREADY_EXISTS: "SIGNAL_TO_ADD_ALREADY_EXISTS";
|
|
217
|
+
readonly STRUCT_SIZE_MISMATCH: "STRUCT_SIZE_MISMATCH";
|
|
218
|
+
};
|
|
219
|
+
export type SignalDecoderFailureReason =
|
|
220
|
+
(typeof SignalDecoderFailureReason)[keyof typeof SignalDecoderFailureReason];
|
|
221
|
+
export declare const NodeDataEncoding: {
|
|
222
|
+
readonly BINARY: "BINARY";
|
|
223
|
+
readonly TYPED: "TYPED";
|
|
224
|
+
};
|
|
225
|
+
export type NodeDataEncoding =
|
|
226
|
+
(typeof NodeDataEncoding)[keyof typeof NodeDataEncoding];
|
|
227
|
+
export declare const ManifestStatus: {
|
|
228
|
+
readonly ACTIVE: "ACTIVE";
|
|
229
|
+
readonly DRAFT: "DRAFT";
|
|
230
|
+
readonly INVALID: "INVALID";
|
|
231
|
+
readonly VALIDATING: "VALIDATING";
|
|
232
|
+
};
|
|
233
|
+
export type ManifestStatus =
|
|
234
|
+
(typeof ManifestStatus)[keyof typeof ManifestStatus];
|
|
235
|
+
export declare const EncryptionStatus: {
|
|
236
|
+
readonly FAILURE: "FAILURE";
|
|
237
|
+
readonly PENDING: "PENDING";
|
|
238
|
+
readonly SUCCESS: "SUCCESS";
|
|
239
|
+
};
|
|
240
|
+
export type EncryptionStatus =
|
|
241
|
+
(typeof EncryptionStatus)[keyof typeof EncryptionStatus];
|
|
242
|
+
export declare const EncryptionType: {
|
|
243
|
+
readonly FLEETWISE_DEFAULT_ENCRYPTION: "FLEETWISE_DEFAULT_ENCRYPTION";
|
|
244
|
+
readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
|
|
245
|
+
};
|
|
246
|
+
export type EncryptionType =
|
|
247
|
+
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
248
|
+
export declare const RegistrationStatus: {
|
|
249
|
+
readonly REGISTRATION_FAILURE: "REGISTRATION_FAILURE";
|
|
250
|
+
readonly REGISTRATION_PENDING: "REGISTRATION_PENDING";
|
|
251
|
+
readonly REGISTRATION_SUCCESS: "REGISTRATION_SUCCESS";
|
|
252
|
+
};
|
|
253
|
+
export type RegistrationStatus =
|
|
254
|
+
(typeof RegistrationStatus)[keyof typeof RegistrationStatus];
|
|
255
|
+
export declare const VehicleState: {
|
|
256
|
+
readonly CREATED: "CREATED";
|
|
257
|
+
readonly DELETING: "DELETING";
|
|
258
|
+
readonly HEALTHY: "HEALTHY";
|
|
259
|
+
readonly READY: "READY";
|
|
260
|
+
readonly READY_FOR_CHECKIN: "READY_FOR_CHECKIN";
|
|
261
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
262
|
+
};
|
|
263
|
+
export type VehicleState = (typeof VehicleState)[keyof typeof VehicleState];
|
|
264
|
+
export declare const SignalNodeType: {
|
|
265
|
+
readonly ACTUATOR: "ACTUATOR";
|
|
266
|
+
readonly ATTRIBUTE: "ATTRIBUTE";
|
|
267
|
+
readonly BRANCH: "BRANCH";
|
|
268
|
+
readonly CUSTOM_PROPERTY: "CUSTOM_PROPERTY";
|
|
269
|
+
readonly CUSTOM_STRUCT: "CUSTOM_STRUCT";
|
|
270
|
+
readonly SENSOR: "SENSOR";
|
|
271
|
+
};
|
|
272
|
+
export type SignalNodeType =
|
|
273
|
+
(typeof SignalNodeType)[keyof typeof SignalNodeType];
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { IoTFleetWiseServiceException as __BaseException } from "./IoTFleetWiseServiceException";
|
|
4
|
+
import {
|
|
5
|
+
InvalidNetworkInterface,
|
|
6
|
+
InvalidSignal,
|
|
7
|
+
InvalidSignalDecoder,
|
|
8
|
+
Node,
|
|
9
|
+
ValidationExceptionField,
|
|
10
|
+
} from "./models_0";
|
|
11
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
12
|
+
readonly name: "AccessDeniedException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
constructor(
|
|
15
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
export declare class InternalServerException extends __BaseException {
|
|
19
|
+
readonly name: "InternalServerException";
|
|
20
|
+
readonly $fault: "server";
|
|
21
|
+
retryAfterSeconds?: number | undefined;
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class LimitExceededException extends __BaseException {
|
|
27
|
+
readonly name: "LimitExceededException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
resourceId: string | undefined;
|
|
30
|
+
resourceType: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
36
|
+
readonly name: "ResourceNotFoundException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
resourceId: string | undefined;
|
|
39
|
+
resourceType: string | undefined;
|
|
40
|
+
constructor(
|
|
41
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
export declare class ThrottlingException extends __BaseException {
|
|
45
|
+
readonly name: "ThrottlingException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
quotaCode?: string | undefined;
|
|
48
|
+
serviceCode?: string | undefined;
|
|
49
|
+
retryAfterSeconds?: number | undefined;
|
|
50
|
+
constructor(
|
|
51
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
export declare class ValidationException extends __BaseException {
|
|
55
|
+
readonly name: "ValidationException";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
reason?: ValidationExceptionReason | undefined;
|
|
58
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
59
|
+
constructor(
|
|
60
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
export declare class ConflictException extends __BaseException {
|
|
64
|
+
readonly name: "ConflictException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
resource: string | undefined;
|
|
67
|
+
resourceType: string | undefined;
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
export declare class DecoderManifestValidationException extends __BaseException {
|
|
71
|
+
readonly name: "DecoderManifestValidationException";
|
|
72
|
+
readonly $fault: "client";
|
|
73
|
+
invalidSignals?: InvalidSignalDecoder[] | undefined;
|
|
74
|
+
invalidNetworkInterfaces?: InvalidNetworkInterface[] | undefined;
|
|
75
|
+
constructor(
|
|
76
|
+
opts: __ExceptionOptionType<
|
|
77
|
+
DecoderManifestValidationException,
|
|
78
|
+
__BaseException
|
|
79
|
+
>
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
export declare class InvalidSignalsException extends __BaseException {
|
|
83
|
+
readonly name: "InvalidSignalsException";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
invalidSignals?: InvalidSignal[] | undefined;
|
|
86
|
+
constructor(
|
|
87
|
+
opts: __ExceptionOptionType<InvalidSignalsException, __BaseException>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
export declare class InvalidNodeException extends __BaseException {
|
|
91
|
+
readonly name: "InvalidNodeException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
invalidNodes?: Node[] | undefined;
|
|
94
|
+
reason?: string | undefined;
|
|
95
|
+
constructor(
|
|
96
|
+
opts: __ExceptionOptionType<InvalidNodeException, __BaseException>
|
|
97
|
+
);
|
|
98
|
+
}
|