@aws-sdk/client-fsx 3.934.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.
- package/dist-cjs/index.js +398 -389
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +386 -0
- package/dist-es/models/errors.js +595 -0
- package/dist-es/models/models_0.js +1 -981
- package/dist-es/schemas/schemas_0.js +12 -4
- package/dist-types/commands/CopyBackupCommand.d.ts +9 -2
- package/dist-types/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +8 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +9 -2
- package/dist-types/commands/CreateFileSystemCommand.d.ts +13 -2
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +13 -2
- package/dist-types/commands/CreateSnapshotCommand.d.ts +9 -2
- package/dist-types/commands/CreateVolumeCommand.d.ts +9 -2
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +9 -2
- package/dist-types/commands/DescribeBackupsCommand.d.ts +9 -2
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +9 -2
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +9 -2
- package/dist-types/commands/DescribeVolumesCommand.d.ts +9 -2
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +9 -2
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +8 -0
- package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +9 -2
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +13 -2
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +9 -2
- package/dist-types/commands/UpdateVolumeCommand.d.ts +9 -2
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +938 -0
- package/dist-types/models/errors.d.ts +782 -0
- package/dist-types/models/models_0.d.ts +415 -1761
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/commands/CopyBackupCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateFileSystemFromBackupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/CreateVolumeFromBackupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartMisconfiguredStateRecoveryCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateVolumeCommand.d.ts +1 -2
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +507 -0
- package/dist-types/ts3.4/models/errors.d.ts +319 -0
- package/dist-types/ts3.4/models/models_0.d.ts +147 -825
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-es/models/models_1.js +0 -1
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/models/models_1.d.ts +0 -332
- package/dist-types/ts3.4/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/models_1.d.ts +0 -82
|
@@ -0,0 +1,782 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ActiveDirectoryErrorType, ServiceLimit } from "./enums";
|
|
3
|
+
import { FSxServiceException as __BaseException } from "./FSxServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* <p>An access point with that name already exists in the Amazon Web Services Region in your Amazon Web Services account.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class AccessPointAlreadyOwnedByYou extends __BaseException {
|
|
9
|
+
readonly name: "AccessPointAlreadyOwnedByYou";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
/**
|
|
12
|
+
* <p>An error code indicating that an access point with that name already exists in the Amazon Web Services Region in your Amazon Web Services account.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
ErrorCode?: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>A detailed error message.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
Message?: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* @internal
|
|
23
|
+
*/
|
|
24
|
+
constructor(opts: __ExceptionOptionType<AccessPointAlreadyOwnedByYou, __BaseException>);
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* <p>An Active Directory error.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export declare class ActiveDirectoryError extends __BaseException {
|
|
31
|
+
readonly name: "ActiveDirectoryError";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
/**
|
|
34
|
+
* <p>The directory ID of the directory that an error pertains to.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
ActiveDirectoryId: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The type of Active Directory error.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
Type?: ActiveDirectoryErrorType | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>A detailed error message.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
Message?: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
constructor(opts: __ExceptionOptionType<ActiveDirectoryError, __BaseException>);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export declare class BadRequest extends __BaseException {
|
|
58
|
+
readonly name: "BadRequest";
|
|
59
|
+
readonly $fault: "client";
|
|
60
|
+
/**
|
|
61
|
+
* <p>A detailed error message.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
Message?: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class FileSystemNotFound extends __BaseException {
|
|
75
|
+
readonly name: "FileSystemNotFound";
|
|
76
|
+
readonly $fault: "client";
|
|
77
|
+
/**
|
|
78
|
+
* <p>A detailed error message.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
Message?: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class InternalServerError extends __BaseException {
|
|
92
|
+
readonly name: "InternalServerError";
|
|
93
|
+
readonly $fault: "server";
|
|
94
|
+
/**
|
|
95
|
+
* <p>A detailed error message.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
Message?: string | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* <p>The data repository task could not be canceled because the task has already ended.</p>
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class DataRepositoryTaskEnded extends __BaseException {
|
|
109
|
+
readonly name: "DataRepositoryTaskEnded";
|
|
110
|
+
readonly $fault: "client";
|
|
111
|
+
/**
|
|
112
|
+
* <p>A detailed error message.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
Message?: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
119
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryTaskEnded, __BaseException>);
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* <p>The data repository task or tasks you specified could not be found.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export declare class DataRepositoryTaskNotFound extends __BaseException {
|
|
126
|
+
readonly name: "DataRepositoryTaskNotFound";
|
|
127
|
+
readonly $fault: "client";
|
|
128
|
+
/**
|
|
129
|
+
* <p>A detailed error message.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
Message?: string | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryTaskNotFound, __BaseException>);
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
export declare class UnsupportedOperation extends __BaseException {
|
|
143
|
+
readonly name: "UnsupportedOperation";
|
|
144
|
+
readonly $fault: "client";
|
|
145
|
+
/**
|
|
146
|
+
* <p>A detailed error message.</p>
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
Message?: string | undefined;
|
|
150
|
+
/**
|
|
151
|
+
* @internal
|
|
152
|
+
*/
|
|
153
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>);
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export declare class BackupNotFound extends __BaseException {
|
|
160
|
+
readonly name: "BackupNotFound";
|
|
161
|
+
readonly $fault: "client";
|
|
162
|
+
/**
|
|
163
|
+
* <p>A detailed error message.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
Message?: string | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* @internal
|
|
169
|
+
*/
|
|
170
|
+
constructor(opts: __ExceptionOptionType<BackupNotFound, __BaseException>);
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* <p>The error returned when a second request is received with the same client request
|
|
174
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
175
|
+
* identify a single request.</p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export declare class IncompatibleParameterError extends __BaseException {
|
|
179
|
+
readonly name: "IncompatibleParameterError";
|
|
180
|
+
readonly $fault: "client";
|
|
181
|
+
/**
|
|
182
|
+
* <p>A parameter that is incompatible with the earlier request.</p>
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
Parameter: string | undefined;
|
|
186
|
+
/**
|
|
187
|
+
* <p>A detailed error message.</p>
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
Message?: string | undefined;
|
|
191
|
+
/**
|
|
192
|
+
* @internal
|
|
193
|
+
*/
|
|
194
|
+
constructor(opts: __ExceptionOptionType<IncompatibleParameterError, __BaseException>);
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* <p>Amazon FSx doesn't support Multi-AZ Windows File Server copy backup in the
|
|
198
|
+
* destination Region, so the copied backup can't be restored.</p>
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
export declare class IncompatibleRegionForMultiAZ extends __BaseException {
|
|
202
|
+
readonly name: "IncompatibleRegionForMultiAZ";
|
|
203
|
+
readonly $fault: "client";
|
|
204
|
+
/**
|
|
205
|
+
* <p>A detailed error message.</p>
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
Message?: string | undefined;
|
|
209
|
+
/**
|
|
210
|
+
* @internal
|
|
211
|
+
*/
|
|
212
|
+
constructor(opts: __ExceptionOptionType<IncompatibleRegionForMultiAZ, __BaseException>);
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* <p>The Key Management Service (KMS) key of the destination backup is not
|
|
216
|
+
* valid.</p>
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
219
|
+
export declare class InvalidDestinationKmsKey extends __BaseException {
|
|
220
|
+
readonly name: "InvalidDestinationKmsKey";
|
|
221
|
+
readonly $fault: "client";
|
|
222
|
+
/**
|
|
223
|
+
* <p>A detailed error message.</p>
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
Message?: string | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* @internal
|
|
229
|
+
*/
|
|
230
|
+
constructor(opts: __ExceptionOptionType<InvalidDestinationKmsKey, __BaseException>);
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* <p>The Region provided for <code>SourceRegion</code> is not valid or is in a different
|
|
234
|
+
* Amazon Web Services partition.</p>
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export declare class InvalidRegion extends __BaseException {
|
|
238
|
+
readonly name: "InvalidRegion";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
/**
|
|
241
|
+
* <p>A detailed error message.</p>
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
Message?: string | undefined;
|
|
245
|
+
/**
|
|
246
|
+
* @internal
|
|
247
|
+
*/
|
|
248
|
+
constructor(opts: __ExceptionOptionType<InvalidRegion, __BaseException>);
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* <p>The Key Management Service (KMS) key of the source backup is not
|
|
252
|
+
* valid.</p>
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
255
|
+
export declare class InvalidSourceKmsKey extends __BaseException {
|
|
256
|
+
readonly name: "InvalidSourceKmsKey";
|
|
257
|
+
readonly $fault: "client";
|
|
258
|
+
/**
|
|
259
|
+
* <p>A detailed error message.</p>
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
Message?: string | undefined;
|
|
263
|
+
/**
|
|
264
|
+
* @internal
|
|
265
|
+
*/
|
|
266
|
+
constructor(opts: __ExceptionOptionType<InvalidSourceKmsKey, __BaseException>);
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
270
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
export declare class ServiceLimitExceeded extends __BaseException {
|
|
274
|
+
readonly name: "ServiceLimitExceeded";
|
|
275
|
+
readonly $fault: "client";
|
|
276
|
+
/**
|
|
277
|
+
* <p>Enumeration of the service limit that was exceeded. </p>
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
280
|
+
Limit: ServiceLimit | undefined;
|
|
281
|
+
/**
|
|
282
|
+
* <p>A detailed error message.</p>
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
285
|
+
Message?: string | undefined;
|
|
286
|
+
/**
|
|
287
|
+
* @internal
|
|
288
|
+
*/
|
|
289
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceeded, __BaseException>);
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* <p>The request was rejected because the lifecycle status of the source backup isn't
|
|
293
|
+
* <code>AVAILABLE</code>.</p>
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
296
|
+
export declare class SourceBackupUnavailable extends __BaseException {
|
|
297
|
+
readonly name: "SourceBackupUnavailable";
|
|
298
|
+
readonly $fault: "client";
|
|
299
|
+
/**
|
|
300
|
+
* <p>A detailed error message.</p>
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
Message?: string | undefined;
|
|
304
|
+
/**
|
|
305
|
+
* <p>The ID of the source backup. Specifies the backup that you are copying.</p>
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
308
|
+
BackupId?: string | undefined;
|
|
309
|
+
/**
|
|
310
|
+
* @internal
|
|
311
|
+
*/
|
|
312
|
+
constructor(opts: __ExceptionOptionType<SourceBackupUnavailable, __BaseException>);
|
|
313
|
+
}
|
|
314
|
+
/**
|
|
315
|
+
* <p>The access point specified doesn't exist.</p>
|
|
316
|
+
* @public
|
|
317
|
+
*/
|
|
318
|
+
export declare class InvalidAccessPoint extends __BaseException {
|
|
319
|
+
readonly name: "InvalidAccessPoint";
|
|
320
|
+
readonly $fault: "client";
|
|
321
|
+
/**
|
|
322
|
+
* <p>An error code indicating that the access point specified doesn't exist.</p>
|
|
323
|
+
* @public
|
|
324
|
+
*/
|
|
325
|
+
ErrorCode?: string | undefined;
|
|
326
|
+
/**
|
|
327
|
+
* <p>A detailed error message.</p>
|
|
328
|
+
* @public
|
|
329
|
+
*/
|
|
330
|
+
Message?: string | undefined;
|
|
331
|
+
/**
|
|
332
|
+
* @internal
|
|
333
|
+
*/
|
|
334
|
+
constructor(opts: __ExceptionOptionType<InvalidAccessPoint, __BaseException>);
|
|
335
|
+
}
|
|
336
|
+
/**
|
|
337
|
+
* <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
|
|
338
|
+
* @public
|
|
339
|
+
*/
|
|
340
|
+
export declare class InvalidRequest extends __BaseException {
|
|
341
|
+
readonly name: "InvalidRequest";
|
|
342
|
+
readonly $fault: "client";
|
|
343
|
+
/**
|
|
344
|
+
* <p>An error code indicating that the action or operation requested is invalid.</p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
ErrorCode?: string | undefined;
|
|
348
|
+
/**
|
|
349
|
+
* <p>A detailed error message.</p>
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
Message?: string | undefined;
|
|
353
|
+
/**
|
|
354
|
+
* @internal
|
|
355
|
+
*/
|
|
356
|
+
constructor(opts: __ExceptionOptionType<InvalidRequest, __BaseException>);
|
|
357
|
+
}
|
|
358
|
+
/**
|
|
359
|
+
* <p>You have reached the maximum number of S3 access points attachments allowed for your account in this Amazon Web Services Region, or for the file system. For more information, or to request an increase,
|
|
360
|
+
* see <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/limits.html">Service quotas on FSx resources</a> in the FSx for OpenZFS User Guide.</p>
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
363
|
+
export declare class TooManyAccessPoints extends __BaseException {
|
|
364
|
+
readonly name: "TooManyAccessPoints";
|
|
365
|
+
readonly $fault: "client";
|
|
366
|
+
/**
|
|
367
|
+
* <p>An error code indicating that you have reached the maximum number of S3 access points attachments allowed for your account in this Amazon Web Services Region, or for the file system.</p>
|
|
368
|
+
* @public
|
|
369
|
+
*/
|
|
370
|
+
ErrorCode?: string | undefined;
|
|
371
|
+
/**
|
|
372
|
+
* <p>A detailed error message.</p>
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
375
|
+
Message?: string | undefined;
|
|
376
|
+
/**
|
|
377
|
+
* @internal
|
|
378
|
+
*/
|
|
379
|
+
constructor(opts: __ExceptionOptionType<TooManyAccessPoints, __BaseException>);
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
383
|
+
* @public
|
|
384
|
+
*/
|
|
385
|
+
export declare class VolumeNotFound extends __BaseException {
|
|
386
|
+
readonly name: "VolumeNotFound";
|
|
387
|
+
readonly $fault: "client";
|
|
388
|
+
/**
|
|
389
|
+
* <p>A detailed error message.</p>
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
392
|
+
Message?: string | undefined;
|
|
393
|
+
/**
|
|
394
|
+
* @internal
|
|
395
|
+
*/
|
|
396
|
+
constructor(opts: __ExceptionOptionType<VolumeNotFound, __BaseException>);
|
|
397
|
+
}
|
|
398
|
+
/**
|
|
399
|
+
* <p>Another backup is already under way. Wait for completion before initiating
|
|
400
|
+
* additional backups of this file system.</p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
export declare class BackupInProgress extends __BaseException {
|
|
404
|
+
readonly name: "BackupInProgress";
|
|
405
|
+
readonly $fault: "client";
|
|
406
|
+
/**
|
|
407
|
+
* <p>A detailed error message.</p>
|
|
408
|
+
* @public
|
|
409
|
+
*/
|
|
410
|
+
Message?: string | undefined;
|
|
411
|
+
/**
|
|
412
|
+
* @internal
|
|
413
|
+
*/
|
|
414
|
+
constructor(opts: __ExceptionOptionType<BackupInProgress, __BaseException>);
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
* <p>An existing data repository task is currently executing on the file system.
|
|
418
|
+
* Wait until the existing task has completed, then create the new task.</p>
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
421
|
+
export declare class DataRepositoryTaskExecuting extends __BaseException {
|
|
422
|
+
readonly name: "DataRepositoryTaskExecuting";
|
|
423
|
+
readonly $fault: "client";
|
|
424
|
+
/**
|
|
425
|
+
* <p>A detailed error message.</p>
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
Message?: string | undefined;
|
|
429
|
+
/**
|
|
430
|
+
* @internal
|
|
431
|
+
*/
|
|
432
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryTaskExecuting, __BaseException>);
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* <p>One or more network settings specified in the request are invalid.</p>
|
|
436
|
+
* @public
|
|
437
|
+
*/
|
|
438
|
+
export declare class InvalidNetworkSettings extends __BaseException {
|
|
439
|
+
readonly name: "InvalidNetworkSettings";
|
|
440
|
+
readonly $fault: "client";
|
|
441
|
+
/**
|
|
442
|
+
* <p>Error message explaining what's wrong with network settings.</p>
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
445
|
+
Message?: string | undefined;
|
|
446
|
+
/**
|
|
447
|
+
* <p>The subnet ID that is either invalid or not part of the VPC specified.</p>
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
InvalidSubnetId?: string | undefined;
|
|
451
|
+
/**
|
|
452
|
+
* <p>The security group ID is either invalid or not part of the VPC specified.</p>
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
InvalidSecurityGroupId?: string | undefined;
|
|
456
|
+
/**
|
|
457
|
+
* <p>The route table ID is either invalid or not part of the VPC specified.</p>
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
InvalidRouteTableId?: string | undefined;
|
|
461
|
+
/**
|
|
462
|
+
* @internal
|
|
463
|
+
*/
|
|
464
|
+
constructor(opts: __ExceptionOptionType<InvalidNetworkSettings, __BaseException>);
|
|
465
|
+
}
|
|
466
|
+
/**
|
|
467
|
+
* <p>An invalid value for <code>PerUnitStorageThroughput</code> was provided. Please create your file system again, using a valid value.</p>
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
470
|
+
export declare class InvalidPerUnitStorageThroughput extends __BaseException {
|
|
471
|
+
readonly name: "InvalidPerUnitStorageThroughput";
|
|
472
|
+
readonly $fault: "client";
|
|
473
|
+
/**
|
|
474
|
+
* <p>A detailed error message.</p>
|
|
475
|
+
* @public
|
|
476
|
+
*/
|
|
477
|
+
Message?: string | undefined;
|
|
478
|
+
/**
|
|
479
|
+
* @internal
|
|
480
|
+
*/
|
|
481
|
+
constructor(opts: __ExceptionOptionType<InvalidPerUnitStorageThroughput, __BaseException>);
|
|
482
|
+
}
|
|
483
|
+
/**
|
|
484
|
+
* <p>A cache configuration is required for this operation.</p>
|
|
485
|
+
* @public
|
|
486
|
+
*/
|
|
487
|
+
export declare class MissingFileCacheConfiguration extends __BaseException {
|
|
488
|
+
readonly name: "MissingFileCacheConfiguration";
|
|
489
|
+
readonly $fault: "client";
|
|
490
|
+
/**
|
|
491
|
+
* <p>A detailed error message.</p>
|
|
492
|
+
* @public
|
|
493
|
+
*/
|
|
494
|
+
Message?: string | undefined;
|
|
495
|
+
/**
|
|
496
|
+
* @internal
|
|
497
|
+
*/
|
|
498
|
+
constructor(opts: __ExceptionOptionType<MissingFileCacheConfiguration, __BaseException>);
|
|
499
|
+
}
|
|
500
|
+
/**
|
|
501
|
+
* <p>The path provided for data repository export isn't valid.</p>
|
|
502
|
+
* @public
|
|
503
|
+
*/
|
|
504
|
+
export declare class InvalidExportPath extends __BaseException {
|
|
505
|
+
readonly name: "InvalidExportPath";
|
|
506
|
+
readonly $fault: "client";
|
|
507
|
+
/**
|
|
508
|
+
* <p>A detailed error message.</p>
|
|
509
|
+
* @public
|
|
510
|
+
*/
|
|
511
|
+
Message?: string | undefined;
|
|
512
|
+
/**
|
|
513
|
+
* @internal
|
|
514
|
+
*/
|
|
515
|
+
constructor(opts: __ExceptionOptionType<InvalidExportPath, __BaseException>);
|
|
516
|
+
}
|
|
517
|
+
/**
|
|
518
|
+
* <p>The path provided for data repository import isn't valid.</p>
|
|
519
|
+
* @public
|
|
520
|
+
*/
|
|
521
|
+
export declare class InvalidImportPath extends __BaseException {
|
|
522
|
+
readonly name: "InvalidImportPath";
|
|
523
|
+
readonly $fault: "client";
|
|
524
|
+
/**
|
|
525
|
+
* <p>A detailed error message.</p>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
Message?: string | undefined;
|
|
529
|
+
/**
|
|
530
|
+
* @internal
|
|
531
|
+
*/
|
|
532
|
+
constructor(opts: __ExceptionOptionType<InvalidImportPath, __BaseException>);
|
|
533
|
+
}
|
|
534
|
+
/**
|
|
535
|
+
* <p>A file system configuration is required for this operation.</p>
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
export declare class MissingFileSystemConfiguration extends __BaseException {
|
|
539
|
+
readonly name: "MissingFileSystemConfiguration";
|
|
540
|
+
readonly $fault: "client";
|
|
541
|
+
/**
|
|
542
|
+
* <p>A detailed error message.</p>
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
Message?: string | undefined;
|
|
546
|
+
/**
|
|
547
|
+
* @internal
|
|
548
|
+
*/
|
|
549
|
+
constructor(opts: __ExceptionOptionType<MissingFileSystemConfiguration, __BaseException>);
|
|
550
|
+
}
|
|
551
|
+
/**
|
|
552
|
+
* <p>A volume configuration is required for this operation.</p>
|
|
553
|
+
* @public
|
|
554
|
+
*/
|
|
555
|
+
export declare class MissingVolumeConfiguration extends __BaseException {
|
|
556
|
+
readonly name: "MissingVolumeConfiguration";
|
|
557
|
+
readonly $fault: "client";
|
|
558
|
+
/**
|
|
559
|
+
* <p>A detailed error message.</p>
|
|
560
|
+
* @public
|
|
561
|
+
*/
|
|
562
|
+
Message?: string | undefined;
|
|
563
|
+
/**
|
|
564
|
+
* @internal
|
|
565
|
+
*/
|
|
566
|
+
constructor(opts: __ExceptionOptionType<MissingVolumeConfiguration, __BaseException>);
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
|
|
570
|
+
* @public
|
|
571
|
+
*/
|
|
572
|
+
export declare class StorageVirtualMachineNotFound extends __BaseException {
|
|
573
|
+
readonly name: "StorageVirtualMachineNotFound";
|
|
574
|
+
readonly $fault: "client";
|
|
575
|
+
/**
|
|
576
|
+
* <p>A detailed error message.</p>
|
|
577
|
+
* @public
|
|
578
|
+
*/
|
|
579
|
+
Message?: string | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* @internal
|
|
582
|
+
*/
|
|
583
|
+
constructor(opts: __ExceptionOptionType<StorageVirtualMachineNotFound, __BaseException>);
|
|
584
|
+
}
|
|
585
|
+
/**
|
|
586
|
+
* <p>You can't delete a backup while it's being copied.</p>
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
export declare class BackupBeingCopied extends __BaseException {
|
|
590
|
+
readonly name: "BackupBeingCopied";
|
|
591
|
+
readonly $fault: "client";
|
|
592
|
+
/**
|
|
593
|
+
* <p>A detailed error message.</p>
|
|
594
|
+
* @public
|
|
595
|
+
*/
|
|
596
|
+
Message?: string | undefined;
|
|
597
|
+
/**
|
|
598
|
+
* <p>The ID of the source backup. Specifies the backup that you are copying.</p>
|
|
599
|
+
* @public
|
|
600
|
+
*/
|
|
601
|
+
BackupId?: string | undefined;
|
|
602
|
+
/**
|
|
603
|
+
* @internal
|
|
604
|
+
*/
|
|
605
|
+
constructor(opts: __ExceptionOptionType<BackupBeingCopied, __BaseException>);
|
|
606
|
+
}
|
|
607
|
+
/**
|
|
608
|
+
* <p>You can't delete a backup while it's being used to restore a file
|
|
609
|
+
* system.</p>
|
|
610
|
+
* @public
|
|
611
|
+
*/
|
|
612
|
+
export declare class BackupRestoring extends __BaseException {
|
|
613
|
+
readonly name: "BackupRestoring";
|
|
614
|
+
readonly $fault: "client";
|
|
615
|
+
/**
|
|
616
|
+
* <p>A detailed error message.</p>
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
619
|
+
Message?: string | undefined;
|
|
620
|
+
/**
|
|
621
|
+
* <p>The ID of a file system being restored from the backup.</p>
|
|
622
|
+
* @public
|
|
623
|
+
*/
|
|
624
|
+
FileSystemId?: string | undefined;
|
|
625
|
+
/**
|
|
626
|
+
* @internal
|
|
627
|
+
*/
|
|
628
|
+
constructor(opts: __ExceptionOptionType<BackupRestoring, __BaseException>);
|
|
629
|
+
}
|
|
630
|
+
/**
|
|
631
|
+
* <p>No data repository associations were found based upon the supplied parameters.</p>
|
|
632
|
+
* @public
|
|
633
|
+
*/
|
|
634
|
+
export declare class DataRepositoryAssociationNotFound extends __BaseException {
|
|
635
|
+
readonly name: "DataRepositoryAssociationNotFound";
|
|
636
|
+
readonly $fault: "client";
|
|
637
|
+
/**
|
|
638
|
+
* <p>A detailed error message.</p>
|
|
639
|
+
* @public
|
|
640
|
+
*/
|
|
641
|
+
Message?: string | undefined;
|
|
642
|
+
/**
|
|
643
|
+
* @internal
|
|
644
|
+
*/
|
|
645
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryAssociationNotFound, __BaseException>);
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* <p>No caches were found based upon supplied parameters.</p>
|
|
649
|
+
* @public
|
|
650
|
+
*/
|
|
651
|
+
export declare class FileCacheNotFound extends __BaseException {
|
|
652
|
+
readonly name: "FileCacheNotFound";
|
|
653
|
+
readonly $fault: "client";
|
|
654
|
+
/**
|
|
655
|
+
* <p>A detailed error message.</p>
|
|
656
|
+
* @public
|
|
657
|
+
*/
|
|
658
|
+
Message?: string | undefined;
|
|
659
|
+
/**
|
|
660
|
+
* @internal
|
|
661
|
+
*/
|
|
662
|
+
constructor(opts: __ExceptionOptionType<FileCacheNotFound, __BaseException>);
|
|
663
|
+
}
|
|
664
|
+
/**
|
|
665
|
+
* <p>No Amazon FSx snapshots were found based on the supplied parameters.</p>
|
|
666
|
+
* @public
|
|
667
|
+
*/
|
|
668
|
+
export declare class SnapshotNotFound extends __BaseException {
|
|
669
|
+
readonly name: "SnapshotNotFound";
|
|
670
|
+
readonly $fault: "client";
|
|
671
|
+
/**
|
|
672
|
+
* <p>A detailed error message.</p>
|
|
673
|
+
* @public
|
|
674
|
+
*/
|
|
675
|
+
Message?: string | undefined;
|
|
676
|
+
/**
|
|
677
|
+
* @internal
|
|
678
|
+
*/
|
|
679
|
+
constructor(opts: __ExceptionOptionType<SnapshotNotFound, __BaseException>);
|
|
680
|
+
}
|
|
681
|
+
/**
|
|
682
|
+
* <p>You have filtered the response to a data repository type that is not supported.</p>
|
|
683
|
+
* @public
|
|
684
|
+
*/
|
|
685
|
+
export declare class InvalidDataRepositoryType extends __BaseException {
|
|
686
|
+
readonly name: "InvalidDataRepositoryType";
|
|
687
|
+
readonly $fault: "client";
|
|
688
|
+
/**
|
|
689
|
+
* <p>A detailed error message.</p>
|
|
690
|
+
* @public
|
|
691
|
+
*/
|
|
692
|
+
Message?: string | undefined;
|
|
693
|
+
/**
|
|
694
|
+
* @internal
|
|
695
|
+
*/
|
|
696
|
+
constructor(opts: __ExceptionOptionType<InvalidDataRepositoryType, __BaseException>);
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* <p>The access point specified was not found.</p>
|
|
700
|
+
* @public
|
|
701
|
+
*/
|
|
702
|
+
export declare class S3AccessPointAttachmentNotFound extends __BaseException {
|
|
703
|
+
readonly name: "S3AccessPointAttachmentNotFound";
|
|
704
|
+
readonly $fault: "client";
|
|
705
|
+
/**
|
|
706
|
+
* <p>A detailed error message.</p>
|
|
707
|
+
* @public
|
|
708
|
+
*/
|
|
709
|
+
Message?: string | undefined;
|
|
710
|
+
/**
|
|
711
|
+
* @internal
|
|
712
|
+
*/
|
|
713
|
+
constructor(opts: __ExceptionOptionType<S3AccessPointAttachmentNotFound, __BaseException>);
|
|
714
|
+
}
|
|
715
|
+
/**
|
|
716
|
+
* <p>The resource specified for the tagging operation is not a resource type owned by
|
|
717
|
+
* Amazon FSx. Use the API of the relevant service to perform the operation. </p>
|
|
718
|
+
* @public
|
|
719
|
+
*/
|
|
720
|
+
export declare class NotServiceResourceError extends __BaseException {
|
|
721
|
+
readonly name: "NotServiceResourceError";
|
|
722
|
+
readonly $fault: "client";
|
|
723
|
+
/**
|
|
724
|
+
* <p>The Amazon Resource Name (ARN) of the non-Amazon FSx resource.</p>
|
|
725
|
+
* @public
|
|
726
|
+
*/
|
|
727
|
+
ResourceARN: string | undefined;
|
|
728
|
+
/**
|
|
729
|
+
* <p>A detailed error message.</p>
|
|
730
|
+
* @public
|
|
731
|
+
*/
|
|
732
|
+
Message?: string | undefined;
|
|
733
|
+
/**
|
|
734
|
+
* @internal
|
|
735
|
+
*/
|
|
736
|
+
constructor(opts: __ExceptionOptionType<NotServiceResourceError, __BaseException>);
|
|
737
|
+
}
|
|
738
|
+
/**
|
|
739
|
+
* <p>The resource specified does not support tagging. </p>
|
|
740
|
+
* @public
|
|
741
|
+
*/
|
|
742
|
+
export declare class ResourceDoesNotSupportTagging extends __BaseException {
|
|
743
|
+
readonly name: "ResourceDoesNotSupportTagging";
|
|
744
|
+
readonly $fault: "client";
|
|
745
|
+
/**
|
|
746
|
+
* <p>The Amazon Resource Name (ARN) of the resource that doesn't support
|
|
747
|
+
* tagging.</p>
|
|
748
|
+
* @public
|
|
749
|
+
*/
|
|
750
|
+
ResourceARN: string | undefined;
|
|
751
|
+
/**
|
|
752
|
+
* <p>A detailed error message.</p>
|
|
753
|
+
* @public
|
|
754
|
+
*/
|
|
755
|
+
Message?: string | undefined;
|
|
756
|
+
/**
|
|
757
|
+
* @internal
|
|
758
|
+
*/
|
|
759
|
+
constructor(opts: __ExceptionOptionType<ResourceDoesNotSupportTagging, __BaseException>);
|
|
760
|
+
}
|
|
761
|
+
/**
|
|
762
|
+
* <p>The resource specified by the Amazon Resource Name (ARN) can't be found.</p>
|
|
763
|
+
* @public
|
|
764
|
+
*/
|
|
765
|
+
export declare class ResourceNotFound extends __BaseException {
|
|
766
|
+
readonly name: "ResourceNotFound";
|
|
767
|
+
readonly $fault: "client";
|
|
768
|
+
/**
|
|
769
|
+
* <p>The resource ARN of the resource that can't be found.</p>
|
|
770
|
+
* @public
|
|
771
|
+
*/
|
|
772
|
+
ResourceARN: string | undefined;
|
|
773
|
+
/**
|
|
774
|
+
* <p>A detailed error message.</p>
|
|
775
|
+
* @public
|
|
776
|
+
*/
|
|
777
|
+
Message?: string | undefined;
|
|
778
|
+
/**
|
|
779
|
+
* @internal
|
|
780
|
+
*/
|
|
781
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
|
|
782
|
+
}
|