@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
@@ -52,6 +52,49 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
52
52
  * };
53
53
  * const command = new DescribeDataRepositoryTasksCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // DescribeDataRepositoryTasksResponse
56
+ * // DataRepositoryTasks: [ // DataRepositoryTasks
57
+ * // { // DataRepositoryTask
58
+ * // TaskId: "STRING_VALUE", // required
59
+ * // Lifecycle: "PENDING" || "EXECUTING" || "FAILED" || "SUCCEEDED" || "CANCELED" || "CANCELING", // required
60
+ * // Type: "EXPORT_TO_REPOSITORY" || "IMPORT_METADATA_FROM_REPOSITORY" || "RELEASE_DATA_FROM_FILESYSTEM" || "AUTO_RELEASE_DATA", // required
61
+ * // CreationTime: new Date("TIMESTAMP"), // required
62
+ * // StartTime: new Date("TIMESTAMP"),
63
+ * // EndTime: new Date("TIMESTAMP"),
64
+ * // ResourceARN: "STRING_VALUE",
65
+ * // Tags: [ // Tags
66
+ * // { // Tag
67
+ * // Key: "STRING_VALUE", // required
68
+ * // Value: "STRING_VALUE", // required
69
+ * // },
70
+ * // ],
71
+ * // FileSystemId: "STRING_VALUE",
72
+ * // Paths: [ // DataRepositoryTaskPaths
73
+ * // "STRING_VALUE",
74
+ * // ],
75
+ * // FailureDetails: { // DataRepositoryTaskFailureDetails
76
+ * // Message: "STRING_VALUE",
77
+ * // },
78
+ * // Status: { // DataRepositoryTaskStatus
79
+ * // TotalCount: Number("long"),
80
+ * // SucceededCount: Number("long"),
81
+ * // FailedCount: Number("long"),
82
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
83
+ * // ReleasedCapacity: Number("long"),
84
+ * // },
85
+ * // Report: { // CompletionReport
86
+ * // Enabled: true || false, // required
87
+ * // Path: "STRING_VALUE",
88
+ * // Format: "REPORT_CSV_20191124",
89
+ * // Scope: "FAILED_FILES_ONLY",
90
+ * // },
91
+ * // CapacityToRelease: Number("long"),
92
+ * // FileCacheId: "STRING_VALUE",
93
+ * // },
94
+ * // ],
95
+ * // NextToken: "STRING_VALUE",
96
+ * // };
97
+ *
55
98
  * ```
56
99
  *
57
100
  * @param DescribeDataRepositoryTasksCommandInput - {@link DescribeDataRepositoryTasksCommandInput}
@@ -72,6 +115,8 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
72
115
  * @throws {@link InternalServerError} (server fault)
73
116
  * <p>A generic error indicating a server-side failure.</p>
74
117
  *
118
+ * @throws {@link FSxServiceException}
119
+ * <p>Base exception class for all service exceptions from FSx service.</p>
75
120
  *
76
121
  */
77
122
  export declare class DescribeDataRepositoryTasksCommand extends $Command<DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCommandOutput, FSxClientResolvedConfig> {
@@ -62,6 +62,50 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
62
62
  * };
63
63
  * const command = new DescribeFileCachesCommand(input);
64
64
  * const response = await client.send(command);
65
+ * // { // DescribeFileCachesResponse
66
+ * // FileCaches: [ // FileCaches
67
+ * // { // FileCache
68
+ * // OwnerId: "STRING_VALUE",
69
+ * // CreationTime: new Date("TIMESTAMP"),
70
+ * // FileCacheId: "STRING_VALUE",
71
+ * // FileCacheType: "LUSTRE",
72
+ * // FileCacheTypeVersion: "STRING_VALUE",
73
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "UPDATING" || "FAILED",
74
+ * // FailureDetails: { // FileCacheFailureDetails
75
+ * // Message: "STRING_VALUE",
76
+ * // },
77
+ * // StorageCapacity: Number("int"),
78
+ * // VpcId: "STRING_VALUE",
79
+ * // SubnetIds: [ // SubnetIds
80
+ * // "STRING_VALUE",
81
+ * // ],
82
+ * // NetworkInterfaceIds: [ // NetworkInterfaceIds
83
+ * // "STRING_VALUE",
84
+ * // ],
85
+ * // DNSName: "STRING_VALUE",
86
+ * // KmsKeyId: "STRING_VALUE",
87
+ * // ResourceARN: "STRING_VALUE",
88
+ * // LustreConfiguration: { // FileCacheLustreConfiguration
89
+ * // PerUnitStorageThroughput: Number("int"),
90
+ * // DeploymentType: "CACHE_1",
91
+ * // MountName: "STRING_VALUE",
92
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
93
+ * // MetadataConfiguration: { // FileCacheLustreMetadataConfiguration
94
+ * // StorageCapacity: Number("int"), // required
95
+ * // },
96
+ * // LogConfiguration: { // LustreLogConfiguration
97
+ * // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
98
+ * // Destination: "STRING_VALUE",
99
+ * // },
100
+ * // },
101
+ * // DataRepositoryAssociationIds: [ // DataRepositoryAssociationIds
102
+ * // "STRING_VALUE",
103
+ * // ],
104
+ * // },
105
+ * // ],
106
+ * // NextToken: "STRING_VALUE",
107
+ * // };
108
+ *
65
109
  * ```
66
110
  *
67
111
  * @param DescribeFileCachesCommandInput - {@link DescribeFileCachesCommandInput}
@@ -79,6 +123,8 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
79
123
  * @throws {@link InternalServerError} (server fault)
80
124
  * <p>A generic error indicating a server-side failure.</p>
81
125
  *
126
+ * @throws {@link FSxServiceException}
127
+ * <p>Base exception class for all service exceptions from FSx service.</p>
82
128
  *
83
129
  */
84
130
  export declare class DescribeFileCachesCommand extends $Command<DescribeFileCachesCommandInput, DescribeFileCachesCommandOutput, FSxClientResolvedConfig> {
@@ -36,6 +36,16 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
36
36
  * };
37
37
  * const command = new DescribeFileSystemAliasesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeFileSystemAliasesResponse
40
+ * // Aliases: [ // Aliases
41
+ * // { // Alias
42
+ * // Name: "STRING_VALUE",
43
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
44
+ * // },
45
+ * // ],
46
+ * // NextToken: "STRING_VALUE",
47
+ * // };
48
+ *
39
49
  * ```
40
50
  *
41
51
  * @param DescribeFileSystemAliasesCommandInput - {@link DescribeFileSystemAliasesCommandInput}
@@ -53,6 +63,8 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
53
63
  * @throws {@link InternalServerError} (server fault)
54
64
  * <p>A generic error indicating a server-side failure.</p>
55
65
  *
66
+ * @throws {@link FSxServiceException}
67
+ * <p>Base exception class for all service exceptions from FSx service.</p>
56
68
  *
57
69
  */
58
70
  export declare class DescribeFileSystemAliasesCommand extends $Command<DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput, FSxClientResolvedConfig> {
@@ -62,6 +62,473 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
62
62
  * };
63
63
  * const command = new DescribeFileSystemsCommand(input);
64
64
  * const response = await client.send(command);
65
+ * // { // DescribeFileSystemsResponse
66
+ * // FileSystems: [ // FileSystems
67
+ * // { // FileSystem
68
+ * // OwnerId: "STRING_VALUE",
69
+ * // CreationTime: new Date("TIMESTAMP"),
70
+ * // FileSystemId: "STRING_VALUE",
71
+ * // FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS",
72
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "FAILED" || "DELETING" || "MISCONFIGURED" || "UPDATING" || "MISCONFIGURED_UNAVAILABLE",
73
+ * // FailureDetails: { // FileSystemFailureDetails
74
+ * // Message: "STRING_VALUE",
75
+ * // },
76
+ * // StorageCapacity: Number("int"),
77
+ * // StorageType: "SSD" || "HDD",
78
+ * // VpcId: "STRING_VALUE",
79
+ * // SubnetIds: [ // SubnetIds
80
+ * // "STRING_VALUE",
81
+ * // ],
82
+ * // NetworkInterfaceIds: [ // NetworkInterfaceIds
83
+ * // "STRING_VALUE",
84
+ * // ],
85
+ * // DNSName: "STRING_VALUE",
86
+ * // KmsKeyId: "STRING_VALUE",
87
+ * // ResourceARN: "STRING_VALUE",
88
+ * // Tags: [ // Tags
89
+ * // { // Tag
90
+ * // Key: "STRING_VALUE", // required
91
+ * // Value: "STRING_VALUE", // required
92
+ * // },
93
+ * // ],
94
+ * // WindowsConfiguration: { // WindowsFileSystemConfiguration
95
+ * // ActiveDirectoryId: "STRING_VALUE",
96
+ * // SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryAttributes
97
+ * // DomainName: "STRING_VALUE",
98
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
99
+ * // FileSystemAdministratorsGroup: "STRING_VALUE",
100
+ * // UserName: "STRING_VALUE",
101
+ * // DnsIps: [ // DnsIps
102
+ * // "STRING_VALUE",
103
+ * // ],
104
+ * // },
105
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
106
+ * // RemoteAdministrationEndpoint: "STRING_VALUE",
107
+ * // PreferredSubnetId: "STRING_VALUE",
108
+ * // PreferredFileServerIp: "STRING_VALUE",
109
+ * // ThroughputCapacity: Number("int"),
110
+ * // MaintenanceOperationsInProgress: [ // FileSystemMaintenanceOperations
111
+ * // "PATCHING" || "BACKING_UP",
112
+ * // ],
113
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
114
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
115
+ * // AutomaticBackupRetentionDays: Number("int"),
116
+ * // CopyTagsToBackups: true || false,
117
+ * // Aliases: [ // Aliases
118
+ * // { // Alias
119
+ * // Name: "STRING_VALUE",
120
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
121
+ * // },
122
+ * // ],
123
+ * // AuditLogConfiguration: { // WindowsAuditLogConfiguration
124
+ * // FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
125
+ * // FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
126
+ * // AuditLogDestination: "STRING_VALUE",
127
+ * // },
128
+ * // },
129
+ * // LustreConfiguration: { // LustreFileSystemConfiguration
130
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
131
+ * // DataRepositoryConfiguration: { // DataRepositoryConfiguration
132
+ * // Lifecycle: "CREATING" || "AVAILABLE" || "MISCONFIGURED" || "UPDATING" || "DELETING" || "FAILED",
133
+ * // ImportPath: "STRING_VALUE",
134
+ * // ExportPath: "STRING_VALUE",
135
+ * // ImportedFileChunkSize: Number("int"),
136
+ * // AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
137
+ * // FailureDetails: { // DataRepositoryFailureDetails
138
+ * // Message: "STRING_VALUE",
139
+ * // },
140
+ * // },
141
+ * // DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
142
+ * // PerUnitStorageThroughput: Number("int"),
143
+ * // MountName: "STRING_VALUE",
144
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
145
+ * // AutomaticBackupRetentionDays: Number("int"),
146
+ * // CopyTagsToBackups: true || false,
147
+ * // DriveCacheType: "NONE" || "READ",
148
+ * // DataCompressionType: "NONE" || "LZ4",
149
+ * // LogConfiguration: { // LustreLogConfiguration
150
+ * // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
151
+ * // Destination: "STRING_VALUE",
152
+ * // },
153
+ * // RootSquashConfiguration: { // LustreRootSquashConfiguration
154
+ * // RootSquash: "STRING_VALUE",
155
+ * // NoSquashNids: [ // LustreNoSquashNids
156
+ * // "STRING_VALUE",
157
+ * // ],
158
+ * // },
159
+ * // },
160
+ * // AdministrativeActions: [ // AdministrativeActions
161
+ * // { // AdministrativeAction
162
+ * // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE",
163
+ * // ProgressPercent: Number("int"),
164
+ * // RequestTime: new Date("TIMESTAMP"),
165
+ * // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
166
+ * // TargetFileSystemValues: {
167
+ * // OwnerId: "STRING_VALUE",
168
+ * // CreationTime: new Date("TIMESTAMP"),
169
+ * // FileSystemId: "STRING_VALUE",
170
+ * // FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS",
171
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "FAILED" || "DELETING" || "MISCONFIGURED" || "UPDATING" || "MISCONFIGURED_UNAVAILABLE",
172
+ * // FailureDetails: {
173
+ * // Message: "STRING_VALUE",
174
+ * // },
175
+ * // StorageCapacity: Number("int"),
176
+ * // StorageType: "SSD" || "HDD",
177
+ * // VpcId: "STRING_VALUE",
178
+ * // SubnetIds: [
179
+ * // "STRING_VALUE",
180
+ * // ],
181
+ * // NetworkInterfaceIds: [
182
+ * // "STRING_VALUE",
183
+ * // ],
184
+ * // DNSName: "STRING_VALUE",
185
+ * // KmsKeyId: "STRING_VALUE",
186
+ * // ResourceARN: "STRING_VALUE",
187
+ * // Tags: [
188
+ * // {
189
+ * // Key: "STRING_VALUE", // required
190
+ * // Value: "STRING_VALUE", // required
191
+ * // },
192
+ * // ],
193
+ * // WindowsConfiguration: {
194
+ * // ActiveDirectoryId: "STRING_VALUE",
195
+ * // SelfManagedActiveDirectoryConfiguration: {
196
+ * // DomainName: "STRING_VALUE",
197
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
198
+ * // FileSystemAdministratorsGroup: "STRING_VALUE",
199
+ * // UserName: "STRING_VALUE",
200
+ * // DnsIps: [
201
+ * // "STRING_VALUE",
202
+ * // ],
203
+ * // },
204
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
205
+ * // RemoteAdministrationEndpoint: "STRING_VALUE",
206
+ * // PreferredSubnetId: "STRING_VALUE",
207
+ * // PreferredFileServerIp: "STRING_VALUE",
208
+ * // ThroughputCapacity: Number("int"),
209
+ * // MaintenanceOperationsInProgress: [
210
+ * // "PATCHING" || "BACKING_UP",
211
+ * // ],
212
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
213
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
214
+ * // AutomaticBackupRetentionDays: Number("int"),
215
+ * // CopyTagsToBackups: true || false,
216
+ * // Aliases: [
217
+ * // {
218
+ * // Name: "STRING_VALUE",
219
+ * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
220
+ * // },
221
+ * // ],
222
+ * // AuditLogConfiguration: {
223
+ * // FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
224
+ * // FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
225
+ * // AuditLogDestination: "STRING_VALUE",
226
+ * // },
227
+ * // },
228
+ * // LustreConfiguration: {
229
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
230
+ * // DataRepositoryConfiguration: {
231
+ * // Lifecycle: "CREATING" || "AVAILABLE" || "MISCONFIGURED" || "UPDATING" || "DELETING" || "FAILED",
232
+ * // ImportPath: "STRING_VALUE",
233
+ * // ExportPath: "STRING_VALUE",
234
+ * // ImportedFileChunkSize: Number("int"),
235
+ * // AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
236
+ * // FailureDetails: {
237
+ * // Message: "STRING_VALUE",
238
+ * // },
239
+ * // },
240
+ * // DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
241
+ * // PerUnitStorageThroughput: Number("int"),
242
+ * // MountName: "STRING_VALUE",
243
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
244
+ * // AutomaticBackupRetentionDays: Number("int"),
245
+ * // CopyTagsToBackups: true || false,
246
+ * // DriveCacheType: "NONE" || "READ",
247
+ * // DataCompressionType: "NONE" || "LZ4",
248
+ * // LogConfiguration: {
249
+ * // Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
250
+ * // Destination: "STRING_VALUE",
251
+ * // },
252
+ * // RootSquashConfiguration: {
253
+ * // RootSquash: "STRING_VALUE",
254
+ * // NoSquashNids: [
255
+ * // "STRING_VALUE",
256
+ * // ],
257
+ * // },
258
+ * // },
259
+ * // AdministrativeActions: [
260
+ * // {
261
+ * // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE",
262
+ * // ProgressPercent: Number("int"),
263
+ * // RequestTime: new Date("TIMESTAMP"),
264
+ * // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
265
+ * // TargetFileSystemValues: "<FileSystem>",
266
+ * // FailureDetails: { // AdministrativeActionFailureDetails
267
+ * // Message: "STRING_VALUE",
268
+ * // },
269
+ * // TargetVolumeValues: { // Volume
270
+ * // CreationTime: new Date("TIMESTAMP"),
271
+ * // FileSystemId: "STRING_VALUE",
272
+ * // Lifecycle: "CREATING" || "CREATED" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING" || "AVAILABLE",
273
+ * // Name: "STRING_VALUE",
274
+ * // OntapConfiguration: { // OntapVolumeConfiguration
275
+ * // FlexCacheEndpointType: "NONE" || "ORIGIN" || "CACHE",
276
+ * // JunctionPath: "STRING_VALUE",
277
+ * // SecurityStyle: "UNIX" || "NTFS" || "MIXED",
278
+ * // SizeInMegabytes: Number("int"),
279
+ * // StorageEfficiencyEnabled: true || false,
280
+ * // StorageVirtualMachineId: "STRING_VALUE",
281
+ * // StorageVirtualMachineRoot: true || false,
282
+ * // TieringPolicy: { // TieringPolicy
283
+ * // CoolingPeriod: Number("int"),
284
+ * // Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
285
+ * // },
286
+ * // UUID: "STRING_VALUE",
287
+ * // OntapVolumeType: "RW" || "DP" || "LS",
288
+ * // SnapshotPolicy: "STRING_VALUE",
289
+ * // CopyTagsToBackups: true || false,
290
+ * // },
291
+ * // ResourceARN: "STRING_VALUE",
292
+ * // Tags: "<Tags>",
293
+ * // VolumeId: "STRING_VALUE",
294
+ * // VolumeType: "ONTAP" || "OPENZFS",
295
+ * // LifecycleTransitionReason: { // LifecycleTransitionReason
296
+ * // Message: "STRING_VALUE",
297
+ * // },
298
+ * // AdministrativeActions: "<AdministrativeActions>",
299
+ * // OpenZFSConfiguration: { // OpenZFSVolumeConfiguration
300
+ * // ParentVolumeId: "STRING_VALUE",
301
+ * // VolumePath: "STRING_VALUE",
302
+ * // StorageCapacityReservationGiB: Number("int"),
303
+ * // StorageCapacityQuotaGiB: Number("int"),
304
+ * // RecordSizeKiB: Number("int"),
305
+ * // DataCompressionType: "NONE" || "ZSTD" || "LZ4",
306
+ * // CopyTagsToSnapshots: true || false,
307
+ * // OriginSnapshot: { // OpenZFSOriginSnapshotConfiguration
308
+ * // SnapshotARN: "STRING_VALUE",
309
+ * // CopyStrategy: "CLONE" || "FULL_COPY",
310
+ * // },
311
+ * // ReadOnly: true || false,
312
+ * // NfsExports: [ // OpenZFSNfsExports
313
+ * // { // OpenZFSNfsExport
314
+ * // ClientConfigurations: [ // OpenZFSClientConfigurations // required
315
+ * // { // OpenZFSClientConfiguration
316
+ * // Clients: "STRING_VALUE", // required
317
+ * // Options: [ // OpenZFSNfsExportOptions // required
318
+ * // "STRING_VALUE",
319
+ * // ],
320
+ * // },
321
+ * // ],
322
+ * // },
323
+ * // ],
324
+ * // UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
325
+ * // { // OpenZFSUserOrGroupQuota
326
+ * // Type: "USER" || "GROUP", // required
327
+ * // Id: Number("int"), // required
328
+ * // StorageCapacityQuotaGiB: Number("int"), // required
329
+ * // },
330
+ * // ],
331
+ * // RestoreToSnapshot: "STRING_VALUE",
332
+ * // DeleteIntermediateSnaphots: true || false,
333
+ * // DeleteClonedVolumes: true || false,
334
+ * // },
335
+ * // },
336
+ * // TargetSnapshotValues: { // Snapshot
337
+ * // ResourceARN: "STRING_VALUE",
338
+ * // SnapshotId: "STRING_VALUE",
339
+ * // Name: "STRING_VALUE",
340
+ * // VolumeId: "STRING_VALUE",
341
+ * // CreationTime: new Date("TIMESTAMP"),
342
+ * // Lifecycle: "PENDING" || "CREATING" || "DELETING" || "AVAILABLE",
343
+ * // LifecycleTransitionReason: {
344
+ * // Message: "STRING_VALUE",
345
+ * // },
346
+ * // Tags: "<Tags>",
347
+ * // AdministrativeActions: "<AdministrativeActions>",
348
+ * // },
349
+ * // },
350
+ * // ],
351
+ * // OntapConfiguration: { // OntapFileSystemConfiguration
352
+ * // AutomaticBackupRetentionDays: Number("int"),
353
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
354
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
355
+ * // EndpointIpAddressRange: "STRING_VALUE",
356
+ * // Endpoints: { // FileSystemEndpoints
357
+ * // Intercluster: { // FileSystemEndpoint
358
+ * // DNSName: "STRING_VALUE",
359
+ * // IpAddresses: [ // OntapEndpointIpAddresses
360
+ * // "STRING_VALUE",
361
+ * // ],
362
+ * // },
363
+ * // Management: {
364
+ * // DNSName: "STRING_VALUE",
365
+ * // IpAddresses: [
366
+ * // "STRING_VALUE",
367
+ * // ],
368
+ * // },
369
+ * // },
370
+ * // DiskIopsConfiguration: { // DiskIopsConfiguration
371
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
372
+ * // Iops: Number("long"),
373
+ * // },
374
+ * // PreferredSubnetId: "STRING_VALUE",
375
+ * // RouteTableIds: [ // RouteTableIds
376
+ * // "STRING_VALUE",
377
+ * // ],
378
+ * // ThroughputCapacity: Number("int"),
379
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
380
+ * // },
381
+ * // FileSystemTypeVersion: "STRING_VALUE",
382
+ * // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
383
+ * // AutomaticBackupRetentionDays: Number("int"),
384
+ * // CopyTagsToBackups: true || false,
385
+ * // CopyTagsToVolumes: true || false,
386
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
387
+ * // DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2",
388
+ * // ThroughputCapacity: Number("int"),
389
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
390
+ * // DiskIopsConfiguration: {
391
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
392
+ * // Iops: Number("long"),
393
+ * // },
394
+ * // RootVolumeId: "STRING_VALUE",
395
+ * // },
396
+ * // },
397
+ * // FailureDetails: {
398
+ * // Message: "STRING_VALUE",
399
+ * // },
400
+ * // TargetVolumeValues: {
401
+ * // CreationTime: new Date("TIMESTAMP"),
402
+ * // FileSystemId: "STRING_VALUE",
403
+ * // Lifecycle: "CREATING" || "CREATED" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING" || "AVAILABLE",
404
+ * // Name: "STRING_VALUE",
405
+ * // OntapConfiguration: {
406
+ * // FlexCacheEndpointType: "NONE" || "ORIGIN" || "CACHE",
407
+ * // JunctionPath: "STRING_VALUE",
408
+ * // SecurityStyle: "UNIX" || "NTFS" || "MIXED",
409
+ * // SizeInMegabytes: Number("int"),
410
+ * // StorageEfficiencyEnabled: true || false,
411
+ * // StorageVirtualMachineId: "STRING_VALUE",
412
+ * // StorageVirtualMachineRoot: true || false,
413
+ * // TieringPolicy: {
414
+ * // CoolingPeriod: Number("int"),
415
+ * // Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
416
+ * // },
417
+ * // UUID: "STRING_VALUE",
418
+ * // OntapVolumeType: "RW" || "DP" || "LS",
419
+ * // SnapshotPolicy: "STRING_VALUE",
420
+ * // CopyTagsToBackups: true || false,
421
+ * // },
422
+ * // ResourceARN: "STRING_VALUE",
423
+ * // Tags: "<Tags>",
424
+ * // VolumeId: "STRING_VALUE",
425
+ * // VolumeType: "ONTAP" || "OPENZFS",
426
+ * // LifecycleTransitionReason: {
427
+ * // Message: "STRING_VALUE",
428
+ * // },
429
+ * // AdministrativeActions: "<AdministrativeActions>",
430
+ * // OpenZFSConfiguration: {
431
+ * // ParentVolumeId: "STRING_VALUE",
432
+ * // VolumePath: "STRING_VALUE",
433
+ * // StorageCapacityReservationGiB: Number("int"),
434
+ * // StorageCapacityQuotaGiB: Number("int"),
435
+ * // RecordSizeKiB: Number("int"),
436
+ * // DataCompressionType: "NONE" || "ZSTD" || "LZ4",
437
+ * // CopyTagsToSnapshots: true || false,
438
+ * // OriginSnapshot: {
439
+ * // SnapshotARN: "STRING_VALUE",
440
+ * // CopyStrategy: "CLONE" || "FULL_COPY",
441
+ * // },
442
+ * // ReadOnly: true || false,
443
+ * // NfsExports: [
444
+ * // {
445
+ * // ClientConfigurations: [ // required
446
+ * // {
447
+ * // Clients: "STRING_VALUE", // required
448
+ * // Options: [ // required
449
+ * // "STRING_VALUE",
450
+ * // ],
451
+ * // },
452
+ * // ],
453
+ * // },
454
+ * // ],
455
+ * // UserAndGroupQuotas: [
456
+ * // {
457
+ * // Type: "USER" || "GROUP", // required
458
+ * // Id: Number("int"), // required
459
+ * // StorageCapacityQuotaGiB: Number("int"), // required
460
+ * // },
461
+ * // ],
462
+ * // RestoreToSnapshot: "STRING_VALUE",
463
+ * // DeleteIntermediateSnaphots: true || false,
464
+ * // DeleteClonedVolumes: true || false,
465
+ * // },
466
+ * // },
467
+ * // TargetSnapshotValues: {
468
+ * // ResourceARN: "STRING_VALUE",
469
+ * // SnapshotId: "STRING_VALUE",
470
+ * // Name: "STRING_VALUE",
471
+ * // VolumeId: "STRING_VALUE",
472
+ * // CreationTime: new Date("TIMESTAMP"),
473
+ * // Lifecycle: "PENDING" || "CREATING" || "DELETING" || "AVAILABLE",
474
+ * // LifecycleTransitionReason: {
475
+ * // Message: "STRING_VALUE",
476
+ * // },
477
+ * // Tags: "<Tags>",
478
+ * // AdministrativeActions: "<AdministrativeActions>",
479
+ * // },
480
+ * // },
481
+ * // ],
482
+ * // OntapConfiguration: {
483
+ * // AutomaticBackupRetentionDays: Number("int"),
484
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
485
+ * // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
486
+ * // EndpointIpAddressRange: "STRING_VALUE",
487
+ * // Endpoints: {
488
+ * // Intercluster: {
489
+ * // DNSName: "STRING_VALUE",
490
+ * // IpAddresses: [
491
+ * // "STRING_VALUE",
492
+ * // ],
493
+ * // },
494
+ * // Management: {
495
+ * // DNSName: "STRING_VALUE",
496
+ * // IpAddresses: [
497
+ * // "STRING_VALUE",
498
+ * // ],
499
+ * // },
500
+ * // },
501
+ * // DiskIopsConfiguration: {
502
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
503
+ * // Iops: Number("long"),
504
+ * // },
505
+ * // PreferredSubnetId: "STRING_VALUE",
506
+ * // RouteTableIds: [
507
+ * // "STRING_VALUE",
508
+ * // ],
509
+ * // ThroughputCapacity: Number("int"),
510
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
511
+ * // },
512
+ * // FileSystemTypeVersion: "STRING_VALUE",
513
+ * // OpenZFSConfiguration: {
514
+ * // AutomaticBackupRetentionDays: Number("int"),
515
+ * // CopyTagsToBackups: true || false,
516
+ * // CopyTagsToVolumes: true || false,
517
+ * // DailyAutomaticBackupStartTime: "STRING_VALUE",
518
+ * // DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2",
519
+ * // ThroughputCapacity: Number("int"),
520
+ * // WeeklyMaintenanceStartTime: "STRING_VALUE",
521
+ * // DiskIopsConfiguration: {
522
+ * // Mode: "AUTOMATIC" || "USER_PROVISIONED",
523
+ * // Iops: Number("long"),
524
+ * // },
525
+ * // RootVolumeId: "STRING_VALUE",
526
+ * // },
527
+ * // },
528
+ * // ],
529
+ * // NextToken: "STRING_VALUE",
530
+ * // };
531
+ *
65
532
  * ```
66
533
  *
67
534
  * @param DescribeFileSystemsCommandInput - {@link DescribeFileSystemsCommandInput}
@@ -79,6 +546,8 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
79
546
  * @throws {@link InternalServerError} (server fault)
80
547
  * <p>A generic error indicating a server-side failure.</p>
81
548
  *
549
+ * @throws {@link FSxServiceException}
550
+ * <p>Base exception class for all service exceptions from FSx service.</p>
82
551
  *
83
552
  * @example To describe an Amazon FSx file system
84
553
  * ```javascript