@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.
Files changed (42) hide show
  1. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +11 -0
  2. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +7 -0
  3. package/dist-types/commands/CopyBackupCommand.d.ts +489 -0
  4. package/dist-types/commands/CreateBackupCommand.d.ts +489 -0
  5. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +53 -0
  6. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +42 -0
  7. package/dist-types/commands/CreateFileCacheCommand.d.ts +50 -0
  8. package/dist-types/commands/CreateFileSystemCommand.d.ts +466 -0
  9. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +466 -0
  10. package/dist-types/commands/CreateSnapshotCommand.d.ts +464 -0
  11. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +63 -0
  12. package/dist-types/commands/CreateVolumeCommand.d.ts +464 -0
  13. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +464 -0
  14. package/dist-types/commands/DeleteBackupCommand.d.ts +7 -0
  15. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +8 -0
  16. package/dist-types/commands/DeleteFileCacheCommand.d.ts +7 -0
  17. package/dist-types/commands/DeleteFileSystemCommand.d.ts +34 -0
  18. package/dist-types/commands/DeleteSnapshotCommand.d.ts +7 -0
  19. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +7 -0
  20. package/dist-types/commands/DeleteVolumeCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeBackupsCommand.d.ts +492 -0
  22. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +56 -0
  23. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +45 -0
  24. package/dist-types/commands/DescribeFileCachesCommand.d.ts +46 -0
  25. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +12 -0
  26. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +469 -0
  27. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +467 -0
  28. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +66 -0
  29. package/dist-types/commands/DescribeVolumesCommand.d.ts +467 -0
  30. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +11 -0
  31. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  32. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +466 -0
  33. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +483 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  36. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +53 -0
  37. package/dist-types/commands/UpdateFileCacheCommand.d.ts +43 -0
  38. package/dist-types/commands/UpdateFileSystemCommand.d.ts +466 -0
  39. package/dist-types/commands/UpdateSnapshotCommand.d.ts +464 -0
  40. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +63 -0
  41. package/dist-types/commands/UpdateVolumeCommand.d.ts +464 -0
  42. package/package.json +16 -16
@@ -69,6 +69,471 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
69
69
  * };
70
70
  * const command = new DescribeSnapshotsCommand(input);
71
71
  * const response = await client.send(command);
72
+ * // { // DescribeSnapshotsResponse
73
+ * // Snapshots: [ // Snapshots
74
+ * // { // Snapshot
75
+ * // ResourceARN: "STRING_VALUE",
76
+ * // SnapshotId: "STRING_VALUE",
77
+ * // Name: "STRING_VALUE",
78
+ * // VolumeId: "STRING_VALUE",
79
+ * // CreationTime: new Date("TIMESTAMP"),
80
+ * // Lifecycle: "PENDING" || "CREATING" || "DELETING" || "AVAILABLE",
81
+ * // LifecycleTransitionReason: { // LifecycleTransitionReason
82
+ * // Message: "STRING_VALUE",
83
+ * // },
84
+ * // Tags: [ // Tags
85
+ * // { // Tag
86
+ * // Key: "STRING_VALUE", // required
87
+ * // Value: "STRING_VALUE", // required
88
+ * // },
89
+ * // ],
90
+ * // AdministrativeActions: [ // AdministrativeActions
91
+ * // { // AdministrativeAction
92
+ * // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE",
93
+ * // ProgressPercent: Number("int"),
94
+ * // RequestTime: new Date("TIMESTAMP"),
95
+ * // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
96
+ * // TargetFileSystemValues: { // FileSystem
97
+ * // OwnerId: "STRING_VALUE",
98
+ * // CreationTime: new Date("TIMESTAMP"),
99
+ * // FileSystemId: "STRING_VALUE",
100
+ * // FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS",
101
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "FAILED" || "DELETING" || "MISCONFIGURED" || "UPDATING" || "MISCONFIGURED_UNAVAILABLE",
102
+ * // FailureDetails: { // FileSystemFailureDetails
103
+ * // Message: "STRING_VALUE",
104
+ * // },
105
+ * // StorageCapacity: Number("int"),
106
+ * // StorageType: "SSD" || "HDD",
107
+ * // VpcId: "STRING_VALUE",
108
+ * // SubnetIds: [ // SubnetIds
109
+ * // "STRING_VALUE",
110
+ * // ],
111
+ * // NetworkInterfaceIds: [ // NetworkInterfaceIds
112
+ * // "STRING_VALUE",
113
+ * // ],
114
+ * // DNSName: "STRING_VALUE",
115
+ * // KmsKeyId: "STRING_VALUE",
116
+ * // ResourceARN: "STRING_VALUE",
117
+ * // Tags: [
118
+ * // {
119
+ * // Key: "STRING_VALUE", // required
120
+ * // Value: "STRING_VALUE", // required
121
+ * // },
122
+ * // ],
123
+ * // WindowsConfiguration: { // WindowsFileSystemConfiguration
124
+ * // ActiveDirectoryId: "STRING_VALUE",
125
+ * // SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryAttributes
126
+ * // DomainName: "STRING_VALUE",
127
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
128
+ * // FileSystemAdministratorsGroup: "STRING_VALUE",
129
+ * // UserName: "STRING_VALUE",
130
+ * // DnsIps: [ // DnsIps
131
+ * // "STRING_VALUE",
132
+ * // ],
133
+ * // },
134
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
135
+ * // RemoteAdministrationEndpoint: "STRING_VALUE",
136
+ * // PreferredSubnetId: "STRING_VALUE",
137
+ * // PreferredFileServerIp: "STRING_VALUE",
138
+ * // ThroughputCapacity: Number("int"),
139
+ * // MaintenanceOperationsInProgress: [ // FileSystemMaintenanceOperations
140
+ * // "PATCHING" || "BACKING_UP",
141
+ * // ],
142
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
143
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
144
+ * // AutomaticBackupRetentionDays: Number("int"),
145
+ * // CopyTagsToBackups: true || false,
146
+ * // Aliases: [ // Aliases
147
+ * // { // Alias
148
+ * // Name: "STRING_VALUE",
149
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
150
+ * // },
151
+ * // ],
152
+ * // AuditLogConfiguration: { // WindowsAuditLogConfiguration
153
+ * // FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
154
+ * // FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
155
+ * // AuditLogDestination: "STRING_VALUE",
156
+ * // },
157
+ * // },
158
+ * // LustreConfiguration: { // LustreFileSystemConfiguration
159
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
160
+ * // DataRepositoryConfiguration: { // DataRepositoryConfiguration
161
+ * // Lifecycle: "CREATING" || "AVAILABLE" || "MISCONFIGURED" || "UPDATING" || "DELETING" || "FAILED",
162
+ * // ImportPath: "STRING_VALUE",
163
+ * // ExportPath: "STRING_VALUE",
164
+ * // ImportedFileChunkSize: Number("int"),
165
+ * // AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
166
+ * // FailureDetails: { // DataRepositoryFailureDetails
167
+ * // Message: "STRING_VALUE",
168
+ * // },
169
+ * // },
170
+ * // DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
171
+ * // PerUnitStorageThroughput: Number("int"),
172
+ * // MountName: "STRING_VALUE",
173
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
174
+ * // AutomaticBackupRetentionDays: Number("int"),
175
+ * // CopyTagsToBackups: true || false,
176
+ * // DriveCacheType: "NONE" || "READ",
177
+ * // DataCompressionType: "NONE" || "LZ4",
178
+ * // LogConfiguration: { // LustreLogConfiguration
179
+ * // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
180
+ * // Destination: "STRING_VALUE",
181
+ * // },
182
+ * // RootSquashConfiguration: { // LustreRootSquashConfiguration
183
+ * // RootSquash: "STRING_VALUE",
184
+ * // NoSquashNids: [ // LustreNoSquashNids
185
+ * // "STRING_VALUE",
186
+ * // ],
187
+ * // },
188
+ * // },
189
+ * // AdministrativeActions: [
190
+ * // {
191
+ * // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE",
192
+ * // ProgressPercent: Number("int"),
193
+ * // RequestTime: new Date("TIMESTAMP"),
194
+ * // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
195
+ * // TargetFileSystemValues: {
196
+ * // OwnerId: "STRING_VALUE",
197
+ * // CreationTime: new Date("TIMESTAMP"),
198
+ * // FileSystemId: "STRING_VALUE",
199
+ * // FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS",
200
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "FAILED" || "DELETING" || "MISCONFIGURED" || "UPDATING" || "MISCONFIGURED_UNAVAILABLE",
201
+ * // FailureDetails: {
202
+ * // Message: "STRING_VALUE",
203
+ * // },
204
+ * // StorageCapacity: Number("int"),
205
+ * // StorageType: "SSD" || "HDD",
206
+ * // VpcId: "STRING_VALUE",
207
+ * // SubnetIds: [
208
+ * // "STRING_VALUE",
209
+ * // ],
210
+ * // NetworkInterfaceIds: [
211
+ * // "STRING_VALUE",
212
+ * // ],
213
+ * // DNSName: "STRING_VALUE",
214
+ * // KmsKeyId: "STRING_VALUE",
215
+ * // ResourceARN: "STRING_VALUE",
216
+ * // Tags: "<Tags>",
217
+ * // WindowsConfiguration: {
218
+ * // ActiveDirectoryId: "STRING_VALUE",
219
+ * // SelfManagedActiveDirectoryConfiguration: {
220
+ * // DomainName: "STRING_VALUE",
221
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
222
+ * // FileSystemAdministratorsGroup: "STRING_VALUE",
223
+ * // UserName: "STRING_VALUE",
224
+ * // DnsIps: [
225
+ * // "STRING_VALUE",
226
+ * // ],
227
+ * // },
228
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
229
+ * // RemoteAdministrationEndpoint: "STRING_VALUE",
230
+ * // PreferredSubnetId: "STRING_VALUE",
231
+ * // PreferredFileServerIp: "STRING_VALUE",
232
+ * // ThroughputCapacity: Number("int"),
233
+ * // MaintenanceOperationsInProgress: [
234
+ * // "PATCHING" || "BACKING_UP",
235
+ * // ],
236
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
237
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
238
+ * // AutomaticBackupRetentionDays: Number("int"),
239
+ * // CopyTagsToBackups: true || false,
240
+ * // Aliases: [
241
+ * // {
242
+ * // Name: "STRING_VALUE",
243
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
244
+ * // },
245
+ * // ],
246
+ * // AuditLogConfiguration: {
247
+ * // FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
248
+ * // FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
249
+ * // AuditLogDestination: "STRING_VALUE",
250
+ * // },
251
+ * // },
252
+ * // LustreConfiguration: {
253
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
254
+ * // DataRepositoryConfiguration: {
255
+ * // Lifecycle: "CREATING" || "AVAILABLE" || "MISCONFIGURED" || "UPDATING" || "DELETING" || "FAILED",
256
+ * // ImportPath: "STRING_VALUE",
257
+ * // ExportPath: "STRING_VALUE",
258
+ * // ImportedFileChunkSize: Number("int"),
259
+ * // AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
260
+ * // FailureDetails: {
261
+ * // Message: "STRING_VALUE",
262
+ * // },
263
+ * // },
264
+ * // DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
265
+ * // PerUnitStorageThroughput: Number("int"),
266
+ * // MountName: "STRING_VALUE",
267
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
268
+ * // AutomaticBackupRetentionDays: Number("int"),
269
+ * // CopyTagsToBackups: true || false,
270
+ * // DriveCacheType: "NONE" || "READ",
271
+ * // DataCompressionType: "NONE" || "LZ4",
272
+ * // LogConfiguration: {
273
+ * // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
274
+ * // Destination: "STRING_VALUE",
275
+ * // },
276
+ * // RootSquashConfiguration: {
277
+ * // RootSquash: "STRING_VALUE",
278
+ * // NoSquashNids: [
279
+ * // "STRING_VALUE",
280
+ * // ],
281
+ * // },
282
+ * // },
283
+ * // AdministrativeActions: "<AdministrativeActions>",
284
+ * // OntapConfiguration: { // OntapFileSystemConfiguration
285
+ * // AutomaticBackupRetentionDays: Number("int"),
286
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
287
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
288
+ * // EndpointIpAddressRange: "STRING_VALUE",
289
+ * // Endpoints: { // FileSystemEndpoints
290
+ * // Intercluster: { // FileSystemEndpoint
291
+ * // DNSName: "STRING_VALUE",
292
+ * // IpAddresses: [ // OntapEndpointIpAddresses
293
+ * // "STRING_VALUE",
294
+ * // ],
295
+ * // },
296
+ * // Management: {
297
+ * // DNSName: "STRING_VALUE",
298
+ * // IpAddresses: [
299
+ * // "STRING_VALUE",
300
+ * // ],
301
+ * // },
302
+ * // },
303
+ * // DiskIopsConfiguration: { // DiskIopsConfiguration
304
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
305
+ * // Iops: Number("long"),
306
+ * // },
307
+ * // PreferredSubnetId: "STRING_VALUE",
308
+ * // RouteTableIds: [ // RouteTableIds
309
+ * // "STRING_VALUE",
310
+ * // ],
311
+ * // ThroughputCapacity: Number("int"),
312
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
313
+ * // },
314
+ * // FileSystemTypeVersion: "STRING_VALUE",
315
+ * // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
316
+ * // AutomaticBackupRetentionDays: Number("int"),
317
+ * // CopyTagsToBackups: true || false,
318
+ * // CopyTagsToVolumes: true || false,
319
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
320
+ * // DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2",
321
+ * // ThroughputCapacity: Number("int"),
322
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
323
+ * // DiskIopsConfiguration: {
324
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
325
+ * // Iops: Number("long"),
326
+ * // },
327
+ * // RootVolumeId: "STRING_VALUE",
328
+ * // },
329
+ * // },
330
+ * // FailureDetails: { // AdministrativeActionFailureDetails
331
+ * // Message: "STRING_VALUE",
332
+ * // },
333
+ * // TargetVolumeValues: { // Volume
334
+ * // CreationTime: new Date("TIMESTAMP"),
335
+ * // FileSystemId: "STRING_VALUE",
336
+ * // Lifecycle: "CREATING" || "CREATED" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING" || "AVAILABLE",
337
+ * // Name: "STRING_VALUE",
338
+ * // OntapConfiguration: { // OntapVolumeConfiguration
339
+ * // FlexCacheEndpointType: "NONE" || "ORIGIN" || "CACHE",
340
+ * // JunctionPath: "STRING_VALUE",
341
+ * // SecurityStyle: "UNIX" || "NTFS" || "MIXED",
342
+ * // SizeInMegabytes: Number("int"),
343
+ * // StorageEfficiencyEnabled: true || false,
344
+ * // StorageVirtualMachineId: "STRING_VALUE",
345
+ * // StorageVirtualMachineRoot: true || false,
346
+ * // TieringPolicy: { // TieringPolicy
347
+ * // CoolingPeriod: Number("int"),
348
+ * // Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
349
+ * // },
350
+ * // UUID: "STRING_VALUE",
351
+ * // OntapVolumeType: "RW" || "DP" || "LS",
352
+ * // SnapshotPolicy: "STRING_VALUE",
353
+ * // CopyTagsToBackups: true || false,
354
+ * // },
355
+ * // ResourceARN: "STRING_VALUE",
356
+ * // Tags: "<Tags>",
357
+ * // VolumeId: "STRING_VALUE",
358
+ * // VolumeType: "ONTAP" || "OPENZFS",
359
+ * // LifecycleTransitionReason: {
360
+ * // Message: "STRING_VALUE",
361
+ * // },
362
+ * // AdministrativeActions: "<AdministrativeActions>",
363
+ * // OpenZFSConfiguration: { // OpenZFSVolumeConfiguration
364
+ * // ParentVolumeId: "STRING_VALUE",
365
+ * // VolumePath: "STRING_VALUE",
366
+ * // StorageCapacityReservationGiB: Number("int"),
367
+ * // StorageCapacityQuotaGiB: Number("int"),
368
+ * // RecordSizeKiB: Number("int"),
369
+ * // DataCompressionType: "NONE" || "ZSTD" || "LZ4",
370
+ * // CopyTagsToSnapshots: true || false,
371
+ * // OriginSnapshot: { // OpenZFSOriginSnapshotConfiguration
372
+ * // SnapshotARN: "STRING_VALUE",
373
+ * // CopyStrategy: "CLONE" || "FULL_COPY",
374
+ * // },
375
+ * // ReadOnly: true || false,
376
+ * // NfsExports: [ // OpenZFSNfsExports
377
+ * // { // OpenZFSNfsExport
378
+ * // ClientConfigurations: [ // OpenZFSClientConfigurations // required
379
+ * // { // OpenZFSClientConfiguration
380
+ * // Clients: "STRING_VALUE", // required
381
+ * // Options: [ // OpenZFSNfsExportOptions // required
382
+ * // "STRING_VALUE",
383
+ * // ],
384
+ * // },
385
+ * // ],
386
+ * // },
387
+ * // ],
388
+ * // UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
389
+ * // { // OpenZFSUserOrGroupQuota
390
+ * // Type: "USER" || "GROUP", // required
391
+ * // Id: Number("int"), // required
392
+ * // StorageCapacityQuotaGiB: Number("int"), // required
393
+ * // },
394
+ * // ],
395
+ * // RestoreToSnapshot: "STRING_VALUE",
396
+ * // DeleteIntermediateSnaphots: true || false,
397
+ * // DeleteClonedVolumes: true || false,
398
+ * // },
399
+ * // },
400
+ * // TargetSnapshotValues: {
401
+ * // ResourceARN: "STRING_VALUE",
402
+ * // SnapshotId: "STRING_VALUE",
403
+ * // Name: "STRING_VALUE",
404
+ * // VolumeId: "STRING_VALUE",
405
+ * // CreationTime: new Date("TIMESTAMP"),
406
+ * // Lifecycle: "PENDING" || "CREATING" || "DELETING" || "AVAILABLE",
407
+ * // LifecycleTransitionReason: {
408
+ * // Message: "STRING_VALUE",
409
+ * // },
410
+ * // Tags: "<Tags>",
411
+ * // AdministrativeActions: "<AdministrativeActions>",
412
+ * // },
413
+ * // },
414
+ * // ],
415
+ * // OntapConfiguration: {
416
+ * // AutomaticBackupRetentionDays: Number("int"),
417
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
418
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
419
+ * // EndpointIpAddressRange: "STRING_VALUE",
420
+ * // Endpoints: {
421
+ * // Intercluster: {
422
+ * // DNSName: "STRING_VALUE",
423
+ * // IpAddresses: [
424
+ * // "STRING_VALUE",
425
+ * // ],
426
+ * // },
427
+ * // Management: {
428
+ * // DNSName: "STRING_VALUE",
429
+ * // IpAddresses: [
430
+ * // "STRING_VALUE",
431
+ * // ],
432
+ * // },
433
+ * // },
434
+ * // DiskIopsConfiguration: {
435
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
436
+ * // Iops: Number("long"),
437
+ * // },
438
+ * // PreferredSubnetId: "STRING_VALUE",
439
+ * // RouteTableIds: [
440
+ * // "STRING_VALUE",
441
+ * // ],
442
+ * // ThroughputCapacity: Number("int"),
443
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
444
+ * // },
445
+ * // FileSystemTypeVersion: "STRING_VALUE",
446
+ * // OpenZFSConfiguration: {
447
+ * // AutomaticBackupRetentionDays: Number("int"),
448
+ * // CopyTagsToBackups: true || false,
449
+ * // CopyTagsToVolumes: true || false,
450
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
451
+ * // DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2",
452
+ * // ThroughputCapacity: Number("int"),
453
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
454
+ * // DiskIopsConfiguration: {
455
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
456
+ * // Iops: Number("long"),
457
+ * // },
458
+ * // RootVolumeId: "STRING_VALUE",
459
+ * // },
460
+ * // },
461
+ * // FailureDetails: {
462
+ * // Message: "STRING_VALUE",
463
+ * // },
464
+ * // TargetVolumeValues: {
465
+ * // CreationTime: new Date("TIMESTAMP"),
466
+ * // FileSystemId: "STRING_VALUE",
467
+ * // Lifecycle: "CREATING" || "CREATED" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING" || "AVAILABLE",
468
+ * // Name: "STRING_VALUE",
469
+ * // OntapConfiguration: {
470
+ * // FlexCacheEndpointType: "NONE" || "ORIGIN" || "CACHE",
471
+ * // JunctionPath: "STRING_VALUE",
472
+ * // SecurityStyle: "UNIX" || "NTFS" || "MIXED",
473
+ * // SizeInMegabytes: Number("int"),
474
+ * // StorageEfficiencyEnabled: true || false,
475
+ * // StorageVirtualMachineId: "STRING_VALUE",
476
+ * // StorageVirtualMachineRoot: true || false,
477
+ * // TieringPolicy: {
478
+ * // CoolingPeriod: Number("int"),
479
+ * // Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
480
+ * // },
481
+ * // UUID: "STRING_VALUE",
482
+ * // OntapVolumeType: "RW" || "DP" || "LS",
483
+ * // SnapshotPolicy: "STRING_VALUE",
484
+ * // CopyTagsToBackups: true || false,
485
+ * // },
486
+ * // ResourceARN: "STRING_VALUE",
487
+ * // Tags: "<Tags>",
488
+ * // VolumeId: "STRING_VALUE",
489
+ * // VolumeType: "ONTAP" || "OPENZFS",
490
+ * // LifecycleTransitionReason: "<LifecycleTransitionReason>",
491
+ * // AdministrativeActions: "<AdministrativeActions>",
492
+ * // OpenZFSConfiguration: {
493
+ * // ParentVolumeId: "STRING_VALUE",
494
+ * // VolumePath: "STRING_VALUE",
495
+ * // StorageCapacityReservationGiB: Number("int"),
496
+ * // StorageCapacityQuotaGiB: Number("int"),
497
+ * // RecordSizeKiB: Number("int"),
498
+ * // DataCompressionType: "NONE" || "ZSTD" || "LZ4",
499
+ * // CopyTagsToSnapshots: true || false,
500
+ * // OriginSnapshot: {
501
+ * // SnapshotARN: "STRING_VALUE",
502
+ * // CopyStrategy: "CLONE" || "FULL_COPY",
503
+ * // },
504
+ * // ReadOnly: true || false,
505
+ * // NfsExports: [
506
+ * // {
507
+ * // ClientConfigurations: [ // required
508
+ * // {
509
+ * // Clients: "STRING_VALUE", // required
510
+ * // Options: [ // required
511
+ * // "STRING_VALUE",
512
+ * // ],
513
+ * // },
514
+ * // ],
515
+ * // },
516
+ * // ],
517
+ * // UserAndGroupQuotas: [
518
+ * // {
519
+ * // Type: "USER" || "GROUP", // required
520
+ * // Id: Number("int"), // required
521
+ * // StorageCapacityQuotaGiB: Number("int"), // required
522
+ * // },
523
+ * // ],
524
+ * // RestoreToSnapshot: "STRING_VALUE",
525
+ * // DeleteIntermediateSnaphots: true || false,
526
+ * // DeleteClonedVolumes: true || false,
527
+ * // },
528
+ * // },
529
+ * // TargetSnapshotValues: "<Snapshot>",
530
+ * // },
531
+ * // ],
532
+ * // },
533
+ * // ],
534
+ * // NextToken: "STRING_VALUE",
535
+ * // };
536
+ *
72
537
  * ```
73
538
  *
74
539
  * @param DescribeSnapshotsCommandInput - {@link DescribeSnapshotsCommandInput}
@@ -86,6 +551,8 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
86
551
  * @throws {@link SnapshotNotFound} (client fault)
87
552
  * <p>No Amazon FSx snapshots were found based on the supplied parameters.</p>
88
553
  *
554
+ * @throws {@link FSxServiceException}
555
+ * <p>Base exception class for all service exceptions from FSx service.</p>
89
556
  *
90
557
  */
91
558
  export declare class DescribeSnapshotsCommand extends $Command<DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput, FSxClientResolvedConfig> {
@@ -43,6 +43,70 @@ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
43
43
  * };
44
44
  * const command = new DescribeStorageVirtualMachinesCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // DescribeStorageVirtualMachinesResponse
47
+ * // StorageVirtualMachines: [ // StorageVirtualMachines
48
+ * // { // StorageVirtualMachine
49
+ * // ActiveDirectoryConfiguration: { // SvmActiveDirectoryConfiguration
50
+ * // NetBiosName: "STRING_VALUE",
51
+ * // SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryAttributes
52
+ * // DomainName: "STRING_VALUE",
53
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
54
+ * // FileSystemAdministratorsGroup: "STRING_VALUE",
55
+ * // UserName: "STRING_VALUE",
56
+ * // DnsIps: [ // DnsIps
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // },
60
+ * // },
61
+ * // CreationTime: new Date("TIMESTAMP"),
62
+ * // Endpoints: { // SvmEndpoints
63
+ * // Iscsi: { // SvmEndpoint
64
+ * // DNSName: "STRING_VALUE",
65
+ * // IpAddresses: [ // OntapEndpointIpAddresses
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // },
69
+ * // Management: {
70
+ * // DNSName: "STRING_VALUE",
71
+ * // IpAddresses: [
72
+ * // "STRING_VALUE",
73
+ * // ],
74
+ * // },
75
+ * // Nfs: {
76
+ * // DNSName: "STRING_VALUE",
77
+ * // IpAddresses: [
78
+ * // "STRING_VALUE",
79
+ * // ],
80
+ * // },
81
+ * // Smb: {
82
+ * // DNSName: "STRING_VALUE",
83
+ * // IpAddresses: [
84
+ * // "STRING_VALUE",
85
+ * // ],
86
+ * // },
87
+ * // },
88
+ * // FileSystemId: "STRING_VALUE",
89
+ * // Lifecycle: "CREATED" || "CREATING" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING",
90
+ * // Name: "STRING_VALUE",
91
+ * // ResourceARN: "STRING_VALUE",
92
+ * // StorageVirtualMachineId: "STRING_VALUE",
93
+ * // Subtype: "DEFAULT" || "DP_DESTINATION" || "SYNC_DESTINATION" || "SYNC_SOURCE",
94
+ * // UUID: "STRING_VALUE",
95
+ * // Tags: [ // Tags
96
+ * // { // Tag
97
+ * // Key: "STRING_VALUE", // required
98
+ * // Value: "STRING_VALUE", // required
99
+ * // },
100
+ * // ],
101
+ * // LifecycleTransitionReason: { // LifecycleTransitionReason
102
+ * // Message: "STRING_VALUE",
103
+ * // },
104
+ * // RootVolumeSecurityStyle: "UNIX" || "NTFS" || "MIXED",
105
+ * // },
106
+ * // ],
107
+ * // NextToken: "STRING_VALUE",
108
+ * // };
109
+ *
46
110
  * ```
47
111
  *
48
112
  * @param DescribeStorageVirtualMachinesCommandInput - {@link DescribeStorageVirtualMachinesCommandInput}
@@ -60,6 +124,8 @@ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
60
124
  * @throws {@link StorageVirtualMachineNotFound} (client fault)
61
125
  * <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
62
126
  *
127
+ * @throws {@link FSxServiceException}
128
+ * <p>Base exception class for all service exceptions from FSx service.</p>
63
129
  *
64
130
  */
65
131
  export declare class DescribeStorageVirtualMachinesCommand extends $Command<DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput, FSxClientResolvedConfig> {