@aws-sdk/client-fsx 3.295.0 → 3.297.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 (57) hide show
  1. package/dist-types/FSx.d.ts +42 -0
  2. package/dist-types/FSxClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +16 -0
  5. package/dist-types/commands/CopyBackupCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateBackupCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateFileCacheCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateFileSystemCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
  13. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +16 -0
  14. package/dist-types/commands/CreateVolumeCommand.d.ts +16 -0
  15. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteBackupCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteFileCacheCommand.d.ts +16 -0
  19. package/dist-types/commands/DeleteFileSystemCommand.d.ts +16 -0
  20. package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
  21. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +16 -0
  22. package/dist-types/commands/DeleteVolumeCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeBackupsCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +16 -0
  26. package/dist-types/commands/DescribeFileCachesCommand.d.ts +16 -0
  27. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +16 -0
  28. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +16 -0
  29. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +16 -0
  30. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +16 -0
  31. package/dist-types/commands/DescribeVolumesCommand.d.ts +16 -0
  32. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +16 -0
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +16 -0
  35. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +16 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateFileCacheCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateFileSystemCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateVolumeCommand.d.ts +16 -0
  44. package/dist-types/models/FSxServiceException.d.ts +2 -0
  45. package/dist-types/models/models_0.d.ts +474 -1
  46. package/dist-types/pagination/DescribeBackupsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/DescribeDataRepositoryTasksPaginator.d.ts +3 -0
  49. package/dist-types/pagination/DescribeFileCachesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/DescribeFileSystemAliasesPaginator.d.ts +3 -0
  51. package/dist-types/pagination/DescribeFileSystemsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/DescribeSnapshotsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/DescribeStorageVirtualMachinesPaginator.d.ts +3 -0
  54. package/dist-types/pagination/DescribeVolumesPaginator.d.ts +3 -0
  55. package/dist-types/pagination/Interfaces.d.ts +3 -0
  56. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  57. package/package.json +29 -29
@@ -42,11 +42,13 @@ import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCom
42
42
  import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "./commands/UpdateVolumeCommand";
43
43
  import { FSxClient } from "./FSxClient";
44
44
  /**
45
+ * @public
45
46
  * <p>Amazon FSx is a fully managed service that makes it easy for storage and
46
47
  * application administrators to launch and use shared file storage.</p>
47
48
  */
48
49
  export declare class FSx extends FSxClient {
49
50
  /**
51
+ * @public
50
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.
51
53
  * A file system can have a maximum of 50 DNS aliases associated with it at any one time. If you try to
52
54
  * associate a DNS alias that is already associated with the file system, FSx takes no action on that alias in the request.
@@ -63,6 +65,7 @@ export declare class FSx extends FSxClient {
63
65
  associateFileSystemAliases(args: AssociateFileSystemAliasesCommandInput, cb: (err: any, data?: AssociateFileSystemAliasesCommandOutput) => void): void;
64
66
  associateFileSystemAliases(args: AssociateFileSystemAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateFileSystemAliasesCommandOutput) => void): void;
65
67
  /**
68
+ * @public
66
69
  * <p>Cancels an existing Amazon FSx for Lustre data repository task if that task is in either the
67
70
  * <code>PENDING</code> or <code>EXECUTING</code> state. When you cancel a task, Amazon FSx does the following.</p>
68
71
  * <ul>
@@ -81,6 +84,7 @@ export declare class FSx extends FSxClient {
81
84
  cancelDataRepositoryTask(args: CancelDataRepositoryTaskCommandInput, cb: (err: any, data?: CancelDataRepositoryTaskCommandOutput) => void): void;
82
85
  cancelDataRepositoryTask(args: CancelDataRepositoryTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelDataRepositoryTaskCommandOutput) => void): void;
83
86
  /**
87
+ * @public
84
88
  * <p>Copies an existing backup within the same Amazon Web Services account to another Amazon Web Services Region
85
89
  * (cross-Region copy) or within the same Amazon Web Services Region (in-Region copy). You can have up to five
86
90
  * backup copy requests in progress to a single destination Region per account.</p>
@@ -107,6 +111,7 @@ export declare class FSx extends FSxClient {
107
111
  copyBackup(args: CopyBackupCommandInput, cb: (err: any, data?: CopyBackupCommandOutput) => void): void;
108
112
  copyBackup(args: CopyBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyBackupCommandOutput) => void): void;
109
113
  /**
114
+ * @public
110
115
  * <p>Creates a backup of an existing Amazon FSx for Windows File Server file
111
116
  * system, Amazon FSx for Lustre file system, Amazon FSx for NetApp ONTAP
112
117
  * volume, or Amazon FSx for OpenZFS file system. We recommend creating regular
@@ -168,6 +173,7 @@ export declare class FSx extends FSxClient {
168
173
  createBackup(args: CreateBackupCommandInput, cb: (err: any, data?: CreateBackupCommandOutput) => void): void;
169
174
  createBackup(args: CreateBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackupCommandOutput) => void): void;
170
175
  /**
176
+ * @public
171
177
  * <p>Creates an Amazon FSx for Lustre data repository association (DRA). A data
172
178
  * repository association is a link between a directory on the file system and
173
179
  * an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository
@@ -190,6 +196,7 @@ export declare class FSx extends FSxClient {
190
196
  createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, cb: (err: any, data?: CreateDataRepositoryAssociationCommandOutput) => void): void;
191
197
  createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRepositoryAssociationCommandOutput) => void): void;
192
198
  /**
199
+ * @public
193
200
  * <p>Creates an Amazon FSx for Lustre data repository task. You use data repository tasks
194
201
  * to perform bulk operations between your Amazon FSx file system and its linked data
195
202
  * repositories. An example of a data repository task is exporting any data and metadata
@@ -205,6 +212,7 @@ export declare class FSx extends FSxClient {
205
212
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, cb: (err: any, data?: CreateDataRepositoryTaskCommandOutput) => void): void;
206
213
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRepositoryTaskCommandOutput) => void): void;
207
214
  /**
215
+ * @public
208
216
  * <p>Creates a new Amazon File Cache resource.</p>
209
217
  * <p>You can use this operation with a client request token in the request that
210
218
  * Amazon File Cache uses to ensure idempotent creation.
@@ -234,6 +242,7 @@ export declare class FSx extends FSxClient {
234
242
  createFileCache(args: CreateFileCacheCommandInput, cb: (err: any, data?: CreateFileCacheCommandOutput) => void): void;
235
243
  createFileCache(args: CreateFileCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFileCacheCommandOutput) => void): void;
236
244
  /**
245
+ * @public
237
246
  * <p>Creates a new, empty Amazon FSx file system. You can create the following supported
238
247
  * Amazon FSx file systems using the <code>CreateFileSystem</code> API operation:</p>
239
248
  * <ul>
@@ -285,6 +294,7 @@ export declare class FSx extends FSxClient {
285
294
  createFileSystem(args: CreateFileSystemCommandInput, cb: (err: any, data?: CreateFileSystemCommandOutput) => void): void;
286
295
  createFileSystem(args: CreateFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFileSystemCommandOutput) => void): void;
287
296
  /**
297
+ * @public
288
298
  * <p>Creates a new Amazon FSx for Lustre, Amazon FSx for Windows File
289
299
  * Server, or Amazon FSx for OpenZFS file system from an existing Amazon FSx backup.</p>
290
300
  * <p>If a file system with the specified client request token exists and the parameters
@@ -323,6 +333,7 @@ export declare class FSx extends FSxClient {
323
333
  createFileSystemFromBackup(args: CreateFileSystemFromBackupCommandInput, cb: (err: any, data?: CreateFileSystemFromBackupCommandOutput) => void): void;
324
334
  createFileSystemFromBackup(args: CreateFileSystemFromBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFileSystemFromBackupCommandOutput) => void): void;
325
335
  /**
336
+ * @public
326
337
  * <p>Creates a snapshot of an existing Amazon FSx for OpenZFS volume. With
327
338
  * snapshots, you can easily undo file changes and compare file versions by restoring the
328
339
  * volume to a previous version.</p>
@@ -356,18 +367,21 @@ export declare class FSx extends FSxClient {
356
367
  createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
357
368
  createSnapshot(args: CreateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
358
369
  /**
370
+ * @public
359
371
  * <p>Creates a storage virtual machine (SVM) for an Amazon FSx for ONTAP file system.</p>
360
372
  */
361
373
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<CreateStorageVirtualMachineCommandOutput>;
362
374
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, cb: (err: any, data?: CreateStorageVirtualMachineCommandOutput) => void): void;
363
375
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStorageVirtualMachineCommandOutput) => void): void;
364
376
  /**
377
+ * @public
365
378
  * <p>Creates an FSx for ONTAP or Amazon FSx for OpenZFS storage volume.</p>
366
379
  */
367
380
  createVolume(args: CreateVolumeCommandInput, options?: __HttpHandlerOptions): Promise<CreateVolumeCommandOutput>;
368
381
  createVolume(args: CreateVolumeCommandInput, cb: (err: any, data?: CreateVolumeCommandOutput) => void): void;
369
382
  createVolume(args: CreateVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVolumeCommandOutput) => void): void;
370
383
  /**
384
+ * @public
371
385
  * <p>Creates a new Amazon FSx for NetApp ONTAP volume from an
372
386
  * existing Amazon FSx volume backup.</p>
373
387
  */
@@ -375,6 +389,7 @@ export declare class FSx extends FSxClient {
375
389
  createVolumeFromBackup(args: CreateVolumeFromBackupCommandInput, cb: (err: any, data?: CreateVolumeFromBackupCommandOutput) => void): void;
376
390
  createVolumeFromBackup(args: CreateVolumeFromBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVolumeFromBackupCommandOutput) => void): void;
377
391
  /**
392
+ * @public
378
393
  * <p>Deletes an Amazon FSx backup. After deletion, the backup no longer exists, and
379
394
  * its data is gone.</p>
380
395
  * <p>The <code>DeleteBackup</code> call returns instantly. The backup won't show up in
@@ -388,6 +403,7 @@ export declare class FSx extends FSxClient {
388
403
  deleteBackup(args: DeleteBackupCommandInput, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
389
404
  deleteBackup(args: DeleteBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
390
405
  /**
406
+ * @public
391
407
  * <p>Deletes a data repository association on an Amazon FSx for Lustre
392
408
  * file system. Deleting the data repository association unlinks the
393
409
  * file system from the Amazon S3 bucket. When deleting a data repository
@@ -400,6 +416,7 @@ export declare class FSx extends FSxClient {
400
416
  deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, cb: (err: any, data?: DeleteDataRepositoryAssociationCommandOutput) => void): void;
401
417
  deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataRepositoryAssociationCommandOutput) => void): void;
402
418
  /**
419
+ * @public
403
420
  * <p>Deletes an Amazon File Cache resource. After deletion, the cache no longer exists, and its data
404
421
  * is gone.</p>
405
422
  * <p>The <code>DeleteFileCache</code> operation returns while the cache has the
@@ -417,6 +434,7 @@ export declare class FSx extends FSxClient {
417
434
  deleteFileCache(args: DeleteFileCacheCommandInput, cb: (err: any, data?: DeleteFileCacheCommandOutput) => void): void;
418
435
  deleteFileCache(args: DeleteFileCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFileCacheCommandOutput) => void): void;
419
436
  /**
437
+ * @public
420
438
  * <p>Deletes a file system. After deletion, the file system no longer exists, and its data
421
439
  * is gone. Any existing automatic backups and snapshots are also deleted.</p>
422
440
  * <p>To delete an Amazon FSx for NetApp ONTAP file system, first delete all the
@@ -445,6 +463,7 @@ export declare class FSx extends FSxClient {
445
463
  deleteFileSystem(args: DeleteFileSystemCommandInput, cb: (err: any, data?: DeleteFileSystemCommandOutput) => void): void;
446
464
  deleteFileSystem(args: DeleteFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFileSystemCommandOutput) => void): void;
447
465
  /**
466
+ * @public
448
467
  * <p>Deletes an Amazon FSx for OpenZFS snapshot. After deletion, the snapshot no longer
449
468
  * exists, and its data is gone. Deleting a snapshot doesn't affect snapshots stored in a
450
469
  * file system backup. </p>
@@ -455,6 +474,7 @@ export declare class FSx extends FSxClient {
455
474
  deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
456
475
  deleteSnapshot(args: DeleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
457
476
  /**
477
+ * @public
458
478
  * <p>Deletes an existing Amazon FSx for ONTAP storage virtual machine (SVM). Prior
459
479
  * to deleting an SVM, you must delete all non-root volumes in the SVM, otherwise the operation will fail.</p>
460
480
  */
@@ -462,6 +482,7 @@ export declare class FSx extends FSxClient {
462
482
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, cb: (err: any, data?: DeleteStorageVirtualMachineCommandOutput) => void): void;
463
483
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStorageVirtualMachineCommandOutput) => void): void;
464
484
  /**
485
+ * @public
465
486
  * <p>Deletes an Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS
466
487
  * volume.</p>
467
488
  */
@@ -469,6 +490,7 @@ export declare class FSx extends FSxClient {
469
490
  deleteVolume(args: DeleteVolumeCommandInput, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
470
491
  deleteVolume(args: DeleteVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
471
492
  /**
493
+ * @public
472
494
  * <p>Returns the description of a specific Amazon FSx backup, if a
473
495
  * <code>BackupIds</code> value is provided for that backup. Otherwise, it returns all
474
496
  * backups owned by your Amazon Web Services account in the Amazon Web Services Region of the
@@ -500,6 +522,7 @@ export declare class FSx extends FSxClient {
500
522
  describeBackups(args: DescribeBackupsCommandInput, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
501
523
  describeBackups(args: DescribeBackupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
502
524
  /**
525
+ * @public
503
526
  * <p>Returns the description of specific Amazon FSx for Lustre or Amazon File Cache
504
527
  * data repository associations, if one or more <code>AssociationIds</code> values
505
528
  * are provided in the request, or if filters are used in the request. Data repository
@@ -524,6 +547,7 @@ export declare class FSx extends FSxClient {
524
547
  describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, cb: (err: any, data?: DescribeDataRepositoryAssociationsCommandOutput) => void): void;
525
548
  describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataRepositoryAssociationsCommandOutput) => void): void;
526
549
  /**
550
+ * @public
527
551
  * <p>Returns the description of specific Amazon FSx for Lustre or Amazon File Cache data repository tasks, if
528
552
  * one or more <code>TaskIds</code> values are provided in the request, or if filters are used in the request.
529
553
  * You can use filters to narrow the response to include just tasks for specific file systems or caches,
@@ -539,6 +563,7 @@ export declare class FSx extends FSxClient {
539
563
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, cb: (err: any, data?: DescribeDataRepositoryTasksCommandOutput) => void): void;
540
564
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataRepositoryTasksCommandOutput) => void): void;
541
565
  /**
566
+ * @public
542
567
  * <p>Returns the description of a specific Amazon File Cache resource, if a
543
568
  * <code>FileCacheIds</code> value is provided for that cache. Otherwise, it
544
569
  * returns descriptions of all caches owned by your Amazon Web Services account in the
@@ -572,6 +597,7 @@ export declare class FSx extends FSxClient {
572
597
  describeFileCaches(args: DescribeFileCachesCommandInput, cb: (err: any, data?: DescribeFileCachesCommandOutput) => void): void;
573
598
  describeFileCaches(args: DescribeFileCachesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileCachesCommandOutput) => void): void;
574
599
  /**
600
+ * @public
575
601
  * <p>Returns the DNS aliases that are associated with the specified Amazon FSx for Windows File Server file system. A history of
576
602
  * all DNS aliases that have been associated with and disassociated from the file system is available in the list of <a>AdministrativeAction</a>
577
603
  * provided in the <a>DescribeFileSystems</a> operation response.</p>
@@ -580,6 +606,7 @@ export declare class FSx extends FSxClient {
580
606
  describeFileSystemAliases(args: DescribeFileSystemAliasesCommandInput, cb: (err: any, data?: DescribeFileSystemAliasesCommandOutput) => void): void;
581
607
  describeFileSystemAliases(args: DescribeFileSystemAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileSystemAliasesCommandOutput) => void): void;
582
608
  /**
609
+ * @public
583
610
  * <p>Returns the description of specific Amazon FSx file systems, if a
584
611
  * <code>FileSystemIds</code> value is provided for that file system. Otherwise, it
585
612
  * returns descriptions of all file systems owned by your Amazon Web Services account in the
@@ -613,6 +640,7 @@ export declare class FSx extends FSxClient {
613
640
  describeFileSystems(args: DescribeFileSystemsCommandInput, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
614
641
  describeFileSystems(args: DescribeFileSystemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
615
642
  /**
643
+ * @public
616
644
  * <p>Returns the description of specific Amazon FSx for OpenZFS snapshots, if a
617
645
  * <code>SnapshotIds</code> value is provided. Otherwise, this operation returns all
618
646
  * snapshots owned by your Amazon Web Services account in the Amazon Web Services Region of
@@ -645,12 +673,14 @@ export declare class FSx extends FSxClient {
645
673
  describeSnapshots(args: DescribeSnapshotsCommandInput, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
646
674
  describeSnapshots(args: DescribeSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
647
675
  /**
676
+ * @public
648
677
  * <p>Describes one or more Amazon FSx for NetApp ONTAP storage virtual machines (SVMs).</p>
649
678
  */
650
679
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageVirtualMachinesCommandOutput>;
651
680
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, cb: (err: any, data?: DescribeStorageVirtualMachinesCommandOutput) => void): void;
652
681
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageVirtualMachinesCommandOutput) => void): void;
653
682
  /**
683
+ * @public
654
684
  * <p>Describes one or more Amazon FSx for NetApp ONTAP or Amazon FSx for
655
685
  * OpenZFS volumes.</p>
656
686
  */
@@ -658,6 +688,7 @@ export declare class FSx extends FSxClient {
658
688
  describeVolumes(args: DescribeVolumesCommandInput, cb: (err: any, data?: DescribeVolumesCommandOutput) => void): void;
659
689
  describeVolumes(args: DescribeVolumesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVolumesCommandOutput) => void): void;
660
690
  /**
691
+ * @public
661
692
  * <p>Use this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases
662
693
  * from an Amazon FSx for Windows File Server file system. If you attempt to disassociate a DNS alias that is not
663
694
  * associated with the file system, Amazon FSx responds with a 400 Bad Request. For more information, see
@@ -672,6 +703,7 @@ export declare class FSx extends FSxClient {
672
703
  disassociateFileSystemAliases(args: DisassociateFileSystemAliasesCommandInput, cb: (err: any, data?: DisassociateFileSystemAliasesCommandOutput) => void): void;
673
704
  disassociateFileSystemAliases(args: DisassociateFileSystemAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFileSystemAliasesCommandOutput) => void): void;
674
705
  /**
706
+ * @public
675
707
  * <p>Lists tags for Amazon FSx resources.</p>
676
708
  * <p>When retrieving all tags, you can optionally specify the <code>MaxResults</code>
677
709
  * parameter to limit the number of tags in a response. If more tags remain, Amazon FSx
@@ -701,6 +733,7 @@ export declare class FSx extends FSxClient {
701
733
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
702
734
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
703
735
  /**
736
+ * @public
704
737
  * <p>Releases the file system lock from an Amazon FSx for OpenZFS file
705
738
  * system.</p>
706
739
  */
@@ -708,6 +741,7 @@ export declare class FSx extends FSxClient {
708
741
  releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, cb: (err: any, data?: ReleaseFileSystemNfsV3LocksCommandOutput) => void): void;
709
742
  releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleaseFileSystemNfsV3LocksCommandOutput) => void): void;
710
743
  /**
744
+ * @public
711
745
  * <p>Returns an Amazon FSx for OpenZFS volume to the state saved by the specified
712
746
  * snapshot.</p>
713
747
  */
@@ -715,18 +749,21 @@ export declare class FSx extends FSxClient {
715
749
  restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, cb: (err: any, data?: RestoreVolumeFromSnapshotCommandOutput) => void): void;
716
750
  restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreVolumeFromSnapshotCommandOutput) => void): void;
717
751
  /**
752
+ * @public
718
753
  * <p>Tags an Amazon FSx resource.</p>
719
754
  */
720
755
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
721
756
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
722
757
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
723
758
  /**
759
+ * @public
724
760
  * <p>This action removes a tag from an Amazon FSx resource.</p>
725
761
  */
726
762
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
727
763
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
728
764
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
729
765
  /**
766
+ * @public
730
767
  * <p>Updates the configuration of an existing data repository association
731
768
  * on an Amazon FSx for Lustre file system. Data repository associations are
732
769
  * supported only for file systems with the <code>Persistent_2</code> deployment type.</p>
@@ -735,6 +772,7 @@ export declare class FSx extends FSxClient {
735
772
  updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, cb: (err: any, data?: UpdateDataRepositoryAssociationCommandOutput) => void): void;
736
773
  updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataRepositoryAssociationCommandOutput) => void): void;
737
774
  /**
775
+ * @public
738
776
  * <p>Updates the configuration of an existing Amazon File Cache resource.
739
777
  * You can update multiple properties in a single request.</p>
740
778
  */
@@ -742,6 +780,7 @@ export declare class FSx extends FSxClient {
742
780
  updateFileCache(args: UpdateFileCacheCommandInput, cb: (err: any, data?: UpdateFileCacheCommandOutput) => void): void;
743
781
  updateFileCache(args: UpdateFileCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFileCacheCommandOutput) => void): void;
744
782
  /**
783
+ * @public
745
784
  * <p>Use this operation to update the configuration of an existing Amazon FSx file
746
785
  * system. You can update multiple properties in a single request.</p>
747
786
  * <p>For Amazon FSx for Windows File Server file systems, you can update the following
@@ -900,18 +939,21 @@ export declare class FSx extends FSxClient {
900
939
  updateFileSystem(args: UpdateFileSystemCommandInput, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
901
940
  updateFileSystem(args: UpdateFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
902
941
  /**
942
+ * @public
903
943
  * <p>Updates the name of an Amazon FSx for OpenZFS snapshot.</p>
904
944
  */
905
945
  updateSnapshot(args: UpdateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSnapshotCommandOutput>;
906
946
  updateSnapshot(args: UpdateSnapshotCommandInput, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
907
947
  updateSnapshot(args: UpdateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
908
948
  /**
949
+ * @public
909
950
  * <p>Updates an Amazon FSx for ONTAP storage virtual machine (SVM).</p>
910
951
  */
911
952
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStorageVirtualMachineCommandOutput>;
912
953
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, cb: (err: any, data?: UpdateStorageVirtualMachineCommandOutput) => void): void;
913
954
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStorageVirtualMachineCommandOutput) => void): void;
914
955
  /**
956
+ * @public
915
957
  * <p>Updates the configuration of an Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS volume.</p>
916
958
  */
917
959
  updateVolume(args: UpdateVolumeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVolumeCommandOutput>;
@@ -49,15 +49,24 @@ import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./comma
49
49
  import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput } from "./commands/UpdateStorageVirtualMachineCommand";
50
50
  import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "./commands/UpdateVolumeCommand";
51
51
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
52
+ /**
53
+ * @public
54
+ */
52
55
  export type ServiceInputTypes = AssociateFileSystemAliasesCommandInput | CancelDataRepositoryTaskCommandInput | CopyBackupCommandInput | CreateBackupCommandInput | CreateDataRepositoryAssociationCommandInput | CreateDataRepositoryTaskCommandInput | CreateFileCacheCommandInput | CreateFileSystemCommandInput | CreateFileSystemFromBackupCommandInput | CreateSnapshotCommandInput | CreateStorageVirtualMachineCommandInput | CreateVolumeCommandInput | CreateVolumeFromBackupCommandInput | DeleteBackupCommandInput | DeleteDataRepositoryAssociationCommandInput | DeleteFileCacheCommandInput | DeleteFileSystemCommandInput | DeleteSnapshotCommandInput | DeleteStorageVirtualMachineCommandInput | DeleteVolumeCommandInput | DescribeBackupsCommandInput | DescribeDataRepositoryAssociationsCommandInput | DescribeDataRepositoryTasksCommandInput | DescribeFileCachesCommandInput | DescribeFileSystemAliasesCommandInput | DescribeFileSystemsCommandInput | DescribeSnapshotsCommandInput | DescribeStorageVirtualMachinesCommandInput | DescribeVolumesCommandInput | DisassociateFileSystemAliasesCommandInput | ListTagsForResourceCommandInput | ReleaseFileSystemNfsV3LocksCommandInput | RestoreVolumeFromSnapshotCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataRepositoryAssociationCommandInput | UpdateFileCacheCommandInput | UpdateFileSystemCommandInput | UpdateSnapshotCommandInput | UpdateStorageVirtualMachineCommandInput | UpdateVolumeCommandInput;
56
+ /**
57
+ * @public
58
+ */
53
59
  export type ServiceOutputTypes = AssociateFileSystemAliasesCommandOutput | CancelDataRepositoryTaskCommandOutput | CopyBackupCommandOutput | CreateBackupCommandOutput | CreateDataRepositoryAssociationCommandOutput | CreateDataRepositoryTaskCommandOutput | CreateFileCacheCommandOutput | CreateFileSystemCommandOutput | CreateFileSystemFromBackupCommandOutput | CreateSnapshotCommandOutput | CreateStorageVirtualMachineCommandOutput | CreateVolumeCommandOutput | CreateVolumeFromBackupCommandOutput | DeleteBackupCommandOutput | DeleteDataRepositoryAssociationCommandOutput | DeleteFileCacheCommandOutput | DeleteFileSystemCommandOutput | DeleteSnapshotCommandOutput | DeleteStorageVirtualMachineCommandOutput | DeleteVolumeCommandOutput | DescribeBackupsCommandOutput | DescribeDataRepositoryAssociationsCommandOutput | DescribeDataRepositoryTasksCommandOutput | DescribeFileCachesCommandOutput | DescribeFileSystemAliasesCommandOutput | DescribeFileSystemsCommandOutput | DescribeSnapshotsCommandOutput | DescribeStorageVirtualMachinesCommandOutput | DescribeVolumesCommandOutput | DisassociateFileSystemAliasesCommandOutput | ListTagsForResourceCommandOutput | ReleaseFileSystemNfsV3LocksCommandOutput | RestoreVolumeFromSnapshotCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataRepositoryAssociationCommandOutput | UpdateFileCacheCommandOutput | UpdateFileSystemCommandOutput | UpdateSnapshotCommandOutput | UpdateStorageVirtualMachineCommandOutput | UpdateVolumeCommandOutput;
60
+ /**
61
+ * @public
62
+ */
54
63
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
55
64
  /**
56
65
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
57
66
  */
58
67
  requestHandler?: __HttpHandler;
59
68
  /**
60
- * A constructor for a class implementing the {@link __Checksum} interface
69
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
61
70
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
62
71
  * @internal
63
72
  */
@@ -147,23 +156,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
147
156
  */
148
157
  logger?: __Logger;
149
158
  /**
150
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
159
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
151
160
  */
152
161
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
153
162
  }
163
+ /**
164
+ * @public
165
+ */
154
166
  type FSxClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
155
167
  /**
156
- * The configuration interface of FSxClient class constructor that set the region, credentials and other options.
168
+ * @public
169
+ *
170
+ * The configuration interface of FSxClient class constructor that set the region, credentials and other options.
157
171
  */
158
172
  export interface FSxClientConfig extends FSxClientConfigType {
159
173
  }
174
+ /**
175
+ * @public
176
+ */
160
177
  type FSxClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
161
178
  /**
162
- * The resolved configuration interface of FSxClient class. This is resolved and normalized from the {@link FSxClientConfig | constructor configuration interface}.
179
+ * @public
180
+ *
181
+ * The resolved configuration interface of FSxClient class. This is resolved and normalized from the {@link FSxClientConfig | constructor configuration interface}.
163
182
  */
164
183
  export interface FSxClientResolvedConfig extends FSxClientResolvedConfigType {
165
184
  }
166
185
  /**
186
+ * @public
167
187
  * <p>Amazon FSx is a fully managed service that makes it easy for storage and
168
188
  * application administrators to launch and use shared file storage.</p>
169
189
  */
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
5
5
  import { AssociateFileSystemAliasesRequest, AssociateFileSystemAliasesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateFileSystemAliasesCommand}.
8
10
  */
9
11
  export interface AssociateFileSystemAliasesCommandInput extends AssociateFileSystemAliasesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateFileSystemAliasesCommand}.
13
17
  */
14
18
  export interface AssociateFileSystemAliasesCommandOutput extends AssociateFileSystemAliasesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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.
18
23
  * A file system can have a maximum of 50 DNS aliases associated with it at any one time. If you try to
19
24
  * associate a DNS alias that is already associated with the file system, FSx takes no action on that alias in the request.
@@ -35,6 +40,8 @@ export interface AssociateFileSystemAliasesCommandOutput extends AssociateFileSy
35
40
  * const response = await client.send(command);
36
41
  * ```
37
42
  *
43
+ * @param AssociateFileSystemAliasesCommandInput - {@link AssociateFileSystemAliasesCommandInput}
44
+ * @returns {@link AssociateFileSystemAliasesCommandOutput}
38
45
  * @see {@link AssociateFileSystemAliasesCommandInput} for command's `input` shape.
39
46
  * @see {@link AssociateFileSystemAliasesCommandOutput} for command's `response` shape.
40
47
  * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
@@ -53,11 +60,20 @@ export interface AssociateFileSystemAliasesCommandOutput extends AssociateFileSy
53
60
  export declare class AssociateFileSystemAliasesCommand extends $Command<AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesCommandOutput, FSxClientResolvedConfig> {
54
61
  readonly input: AssociateFileSystemAliasesCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: AssociateFileSystemAliasesCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
5
5
  import { CancelDataRepositoryTaskRequest, CancelDataRepositoryTaskResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CancelDataRepositoryTaskCommand}.
8
10
  */
9
11
  export interface CancelDataRepositoryTaskCommandInput extends CancelDataRepositoryTaskRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CancelDataRepositoryTaskCommand}.
13
17
  */
14
18
  export interface CancelDataRepositoryTaskCommandOutput extends CancelDataRepositoryTaskResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Cancels an existing Amazon FSx for Lustre data repository task if that task is in either the
18
23
  * <code>PENDING</code> or <code>EXECUTING</code> state. When you cancel a task, Amazon FSx does the following.</p>
19
24
  * <ul>
@@ -37,6 +42,8 @@ export interface CancelDataRepositoryTaskCommandOutput extends CancelDataReposit
37
42
  * const response = await client.send(command);
38
43
  * ```
39
44
  *
45
+ * @param CancelDataRepositoryTaskCommandInput - {@link CancelDataRepositoryTaskCommandInput}
46
+ * @returns {@link CancelDataRepositoryTaskCommandOutput}
40
47
  * @see {@link CancelDataRepositoryTaskCommandInput} for command's `input` shape.
41
48
  * @see {@link CancelDataRepositoryTaskCommandOutput} for command's `response` shape.
42
49
  * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
@@ -61,11 +68,20 @@ export interface CancelDataRepositoryTaskCommandOutput extends CancelDataReposit
61
68
  export declare class CancelDataRepositoryTaskCommand extends $Command<CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput, FSxClientResolvedConfig> {
62
69
  readonly input: CancelDataRepositoryTaskCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: CancelDataRepositoryTaskCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
5
5
  import { CopyBackupRequest, CopyBackupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CopyBackupCommand}.
8
10
  */
9
11
  export interface CopyBackupCommandInput extends CopyBackupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CopyBackupCommand}.
13
17
  */
14
18
  export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Copies an existing backup within the same Amazon Web Services account to another Amazon Web Services Region
18
23
  * (cross-Region copy) or within the same Amazon Web Services Region (in-Region copy). You can have up to five
19
24
  * backup copy requests in progress to a single destination Region per account.</p>
@@ -45,6 +50,8 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
45
50
  * const response = await client.send(command);
46
51
  * ```
47
52
  *
53
+ * @param CopyBackupCommandInput - {@link CopyBackupCommandInput}
54
+ * @returns {@link CopyBackupCommandOutput}
48
55
  * @see {@link CopyBackupCommandInput} for command's `input` shape.
49
56
  * @see {@link CopyBackupCommandOutput} for command's `response` shape.
50
57
  * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
@@ -139,11 +146,20 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
139
146
  export declare class CopyBackupCommand extends $Command<CopyBackupCommandInput, CopyBackupCommandOutput, FSxClientResolvedConfig> {
140
147
  readonly input: CopyBackupCommandInput;
141
148
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
149
+ /**
150
+ * @public
151
+ */
142
152
  constructor(input: CopyBackupCommandInput);
143
153
  /**
144
154
  * @internal
145
155
  */
146
156
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CopyBackupCommandInput, CopyBackupCommandOutput>;
157
+ /**
158
+ * @internal
159
+ */
147
160
  private serialize;
161
+ /**
162
+ * @internal
163
+ */
148
164
  private deserialize;
149
165
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
5
5
  import { CreateBackupRequest, CreateBackupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateBackupCommand}.
8
10
  */
9
11
  export interface CreateBackupCommandInput extends CreateBackupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateBackupCommand}.
13
17
  */
14
18
  export interface CreateBackupCommandOutput extends CreateBackupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a backup of an existing Amazon FSx for Windows File Server file
18
23
  * system, Amazon FSx for Lustre file system, Amazon FSx for NetApp ONTAP
19
24
  * volume, or Amazon FSx for OpenZFS file system. We recommend creating regular
@@ -80,6 +85,8 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad
80
85
  * const response = await client.send(command);
81
86
  * ```
82
87
  *
88
+ * @param CreateBackupCommandInput - {@link CreateBackupCommandInput}
89
+ * @returns {@link CreateBackupCommandOutput}
83
90
  * @see {@link CreateBackupCommandInput} for command's `input` shape.
84
91
  * @see {@link CreateBackupCommandOutput} for command's `response` shape.
85
92
  * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
@@ -163,11 +170,20 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad
163
170
  export declare class CreateBackupCommand extends $Command<CreateBackupCommandInput, CreateBackupCommandOutput, FSxClientResolvedConfig> {
164
171
  readonly input: CreateBackupCommandInput;
165
172
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
173
+ /**
174
+ * @public
175
+ */
166
176
  constructor(input: CreateBackupCommandInput);
167
177
  /**
168
178
  * @internal
169
179
  */
170
180
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBackupCommandInput, CreateBackupCommandOutput>;
181
+ /**
182
+ * @internal
183
+ */
171
184
  private serialize;
185
+ /**
186
+ * @internal
187
+ */
172
188
  private deserialize;
173
189
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
5
5
  import { CreateDataRepositoryAssociationRequest, CreateDataRepositoryAssociationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateDataRepositoryAssociationCommand}.
8
10
  */
9
11
  export interface CreateDataRepositoryAssociationCommandInput extends CreateDataRepositoryAssociationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateDataRepositoryAssociationCommand}.
13
17
  */
14
18
  export interface CreateDataRepositoryAssociationCommandOutput extends CreateDataRepositoryAssociationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an Amazon FSx for Lustre data repository association (DRA). A data
18
23
  * repository association is a link between a directory on the file system and
19
24
  * an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository
@@ -41,6 +46,8 @@ export interface CreateDataRepositoryAssociationCommandOutput extends CreateData
41
46
  * const response = await client.send(command);
42
47
  * ```
43
48
  *
49
+ * @param CreateDataRepositoryAssociationCommandInput - {@link CreateDataRepositoryAssociationCommandInput}
50
+ * @returns {@link CreateDataRepositoryAssociationCommandOutput}
44
51
  * @see {@link CreateDataRepositoryAssociationCommandInput} for command's `input` shape.
45
52
  * @see {@link CreateDataRepositoryAssociationCommandOutput} for command's `response` shape.
46
53
  * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
@@ -71,11 +78,20 @@ export interface CreateDataRepositoryAssociationCommandOutput extends CreateData
71
78
  export declare class CreateDataRepositoryAssociationCommand extends $Command<CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
72
79
  readonly input: CreateDataRepositoryAssociationCommandInput;
73
80
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
81
+ /**
82
+ * @public
83
+ */
74
84
  constructor(input: CreateDataRepositoryAssociationCommandInput);
75
85
  /**
76
86
  * @internal
77
87
  */
78
88
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput>;
89
+ /**
90
+ * @internal
91
+ */
79
92
  private serialize;
93
+ /**
94
+ * @internal
95
+ */
80
96
  private deserialize;
81
97
  }