@aws-sdk/client-fsx 3.312.0 → 3.316.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.
@@ -41,943 +41,258 @@ import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./comma
41
41
  import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput } from "./commands/UpdateStorageVirtualMachineCommand";
42
42
  import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "./commands/UpdateVolumeCommand";
43
43
  import { FSxClient } from "./FSxClient";
44
- /**
45
- * @public
46
- * <p>Amazon FSx is a fully managed service that makes it easy for storage and
47
- * application administrators to launch and use shared file storage.</p>
48
- */
49
- export declare class FSx extends FSxClient {
50
- /**
51
- * @public
52
- * <p>Use this action to associate one or more Domain Name Server (DNS) aliases with an existing Amazon FSx for Windows File Server file system.
53
- * A file system can have a maximum of 50 DNS aliases associated with it at any one time. If you try to
54
- * associate a DNS alias that is already associated with the file system, FSx takes no action on that alias in the request.
55
- * For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-dns-aliases.html">Working with DNS Aliases</a> and
56
- * <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/walkthrough05-file-system-custom-CNAME.html">Walkthrough 5: Using DNS aliases to access your file system</a>, including
57
- * additional steps you must take to be able to access your file system using a DNS alias.</p>
58
- * <p>The system response shows the DNS aliases that
59
- * Amazon FSx is attempting to associate with the file system.
60
- * Use the API
61
- * operation to monitor the status of the aliases Amazon FSx is
62
- * associating with the file system.</p>
44
+ export interface FSx {
45
+ /**
46
+ * @see {@link AssociateFileSystemAliasesCommand}
63
47
  */
64
48
  associateFileSystemAliases(args: AssociateFileSystemAliasesCommandInput, options?: __HttpHandlerOptions): Promise<AssociateFileSystemAliasesCommandOutput>;
65
49
  associateFileSystemAliases(args: AssociateFileSystemAliasesCommandInput, cb: (err: any, data?: AssociateFileSystemAliasesCommandOutput) => void): void;
66
50
  associateFileSystemAliases(args: AssociateFileSystemAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateFileSystemAliasesCommandOutput) => void): void;
67
51
  /**
68
- * @public
69
- * <p>Cancels an existing Amazon FSx for Lustre data repository task if that task is in either the
70
- * <code>PENDING</code> or <code>EXECUTING</code> state. When you cancel a task, Amazon FSx does the following.</p>
71
- * <ul>
72
- * <li>
73
- * <p>Any files that FSx has already exported are not reverted.</p>
74
- * </li>
75
- * <li>
76
- * <p>FSx continues to export any files that are "in-flight" when the cancel operation is received.</p>
77
- * </li>
78
- * <li>
79
- * <p>FSx does not export any files that have not yet been exported.</p>
80
- * </li>
81
- * </ul>
52
+ * @see {@link CancelDataRepositoryTaskCommand}
82
53
  */
83
54
  cancelDataRepositoryTask(args: CancelDataRepositoryTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelDataRepositoryTaskCommandOutput>;
84
55
  cancelDataRepositoryTask(args: CancelDataRepositoryTaskCommandInput, cb: (err: any, data?: CancelDataRepositoryTaskCommandOutput) => void): void;
85
56
  cancelDataRepositoryTask(args: CancelDataRepositoryTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelDataRepositoryTaskCommandOutput) => void): void;
86
57
  /**
87
- * @public
88
- * <p>Copies an existing backup within the same Amazon Web Services account to another Amazon Web Services Region
89
- * (cross-Region copy) or within the same Amazon Web Services Region (in-Region copy). You can have up to five
90
- * backup copy requests in progress to a single destination Region per account.</p>
91
- * <p>You can use cross-Region backup copies for cross-Region disaster recovery. You can
92
- * periodically take backups and copy them to another Region so that in the event of a
93
- * disaster in the primary Region, you can restore from backup and recover availability
94
- * quickly in the other Region. You can make cross-Region copies only within your Amazon Web Services partition. A partition is a grouping of Regions. Amazon Web Services currently
95
- * has three partitions: <code>aws</code> (Standard Regions), <code>aws-cn</code> (China
96
- * Regions), and <code>aws-us-gov</code> (Amazon Web Services GovCloud [US] Regions).</p>
97
- * <p>You can also use backup copies to clone your file dataset to another Region or within
98
- * the same Region.</p>
99
- * <p>You can use the <code>SourceRegion</code> parameter to specify the Amazon Web Services Region
100
- * from which the backup will be copied. For example, if you make the call from the
101
- * <code>us-west-1</code> Region and want to copy a backup from the <code>us-east-2</code>
102
- * Region, you specify <code>us-east-2</code> in the <code>SourceRegion</code> parameter
103
- * to make a cross-Region copy. If you don't specify a Region, the backup copy is
104
- * created in the same Region where the request is sent from (in-Region copy).</p>
105
- * <p>For more information about creating backup copies, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/using-backups.html#copy-backups"> Copying backups</a>
106
- * in the <i>Amazon FSx for Windows User Guide</i>, <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html#copy-backups">Copying backups</a> in the <i>Amazon FSx for Lustre User
107
- * Guide</i>, and <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/using-backups.html#copy-backups">Copying backups</a> in the <i>Amazon FSx for OpenZFS User
108
- * Guide</i>.</p>
58
+ * @see {@link CopyBackupCommand}
109
59
  */
110
60
  copyBackup(args: CopyBackupCommandInput, options?: __HttpHandlerOptions): Promise<CopyBackupCommandOutput>;
111
61
  copyBackup(args: CopyBackupCommandInput, cb: (err: any, data?: CopyBackupCommandOutput) => void): void;
112
62
  copyBackup(args: CopyBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyBackupCommandOutput) => void): void;
113
63
  /**
114
- * @public
115
- * <p>Creates a backup of an existing Amazon FSx for Windows File Server file
116
- * system, Amazon FSx for Lustre file system, Amazon FSx for NetApp ONTAP
117
- * volume, or Amazon FSx for OpenZFS file system. We recommend creating regular
118
- * backups so that you can restore a file system or volume from a backup if an issue arises
119
- * with the original file system or volume.</p>
120
- * <p>For Amazon FSx for Lustre file systems, you can create a backup only for file
121
- * systems that have the following configuration:</p>
122
- * <ul>
123
- * <li>
124
- * <p>A Persistent deployment type</p>
125
- * </li>
126
- * <li>
127
- * <p>Are <i>not</i> linked to a data repository</p>
128
- * </li>
129
- * </ul>
130
- * <p>For more information about backups, see the following:</p>
131
- * <ul>
132
- * <li>
133
- * <p>For Amazon FSx for Lustre, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html">Working with FSx for
134
- * Lustre backups</a>.</p>
135
- * </li>
136
- * <li>
137
- * <p>For Amazon FSx for Windows, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/using-backups.html">Working with FSx for
138
- * Windows backups</a>.</p>
139
- * </li>
140
- * <li>
141
- * <p>For Amazon FSx for NetApp ONTAP, see <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/using-backups.html">Working with FSx for NetApp
142
- * ONTAP backups</a>.</p>
143
- * </li>
144
- * <li>
145
- * <p>For Amazon FSx for OpenZFS, see <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/using-backups.html">Working with FSx for OpenZFS backups</a>.</p>
146
- * </li>
147
- * </ul>
148
- * <p>If a backup with the specified client request token exists and the parameters match,
149
- * this operation returns the description of the existing backup. If a backup with the
150
- * specified client request token exists and the parameters don't match, this operation
151
- * returns <code>IncompatibleParameterError</code>. If a backup with the specified client
152
- * request token doesn't exist, <code>CreateBackup</code> does the following: </p>
153
- * <ul>
154
- * <li>
155
- * <p>Creates a new Amazon FSx backup with an assigned ID, and an initial
156
- * lifecycle state of <code>CREATING</code>.</p>
157
- * </li>
158
- * <li>
159
- * <p>Returns the description of the backup.</p>
160
- * </li>
161
- * </ul>
162
- * <p>By using the idempotent operation, you can retry a <code>CreateBackup</code>
163
- * operation without the risk of creating an extra backup. This approach can be useful when
164
- * an initial call fails in a way that makes it unclear whether a backup was created. If
165
- * you use the same client request token and the initial call created a backup, the
166
- * operation returns a successful result because all the parameters are the same.</p>
167
- * <p>The <code>CreateBackup</code> operation returns while the backup's lifecycle state is
168
- * still <code>CREATING</code>. You can check the backup creation status by calling the
169
- * <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeBackups.html">DescribeBackups</a> operation, which returns the backup state along with other
170
- * information.</p>
64
+ * @see {@link CreateBackupCommand}
171
65
  */
172
66
  createBackup(args: CreateBackupCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackupCommandOutput>;
173
67
  createBackup(args: CreateBackupCommandInput, cb: (err: any, data?: CreateBackupCommandOutput) => void): void;
174
68
  createBackup(args: CreateBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackupCommandOutput) => void): void;
175
69
  /**
176
- * @public
177
- * <p>Creates an Amazon FSx for Lustre data repository association (DRA). A data
178
- * repository association is a link between a directory on the file system and
179
- * an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository
180
- * associations on a file system. Data repository associations are supported
181
- * for all file systems except for <code>Scratch_1</code> deployment type.</p>
182
- * <p>Each data repository association must have a unique Amazon FSx file
183
- * system directory and a unique S3 bucket or prefix associated with it. You
184
- * can configure a data repository association for automatic import only,
185
- * for automatic export only, or for both. To learn more about linking a
186
- * data repository to your file system, see
187
- * <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-dra-linked-data-repo.html">Linking your file system to an S3 bucket</a>.</p>
188
- * <note>
189
- * <p>
190
- * <code>CreateDataRepositoryAssociation</code> isn't supported
191
- * on Amazon File Cache resources. To create a DRA on Amazon File Cache,
192
- * use the <code>CreateFileCache</code> operation.</p>
193
- * </note>
70
+ * @see {@link CreateDataRepositoryAssociationCommand}
194
71
  */
195
72
  createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataRepositoryAssociationCommandOutput>;
196
73
  createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, cb: (err: any, data?: CreateDataRepositoryAssociationCommandOutput) => void): void;
197
74
  createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRepositoryAssociationCommandOutput) => void): void;
198
75
  /**
199
- * @public
200
- * <p>Creates an Amazon FSx for Lustre data repository task. You use data repository tasks
201
- * to perform bulk operations between your Amazon FSx file system and its linked data
202
- * repositories. An example of a data repository task is exporting any data and metadata
203
- * changes, including POSIX metadata, to files, directories, and symbolic links (symlinks)
204
- * from your FSx file system to a linked data repository. A <code>CreateDataRepositoryTask</code>
205
- * operation will fail if a data repository is not linked to the FSx file system. To learn
206
- * more about data repository tasks, see
207
- * <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-repository-tasks.html">Data Repository Tasks</a>.
208
- * To learn more about linking a data repository to your file system, see
209
- * <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-dra-linked-data-repo.html">Linking your file system to an S3 bucket</a>.</p>
76
+ * @see {@link CreateDataRepositoryTaskCommand}
210
77
  */
211
78
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataRepositoryTaskCommandOutput>;
212
79
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, cb: (err: any, data?: CreateDataRepositoryTaskCommandOutput) => void): void;
213
80
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRepositoryTaskCommandOutput) => void): void;
214
81
  /**
215
- * @public
216
- * <p>Creates a new Amazon File Cache resource.</p>
217
- * <p>You can use this operation with a client request token in the request that
218
- * Amazon File Cache uses to ensure idempotent creation.
219
- * If a cache with the specified client request token exists and the parameters
220
- * match, <code>CreateFileCache</code> returns the description of the existing
221
- * cache. If a cache with the specified client request token exists and the
222
- * parameters don't match, this call returns <code>IncompatibleParameterError</code>.
223
- * If a file cache with the specified client request token doesn't exist,
224
- * <code>CreateFileCache</code> does the following: </p>
225
- * <ul>
226
- * <li>
227
- * <p>Creates a new, empty Amazon File Cache resourcewith an assigned ID, and
228
- * an initial lifecycle state of <code>CREATING</code>.</p>
229
- * </li>
230
- * <li>
231
- * <p>Returns the description of the cache in JSON format.</p>
232
- * </li>
233
- * </ul>
234
- * <note>
235
- * <p>The <code>CreateFileCache</code> call returns while the cache's lifecycle
236
- * state is still <code>CREATING</code>. You can check the cache creation status
237
- * by calling the <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileCaches.html">DescribeFileCaches</a> operation, which returns the cache state
238
- * along with other information.</p>
239
- * </note>
82
+ * @see {@link CreateFileCacheCommand}
240
83
  */
241
84
  createFileCache(args: CreateFileCacheCommandInput, options?: __HttpHandlerOptions): Promise<CreateFileCacheCommandOutput>;
242
85
  createFileCache(args: CreateFileCacheCommandInput, cb: (err: any, data?: CreateFileCacheCommandOutput) => void): void;
243
86
  createFileCache(args: CreateFileCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFileCacheCommandOutput) => void): void;
244
87
  /**
245
- * @public
246
- * <p>Creates a new, empty Amazon FSx file system. You can create the following supported
247
- * Amazon FSx file systems using the <code>CreateFileSystem</code> API operation:</p>
248
- * <ul>
249
- * <li>
250
- * <p>Amazon FSx for Lustre</p>
251
- * </li>
252
- * <li>
253
- * <p>Amazon FSx for NetApp ONTAP</p>
254
- * </li>
255
- * <li>
256
- * <p>Amazon FSx for OpenZFS</p>
257
- * </li>
258
- * <li>
259
- * <p>Amazon FSx for Windows File Server</p>
260
- * </li>
261
- * </ul>
262
- * <p>This operation requires a client request token in the request that Amazon FSx uses
263
- * to ensure idempotent creation. This means that calling the operation multiple times with
264
- * the same client request token has no effect. By using the idempotent operation, you can
265
- * retry a <code>CreateFileSystem</code> operation without the risk of creating an extra
266
- * file system. This approach can be useful when an initial call fails in a way that makes
267
- * it unclear whether a file system was created. Examples are if a transport level timeout
268
- * occurred, or your connection was reset. If you use the same client request token and the
269
- * initial call created a file system, the client receives success as long as the
270
- * parameters are the same.</p>
271
- * <p>If a file system with the specified client request token exists and the parameters
272
- * match, <code>CreateFileSystem</code> returns the description of the existing file
273
- * system. If a file system with the specified client request token exists and the
274
- * parameters don't match, this call returns <code>IncompatibleParameterError</code>. If a
275
- * file system with the specified client request token doesn't exist,
276
- * <code>CreateFileSystem</code> does the following: </p>
277
- * <ul>
278
- * <li>
279
- * <p>Creates a new, empty Amazon FSx file system with an assigned ID, and
280
- * an initial lifecycle state of <code>CREATING</code>.</p>
281
- * </li>
282
- * <li>
283
- * <p>Returns the description of the file system in JSON format.</p>
284
- * </li>
285
- * </ul>
286
- * <note>
287
- * <p>The <code>CreateFileSystem</code> call returns while the file system's lifecycle
288
- * state is still <code>CREATING</code>. You can check the file-system creation status
289
- * by calling the <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileSystems.html">DescribeFileSystems</a> operation, which returns the file system state
290
- * along with other information.</p>
291
- * </note>
88
+ * @see {@link CreateFileSystemCommand}
292
89
  */
293
90
  createFileSystem(args: CreateFileSystemCommandInput, options?: __HttpHandlerOptions): Promise<CreateFileSystemCommandOutput>;
294
91
  createFileSystem(args: CreateFileSystemCommandInput, cb: (err: any, data?: CreateFileSystemCommandOutput) => void): void;
295
92
  createFileSystem(args: CreateFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFileSystemCommandOutput) => void): void;
296
93
  /**
297
- * @public
298
- * <p>Creates a new Amazon FSx for Lustre, Amazon FSx for Windows File
299
- * Server, or Amazon FSx for OpenZFS file system from an existing Amazon FSx backup.</p>
300
- * <p>If a file system with the specified client request token exists and the parameters
301
- * match, this operation returns the description of the file system. If a file system
302
- * with the specified client request token exists but the parameters don't match, this
303
- * call returns <code>IncompatibleParameterError</code>. If a file system with the
304
- * specified client request token doesn't exist, this operation does the following:</p>
305
- * <ul>
306
- * <li>
307
- * <p>Creates a new Amazon FSx file system from backup with an assigned ID,
308
- * and an initial lifecycle state of <code>CREATING</code>.</p>
309
- * </li>
310
- * <li>
311
- * <p>Returns the description of the file system.</p>
312
- * </li>
313
- * </ul>
314
- * <p>Parameters like the Active Directory, default share name, automatic backup, and backup
315
- * settings default to the parameters of the file system that was backed up, unless
316
- * overridden. You can explicitly supply other settings.</p>
317
- * <p>By using the idempotent operation, you can retry a
318
- * <code>CreateFileSystemFromBackup</code> call without the risk of creating an extra
319
- * file system. This approach can be useful when an initial call fails in a way that makes
320
- * it unclear whether a file system was created. Examples are if a transport level timeout
321
- * occurred, or your connection was reset. If you use the same client request token and the
322
- * initial call created a file system, the client receives a success message as long as the
323
- * parameters are the same.</p>
324
- * <note>
325
- * <p>The <code>CreateFileSystemFromBackup</code> call returns while the file system's
326
- * lifecycle state is still <code>CREATING</code>. You can check the file-system
327
- * creation status by calling the <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileSystems.html">
328
- * DescribeFileSystems</a> operation, which returns the file system state along
329
- * with other information.</p>
330
- * </note>
94
+ * @see {@link CreateFileSystemFromBackupCommand}
331
95
  */
332
96
  createFileSystemFromBackup(args: CreateFileSystemFromBackupCommandInput, options?: __HttpHandlerOptions): Promise<CreateFileSystemFromBackupCommandOutput>;
333
97
  createFileSystemFromBackup(args: CreateFileSystemFromBackupCommandInput, cb: (err: any, data?: CreateFileSystemFromBackupCommandOutput) => void): void;
334
98
  createFileSystemFromBackup(args: CreateFileSystemFromBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFileSystemFromBackupCommandOutput) => void): void;
335
99
  /**
336
- * @public
337
- * <p>Creates a snapshot of an existing Amazon FSx for OpenZFS volume. With
338
- * snapshots, you can easily undo file changes and compare file versions by restoring the
339
- * volume to a previous version.</p>
340
- * <p>If a snapshot with the specified client request token exists, and the parameters
341
- * match, this operation returns the description of the existing snapshot. If a snapshot
342
- * with the specified client request token exists, and the parameters don't match, this
343
- * operation returns <code>IncompatibleParameterError</code>. If a snapshot with the
344
- * specified client request token doesn't exist, <code>CreateSnapshot</code> does the
345
- * following:</p>
346
- * <ul>
347
- * <li>
348
- * <p>Creates a new OpenZFS snapshot with an assigned ID, and an initial lifecycle
349
- * state of <code>CREATING</code>.</p>
350
- * </li>
351
- * <li>
352
- * <p>Returns the description of the snapshot.</p>
353
- * </li>
354
- * </ul>
355
- * <p>By using the idempotent operation, you can retry a <code>CreateSnapshot</code>
356
- * operation without the risk of creating an extra snapshot. This approach can be useful
357
- * when an initial call fails in a way that makes it unclear whether a snapshot was
358
- * created. If you use the same client request token and the initial call created a
359
- * snapshot, the operation returns a successful result because all the parameters are the
360
- * same.</p>
361
- * <p>The <code>CreateSnapshot</code> operation returns while the snapshot's lifecycle state
362
- * is still <code>CREATING</code>. You can check the snapshot creation status by calling
363
- * the <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeSnapshots.html">DescribeSnapshots</a> operation, which returns the snapshot state along with
364
- * other information.</p>
100
+ * @see {@link CreateSnapshotCommand}
365
101
  */
366
102
  createSnapshot(args: CreateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotCommandOutput>;
367
103
  createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
368
104
  createSnapshot(args: CreateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
369
105
  /**
370
- * @public
371
- * <p>Creates a storage virtual machine (SVM) for an Amazon FSx for ONTAP file system.</p>
106
+ * @see {@link CreateStorageVirtualMachineCommand}
372
107
  */
373
108
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<CreateStorageVirtualMachineCommandOutput>;
374
109
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, cb: (err: any, data?: CreateStorageVirtualMachineCommandOutput) => void): void;
375
110
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStorageVirtualMachineCommandOutput) => void): void;
376
111
  /**
377
- * @public
378
- * <p>Creates an FSx for ONTAP or Amazon FSx for OpenZFS storage volume.</p>
112
+ * @see {@link CreateVolumeCommand}
379
113
  */
380
114
  createVolume(args: CreateVolumeCommandInput, options?: __HttpHandlerOptions): Promise<CreateVolumeCommandOutput>;
381
115
  createVolume(args: CreateVolumeCommandInput, cb: (err: any, data?: CreateVolumeCommandOutput) => void): void;
382
116
  createVolume(args: CreateVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVolumeCommandOutput) => void): void;
383
117
  /**
384
- * @public
385
- * <p>Creates a new Amazon FSx for NetApp ONTAP volume from an
386
- * existing Amazon FSx volume backup.</p>
118
+ * @see {@link CreateVolumeFromBackupCommand}
387
119
  */
388
120
  createVolumeFromBackup(args: CreateVolumeFromBackupCommandInput, options?: __HttpHandlerOptions): Promise<CreateVolumeFromBackupCommandOutput>;
389
121
  createVolumeFromBackup(args: CreateVolumeFromBackupCommandInput, cb: (err: any, data?: CreateVolumeFromBackupCommandOutput) => void): void;
390
122
  createVolumeFromBackup(args: CreateVolumeFromBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVolumeFromBackupCommandOutput) => void): void;
391
123
  /**
392
- * @public
393
- * <p>Deletes an Amazon FSx backup. After deletion, the backup no longer exists, and
394
- * its data is gone.</p>
395
- * <p>The <code>DeleteBackup</code> call returns instantly. The backup won't show up in
396
- * later <code>DescribeBackups</code> calls.</p>
397
- * <important>
398
- * <p>The data in a deleted backup is also deleted and can't be recovered by any
399
- * means.</p>
400
- * </important>
124
+ * @see {@link DeleteBackupCommand}
401
125
  */
402
126
  deleteBackup(args: DeleteBackupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupCommandOutput>;
403
127
  deleteBackup(args: DeleteBackupCommandInput, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
404
128
  deleteBackup(args: DeleteBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
405
129
  /**
406
- * @public
407
- * <p>Deletes a data repository association on an Amazon FSx for Lustre
408
- * file system. Deleting the data repository association unlinks the
409
- * file system from the Amazon S3 bucket. When deleting a data repository
410
- * association, you have the option of deleting the data in the file system
411
- * that corresponds to the data repository association. Data repository
412
- * associations are supported for all file systems except for <code>Scratch_1</code>
413
- * deployment type.</p>
130
+ * @see {@link DeleteDataRepositoryAssociationCommand}
414
131
  */
415
132
  deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataRepositoryAssociationCommandOutput>;
416
133
  deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, cb: (err: any, data?: DeleteDataRepositoryAssociationCommandOutput) => void): void;
417
134
  deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataRepositoryAssociationCommandOutput) => void): void;
418
135
  /**
419
- * @public
420
- * <p>Deletes an Amazon File Cache resource. After deletion, the cache no longer exists, and its data
421
- * is gone.</p>
422
- * <p>The <code>DeleteFileCache</code> operation returns while the cache has the
423
- * <code>DELETING</code> status. You can check the cache deletion status by
424
- * calling the <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileCaches.html">DescribeFileCaches</a> operation, which returns a list of caches in your
425
- * account. If you pass the cache ID for a deleted cache, the
426
- * <code>DescribeFileCaches</code> operation returns a <code>FileCacheNotFound</code>
427
- * error.</p>
428
- * <important>
429
- * <p>The data in a deleted cache is also deleted and can't be recovered by
430
- * any means.</p>
431
- * </important>
136
+ * @see {@link DeleteFileCacheCommand}
432
137
  */
433
138
  deleteFileCache(args: DeleteFileCacheCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFileCacheCommandOutput>;
434
139
  deleteFileCache(args: DeleteFileCacheCommandInput, cb: (err: any, data?: DeleteFileCacheCommandOutput) => void): void;
435
140
  deleteFileCache(args: DeleteFileCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFileCacheCommandOutput) => void): void;
436
141
  /**
437
- * @public
438
- * <p>Deletes a file system. After deletion, the file system no longer exists, and its data
439
- * is gone. Any existing automatic backups and snapshots are also deleted.</p>
440
- * <p>To delete an Amazon FSx for NetApp ONTAP file system, first delete all the
441
- * volumes and storage virtual machines (SVMs) on the file system. Then provide a
442
- * <code>FileSystemId</code> value to the <code>DeleFileSystem</code> operation.</p>
443
- * <p>By default, when you delete an Amazon FSx for Windows File Server file system,
444
- * a final backup is created upon deletion. This final backup isn't subject to the file
445
- * system's retention policy, and must be manually deleted.</p>
446
- * <p>The <code>DeleteFileSystem</code> operation returns while the file system has the
447
- * <code>DELETING</code> status. You can check the file system deletion status by
448
- * calling the <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileSystems.html">DescribeFileSystems</a> operation, which returns a list of file systems in your
449
- * account. If you pass the file system ID for a deleted file system, the
450
- * <code>DescribeFileSystems</code> operation returns a <code>FileSystemNotFound</code>
451
- * error.</p>
452
- * <note>
453
- * <p>If a data repository task is in a <code>PENDING</code> or <code>EXECUTING</code> state,
454
- * deleting an Amazon FSx for Lustre file system will fail with an HTTP status
455
- * code 400 (Bad Request).</p>
456
- * </note>
457
- * <important>
458
- * <p>The data in a deleted file system is also deleted and can't be recovered by
459
- * any means.</p>
460
- * </important>
142
+ * @see {@link DeleteFileSystemCommand}
461
143
  */
462
144
  deleteFileSystem(args: DeleteFileSystemCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFileSystemCommandOutput>;
463
145
  deleteFileSystem(args: DeleteFileSystemCommandInput, cb: (err: any, data?: DeleteFileSystemCommandOutput) => void): void;
464
146
  deleteFileSystem(args: DeleteFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFileSystemCommandOutput) => void): void;
465
147
  /**
466
- * @public
467
- * <p>Deletes an Amazon FSx for OpenZFS snapshot. After deletion, the snapshot no longer
468
- * exists, and its data is gone. Deleting a snapshot doesn't affect snapshots stored in a
469
- * file system backup. </p>
470
- * <p>The <code>DeleteSnapshot</code> operation returns instantly. The snapshot appears with
471
- * the lifecycle status of <code>DELETING</code> until the deletion is complete.</p>
148
+ * @see {@link DeleteSnapshotCommand}
472
149
  */
473
150
  deleteSnapshot(args: DeleteSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotCommandOutput>;
474
151
  deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
475
152
  deleteSnapshot(args: DeleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
476
153
  /**
477
- * @public
478
- * <p>Deletes an existing Amazon FSx for ONTAP storage virtual machine (SVM). Prior
479
- * to deleting an SVM, you must delete all non-root volumes in the SVM, otherwise the operation will fail.</p>
154
+ * @see {@link DeleteStorageVirtualMachineCommand}
480
155
  */
481
156
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStorageVirtualMachineCommandOutput>;
482
157
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, cb: (err: any, data?: DeleteStorageVirtualMachineCommandOutput) => void): void;
483
158
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStorageVirtualMachineCommandOutput) => void): void;
484
159
  /**
485
- * @public
486
- * <p>Deletes an Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS
487
- * volume.</p>
160
+ * @see {@link DeleteVolumeCommand}
488
161
  */
489
162
  deleteVolume(args: DeleteVolumeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVolumeCommandOutput>;
490
163
  deleteVolume(args: DeleteVolumeCommandInput, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
491
164
  deleteVolume(args: DeleteVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
492
165
  /**
493
- * @public
494
- * <p>Returns the description of a specific Amazon FSx backup, if a
495
- * <code>BackupIds</code> value is provided for that backup. Otherwise, it returns all
496
- * backups owned by your Amazon Web Services account in the Amazon Web Services Region of the
497
- * endpoint that you're calling.</p>
498
- * <p>When retrieving all backups, you can optionally specify the <code>MaxResults</code>
499
- * parameter to limit the number of backups in a response. If more backups remain, Amazon FSx returns a <code>NextToken</code> value in the response. In this case,
500
- * send a later request with the <code>NextToken</code> request parameter set to the value
501
- * of the <code>NextToken</code> value from the last response.</p>
502
- * <p>This operation is used in an iterative process to retrieve a list of your backups.
503
- * <code>DescribeBackups</code> is called first without a <code>NextToken</code> value.
504
- * Then the operation continues to be called with the <code>NextToken</code> parameter set
505
- * to the value of the last <code>NextToken</code> value until a response has no
506
- * <code>NextToken</code> value.</p>
507
- * <p>When using this operation, keep the following in mind:</p>
508
- * <ul>
509
- * <li>
510
- * <p>The operation might return fewer than the <code>MaxResults</code> value of
511
- * backup descriptions while still including a <code>NextToken</code>
512
- * value.</p>
513
- * </li>
514
- * <li>
515
- * <p>The order of the backups returned in the response of one
516
- * <code>DescribeBackups</code> call and the order of the backups returned
517
- * across the responses of a multi-call iteration is unspecified.</p>
518
- * </li>
519
- * </ul>
166
+ * @see {@link DescribeBackupsCommand}
520
167
  */
521
168
  describeBackups(args: DescribeBackupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBackupsCommandOutput>;
522
169
  describeBackups(args: DescribeBackupsCommandInput, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
523
170
  describeBackups(args: DescribeBackupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
524
171
  /**
525
- * @public
526
- * <p>Returns the description of specific Amazon FSx for Lustre or Amazon File Cache
527
- * data repository associations, if one or more <code>AssociationIds</code> values
528
- * are provided in the request, or if filters are used in the request. Data repository
529
- * associations are supported on Amazon File Cache resources and all Amazon FSx for
530
- * Lustre file systems excluding <code>Scratch_1</code> deployment types.</p>
531
- * <p>You can use filters to narrow the response to include just data repository
532
- * associations for specific file systems (use the <code>file-system-id</code> filter with
533
- * the ID of the file system) or caches (use the <code>file-cache-id</code> filter with
534
- * the ID of the cache), or data repository associations for a specific repository type
535
- * (use the <code>data-repository-type</code> filter with a value of <code>S3</code>
536
- * or <code>NFS</code>). If you don't use filters, the response returns all data
537
- * repository associations owned by your Amazon Web Services account in the Amazon Web Services Region
538
- * of the endpoint that you're calling.</p>
539
- * <p>When retrieving all data repository associations, you can paginate the response by using
540
- * the optional <code>MaxResults</code> parameter to limit the number of data repository associations
541
- * returned in a response. If more data repository associations remain, a
542
- * <code>NextToken</code> value is returned in the response. In this case, send a later
543
- * request with the <code>NextToken</code> request parameter set to the value of
544
- * <code>NextToken</code> from the last response.</p>
172
+ * @see {@link DescribeDataRepositoryAssociationsCommand}
545
173
  */
546
174
  describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataRepositoryAssociationsCommandOutput>;
547
175
  describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, cb: (err: any, data?: DescribeDataRepositoryAssociationsCommandOutput) => void): void;
548
176
  describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataRepositoryAssociationsCommandOutput) => void): void;
549
177
  /**
550
- * @public
551
- * <p>Returns the description of specific Amazon FSx for Lustre or Amazon File Cache data repository tasks, if
552
- * one or more <code>TaskIds</code> values are provided in the request, or if filters are used in the request.
553
- * You can use filters to narrow the response to include just tasks for specific file systems or caches,
554
- * or tasks in a specific lifecycle state. Otherwise, it returns all data repository tasks owned
555
- * by your Amazon Web Services account in the Amazon Web Services Region of the endpoint that you're calling.</p>
556
- * <p>When retrieving all tasks, you can paginate the response by using the optional <code>MaxResults</code>
557
- * parameter to limit the number of tasks returned in a response. If more tasks remain,
558
- * a <code>NextToken</code> value is returned in the response. In this case, send a later
559
- * request with the <code>NextToken</code> request parameter set to the value of
560
- * <code>NextToken</code> from the last response.</p>
178
+ * @see {@link DescribeDataRepositoryTasksCommand}
561
179
  */
562
180
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataRepositoryTasksCommandOutput>;
563
181
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, cb: (err: any, data?: DescribeDataRepositoryTasksCommandOutput) => void): void;
564
182
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataRepositoryTasksCommandOutput) => void): void;
565
183
  /**
566
- * @public
567
- * <p>Returns the description of a specific Amazon File Cache resource, if a
568
- * <code>FileCacheIds</code> value is provided for that cache. Otherwise, it
569
- * returns descriptions of all caches owned by your Amazon Web Services account in the
570
- * Amazon Web Services Region of the endpoint that you're calling.</p>
571
- * <p>When retrieving all cache descriptions, you can optionally specify the
572
- * <code>MaxResults</code> parameter to limit the number of descriptions in a response.
573
- * If more cache descriptions remain, the operation returns a
574
- * <code>NextToken</code> value in the response. In this case, send a later request
575
- * with the <code>NextToken</code> request parameter set to the value of
576
- * <code>NextToken</code> from the last response.</p>
577
- * <p>This operation is used in an iterative process to retrieve a list of your cache
578
- * descriptions. <code>DescribeFileCaches</code> is called first without a
579
- * <code>NextToken</code>value. Then the operation continues to be called with the
580
- * <code>NextToken</code> parameter set to the value of the last <code>NextToken</code>
581
- * value until a response has no <code>NextToken</code>.</p>
582
- * <p>When using this operation, keep the following in mind:</p>
583
- * <ul>
584
- * <li>
585
- * <p>The implementation might return fewer than <code>MaxResults</code>
586
- * cache descriptions while still including a <code>NextToken</code>
587
- * value.</p>
588
- * </li>
589
- * <li>
590
- * <p>The order of caches returned in the response of one
591
- * <code>DescribeFileCaches</code> call and the order of caches returned
592
- * across the responses of a multicall iteration is unspecified.</p>
593
- * </li>
594
- * </ul>
184
+ * @see {@link DescribeFileCachesCommand}
595
185
  */
596
186
  describeFileCaches(args: DescribeFileCachesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFileCachesCommandOutput>;
597
187
  describeFileCaches(args: DescribeFileCachesCommandInput, cb: (err: any, data?: DescribeFileCachesCommandOutput) => void): void;
598
188
  describeFileCaches(args: DescribeFileCachesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileCachesCommandOutput) => void): void;
599
189
  /**
600
- * @public
601
- * <p>Returns the DNS aliases that are associated with the specified Amazon FSx for Windows File Server file system. A history of
602
- * all DNS aliases that have been associated with and disassociated from the file system is available in the list of <a>AdministrativeAction</a>
603
- * provided in the <a>DescribeFileSystems</a> operation response.</p>
190
+ * @see {@link DescribeFileSystemAliasesCommand}
604
191
  */
605
192
  describeFileSystemAliases(args: DescribeFileSystemAliasesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFileSystemAliasesCommandOutput>;
606
193
  describeFileSystemAliases(args: DescribeFileSystemAliasesCommandInput, cb: (err: any, data?: DescribeFileSystemAliasesCommandOutput) => void): void;
607
194
  describeFileSystemAliases(args: DescribeFileSystemAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileSystemAliasesCommandOutput) => void): void;
608
195
  /**
609
- * @public
610
- * <p>Returns the description of specific Amazon FSx file systems, if a
611
- * <code>FileSystemIds</code> value is provided for that file system. Otherwise, it
612
- * returns descriptions of all file systems owned by your Amazon Web Services account in the
613
- * Amazon Web Services Region of the endpoint that you're calling.</p>
614
- * <p>When retrieving all file system descriptions, you can optionally specify the
615
- * <code>MaxResults</code> parameter to limit the number of descriptions in a response.
616
- * If more file system descriptions remain, Amazon FSx returns a
617
- * <code>NextToken</code> value in the response. In this case, send a later request
618
- * with the <code>NextToken</code> request parameter set to the value of
619
- * <code>NextToken</code> from the last response.</p>
620
- * <p>This operation is used in an iterative process to retrieve a list of your file system
621
- * descriptions. <code>DescribeFileSystems</code> is called first without a
622
- * <code>NextToken</code>value. Then the operation continues to be called with the
623
- * <code>NextToken</code> parameter set to the value of the last <code>NextToken</code>
624
- * value until a response has no <code>NextToken</code>.</p>
625
- * <p>When using this operation, keep the following in mind:</p>
626
- * <ul>
627
- * <li>
628
- * <p>The implementation might return fewer than <code>MaxResults</code> file
629
- * system descriptions while still including a <code>NextToken</code>
630
- * value.</p>
631
- * </li>
632
- * <li>
633
- * <p>The order of file systems returned in the response of one
634
- * <code>DescribeFileSystems</code> call and the order of file systems returned
635
- * across the responses of a multicall iteration is unspecified.</p>
636
- * </li>
637
- * </ul>
196
+ * @see {@link DescribeFileSystemsCommand}
638
197
  */
639
198
  describeFileSystems(args: DescribeFileSystemsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFileSystemsCommandOutput>;
640
199
  describeFileSystems(args: DescribeFileSystemsCommandInput, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
641
200
  describeFileSystems(args: DescribeFileSystemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
642
201
  /**
643
- * @public
644
- * <p>Returns the description of specific Amazon FSx for OpenZFS snapshots, if a
645
- * <code>SnapshotIds</code> value is provided. Otherwise, this operation returns all
646
- * snapshots owned by your Amazon Web Services account in the Amazon Web Services Region of
647
- * the endpoint that you're calling.</p>
648
- * <p>When retrieving all snapshots, you can optionally specify the <code>MaxResults</code>
649
- * parameter to limit the number of snapshots in a response. If more backups remain,
650
- * Amazon FSx returns a <code>NextToken</code> value in the response. In this
651
- * case, send a later request with the <code>NextToken</code> request parameter set to the
652
- * value of <code>NextToken</code> from the last response. </p>
653
- * <p>Use this operation in an iterative process to retrieve a list of your snapshots.
654
- * <code>DescribeSnapshots</code> is called first without a <code>NextToken</code>
655
- * value. Then the operation continues to be called with the <code>NextToken</code>
656
- * parameter set to the value of the last <code>NextToken</code> value until a response has
657
- * no <code>NextToken</code> value.</p>
658
- * <p>When using this operation, keep the following in mind:</p>
659
- * <ul>
660
- * <li>
661
- * <p>The operation might return fewer than the <code>MaxResults</code> value of
662
- * snapshot descriptions while still including a <code>NextToken</code>
663
- * value.</p>
664
- * </li>
665
- * <li>
666
- * <p>The order of snapshots returned in the response of one
667
- * <code>DescribeSnapshots</code> call and the order of backups returned across
668
- * the responses of a multi-call iteration is unspecified. </p>
669
- * </li>
670
- * </ul>
202
+ * @see {@link DescribeSnapshotsCommand}
671
203
  */
672
204
  describeSnapshots(args: DescribeSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotsCommandOutput>;
673
205
  describeSnapshots(args: DescribeSnapshotsCommandInput, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
674
206
  describeSnapshots(args: DescribeSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
675
207
  /**
676
- * @public
677
- * <p>Describes one or more Amazon FSx for NetApp ONTAP storage virtual machines (SVMs).</p>
208
+ * @see {@link DescribeStorageVirtualMachinesCommand}
678
209
  */
679
210
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageVirtualMachinesCommandOutput>;
680
211
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, cb: (err: any, data?: DescribeStorageVirtualMachinesCommandOutput) => void): void;
681
212
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageVirtualMachinesCommandOutput) => void): void;
682
213
  /**
683
- * @public
684
- * <p>Describes one or more Amazon FSx for NetApp ONTAP or Amazon FSx for
685
- * OpenZFS volumes.</p>
214
+ * @see {@link DescribeVolumesCommand}
686
215
  */
687
216
  describeVolumes(args: DescribeVolumesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVolumesCommandOutput>;
688
217
  describeVolumes(args: DescribeVolumesCommandInput, cb: (err: any, data?: DescribeVolumesCommandOutput) => void): void;
689
218
  describeVolumes(args: DescribeVolumesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVolumesCommandOutput) => void): void;
690
219
  /**
691
- * @public
692
- * <p>Use this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases
693
- * from an Amazon FSx for Windows File Server file system. If you attempt to disassociate a DNS alias that is not
694
- * associated with the file system, Amazon FSx responds with a 400 Bad Request. For more information, see
695
- * <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-dns-aliases.html">Working with DNS Aliases</a>.</p>
696
- * <p>The system generated response showing the DNS aliases that
697
- * Amazon FSx is attempting to disassociate from the file system.
698
- * Use the API
699
- * operation to monitor the status of the aliases Amazon FSx is
700
- * disassociating with the file system.</p>
220
+ * @see {@link DisassociateFileSystemAliasesCommand}
701
221
  */
702
222
  disassociateFileSystemAliases(args: DisassociateFileSystemAliasesCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateFileSystemAliasesCommandOutput>;
703
223
  disassociateFileSystemAliases(args: DisassociateFileSystemAliasesCommandInput, cb: (err: any, data?: DisassociateFileSystemAliasesCommandOutput) => void): void;
704
224
  disassociateFileSystemAliases(args: DisassociateFileSystemAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFileSystemAliasesCommandOutput) => void): void;
705
225
  /**
706
- * @public
707
- * <p>Lists tags for Amazon FSx resources.</p>
708
- * <p>When retrieving all tags, you can optionally specify the <code>MaxResults</code>
709
- * parameter to limit the number of tags in a response. If more tags remain, Amazon FSx
710
- * returns a <code>NextToken</code> value in the response. In this case, send a later
711
- * request with the <code>NextToken</code> request parameter set to the value of
712
- * <code>NextToken</code> from the last response.</p>
713
- * <p>This action is used in an iterative process to retrieve a list of your tags.
714
- * <code>ListTagsForResource</code> is called first without a
715
- * <code>NextToken</code>value. Then the action continues to be called with the
716
- * <code>NextToken</code> parameter set to the value of the last <code>NextToken</code>
717
- * value until a response has no <code>NextToken</code>.</p>
718
- * <p>When using this action, keep the following in mind:</p>
719
- * <ul>
720
- * <li>
721
- * <p>The implementation might return fewer than <code>MaxResults</code> file
722
- * system descriptions while still including a <code>NextToken</code>
723
- * value.</p>
724
- * </li>
725
- * <li>
726
- * <p>The order of tags returned in the response of one
727
- * <code>ListTagsForResource</code> call and the order of tags returned across
728
- * the responses of a multi-call iteration is unspecified.</p>
729
- * </li>
730
- * </ul>
226
+ * @see {@link ListTagsForResourceCommand}
731
227
  */
732
228
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
733
229
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
734
230
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
735
231
  /**
736
- * @public
737
- * <p>Releases the file system lock from an Amazon FSx for OpenZFS file
738
- * system.</p>
232
+ * @see {@link ReleaseFileSystemNfsV3LocksCommand}
739
233
  */
740
234
  releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, options?: __HttpHandlerOptions): Promise<ReleaseFileSystemNfsV3LocksCommandOutput>;
741
235
  releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, cb: (err: any, data?: ReleaseFileSystemNfsV3LocksCommandOutput) => void): void;
742
236
  releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleaseFileSystemNfsV3LocksCommandOutput) => void): void;
743
237
  /**
744
- * @public
745
- * <p>Returns an Amazon FSx for OpenZFS volume to the state saved by the specified
746
- * snapshot.</p>
238
+ * @see {@link RestoreVolumeFromSnapshotCommand}
747
239
  */
748
240
  restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreVolumeFromSnapshotCommandOutput>;
749
241
  restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, cb: (err: any, data?: RestoreVolumeFromSnapshotCommandOutput) => void): void;
750
242
  restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreVolumeFromSnapshotCommandOutput) => void): void;
751
243
  /**
752
- * @public
753
- * <p>Tags an Amazon FSx resource.</p>
244
+ * @see {@link TagResourceCommand}
754
245
  */
755
246
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
756
247
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
757
248
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
758
249
  /**
759
- * @public
760
- * <p>This action removes a tag from an Amazon FSx resource.</p>
250
+ * @see {@link UntagResourceCommand}
761
251
  */
762
252
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
763
253
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
764
254
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
765
255
  /**
766
- * @public
767
- * <p>Updates the configuration of an existing data repository association
768
- * on an Amazon FSx for Lustre file system. Data repository associations
769
- * are supported for all file systems except for <code>Scratch_1</code>
770
- * deployment type.</p>
256
+ * @see {@link UpdateDataRepositoryAssociationCommand}
771
257
  */
772
258
  updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataRepositoryAssociationCommandOutput>;
773
259
  updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, cb: (err: any, data?: UpdateDataRepositoryAssociationCommandOutput) => void): void;
774
260
  updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataRepositoryAssociationCommandOutput) => void): void;
775
261
  /**
776
- * @public
777
- * <p>Updates the configuration of an existing Amazon File Cache resource.
778
- * You can update multiple properties in a single request.</p>
262
+ * @see {@link UpdateFileCacheCommand}
779
263
  */
780
264
  updateFileCache(args: UpdateFileCacheCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFileCacheCommandOutput>;
781
265
  updateFileCache(args: UpdateFileCacheCommandInput, cb: (err: any, data?: UpdateFileCacheCommandOutput) => void): void;
782
266
  updateFileCache(args: UpdateFileCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFileCacheCommandOutput) => void): void;
783
267
  /**
784
- * @public
785
- * <p>Use this operation to update the configuration of an existing Amazon FSx file
786
- * system. You can update multiple properties in a single request.</p>
787
- * <p>For FSx for Windows File Server file systems, you can update the following
788
- * properties:</p>
789
- * <ul>
790
- * <li>
791
- * <p>
792
- * <code>AuditLogConfiguration</code>
793
- * </p>
794
- * </li>
795
- * <li>
796
- * <p>
797
- * <code>AutomaticBackupRetentionDays</code>
798
- * </p>
799
- * </li>
800
- * <li>
801
- * <p>
802
- * <code>DailyAutomaticBackupStartTime</code>
803
- * </p>
804
- * </li>
805
- * <li>
806
- * <p>
807
- * <code>SelfManagedActiveDirectoryConfiguration</code>
808
- * </p>
809
- * </li>
810
- * <li>
811
- * <p>
812
- * <code>StorageCapacity</code>
813
- * </p>
814
- * </li>
815
- * <li>
816
- * <p>
817
- * <code>ThroughputCapacity</code>
818
- * </p>
819
- * </li>
820
- * <li>
821
- * <p>
822
- * <code>WeeklyMaintenanceStartTime</code>
823
- * </p>
824
- * </li>
825
- * </ul>
826
- * <p>For FSx for Lustre file systems, you can update the following
827
- * properties:</p>
828
- * <ul>
829
- * <li>
830
- * <p>
831
- * <code>AutoImportPolicy</code>
832
- * </p>
833
- * </li>
834
- * <li>
835
- * <p>
836
- * <code>AutomaticBackupRetentionDays</code>
837
- * </p>
838
- * </li>
839
- * <li>
840
- * <p>
841
- * <code>DailyAutomaticBackupStartTime</code>
842
- * </p>
843
- * </li>
844
- * <li>
845
- * <p>
846
- * <code>DataCompressionType</code>
847
- * </p>
848
- * </li>
849
- * <li>
850
- * <p>
851
- * <code>LustreRootSquashConfiguration</code>
852
- * </p>
853
- * </li>
854
- * <li>
855
- * <p>
856
- * <code>StorageCapacity</code>
857
- * </p>
858
- * </li>
859
- * <li>
860
- * <p>
861
- * <code>WeeklyMaintenanceStartTime</code>
862
- * </p>
863
- * </li>
864
- * </ul>
865
- * <p>For FSx for ONTAP file systems, you can update the following
866
- * properties:</p>
867
- * <ul>
868
- * <li>
869
- * <p>
870
- * <code>AddRouteTableIds</code>
871
- * </p>
872
- * </li>
873
- * <li>
874
- * <p>
875
- * <code>AutomaticBackupRetentionDays</code>
876
- * </p>
877
- * </li>
878
- * <li>
879
- * <p>
880
- * <code>DailyAutomaticBackupStartTime</code>
881
- * </p>
882
- * </li>
883
- * <li>
884
- * <p>
885
- * <code>DiskIopsConfiguration</code>
886
- * </p>
887
- * </li>
888
- * <li>
889
- * <p>
890
- * <code>FsxAdminPassword</code>
891
- * </p>
892
- * </li>
893
- * <li>
894
- * <p>
895
- * <code>RemoveRouteTableIds</code>
896
- * </p>
897
- * </li>
898
- * <li>
899
- * <p>
900
- * <code>StorageCapacity</code>
901
- * </p>
902
- * </li>
903
- * <li>
904
- * <p>
905
- * <code>ThroughputCapacity</code>
906
- * </p>
907
- * </li>
908
- * <li>
909
- * <p>
910
- * <code>WeeklyMaintenanceStartTime</code>
911
- * </p>
912
- * </li>
913
- * </ul>
914
- * <p>For FSx for OpenZFS file systems, you can update the following
915
- * properties:</p>
916
- * <ul>
917
- * <li>
918
- * <p>
919
- * <code>AutomaticBackupRetentionDays</code>
920
- * </p>
921
- * </li>
922
- * <li>
923
- * <p>
924
- * <code>CopyTagsToBackups</code>
925
- * </p>
926
- * </li>
927
- * <li>
928
- * <p>
929
- * <code>CopyTagsToVolumes</code>
930
- * </p>
931
- * </li>
932
- * <li>
933
- * <p>
934
- * <code>DailyAutomaticBackupStartTime</code>
935
- * </p>
936
- * </li>
937
- * <li>
938
- * <p>
939
- * <code>DiskIopsConfiguration</code>
940
- * </p>
941
- * </li>
942
- * <li>
943
- * <p>
944
- * <code>StorageCapacity</code>
945
- * </p>
946
- * </li>
947
- * <li>
948
- * <p>
949
- * <code>ThroughputCapacity</code>
950
- * </p>
951
- * </li>
952
- * <li>
953
- * <p>
954
- * <code>WeeklyMaintenanceStartTime</code>
955
- * </p>
956
- * </li>
957
- * </ul>
268
+ * @see {@link UpdateFileSystemCommand}
958
269
  */
959
270
  updateFileSystem(args: UpdateFileSystemCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFileSystemCommandOutput>;
960
271
  updateFileSystem(args: UpdateFileSystemCommandInput, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
961
272
  updateFileSystem(args: UpdateFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
962
273
  /**
963
- * @public
964
- * <p>Updates the name of an Amazon FSx for OpenZFS snapshot.</p>
274
+ * @see {@link UpdateSnapshotCommand}
965
275
  */
966
276
  updateSnapshot(args: UpdateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSnapshotCommandOutput>;
967
277
  updateSnapshot(args: UpdateSnapshotCommandInput, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
968
278
  updateSnapshot(args: UpdateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
969
279
  /**
970
- * @public
971
- * <p>Updates an Amazon FSx for ONTAP storage virtual machine (SVM).</p>
280
+ * @see {@link UpdateStorageVirtualMachineCommand}
972
281
  */
973
282
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStorageVirtualMachineCommandOutput>;
974
283
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, cb: (err: any, data?: UpdateStorageVirtualMachineCommandOutput) => void): void;
975
284
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStorageVirtualMachineCommandOutput) => void): void;
976
285
  /**
977
- * @public
978
- * <p>Updates the configuration of an Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS volume.</p>
286
+ * @see {@link UpdateVolumeCommand}
979
287
  */
980
288
  updateVolume(args: UpdateVolumeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVolumeCommandOutput>;
981
289
  updateVolume(args: UpdateVolumeCommandInput, cb: (err: any, data?: UpdateVolumeCommandOutput) => void): void;
982
290
  updateVolume(args: UpdateVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVolumeCommandOutput) => void): void;
983
291
  }
292
+ /**
293
+ * @public
294
+ * <p>Amazon FSx is a fully managed service that makes it easy for storage and
295
+ * application administrators to launch and use shared file storage.</p>
296
+ */
297
+ export declare class FSx extends FSxClient implements FSx {
298
+ }