@aws-sdk/client-fsx 3.321.1 → 3.326.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-types/commands/AssociateFileSystemAliasesCommand.d.ts +11 -0
- package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +7 -0
- package/dist-types/commands/CopyBackupCommand.d.ts +489 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +489 -0
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +53 -0
- package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +42 -0
- package/dist-types/commands/CreateFileCacheCommand.d.ts +50 -0
- package/dist-types/commands/CreateFileSystemCommand.d.ts +466 -0
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +466 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +464 -0
- package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +63 -0
- package/dist-types/commands/CreateVolumeCommand.d.ts +464 -0
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +464 -0
- package/dist-types/commands/DeleteBackupCommand.d.ts +7 -0
- package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +8 -0
- package/dist-types/commands/DeleteFileCacheCommand.d.ts +7 -0
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +34 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +7 -0
- package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +7 -0
- package/dist-types/commands/DeleteVolumeCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBackupsCommand.d.ts +492 -0
- package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +56 -0
- package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +45 -0
- package/dist-types/commands/DescribeFileCachesCommand.d.ts +46 -0
- package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +12 -0
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +469 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +467 -0
- package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +66 -0
- package/dist-types/commands/DescribeVolumesCommand.d.ts +467 -0
- package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +466 -0
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +483 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +53 -0
- package/dist-types/commands/UpdateFileCacheCommand.d.ts +43 -0
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +466 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +464 -0
- package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +63 -0
- package/dist-types/commands/UpdateVolumeCommand.d.ts +464 -0
- package/package.json +16 -16
|
@@ -94,6 +94,54 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _
|
|
|
94
94
|
* };
|
|
95
95
|
* const command = new CreateFileCacheCommand(input);
|
|
96
96
|
* const response = await client.send(command);
|
|
97
|
+
* // { // CreateFileCacheResponse
|
|
98
|
+
* // FileCache: { // FileCacheCreating
|
|
99
|
+
* // OwnerId: "STRING_VALUE",
|
|
100
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
101
|
+
* // FileCacheId: "STRING_VALUE",
|
|
102
|
+
* // FileCacheType: "LUSTRE",
|
|
103
|
+
* // FileCacheTypeVersion: "STRING_VALUE",
|
|
104
|
+
* // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "UPDATING" || "FAILED",
|
|
105
|
+
* // FailureDetails: { // FileCacheFailureDetails
|
|
106
|
+
* // Message: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // StorageCapacity: Number("int"),
|
|
109
|
+
* // VpcId: "STRING_VALUE",
|
|
110
|
+
* // SubnetIds: [ // SubnetIds
|
|
111
|
+
* // "STRING_VALUE",
|
|
112
|
+
* // ],
|
|
113
|
+
* // NetworkInterfaceIds: [ // NetworkInterfaceIds
|
|
114
|
+
* // "STRING_VALUE",
|
|
115
|
+
* // ],
|
|
116
|
+
* // DNSName: "STRING_VALUE",
|
|
117
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
118
|
+
* // ResourceARN: "STRING_VALUE",
|
|
119
|
+
* // Tags: [ // Tags
|
|
120
|
+
* // { // Tag
|
|
121
|
+
* // Key: "STRING_VALUE", // required
|
|
122
|
+
* // Value: "STRING_VALUE", // required
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // CopyTagsToDataRepositoryAssociations: true || false,
|
|
126
|
+
* // LustreConfiguration: { // FileCacheLustreConfiguration
|
|
127
|
+
* // PerUnitStorageThroughput: Number("int"),
|
|
128
|
+
* // DeploymentType: "CACHE_1",
|
|
129
|
+
* // MountName: "STRING_VALUE",
|
|
130
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
131
|
+
* // MetadataConfiguration: { // FileCacheLustreMetadataConfiguration
|
|
132
|
+
* // StorageCapacity: Number("int"), // required
|
|
133
|
+
* // },
|
|
134
|
+
* // LogConfiguration: { // LustreLogConfiguration
|
|
135
|
+
* // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
|
|
136
|
+
* // Destination: "STRING_VALUE",
|
|
137
|
+
* // },
|
|
138
|
+
* // },
|
|
139
|
+
* // DataRepositoryAssociationIds: [ // DataRepositoryAssociationIds
|
|
140
|
+
* // "STRING_VALUE",
|
|
141
|
+
* // ],
|
|
142
|
+
* // },
|
|
143
|
+
* // };
|
|
144
|
+
*
|
|
97
145
|
* ```
|
|
98
146
|
*
|
|
99
147
|
* @param CreateFileCacheCommandInput - {@link CreateFileCacheCommandInput}
|
|
@@ -126,6 +174,8 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _
|
|
|
126
174
|
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
127
175
|
* some service limits by contacting Amazon Web Services Support.</p>
|
|
128
176
|
*
|
|
177
|
+
* @throws {@link FSxServiceException}
|
|
178
|
+
* <p>Base exception class for all service exceptions from FSx service.</p>
|
|
129
179
|
*
|
|
130
180
|
*/
|
|
131
181
|
export declare class CreateFileCacheCommand extends $Command<CreateFileCacheCommandInput, CreateFileCacheCommandOutput, FSxClientResolvedConfig> {
|
|
@@ -200,6 +200,470 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
200
200
|
* };
|
|
201
201
|
* const command = new CreateFileSystemCommand(input);
|
|
202
202
|
* const response = await client.send(command);
|
|
203
|
+
* // { // CreateFileSystemResponse
|
|
204
|
+
* // FileSystem: { // FileSystem
|
|
205
|
+
* // OwnerId: "STRING_VALUE",
|
|
206
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
207
|
+
* // FileSystemId: "STRING_VALUE",
|
|
208
|
+
* // FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS",
|
|
209
|
+
* // Lifecycle: "AVAILABLE" || "CREATING" || "FAILED" || "DELETING" || "MISCONFIGURED" || "UPDATING" || "MISCONFIGURED_UNAVAILABLE",
|
|
210
|
+
* // FailureDetails: { // FileSystemFailureDetails
|
|
211
|
+
* // Message: "STRING_VALUE",
|
|
212
|
+
* // },
|
|
213
|
+
* // StorageCapacity: Number("int"),
|
|
214
|
+
* // StorageType: "SSD" || "HDD",
|
|
215
|
+
* // VpcId: "STRING_VALUE",
|
|
216
|
+
* // SubnetIds: [ // SubnetIds
|
|
217
|
+
* // "STRING_VALUE",
|
|
218
|
+
* // ],
|
|
219
|
+
* // NetworkInterfaceIds: [ // NetworkInterfaceIds
|
|
220
|
+
* // "STRING_VALUE",
|
|
221
|
+
* // ],
|
|
222
|
+
* // DNSName: "STRING_VALUE",
|
|
223
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
224
|
+
* // ResourceARN: "STRING_VALUE",
|
|
225
|
+
* // Tags: [ // Tags
|
|
226
|
+
* // { // Tag
|
|
227
|
+
* // Key: "STRING_VALUE", // required
|
|
228
|
+
* // Value: "STRING_VALUE", // required
|
|
229
|
+
* // },
|
|
230
|
+
* // ],
|
|
231
|
+
* // WindowsConfiguration: { // WindowsFileSystemConfiguration
|
|
232
|
+
* // ActiveDirectoryId: "STRING_VALUE",
|
|
233
|
+
* // SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryAttributes
|
|
234
|
+
* // DomainName: "STRING_VALUE",
|
|
235
|
+
* // OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
236
|
+
* // FileSystemAdministratorsGroup: "STRING_VALUE",
|
|
237
|
+
* // UserName: "STRING_VALUE",
|
|
238
|
+
* // DnsIps: [ // DnsIps
|
|
239
|
+
* // "STRING_VALUE",
|
|
240
|
+
* // ],
|
|
241
|
+
* // },
|
|
242
|
+
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
|
|
243
|
+
* // RemoteAdministrationEndpoint: "STRING_VALUE",
|
|
244
|
+
* // PreferredSubnetId: "STRING_VALUE",
|
|
245
|
+
* // PreferredFileServerIp: "STRING_VALUE",
|
|
246
|
+
* // ThroughputCapacity: Number("int"),
|
|
247
|
+
* // MaintenanceOperationsInProgress: [ // FileSystemMaintenanceOperations
|
|
248
|
+
* // "PATCHING" || "BACKING_UP",
|
|
249
|
+
* // ],
|
|
250
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
251
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
252
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
253
|
+
* // CopyTagsToBackups: true || false,
|
|
254
|
+
* // Aliases: [ // Aliases
|
|
255
|
+
* // { // Alias
|
|
256
|
+
* // Name: "STRING_VALUE",
|
|
257
|
+
* // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
|
|
258
|
+
* // },
|
|
259
|
+
* // ],
|
|
260
|
+
* // AuditLogConfiguration: { // WindowsAuditLogConfiguration
|
|
261
|
+
* // FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
|
|
262
|
+
* // FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
|
|
263
|
+
* // AuditLogDestination: "STRING_VALUE",
|
|
264
|
+
* // },
|
|
265
|
+
* // },
|
|
266
|
+
* // LustreConfiguration: { // LustreFileSystemConfiguration
|
|
267
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
268
|
+
* // DataRepositoryConfiguration: { // DataRepositoryConfiguration
|
|
269
|
+
* // Lifecycle: "CREATING" || "AVAILABLE" || "MISCONFIGURED" || "UPDATING" || "DELETING" || "FAILED",
|
|
270
|
+
* // ImportPath: "STRING_VALUE",
|
|
271
|
+
* // ExportPath: "STRING_VALUE",
|
|
272
|
+
* // ImportedFileChunkSize: Number("int"),
|
|
273
|
+
* // AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
|
|
274
|
+
* // FailureDetails: { // DataRepositoryFailureDetails
|
|
275
|
+
* // Message: "STRING_VALUE",
|
|
276
|
+
* // },
|
|
277
|
+
* // },
|
|
278
|
+
* // DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
|
|
279
|
+
* // PerUnitStorageThroughput: Number("int"),
|
|
280
|
+
* // MountName: "STRING_VALUE",
|
|
281
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
282
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
283
|
+
* // CopyTagsToBackups: true || false,
|
|
284
|
+
* // DriveCacheType: "NONE" || "READ",
|
|
285
|
+
* // DataCompressionType: "NONE" || "LZ4",
|
|
286
|
+
* // LogConfiguration: { // LustreLogConfiguration
|
|
287
|
+
* // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
|
|
288
|
+
* // Destination: "STRING_VALUE",
|
|
289
|
+
* // },
|
|
290
|
+
* // RootSquashConfiguration: { // LustreRootSquashConfiguration
|
|
291
|
+
* // RootSquash: "STRING_VALUE",
|
|
292
|
+
* // NoSquashNids: [ // LustreNoSquashNids
|
|
293
|
+
* // "STRING_VALUE",
|
|
294
|
+
* // ],
|
|
295
|
+
* // },
|
|
296
|
+
* // },
|
|
297
|
+
* // AdministrativeActions: [ // AdministrativeActions
|
|
298
|
+
* // { // AdministrativeAction
|
|
299
|
+
* // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE",
|
|
300
|
+
* // ProgressPercent: Number("int"),
|
|
301
|
+
* // RequestTime: new Date("TIMESTAMP"),
|
|
302
|
+
* // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
|
|
303
|
+
* // TargetFileSystemValues: {
|
|
304
|
+
* // OwnerId: "STRING_VALUE",
|
|
305
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
306
|
+
* // FileSystemId: "STRING_VALUE",
|
|
307
|
+
* // FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS",
|
|
308
|
+
* // Lifecycle: "AVAILABLE" || "CREATING" || "FAILED" || "DELETING" || "MISCONFIGURED" || "UPDATING" || "MISCONFIGURED_UNAVAILABLE",
|
|
309
|
+
* // FailureDetails: {
|
|
310
|
+
* // Message: "STRING_VALUE",
|
|
311
|
+
* // },
|
|
312
|
+
* // StorageCapacity: Number("int"),
|
|
313
|
+
* // StorageType: "SSD" || "HDD",
|
|
314
|
+
* // VpcId: "STRING_VALUE",
|
|
315
|
+
* // SubnetIds: [
|
|
316
|
+
* // "STRING_VALUE",
|
|
317
|
+
* // ],
|
|
318
|
+
* // NetworkInterfaceIds: [
|
|
319
|
+
* // "STRING_VALUE",
|
|
320
|
+
* // ],
|
|
321
|
+
* // DNSName: "STRING_VALUE",
|
|
322
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
323
|
+
* // ResourceARN: "STRING_VALUE",
|
|
324
|
+
* // Tags: [
|
|
325
|
+
* // {
|
|
326
|
+
* // Key: "STRING_VALUE", // required
|
|
327
|
+
* // Value: "STRING_VALUE", // required
|
|
328
|
+
* // },
|
|
329
|
+
* // ],
|
|
330
|
+
* // WindowsConfiguration: {
|
|
331
|
+
* // ActiveDirectoryId: "STRING_VALUE",
|
|
332
|
+
* // SelfManagedActiveDirectoryConfiguration: {
|
|
333
|
+
* // DomainName: "STRING_VALUE",
|
|
334
|
+
* // OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
335
|
+
* // FileSystemAdministratorsGroup: "STRING_VALUE",
|
|
336
|
+
* // UserName: "STRING_VALUE",
|
|
337
|
+
* // DnsIps: [
|
|
338
|
+
* // "STRING_VALUE",
|
|
339
|
+
* // ],
|
|
340
|
+
* // },
|
|
341
|
+
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
|
|
342
|
+
* // RemoteAdministrationEndpoint: "STRING_VALUE",
|
|
343
|
+
* // PreferredSubnetId: "STRING_VALUE",
|
|
344
|
+
* // PreferredFileServerIp: "STRING_VALUE",
|
|
345
|
+
* // ThroughputCapacity: Number("int"),
|
|
346
|
+
* // MaintenanceOperationsInProgress: [
|
|
347
|
+
* // "PATCHING" || "BACKING_UP",
|
|
348
|
+
* // ],
|
|
349
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
350
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
351
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
352
|
+
* // CopyTagsToBackups: true || false,
|
|
353
|
+
* // Aliases: [
|
|
354
|
+
* // {
|
|
355
|
+
* // Name: "STRING_VALUE",
|
|
356
|
+
* // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
|
|
357
|
+
* // },
|
|
358
|
+
* // ],
|
|
359
|
+
* // AuditLogConfiguration: {
|
|
360
|
+
* // FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
|
|
361
|
+
* // FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
|
|
362
|
+
* // AuditLogDestination: "STRING_VALUE",
|
|
363
|
+
* // },
|
|
364
|
+
* // },
|
|
365
|
+
* // LustreConfiguration: {
|
|
366
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
367
|
+
* // DataRepositoryConfiguration: {
|
|
368
|
+
* // Lifecycle: "CREATING" || "AVAILABLE" || "MISCONFIGURED" || "UPDATING" || "DELETING" || "FAILED",
|
|
369
|
+
* // ImportPath: "STRING_VALUE",
|
|
370
|
+
* // ExportPath: "STRING_VALUE",
|
|
371
|
+
* // ImportedFileChunkSize: Number("int"),
|
|
372
|
+
* // AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
|
|
373
|
+
* // FailureDetails: {
|
|
374
|
+
* // Message: "STRING_VALUE",
|
|
375
|
+
* // },
|
|
376
|
+
* // },
|
|
377
|
+
* // DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
|
|
378
|
+
* // PerUnitStorageThroughput: Number("int"),
|
|
379
|
+
* // MountName: "STRING_VALUE",
|
|
380
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
381
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
382
|
+
* // CopyTagsToBackups: true || false,
|
|
383
|
+
* // DriveCacheType: "NONE" || "READ",
|
|
384
|
+
* // DataCompressionType: "NONE" || "LZ4",
|
|
385
|
+
* // LogConfiguration: {
|
|
386
|
+
* // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
|
|
387
|
+
* // Destination: "STRING_VALUE",
|
|
388
|
+
* // },
|
|
389
|
+
* // RootSquashConfiguration: {
|
|
390
|
+
* // RootSquash: "STRING_VALUE",
|
|
391
|
+
* // NoSquashNids: [
|
|
392
|
+
* // "STRING_VALUE",
|
|
393
|
+
* // ],
|
|
394
|
+
* // },
|
|
395
|
+
* // },
|
|
396
|
+
* // AdministrativeActions: [
|
|
397
|
+
* // {
|
|
398
|
+
* // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE",
|
|
399
|
+
* // ProgressPercent: Number("int"),
|
|
400
|
+
* // RequestTime: new Date("TIMESTAMP"),
|
|
401
|
+
* // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
|
|
402
|
+
* // TargetFileSystemValues: "<FileSystem>",
|
|
403
|
+
* // FailureDetails: { // AdministrativeActionFailureDetails
|
|
404
|
+
* // Message: "STRING_VALUE",
|
|
405
|
+
* // },
|
|
406
|
+
* // TargetVolumeValues: { // Volume
|
|
407
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
408
|
+
* // FileSystemId: "STRING_VALUE",
|
|
409
|
+
* // Lifecycle: "CREATING" || "CREATED" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING" || "AVAILABLE",
|
|
410
|
+
* // Name: "STRING_VALUE",
|
|
411
|
+
* // OntapConfiguration: { // OntapVolumeConfiguration
|
|
412
|
+
* // FlexCacheEndpointType: "NONE" || "ORIGIN" || "CACHE",
|
|
413
|
+
* // JunctionPath: "STRING_VALUE",
|
|
414
|
+
* // SecurityStyle: "UNIX" || "NTFS" || "MIXED",
|
|
415
|
+
* // SizeInMegabytes: Number("int"),
|
|
416
|
+
* // StorageEfficiencyEnabled: true || false,
|
|
417
|
+
* // StorageVirtualMachineId: "STRING_VALUE",
|
|
418
|
+
* // StorageVirtualMachineRoot: true || false,
|
|
419
|
+
* // TieringPolicy: { // TieringPolicy
|
|
420
|
+
* // CoolingPeriod: Number("int"),
|
|
421
|
+
* // Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
|
|
422
|
+
* // },
|
|
423
|
+
* // UUID: "STRING_VALUE",
|
|
424
|
+
* // OntapVolumeType: "RW" || "DP" || "LS",
|
|
425
|
+
* // SnapshotPolicy: "STRING_VALUE",
|
|
426
|
+
* // CopyTagsToBackups: true || false,
|
|
427
|
+
* // },
|
|
428
|
+
* // ResourceARN: "STRING_VALUE",
|
|
429
|
+
* // Tags: "<Tags>",
|
|
430
|
+
* // VolumeId: "STRING_VALUE",
|
|
431
|
+
* // VolumeType: "ONTAP" || "OPENZFS",
|
|
432
|
+
* // LifecycleTransitionReason: { // LifecycleTransitionReason
|
|
433
|
+
* // Message: "STRING_VALUE",
|
|
434
|
+
* // },
|
|
435
|
+
* // AdministrativeActions: "<AdministrativeActions>",
|
|
436
|
+
* // OpenZFSConfiguration: { // OpenZFSVolumeConfiguration
|
|
437
|
+
* // ParentVolumeId: "STRING_VALUE",
|
|
438
|
+
* // VolumePath: "STRING_VALUE",
|
|
439
|
+
* // StorageCapacityReservationGiB: Number("int"),
|
|
440
|
+
* // StorageCapacityQuotaGiB: Number("int"),
|
|
441
|
+
* // RecordSizeKiB: Number("int"),
|
|
442
|
+
* // DataCompressionType: "NONE" || "ZSTD" || "LZ4",
|
|
443
|
+
* // CopyTagsToSnapshots: true || false,
|
|
444
|
+
* // OriginSnapshot: { // OpenZFSOriginSnapshotConfiguration
|
|
445
|
+
* // SnapshotARN: "STRING_VALUE",
|
|
446
|
+
* // CopyStrategy: "CLONE" || "FULL_COPY",
|
|
447
|
+
* // },
|
|
448
|
+
* // ReadOnly: true || false,
|
|
449
|
+
* // NfsExports: [ // OpenZFSNfsExports
|
|
450
|
+
* // { // OpenZFSNfsExport
|
|
451
|
+
* // ClientConfigurations: [ // OpenZFSClientConfigurations // required
|
|
452
|
+
* // { // OpenZFSClientConfiguration
|
|
453
|
+
* // Clients: "STRING_VALUE", // required
|
|
454
|
+
* // Options: [ // OpenZFSNfsExportOptions // required
|
|
455
|
+
* // "STRING_VALUE",
|
|
456
|
+
* // ],
|
|
457
|
+
* // },
|
|
458
|
+
* // ],
|
|
459
|
+
* // },
|
|
460
|
+
* // ],
|
|
461
|
+
* // UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
|
|
462
|
+
* // { // OpenZFSUserOrGroupQuota
|
|
463
|
+
* // Type: "USER" || "GROUP", // required
|
|
464
|
+
* // Id: Number("int"), // required
|
|
465
|
+
* // StorageCapacityQuotaGiB: Number("int"), // required
|
|
466
|
+
* // },
|
|
467
|
+
* // ],
|
|
468
|
+
* // RestoreToSnapshot: "STRING_VALUE",
|
|
469
|
+
* // DeleteIntermediateSnaphots: true || false,
|
|
470
|
+
* // DeleteClonedVolumes: true || false,
|
|
471
|
+
* // },
|
|
472
|
+
* // },
|
|
473
|
+
* // TargetSnapshotValues: { // Snapshot
|
|
474
|
+
* // ResourceARN: "STRING_VALUE",
|
|
475
|
+
* // SnapshotId: "STRING_VALUE",
|
|
476
|
+
* // Name: "STRING_VALUE",
|
|
477
|
+
* // VolumeId: "STRING_VALUE",
|
|
478
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
479
|
+
* // Lifecycle: "PENDING" || "CREATING" || "DELETING" || "AVAILABLE",
|
|
480
|
+
* // LifecycleTransitionReason: {
|
|
481
|
+
* // Message: "STRING_VALUE",
|
|
482
|
+
* // },
|
|
483
|
+
* // Tags: "<Tags>",
|
|
484
|
+
* // AdministrativeActions: "<AdministrativeActions>",
|
|
485
|
+
* // },
|
|
486
|
+
* // },
|
|
487
|
+
* // ],
|
|
488
|
+
* // OntapConfiguration: { // OntapFileSystemConfiguration
|
|
489
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
490
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
491
|
+
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
|
|
492
|
+
* // EndpointIpAddressRange: "STRING_VALUE",
|
|
493
|
+
* // Endpoints: { // FileSystemEndpoints
|
|
494
|
+
* // Intercluster: { // FileSystemEndpoint
|
|
495
|
+
* // DNSName: "STRING_VALUE",
|
|
496
|
+
* // IpAddresses: [ // OntapEndpointIpAddresses
|
|
497
|
+
* // "STRING_VALUE",
|
|
498
|
+
* // ],
|
|
499
|
+
* // },
|
|
500
|
+
* // Management: {
|
|
501
|
+
* // DNSName: "STRING_VALUE",
|
|
502
|
+
* // IpAddresses: [
|
|
503
|
+
* // "STRING_VALUE",
|
|
504
|
+
* // ],
|
|
505
|
+
* // },
|
|
506
|
+
* // },
|
|
507
|
+
* // DiskIopsConfiguration: { // DiskIopsConfiguration
|
|
508
|
+
* // Mode: "AUTOMATIC" || "USER_PROVISIONED",
|
|
509
|
+
* // Iops: Number("long"),
|
|
510
|
+
* // },
|
|
511
|
+
* // PreferredSubnetId: "STRING_VALUE",
|
|
512
|
+
* // RouteTableIds: [ // RouteTableIds
|
|
513
|
+
* // "STRING_VALUE",
|
|
514
|
+
* // ],
|
|
515
|
+
* // ThroughputCapacity: Number("int"),
|
|
516
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
517
|
+
* // },
|
|
518
|
+
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
519
|
+
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
520
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
521
|
+
* // CopyTagsToBackups: true || false,
|
|
522
|
+
* // CopyTagsToVolumes: true || false,
|
|
523
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
524
|
+
* // DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2",
|
|
525
|
+
* // ThroughputCapacity: Number("int"),
|
|
526
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
527
|
+
* // DiskIopsConfiguration: {
|
|
528
|
+
* // Mode: "AUTOMATIC" || "USER_PROVISIONED",
|
|
529
|
+
* // Iops: Number("long"),
|
|
530
|
+
* // },
|
|
531
|
+
* // RootVolumeId: "STRING_VALUE",
|
|
532
|
+
* // },
|
|
533
|
+
* // },
|
|
534
|
+
* // FailureDetails: {
|
|
535
|
+
* // Message: "STRING_VALUE",
|
|
536
|
+
* // },
|
|
537
|
+
* // TargetVolumeValues: {
|
|
538
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
539
|
+
* // FileSystemId: "STRING_VALUE",
|
|
540
|
+
* // Lifecycle: "CREATING" || "CREATED" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING" || "AVAILABLE",
|
|
541
|
+
* // Name: "STRING_VALUE",
|
|
542
|
+
* // OntapConfiguration: {
|
|
543
|
+
* // FlexCacheEndpointType: "NONE" || "ORIGIN" || "CACHE",
|
|
544
|
+
* // JunctionPath: "STRING_VALUE",
|
|
545
|
+
* // SecurityStyle: "UNIX" || "NTFS" || "MIXED",
|
|
546
|
+
* // SizeInMegabytes: Number("int"),
|
|
547
|
+
* // StorageEfficiencyEnabled: true || false,
|
|
548
|
+
* // StorageVirtualMachineId: "STRING_VALUE",
|
|
549
|
+
* // StorageVirtualMachineRoot: true || false,
|
|
550
|
+
* // TieringPolicy: {
|
|
551
|
+
* // CoolingPeriod: Number("int"),
|
|
552
|
+
* // Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
|
|
553
|
+
* // },
|
|
554
|
+
* // UUID: "STRING_VALUE",
|
|
555
|
+
* // OntapVolumeType: "RW" || "DP" || "LS",
|
|
556
|
+
* // SnapshotPolicy: "STRING_VALUE",
|
|
557
|
+
* // CopyTagsToBackups: true || false,
|
|
558
|
+
* // },
|
|
559
|
+
* // ResourceARN: "STRING_VALUE",
|
|
560
|
+
* // Tags: "<Tags>",
|
|
561
|
+
* // VolumeId: "STRING_VALUE",
|
|
562
|
+
* // VolumeType: "ONTAP" || "OPENZFS",
|
|
563
|
+
* // LifecycleTransitionReason: {
|
|
564
|
+
* // Message: "STRING_VALUE",
|
|
565
|
+
* // },
|
|
566
|
+
* // AdministrativeActions: "<AdministrativeActions>",
|
|
567
|
+
* // OpenZFSConfiguration: {
|
|
568
|
+
* // ParentVolumeId: "STRING_VALUE",
|
|
569
|
+
* // VolumePath: "STRING_VALUE",
|
|
570
|
+
* // StorageCapacityReservationGiB: Number("int"),
|
|
571
|
+
* // StorageCapacityQuotaGiB: Number("int"),
|
|
572
|
+
* // RecordSizeKiB: Number("int"),
|
|
573
|
+
* // DataCompressionType: "NONE" || "ZSTD" || "LZ4",
|
|
574
|
+
* // CopyTagsToSnapshots: true || false,
|
|
575
|
+
* // OriginSnapshot: {
|
|
576
|
+
* // SnapshotARN: "STRING_VALUE",
|
|
577
|
+
* // CopyStrategy: "CLONE" || "FULL_COPY",
|
|
578
|
+
* // },
|
|
579
|
+
* // ReadOnly: true || false,
|
|
580
|
+
* // NfsExports: [
|
|
581
|
+
* // {
|
|
582
|
+
* // ClientConfigurations: [ // required
|
|
583
|
+
* // {
|
|
584
|
+
* // Clients: "STRING_VALUE", // required
|
|
585
|
+
* // Options: [ // required
|
|
586
|
+
* // "STRING_VALUE",
|
|
587
|
+
* // ],
|
|
588
|
+
* // },
|
|
589
|
+
* // ],
|
|
590
|
+
* // },
|
|
591
|
+
* // ],
|
|
592
|
+
* // UserAndGroupQuotas: [
|
|
593
|
+
* // {
|
|
594
|
+
* // Type: "USER" || "GROUP", // required
|
|
595
|
+
* // Id: Number("int"), // required
|
|
596
|
+
* // StorageCapacityQuotaGiB: Number("int"), // required
|
|
597
|
+
* // },
|
|
598
|
+
* // ],
|
|
599
|
+
* // RestoreToSnapshot: "STRING_VALUE",
|
|
600
|
+
* // DeleteIntermediateSnaphots: true || false,
|
|
601
|
+
* // DeleteClonedVolumes: true || false,
|
|
602
|
+
* // },
|
|
603
|
+
* // },
|
|
604
|
+
* // TargetSnapshotValues: {
|
|
605
|
+
* // ResourceARN: "STRING_VALUE",
|
|
606
|
+
* // SnapshotId: "STRING_VALUE",
|
|
607
|
+
* // Name: "STRING_VALUE",
|
|
608
|
+
* // VolumeId: "STRING_VALUE",
|
|
609
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
610
|
+
* // Lifecycle: "PENDING" || "CREATING" || "DELETING" || "AVAILABLE",
|
|
611
|
+
* // LifecycleTransitionReason: {
|
|
612
|
+
* // Message: "STRING_VALUE",
|
|
613
|
+
* // },
|
|
614
|
+
* // Tags: "<Tags>",
|
|
615
|
+
* // AdministrativeActions: "<AdministrativeActions>",
|
|
616
|
+
* // },
|
|
617
|
+
* // },
|
|
618
|
+
* // ],
|
|
619
|
+
* // OntapConfiguration: {
|
|
620
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
621
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
622
|
+
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
|
|
623
|
+
* // EndpointIpAddressRange: "STRING_VALUE",
|
|
624
|
+
* // Endpoints: {
|
|
625
|
+
* // Intercluster: {
|
|
626
|
+
* // DNSName: "STRING_VALUE",
|
|
627
|
+
* // IpAddresses: [
|
|
628
|
+
* // "STRING_VALUE",
|
|
629
|
+
* // ],
|
|
630
|
+
* // },
|
|
631
|
+
* // Management: {
|
|
632
|
+
* // DNSName: "STRING_VALUE",
|
|
633
|
+
* // IpAddresses: [
|
|
634
|
+
* // "STRING_VALUE",
|
|
635
|
+
* // ],
|
|
636
|
+
* // },
|
|
637
|
+
* // },
|
|
638
|
+
* // DiskIopsConfiguration: {
|
|
639
|
+
* // Mode: "AUTOMATIC" || "USER_PROVISIONED",
|
|
640
|
+
* // Iops: Number("long"),
|
|
641
|
+
* // },
|
|
642
|
+
* // PreferredSubnetId: "STRING_VALUE",
|
|
643
|
+
* // RouteTableIds: [
|
|
644
|
+
* // "STRING_VALUE",
|
|
645
|
+
* // ],
|
|
646
|
+
* // ThroughputCapacity: Number("int"),
|
|
647
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
648
|
+
* // },
|
|
649
|
+
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
650
|
+
* // OpenZFSConfiguration: {
|
|
651
|
+
* // AutomaticBackupRetentionDays: Number("int"),
|
|
652
|
+
* // CopyTagsToBackups: true || false,
|
|
653
|
+
* // CopyTagsToVolumes: true || false,
|
|
654
|
+
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
655
|
+
* // DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2",
|
|
656
|
+
* // ThroughputCapacity: Number("int"),
|
|
657
|
+
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
658
|
+
* // DiskIopsConfiguration: {
|
|
659
|
+
* // Mode: "AUTOMATIC" || "USER_PROVISIONED",
|
|
660
|
+
* // Iops: Number("long"),
|
|
661
|
+
* // },
|
|
662
|
+
* // RootVolumeId: "STRING_VALUE",
|
|
663
|
+
* // },
|
|
664
|
+
* // },
|
|
665
|
+
* // };
|
|
666
|
+
*
|
|
203
667
|
* ```
|
|
204
668
|
*
|
|
205
669
|
* @param CreateFileSystemCommandInput - {@link CreateFileSystemCommandInput}
|
|
@@ -241,6 +705,8 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
241
705
|
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
242
706
|
* some service limits by contacting Amazon Web Services Support.</p>
|
|
243
707
|
*
|
|
708
|
+
* @throws {@link FSxServiceException}
|
|
709
|
+
* <p>Base exception class for all service exceptions from FSx service.</p>
|
|
244
710
|
*
|
|
245
711
|
* @example To create a new file system
|
|
246
712
|
* ```javascript
|