@aws-sdk/client-fsx 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.
Files changed (57) hide show
  1. package/dist-cjs/index.js +398 -389
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +386 -0
  4. package/dist-es/models/errors.js +595 -0
  5. package/dist-es/models/models_0.js +1 -981
  6. package/dist-es/schemas/schemas_0.js +12 -4
  7. package/dist-types/commands/CopyBackupCommand.d.ts +9 -2
  8. package/dist-types/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +8 -0
  9. package/dist-types/commands/CreateBackupCommand.d.ts +9 -2
  10. package/dist-types/commands/CreateFileSystemCommand.d.ts +13 -2
  11. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +13 -2
  12. package/dist-types/commands/CreateSnapshotCommand.d.ts +9 -2
  13. package/dist-types/commands/CreateVolumeCommand.d.ts +9 -2
  14. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +9 -2
  15. package/dist-types/commands/DescribeBackupsCommand.d.ts +9 -2
  16. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +9 -2
  17. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +9 -2
  18. package/dist-types/commands/DescribeVolumesCommand.d.ts +9 -2
  19. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +9 -2
  20. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +8 -0
  21. package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +9 -2
  22. package/dist-types/commands/UpdateFileSystemCommand.d.ts +13 -2
  23. package/dist-types/commands/UpdateSnapshotCommand.d.ts +9 -2
  24. package/dist-types/commands/UpdateVolumeCommand.d.ts +9 -2
  25. package/dist-types/index.d.ts +3 -1
  26. package/dist-types/models/enums.d.ts +938 -0
  27. package/dist-types/models/errors.d.ts +782 -0
  28. package/dist-types/models/models_0.d.ts +415 -1761
  29. package/dist-types/schemas/schemas_0.d.ts +1 -0
  30. package/dist-types/ts3.4/commands/CopyBackupCommand.d.ts +1 -2
  31. package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +1 -2
  32. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +4 -2
  33. package/dist-types/ts3.4/commands/CreateFileSystemFromBackupCommand.d.ts +4 -2
  34. package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +1 -2
  36. package/dist-types/ts3.4/commands/CreateVolumeFromBackupCommand.d.ts +4 -2
  37. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +4 -2
  39. package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +4 -2
  40. package/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +4 -2
  41. package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +4 -2
  42. package/dist-types/ts3.4/commands/StartMisconfiguredStateRecoveryCommand.d.ts +4 -2
  43. package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +4 -2
  44. package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +4 -2
  45. package/dist-types/ts3.4/commands/UpdateVolumeCommand.d.ts +1 -2
  46. package/dist-types/ts3.4/index.d.ts +3 -1
  47. package/dist-types/ts3.4/models/enums.d.ts +507 -0
  48. package/dist-types/ts3.4/models/errors.d.ts +319 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +147 -825
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  51. package/package.json +12 -12
  52. package/dist-es/models/index.js +0 -2
  53. package/dist-es/models/models_1.js +0 -1
  54. package/dist-types/models/index.d.ts +0 -2
  55. package/dist-types/models/models_1.d.ts +0 -332
  56. package/dist-types/ts3.4/models/index.d.ts +0 -2
  57. package/dist-types/ts3.4/models/models_1.d.ts +0 -82
@@ -0,0 +1,319 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ActiveDirectoryErrorType, ServiceLimit } from "./enums";
3
+ import { FSxServiceException as __BaseException } from "./FSxServiceException";
4
+ export declare class AccessPointAlreadyOwnedByYou extends __BaseException {
5
+ readonly name: "AccessPointAlreadyOwnedByYou";
6
+ readonly $fault: "client";
7
+ ErrorCode?: string | undefined;
8
+ Message?: string | undefined;
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessPointAlreadyOwnedByYou, __BaseException>
11
+ );
12
+ }
13
+ export declare class ActiveDirectoryError extends __BaseException {
14
+ readonly name: "ActiveDirectoryError";
15
+ readonly $fault: "client";
16
+ ActiveDirectoryId: string | undefined;
17
+ Type?: ActiveDirectoryErrorType | undefined;
18
+ Message?: string | undefined;
19
+ constructor(
20
+ opts: __ExceptionOptionType<ActiveDirectoryError, __BaseException>
21
+ );
22
+ }
23
+ export declare class BadRequest extends __BaseException {
24
+ readonly name: "BadRequest";
25
+ readonly $fault: "client";
26
+ Message?: string | undefined;
27
+ constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
28
+ }
29
+ export declare class FileSystemNotFound extends __BaseException {
30
+ readonly name: "FileSystemNotFound";
31
+ readonly $fault: "client";
32
+ Message?: string | undefined;
33
+ constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
34
+ }
35
+ export declare class InternalServerError extends __BaseException {
36
+ readonly name: "InternalServerError";
37
+ readonly $fault: "server";
38
+ Message?: string | undefined;
39
+ constructor(
40
+ opts: __ExceptionOptionType<InternalServerError, __BaseException>
41
+ );
42
+ }
43
+ export declare class DataRepositoryTaskEnded extends __BaseException {
44
+ readonly name: "DataRepositoryTaskEnded";
45
+ readonly $fault: "client";
46
+ Message?: string | undefined;
47
+ constructor(
48
+ opts: __ExceptionOptionType<DataRepositoryTaskEnded, __BaseException>
49
+ );
50
+ }
51
+ export declare class DataRepositoryTaskNotFound extends __BaseException {
52
+ readonly name: "DataRepositoryTaskNotFound";
53
+ readonly $fault: "client";
54
+ Message?: string | undefined;
55
+ constructor(
56
+ opts: __ExceptionOptionType<DataRepositoryTaskNotFound, __BaseException>
57
+ );
58
+ }
59
+ export declare class UnsupportedOperation extends __BaseException {
60
+ readonly name: "UnsupportedOperation";
61
+ readonly $fault: "client";
62
+ Message?: string | undefined;
63
+ constructor(
64
+ opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
65
+ );
66
+ }
67
+ export declare class BackupNotFound extends __BaseException {
68
+ readonly name: "BackupNotFound";
69
+ readonly $fault: "client";
70
+ Message?: string | undefined;
71
+ constructor(opts: __ExceptionOptionType<BackupNotFound, __BaseException>);
72
+ }
73
+ export declare class IncompatibleParameterError extends __BaseException {
74
+ readonly name: "IncompatibleParameterError";
75
+ readonly $fault: "client";
76
+ Parameter: string | undefined;
77
+ Message?: string | undefined;
78
+ constructor(
79
+ opts: __ExceptionOptionType<IncompatibleParameterError, __BaseException>
80
+ );
81
+ }
82
+ export declare class IncompatibleRegionForMultiAZ extends __BaseException {
83
+ readonly name: "IncompatibleRegionForMultiAZ";
84
+ readonly $fault: "client";
85
+ Message?: string | undefined;
86
+ constructor(
87
+ opts: __ExceptionOptionType<IncompatibleRegionForMultiAZ, __BaseException>
88
+ );
89
+ }
90
+ export declare class InvalidDestinationKmsKey extends __BaseException {
91
+ readonly name: "InvalidDestinationKmsKey";
92
+ readonly $fault: "client";
93
+ Message?: string | undefined;
94
+ constructor(
95
+ opts: __ExceptionOptionType<InvalidDestinationKmsKey, __BaseException>
96
+ );
97
+ }
98
+ export declare class InvalidRegion extends __BaseException {
99
+ readonly name: "InvalidRegion";
100
+ readonly $fault: "client";
101
+ Message?: string | undefined;
102
+ constructor(opts: __ExceptionOptionType<InvalidRegion, __BaseException>);
103
+ }
104
+ export declare class InvalidSourceKmsKey extends __BaseException {
105
+ readonly name: "InvalidSourceKmsKey";
106
+ readonly $fault: "client";
107
+ Message?: string | undefined;
108
+ constructor(
109
+ opts: __ExceptionOptionType<InvalidSourceKmsKey, __BaseException>
110
+ );
111
+ }
112
+ export declare class ServiceLimitExceeded extends __BaseException {
113
+ readonly name: "ServiceLimitExceeded";
114
+ readonly $fault: "client";
115
+ Limit: ServiceLimit | undefined;
116
+ Message?: string | undefined;
117
+ constructor(
118
+ opts: __ExceptionOptionType<ServiceLimitExceeded, __BaseException>
119
+ );
120
+ }
121
+ export declare class SourceBackupUnavailable extends __BaseException {
122
+ readonly name: "SourceBackupUnavailable";
123
+ readonly $fault: "client";
124
+ Message?: string | undefined;
125
+ BackupId?: string | undefined;
126
+ constructor(
127
+ opts: __ExceptionOptionType<SourceBackupUnavailable, __BaseException>
128
+ );
129
+ }
130
+ export declare class InvalidAccessPoint extends __BaseException {
131
+ readonly name: "InvalidAccessPoint";
132
+ readonly $fault: "client";
133
+ ErrorCode?: string | undefined;
134
+ Message?: string | undefined;
135
+ constructor(opts: __ExceptionOptionType<InvalidAccessPoint, __BaseException>);
136
+ }
137
+ export declare class InvalidRequest extends __BaseException {
138
+ readonly name: "InvalidRequest";
139
+ readonly $fault: "client";
140
+ ErrorCode?: string | undefined;
141
+ Message?: string | undefined;
142
+ constructor(opts: __ExceptionOptionType<InvalidRequest, __BaseException>);
143
+ }
144
+ export declare class TooManyAccessPoints extends __BaseException {
145
+ readonly name: "TooManyAccessPoints";
146
+ readonly $fault: "client";
147
+ ErrorCode?: string | undefined;
148
+ Message?: string | undefined;
149
+ constructor(
150
+ opts: __ExceptionOptionType<TooManyAccessPoints, __BaseException>
151
+ );
152
+ }
153
+ export declare class VolumeNotFound extends __BaseException {
154
+ readonly name: "VolumeNotFound";
155
+ readonly $fault: "client";
156
+ Message?: string | undefined;
157
+ constructor(opts: __ExceptionOptionType<VolumeNotFound, __BaseException>);
158
+ }
159
+ export declare class BackupInProgress extends __BaseException {
160
+ readonly name: "BackupInProgress";
161
+ readonly $fault: "client";
162
+ Message?: string | undefined;
163
+ constructor(opts: __ExceptionOptionType<BackupInProgress, __BaseException>);
164
+ }
165
+ export declare class DataRepositoryTaskExecuting extends __BaseException {
166
+ readonly name: "DataRepositoryTaskExecuting";
167
+ readonly $fault: "client";
168
+ Message?: string | undefined;
169
+ constructor(
170
+ opts: __ExceptionOptionType<DataRepositoryTaskExecuting, __BaseException>
171
+ );
172
+ }
173
+ export declare class InvalidNetworkSettings extends __BaseException {
174
+ readonly name: "InvalidNetworkSettings";
175
+ readonly $fault: "client";
176
+ Message?: string | undefined;
177
+ InvalidSubnetId?: string | undefined;
178
+ InvalidSecurityGroupId?: string | undefined;
179
+ InvalidRouteTableId?: string | undefined;
180
+ constructor(
181
+ opts: __ExceptionOptionType<InvalidNetworkSettings, __BaseException>
182
+ );
183
+ }
184
+ export declare class InvalidPerUnitStorageThroughput extends __BaseException {
185
+ readonly name: "InvalidPerUnitStorageThroughput";
186
+ readonly $fault: "client";
187
+ Message?: string | undefined;
188
+ constructor(
189
+ opts: __ExceptionOptionType<
190
+ InvalidPerUnitStorageThroughput,
191
+ __BaseException
192
+ >
193
+ );
194
+ }
195
+ export declare class MissingFileCacheConfiguration extends __BaseException {
196
+ readonly name: "MissingFileCacheConfiguration";
197
+ readonly $fault: "client";
198
+ Message?: string | undefined;
199
+ constructor(
200
+ opts: __ExceptionOptionType<MissingFileCacheConfiguration, __BaseException>
201
+ );
202
+ }
203
+ export declare class InvalidExportPath extends __BaseException {
204
+ readonly name: "InvalidExportPath";
205
+ readonly $fault: "client";
206
+ Message?: string | undefined;
207
+ constructor(opts: __ExceptionOptionType<InvalidExportPath, __BaseException>);
208
+ }
209
+ export declare class InvalidImportPath extends __BaseException {
210
+ readonly name: "InvalidImportPath";
211
+ readonly $fault: "client";
212
+ Message?: string | undefined;
213
+ constructor(opts: __ExceptionOptionType<InvalidImportPath, __BaseException>);
214
+ }
215
+ export declare class MissingFileSystemConfiguration extends __BaseException {
216
+ readonly name: "MissingFileSystemConfiguration";
217
+ readonly $fault: "client";
218
+ Message?: string | undefined;
219
+ constructor(
220
+ opts: __ExceptionOptionType<MissingFileSystemConfiguration, __BaseException>
221
+ );
222
+ }
223
+ export declare class MissingVolumeConfiguration extends __BaseException {
224
+ readonly name: "MissingVolumeConfiguration";
225
+ readonly $fault: "client";
226
+ Message?: string | undefined;
227
+ constructor(
228
+ opts: __ExceptionOptionType<MissingVolumeConfiguration, __BaseException>
229
+ );
230
+ }
231
+ export declare class StorageVirtualMachineNotFound extends __BaseException {
232
+ readonly name: "StorageVirtualMachineNotFound";
233
+ readonly $fault: "client";
234
+ Message?: string | undefined;
235
+ constructor(
236
+ opts: __ExceptionOptionType<StorageVirtualMachineNotFound, __BaseException>
237
+ );
238
+ }
239
+ export declare class BackupBeingCopied extends __BaseException {
240
+ readonly name: "BackupBeingCopied";
241
+ readonly $fault: "client";
242
+ Message?: string | undefined;
243
+ BackupId?: string | undefined;
244
+ constructor(opts: __ExceptionOptionType<BackupBeingCopied, __BaseException>);
245
+ }
246
+ export declare class BackupRestoring extends __BaseException {
247
+ readonly name: "BackupRestoring";
248
+ readonly $fault: "client";
249
+ Message?: string | undefined;
250
+ FileSystemId?: string | undefined;
251
+ constructor(opts: __ExceptionOptionType<BackupRestoring, __BaseException>);
252
+ }
253
+ export declare class DataRepositoryAssociationNotFound extends __BaseException {
254
+ readonly name: "DataRepositoryAssociationNotFound";
255
+ readonly $fault: "client";
256
+ Message?: string | undefined;
257
+ constructor(
258
+ opts: __ExceptionOptionType<
259
+ DataRepositoryAssociationNotFound,
260
+ __BaseException
261
+ >
262
+ );
263
+ }
264
+ export declare class FileCacheNotFound extends __BaseException {
265
+ readonly name: "FileCacheNotFound";
266
+ readonly $fault: "client";
267
+ Message?: string | undefined;
268
+ constructor(opts: __ExceptionOptionType<FileCacheNotFound, __BaseException>);
269
+ }
270
+ export declare class SnapshotNotFound extends __BaseException {
271
+ readonly name: "SnapshotNotFound";
272
+ readonly $fault: "client";
273
+ Message?: string | undefined;
274
+ constructor(opts: __ExceptionOptionType<SnapshotNotFound, __BaseException>);
275
+ }
276
+ export declare class InvalidDataRepositoryType extends __BaseException {
277
+ readonly name: "InvalidDataRepositoryType";
278
+ readonly $fault: "client";
279
+ Message?: string | undefined;
280
+ constructor(
281
+ opts: __ExceptionOptionType<InvalidDataRepositoryType, __BaseException>
282
+ );
283
+ }
284
+ export declare class S3AccessPointAttachmentNotFound extends __BaseException {
285
+ readonly name: "S3AccessPointAttachmentNotFound";
286
+ readonly $fault: "client";
287
+ Message?: string | undefined;
288
+ constructor(
289
+ opts: __ExceptionOptionType<
290
+ S3AccessPointAttachmentNotFound,
291
+ __BaseException
292
+ >
293
+ );
294
+ }
295
+ export declare class NotServiceResourceError extends __BaseException {
296
+ readonly name: "NotServiceResourceError";
297
+ readonly $fault: "client";
298
+ ResourceARN: string | undefined;
299
+ Message?: string | undefined;
300
+ constructor(
301
+ opts: __ExceptionOptionType<NotServiceResourceError, __BaseException>
302
+ );
303
+ }
304
+ export declare class ResourceDoesNotSupportTagging extends __BaseException {
305
+ readonly name: "ResourceDoesNotSupportTagging";
306
+ readonly $fault: "client";
307
+ ResourceARN: string | undefined;
308
+ Message?: string | undefined;
309
+ constructor(
310
+ opts: __ExceptionOptionType<ResourceDoesNotSupportTagging, __BaseException>
311
+ );
312
+ }
313
+ export declare class ResourceNotFound extends __BaseException {
314
+ readonly name: "ResourceNotFound";
315
+ readonly $fault: "client";
316
+ ResourceARN: string | undefined;
317
+ Message?: string | undefined;
318
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
319
+ }