@aws-sdk/client-fsx 3.775.0 → 3.782.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 (46) hide show
  1. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +1 -0
  2. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -0
  3. package/dist-types/commands/CopyBackupCommand.d.ts +27 -27
  4. package/dist-types/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +1 -0
  5. package/dist-types/commands/CreateBackupCommand.d.ts +1 -46
  6. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +1 -0
  8. package/dist-types/commands/CreateFileCacheCommand.d.ts +1 -0
  9. package/dist-types/commands/CreateFileSystemCommand.d.ts +1 -75
  10. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +1 -58
  11. package/dist-types/commands/CreateSnapshotCommand.d.ts +1 -0
  12. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +1 -0
  13. package/dist-types/commands/CreateVolumeCommand.d.ts +1 -0
  14. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +1 -0
  15. package/dist-types/commands/DeleteBackupCommand.d.ts +6 -6
  16. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +1 -0
  17. package/dist-types/commands/DeleteFileCacheCommand.d.ts +1 -0
  18. package/dist-types/commands/DeleteFileSystemCommand.d.ts +6 -6
  19. package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -0
  20. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +1 -0
  21. package/dist-types/commands/DeleteVolumeCommand.d.ts +1 -0
  22. package/dist-types/commands/DescribeBackupsCommand.d.ts +1 -39
  23. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +1 -0
  24. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +1 -0
  25. package/dist-types/commands/DescribeFileCachesCommand.d.ts +1 -0
  26. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +1 -0
  27. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +1 -45
  28. package/dist-types/commands/DescribeSharedVpcConfigurationCommand.d.ts +1 -0
  29. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +1 -0
  30. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +1 -0
  31. package/dist-types/commands/DescribeVolumesCommand.d.ts +1 -0
  32. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +1 -0
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -7
  34. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +1 -0
  35. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +1 -0
  36. package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +1 -0
  37. package/dist-types/commands/TagResourceCommand.d.ts +10 -7
  38. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  39. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +1 -0
  40. package/dist-types/commands/UpdateFileCacheCommand.d.ts +1 -0
  41. package/dist-types/commands/UpdateFileSystemCommand.d.ts +1 -46
  42. package/dist-types/commands/UpdateSharedVpcConfigurationCommand.d.ts +1 -0
  43. package/dist-types/commands/UpdateSnapshotCommand.d.ts +1 -0
  44. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +1 -0
  45. package/dist-types/commands/UpdateVolumeCommand.d.ts +1 -0
  46. package/package.json +5 -5
@@ -82,6 +82,7 @@ declare const AssociateFileSystemAliasesCommand_base: {
82
82
  * @throws {@link FSxServiceException}
83
83
  * <p>Base exception class for all service exceptions from FSx service.</p>
84
84
  *
85
+ *
85
86
  * @public
86
87
  */
87
88
  export declare class AssociateFileSystemAliasesCommand extends AssociateFileSystemAliasesCommand_base {
@@ -85,6 +85,7 @@ declare const CancelDataRepositoryTaskCommand_base: {
85
85
  * @throws {@link FSxServiceException}
86
86
  * <p>Base exception class for all service exceptions from FSx service.</p>
87
87
  *
88
+ *
88
89
  * @public
89
90
  */
90
91
  export declare class CancelDataRepositoryTaskCommand extends CancelDataRepositoryTaskCommand_base {
@@ -723,51 +723,51 @@ declare const CopyBackupCommand_base: {
723
723
  * @throws {@link FSxServiceException}
724
724
  * <p>Base exception class for all service exceptions from FSx service.</p>
725
725
  *
726
- * @public
726
+ *
727
727
  * @example To copy a backup
728
728
  * ```javascript
729
729
  * // This operation copies an Amazon FSx backup.
730
730
  * const input = {
731
- * "SourceBackupId": "backup-03e3c82e0183b7b6b",
732
- * "SourceRegion": "us-east-2"
731
+ * SourceBackupId: "backup-03e3c82e0183b7b6b",
732
+ * SourceRegion: "us-east-2"
733
733
  * };
734
734
  * const command = new CopyBackupCommand(input);
735
735
  * const response = await client.send(command);
736
- * /* response ==
736
+ * /* response is
737
737
  * {
738
- * "Backup": {
739
- * "BackupId": "backup-0a3364eded1014b28",
740
- * "CreationTime": 1617954808.068,
741
- * "FileSystem": {
742
- * "FileSystemId": "fs-0498eed5fe91001ec",
743
- * "FileSystemType": "LUSTRE",
744
- * "LustreConfiguration": {
745
- * "AutomaticBackupRetentionDays": 0,
746
- * "DeploymentType": "PERSISTENT_1",
747
- * "PerUnitStorageThroughput": 50,
748
- * "WeeklyMaintenanceStartTime": "1:05:00"
738
+ * Backup: {
739
+ * BackupId: "backup-0a3364eded1014b28",
740
+ * CreationTime: 1.617954808068E9,
741
+ * FileSystem: {
742
+ * FileSystemId: "fs-0498eed5fe91001ec",
743
+ * FileSystemType: "LUSTRE",
744
+ * LustreConfiguration: {
745
+ * AutomaticBackupRetentionDays: 0,
746
+ * DeploymentType: "PERSISTENT_1",
747
+ * PerUnitStorageThroughput: 50,
748
+ * WeeklyMaintenanceStartTime: "1:05:00"
749
749
  * },
750
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0f5179e395f597e66",
751
- * "StorageCapacity": 2400,
752
- * "StorageType": "SSD"
750
+ * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0f5179e395f597e66",
751
+ * StorageCapacity: 2400,
752
+ * StorageType: "SSD"
753
753
  * },
754
- * "KmsKeyId": "arn:aws:fsx:us-east-1:012345678912:key/d1234e22-543a-12b7-a98f-e12c2b54001a",
755
- * "Lifecycle": "COPYING",
756
- * "OwnerId": "123456789012",
757
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-0a3364eded1014b28",
758
- * "Tags": [
754
+ * KmsKeyId: "arn:aws:fsx:us-east-1:012345678912:key/d1234e22-543a-12b7-a98f-e12c2b54001a",
755
+ * Lifecycle: "COPYING",
756
+ * OwnerId: "123456789012",
757
+ * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:backup/backup-0a3364eded1014b28",
758
+ * Tags: [
759
759
  * {
760
- * "Key": "Name",
761
- * "Value": "MyBackup"
760
+ * Key: "Name",
761
+ * Value: "MyBackup"
762
762
  * }
763
763
  * ],
764
- * "Type": "USER_INITIATED"
764
+ * Type: "USER_INITIATED"
765
765
  * }
766
766
  * }
767
767
  * *\/
768
- * // example id: to-copy-a-backup-1481847318640
769
768
  * ```
770
769
  *
770
+ * @public
771
771
  */
772
772
  export declare class CopyBackupCommand extends CopyBackupCommand_base {
773
773
  /** @internal type navigation helper, not in runtime. */
@@ -667,6 +667,7 @@ declare const CopySnapshotAndUpdateVolumeCommand_base: {
667
667
  * @throws {@link FSxServiceException}
668
668
  * <p>Base exception class for all service exceptions from FSx service.</p>
669
669
  *
670
+ *
670
671
  * @public
671
672
  */
672
673
  export declare class CopySnapshotAndUpdateVolumeCommand extends CopySnapshotAndUpdateVolumeCommand_base {
@@ -743,53 +743,8 @@ declare const CreateBackupCommand_base: {
743
743
  * @throws {@link FSxServiceException}
744
744
  * <p>Base exception class for all service exceptions from FSx service.</p>
745
745
  *
746
- * @public
747
- * @example To create a new backup
748
- * ```javascript
749
- * // This operation creates a new backup.
750
- * const input = {
751
- * "FileSystemId": "fs-0498eed5fe91001ec",
752
- * "Tags": [
753
- * {
754
- * "Key": "Name",
755
- * "Value": "MyBackup"
756
- * }
757
- * ]
758
- * };
759
- * const command = new CreateBackupCommand(input);
760
- * const response = await client.send(command);
761
- * /* response ==
762
- * {
763
- * "Backup": {
764
- * "BackupId": "backup-03e3c82e0183b7b6b",
765
- * "CreationTime": "1481841524.0",
766
- * "FileSystem": {
767
- * "FileSystemId": "fs-0498eed5fe91001ec",
768
- * "OwnerId": "012345678912",
769
- * "StorageCapacity": 300,
770
- * "WindowsConfiguration": {
771
- * "ActiveDirectoryId": "d-1234abcd12",
772
- * "AutomaticBackupRetentionDays": 30,
773
- * "DailyAutomaticBackupStartTime": "05:00",
774
- * "WeeklyMaintenanceStartTime": "1:05:00"
775
- * }
776
- * },
777
- * "Lifecycle": "CREATING",
778
- * "ProgressPercent": 0,
779
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-03e3c82e0183b7b6b",
780
- * "Tags": [
781
- * {
782
- * "Key": "Name",
783
- * "Value": "MyBackup"
784
- * }
785
- * ],
786
- * "Type": "USER_INITIATED"
787
- * }
788
- * }
789
- * *\/
790
- * // example id: to-create-a-new-backup-1481840798597
791
- * ```
792
746
  *
747
+ * @public
793
748
  */
794
749
  export declare class CreateBackupCommand extends CreateBackupCommand_base {
795
750
  /** @internal type navigation helper, not in runtime. */
@@ -162,6 +162,7 @@ declare const CreateDataRepositoryAssociationCommand_base: {
162
162
  * @throws {@link FSxServiceException}
163
163
  * <p>Base exception class for all service exceptions from FSx service.</p>
164
164
  *
165
+ *
165
166
  * @public
166
167
  */
167
168
  export declare class CreateDataRepositoryAssociationCommand extends CreateDataRepositoryAssociationCommand_base {
@@ -159,6 +159,7 @@ declare const CreateDataRepositoryTaskCommand_base: {
159
159
  * @throws {@link FSxServiceException}
160
160
  * <p>Base exception class for all service exceptions from FSx service.</p>
161
161
  *
162
+ *
162
163
  * @public
163
164
  */
164
165
  export declare class CreateDataRepositoryTaskCommand extends CreateDataRepositoryTaskCommand_base {
@@ -185,6 +185,7 @@ declare const CreateFileCacheCommand_base: {
185
185
  * @throws {@link FSxServiceException}
186
186
  * <p>Base exception class for all service exceptions from FSx service.</p>
187
187
  *
188
+ *
188
189
  * @public
189
190
  */
190
191
  export declare class CreateFileCacheCommand extends CreateFileCacheCommand_base {
@@ -850,82 +850,8 @@ declare const CreateFileSystemCommand_base: {
850
850
  * @throws {@link FSxServiceException}
851
851
  * <p>Base exception class for all service exceptions from FSx service.</p>
852
852
  *
853
- * @public
854
- * @example To create a new file system
855
- * ```javascript
856
- * // This operation creates a new Amazon FSx for Windows File Server file system.
857
- * const input = {
858
- * "ClientRequestToken": "a8ca07e4-61ec-4399-99f4-19853801bcd5",
859
- * "FileSystemType": "WINDOWS",
860
- * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/1111abcd-2222-3333-4444-55556666eeff",
861
- * "SecurityGroupIds": [
862
- * "sg-edcd9784"
863
- * ],
864
- * "StorageCapacity": 3200,
865
- * "StorageType": "HDD",
866
- * "SubnetIds": [
867
- * "subnet-1234abcd"
868
- * ],
869
- * "Tags": [
870
- * {
871
- * "Key": "Name",
872
- * "Value": "MyFileSystem"
873
- * }
874
- * ],
875
- * "WindowsConfiguration": {
876
- * "ActiveDirectoryId": "d-1234abcd12",
877
- * "Aliases": [
878
- * "accounting.corp.example.com"
879
- * ],
880
- * "AutomaticBackupRetentionDays": 30,
881
- * "DailyAutomaticBackupStartTime": "05:00",
882
- * "ThroughputCapacity": 32,
883
- * "WeeklyMaintenanceStartTime": "1:05:00"
884
- * }
885
- * };
886
- * const command = new CreateFileSystemCommand(input);
887
- * const response = await client.send(command);
888
- * /* response ==
889
- * {
890
- * "FileSystem": {
891
- * "CreationTime": "1481841524.0",
892
- * "DNSName": "fs-0123456789abcdef0.fsx.com",
893
- * "FileSystemId": "fs-0123456789abcdef0",
894
- * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/1111abcd-2222-3333-4444-55556666eeff",
895
- * "Lifecycle": "CREATING",
896
- * "OwnerId": "012345678912",
897
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0123456789abcdef0",
898
- * "StorageCapacity": 3200,
899
- * "StorageType": "HDD",
900
- * "SubnetIds": [
901
- * "subnet-1234abcd"
902
- * ],
903
- * "Tags": [
904
- * {
905
- * "Key": "Name",
906
- * "Value": "MyFileSystem"
907
- * }
908
- * ],
909
- * "VpcId": "vpc-ab1234cd",
910
- * "WindowsConfiguration": {
911
- * "ActiveDirectoryId": "d-1234abcd12",
912
- * "Aliases": [
913
- * {
914
- * "Lifecycle": "CREATING",
915
- * "Name": "accounting.corp.example.com"
916
- * }
917
- * ],
918
- * "AutomaticBackupRetentionDays": 30,
919
- * "DailyAutomaticBackupStartTime": "05:00",
920
- * "ThroughputCapacity": 32,
921
- * "WeeklyMaintenanceStartTime": "1:05:00"
922
- * }
923
- * }
924
- * }
925
- * *\/
926
- * // example id: to-create-a-new-file-system-1481840798547
927
- * ```
928
853
  *
854
+ * @public
929
855
  */
930
856
  export declare class CreateFileSystemCommand extends CreateFileSystemCommand_base {
931
857
  /** @internal type navigation helper, not in runtime. */
@@ -815,65 +815,8 @@ declare const CreateFileSystemFromBackupCommand_base: {
815
815
  * @throws {@link FSxServiceException}
816
816
  * <p>Base exception class for all service exceptions from FSx service.</p>
817
817
  *
818
- * @public
819
- * @example To create a new file system from backup
820
- * ```javascript
821
- * // This operation creates a new file system from backup.
822
- * const input = {
823
- * "BackupId": "backup-03e3c82e0183b7b6b",
824
- * "ClientRequestToken": "f4c94ed7-238d-4c46-93db-48cd62ec33b7",
825
- * "SecurityGroupIds": [
826
- * "sg-edcd9784"
827
- * ],
828
- * "SubnetIds": [
829
- * "subnet-1234abcd"
830
- * ],
831
- * "Tags": [
832
- * {
833
- * "Key": "Name",
834
- * "Value": "MyFileSystem"
835
- * }
836
- * ],
837
- * "WindowsConfiguration": {
838
- * "ThroughputCapacity": 8
839
- * }
840
- * };
841
- * const command = new CreateFileSystemFromBackupCommand(input);
842
- * const response = await client.send(command);
843
- * /* response ==
844
- * {
845
- * "FileSystem": {
846
- * "CreationTime": "1481841524.0",
847
- * "DNSName": "fs-0498eed5fe91001ec.fsx.com",
848
- * "FileSystemId": "fs-0498eed5fe91001ec",
849
- * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
850
- * "Lifecycle": "CREATING",
851
- * "OwnerId": "012345678912",
852
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
853
- * "StorageCapacity": 300,
854
- * "SubnetIds": [
855
- * "subnet-1234abcd"
856
- * ],
857
- * "Tags": [
858
- * {
859
- * "Key": "Name",
860
- * "Value": "MyFileSystem"
861
- * }
862
- * ],
863
- * "VpcId": "vpc-ab1234cd",
864
- * "WindowsConfiguration": {
865
- * "ActiveDirectoryId": "d-1234abcd12",
866
- * "AutomaticBackupRetentionDays": 30,
867
- * "DailyAutomaticBackupStartTime": "05:00",
868
- * "ThroughputCapacity": 8,
869
- * "WeeklyMaintenanceStartTime": "1:05:00"
870
- * }
871
- * }
872
- * }
873
- * *\/
874
- * // example id: to-create-a-new-file-system-from-backup-1481840798598
875
- * ```
876
818
  *
819
+ * @public
877
820
  */
878
821
  export declare class CreateFileSystemFromBackupCommand extends CreateFileSystemFromBackupCommand_base {
879
822
  /** @internal type navigation helper, not in runtime. */
@@ -674,6 +674,7 @@ declare const CreateSnapshotCommand_base: {
674
674
  * @throws {@link FSxServiceException}
675
675
  * <p>Base exception class for all service exceptions from FSx service.</p>
676
676
  *
677
+ *
677
678
  * @public
678
679
  */
679
680
  export declare class CreateSnapshotCommand extends CreateSnapshotCommand_base {
@@ -158,6 +158,7 @@ declare const CreateStorageVirtualMachineCommand_base: {
158
158
  * @throws {@link FSxServiceException}
159
159
  * <p>Base exception class for all service exceptions from FSx service.</p>
160
160
  *
161
+ *
161
162
  * @public
162
163
  */
163
164
  export declare class CreateStorageVirtualMachineCommand extends CreateStorageVirtualMachineCommand_base {
@@ -739,6 +739,7 @@ declare const CreateVolumeCommand_base: {
739
739
  * @throws {@link FSxServiceException}
740
740
  * <p>Base exception class for all service exceptions from FSx service.</p>
741
741
  *
742
+ *
742
743
  * @public
743
744
  */
744
745
  export declare class CreateVolumeCommand extends CreateVolumeCommand_base {
@@ -708,6 +708,7 @@ declare const CreateVolumeFromBackupCommand_base: {
708
708
  * @throws {@link FSxServiceException}
709
709
  * <p>Base exception class for all service exceptions from FSx service.</p>
710
710
  *
711
+ *
711
712
  * @public
712
713
  */
713
714
  export declare class CreateVolumeFromBackupCommand extends CreateVolumeFromBackupCommand_base {
@@ -88,24 +88,24 @@ declare const DeleteBackupCommand_base: {
88
88
  * @throws {@link FSxServiceException}
89
89
  * <p>Base exception class for all service exceptions from FSx service.</p>
90
90
  *
91
- * @public
91
+ *
92
92
  * @example To delete a backup
93
93
  * ```javascript
94
94
  * // This operation deletes an Amazon FSx file system backup.
95
95
  * const input = {
96
- * "BackupId": "backup-03e3c82e0183b7b6b"
96
+ * BackupId: "backup-03e3c82e0183b7b6b"
97
97
  * };
98
98
  * const command = new DeleteBackupCommand(input);
99
99
  * const response = await client.send(command);
100
- * /* response ==
100
+ * /* response is
101
101
  * {
102
- * "BackupId": "backup-03e3c82e0183b7b6b",
103
- * "Lifecycle": "DELETED"
102
+ * BackupId: "backup-03e3c82e0183b7b6b",
103
+ * Lifecycle: "DELETED"
104
104
  * }
105
105
  * *\/
106
- * // example id: to-delete-a-file-system-1481847318399
107
106
  * ```
108
107
  *
108
+ * @public
109
109
  */
110
110
  export declare class DeleteBackupCommand extends DeleteBackupCommand_base {
111
111
  /** @internal type navigation helper, not in runtime. */
@@ -82,6 +82,7 @@ declare const DeleteDataRepositoryAssociationCommand_base: {
82
82
  * @throws {@link FSxServiceException}
83
83
  * <p>Base exception class for all service exceptions from FSx service.</p>
84
84
  *
85
+ *
85
86
  * @public
86
87
  */
87
88
  export declare class DeleteDataRepositoryAssociationCommand extends DeleteDataRepositoryAssociationCommand_base {
@@ -85,6 +85,7 @@ declare const DeleteFileCacheCommand_base: {
85
85
  * @throws {@link FSxServiceException}
86
86
  * <p>Base exception class for all service exceptions from FSx service.</p>
87
87
  *
88
+ *
88
89
  * @public
89
90
  */
90
91
  export declare class DeleteFileCacheCommand extends DeleteFileCacheCommand_base {
@@ -167,24 +167,24 @@ declare const DeleteFileSystemCommand_base: {
167
167
  * @throws {@link FSxServiceException}
168
168
  * <p>Base exception class for all service exceptions from FSx service.</p>
169
169
  *
170
- * @public
170
+ *
171
171
  * @example To delete a file system
172
172
  * ```javascript
173
173
  * // This operation deletes an Amazon FSx file system.
174
174
  * const input = {
175
- * "FileSystemId": "fs-0498eed5fe91001ec"
175
+ * FileSystemId: "fs-0498eed5fe91001ec"
176
176
  * };
177
177
  * const command = new DeleteFileSystemCommand(input);
178
178
  * const response = await client.send(command);
179
- * /* response ==
179
+ * /* response is
180
180
  * {
181
- * "FileSystemId": "fs-0498eed5fe91001ec",
182
- * "Lifecycle": "DELETING"
181
+ * FileSystemId: "fs-0498eed5fe91001ec",
182
+ * Lifecycle: "DELETING"
183
183
  * }
184
184
  * *\/
185
- * // example id: to-delete-a-file-system-1481847318348
186
185
  * ```
187
186
  *
187
+ * @public
188
188
  */
189
189
  export declare class DeleteFileSystemCommand extends DeleteFileSystemCommand_base {
190
190
  /** @internal type navigation helper, not in runtime. */
@@ -69,6 +69,7 @@ declare const DeleteSnapshotCommand_base: {
69
69
  * @throws {@link FSxServiceException}
70
70
  * <p>Base exception class for all service exceptions from FSx service.</p>
71
71
  *
72
+ *
72
73
  * @public
73
74
  */
74
75
  export declare class DeleteSnapshotCommand extends DeleteSnapshotCommand_base {
@@ -71,6 +71,7 @@ declare const DeleteStorageVirtualMachineCommand_base: {
71
71
  * @throws {@link FSxServiceException}
72
72
  * <p>Base exception class for all service exceptions from FSx service.</p>
73
73
  *
74
+ *
74
75
  * @public
75
76
  */
76
77
  export declare class DeleteStorageVirtualMachineCommand extends DeleteStorageVirtualMachineCommand_base {
@@ -99,6 +99,7 @@ declare const DeleteVolumeCommand_base: {
99
99
  * @throws {@link FSxServiceException}
100
100
  * <p>Base exception class for all service exceptions from FSx service.</p>
101
101
  *
102
+ *
102
103
  * @public
103
104
  */
104
105
  export declare class DeleteVolumeCommand extends DeleteVolumeCommand_base {
@@ -707,46 +707,8 @@ declare const DescribeBackupsCommand_base: {
707
707
  * @throws {@link FSxServiceException}
708
708
  * <p>Base exception class for all service exceptions from FSx service.</p>
709
709
  *
710
- * @public
711
- * @example To describe Amazon FSx backups
712
- * ```javascript
713
- * // This operation describes all of the Amazon FSx backups in an account.
714
- * const input = {};
715
- * const command = new DescribeBackupsCommand(input);
716
- * const response = await client.send(command);
717
- * /* response ==
718
- * {
719
- * "Backups": [
720
- * {
721
- * "BackupId": "backup-03e3c82e0183b7b6b",
722
- * "CreationTime": "1481841524.0",
723
- * "FileSystem": {
724
- * "FileSystemId": "fs-0498eed5fe91001ec",
725
- * "OwnerId": "012345678912",
726
- * "StorageCapacity": 300,
727
- * "WindowsConfiguration": {
728
- * "ActiveDirectoryId": "d-1234abcd12",
729
- * "AutomaticBackupRetentionDays": 30,
730
- * "DailyAutomaticBackupStartTime": "05:00",
731
- * "WeeklyMaintenanceStartTime": "1:05:00"
732
- * }
733
- * },
734
- * "Lifecycle": "AVAILABLE",
735
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-03e3c82e0183b7b6b",
736
- * "Tags": [
737
- * {
738
- * "Key": "Name",
739
- * "Value": "MyBackup"
740
- * }
741
- * ],
742
- * "Type": "USER_INITIATED"
743
- * }
744
- * ]
745
- * }
746
- * *\/
747
- * // example id: to-describe-backups-1481848448499
748
- * ```
749
710
  *
711
+ * @public
750
712
  */
751
713
  export declare class DescribeBackupsCommand extends DescribeBackupsCommand_base {
752
714
  /** @internal type navigation helper, not in runtime. */
@@ -149,6 +149,7 @@ declare const DescribeDataRepositoryAssociationsCommand_base: {
149
149
  * @throws {@link FSxServiceException}
150
150
  * <p>Base exception class for all service exceptions from FSx service.</p>
151
151
  *
152
+ *
152
153
  * @public
153
154
  */
154
155
  export declare class DescribeDataRepositoryAssociationsCommand extends DescribeDataRepositoryAssociationsCommand_base {
@@ -132,6 +132,7 @@ declare const DescribeDataRepositoryTasksCommand_base: {
132
132
  * @throws {@link FSxServiceException}
133
133
  * <p>Base exception class for all service exceptions from FSx service.</p>
134
134
  *
135
+ *
135
136
  * @public
136
137
  */
137
138
  export declare class DescribeDataRepositoryTasksCommand extends DescribeDataRepositoryTasksCommand_base {
@@ -134,6 +134,7 @@ declare const DescribeFileCachesCommand_base: {
134
134
  * @throws {@link FSxServiceException}
135
135
  * <p>Base exception class for all service exceptions from FSx service.</p>
136
136
  *
137
+ *
137
138
  * @public
138
139
  */
139
140
  export declare class DescribeFileCachesCommand extends DescribeFileCachesCommand_base {
@@ -74,6 +74,7 @@ declare const DescribeFileSystemAliasesCommand_base: {
74
74
  * @throws {@link FSxServiceException}
75
75
  * <p>Base exception class for all service exceptions from FSx service.</p>
76
76
  *
77
+ *
77
78
  * @public
78
79
  */
79
80
  export declare class DescribeFileSystemAliasesCommand extends DescribeFileSystemAliasesCommand_base {
@@ -671,52 +671,8 @@ declare const DescribeFileSystemsCommand_base: {
671
671
  * @throws {@link FSxServiceException}
672
672
  * <p>Base exception class for all service exceptions from FSx service.</p>
673
673
  *
674
- * @public
675
- * @example To describe an Amazon FSx file system
676
- * ```javascript
677
- * // This operation describes all of the Amazon FSx file systems in an account.
678
- * const input = {};
679
- * const command = new DescribeFileSystemsCommand(input);
680
- * const response = await client.send(command);
681
- * /* response ==
682
- * {
683
- * "FileSystems": [
684
- * {
685
- * "CreationTime": "1481841524.0",
686
- * "DNSName": "fs-0498eed5fe91001ec.fsx.com",
687
- * "FileSystemId": "fs-0498eed5fe91001ec",
688
- * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
689
- * "Lifecycle": "AVAILABLE",
690
- * "NetworkInterfaceIds": [
691
- * "eni-abcd1234"
692
- * ],
693
- * "OwnerId": "012345678912",
694
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
695
- * "StorageCapacity": 300,
696
- * "SubnetIds": [
697
- * "subnet-1234abcd"
698
- * ],
699
- * "Tags": [
700
- * {
701
- * "Key": "Name",
702
- * "Value": "MyFileSystem"
703
- * }
704
- * ],
705
- * "VpcId": "vpc-ab1234cd",
706
- * "WindowsConfiguration": {
707
- * "ActiveDirectoryId": "d-1234abcd12",
708
- * "AutomaticBackupRetentionDays": 30,
709
- * "DailyAutomaticBackupStartTime": "05:00",
710
- * "ThroughputCapacity": 8,
711
- * "WeeklyMaintenanceStartTime": "1:05:00"
712
- * }
713
- * }
714
- * ]
715
- * }
716
- * *\/
717
- * // example id: to-describe-a-file-systems-1481848448460
718
- * ```
719
674
  *
675
+ * @public
720
676
  */
721
677
  export declare class DescribeFileSystemsCommand extends DescribeFileSystemsCommand_base {
722
678
  /** @internal type navigation helper, not in runtime. */
@@ -59,6 +59,7 @@ declare const DescribeSharedVpcConfigurationCommand_base: {
59
59
  * @throws {@link FSxServiceException}
60
60
  * <p>Base exception class for all service exceptions from FSx service.</p>
61
61
  *
62
+ *
62
63
  * @public
63
64
  */
64
65
  export declare class DescribeSharedVpcConfigurationCommand extends DescribeSharedVpcConfigurationCommand_base {
@@ -677,6 +677,7 @@ declare const DescribeSnapshotsCommand_base: {
677
677
  * @throws {@link FSxServiceException}
678
678
  * <p>Base exception class for all service exceptions from FSx service.</p>
679
679
  *
680
+ *
680
681
  * @public
681
682
  */
682
683
  export declare class DescribeSnapshotsCommand extends DescribeSnapshotsCommand_base {
@@ -135,6 +135,7 @@ declare const DescribeStorageVirtualMachinesCommand_base: {
135
135
  * @throws {@link FSxServiceException}
136
136
  * <p>Base exception class for all service exceptions from FSx service.</p>
137
137
  *
138
+ *
138
139
  * @public
139
140
  */
140
141
  export declare class DescribeStorageVirtualMachinesCommand extends DescribeStorageVirtualMachinesCommand_base {
@@ -651,6 +651,7 @@ declare const DescribeVolumesCommand_base: {
651
651
  * @throws {@link FSxServiceException}
652
652
  * <p>Base exception class for all service exceptions from FSx service.</p>
653
653
  *
654
+ *
654
655
  * @public
655
656
  */
656
657
  export declare class DescribeVolumesCommand extends DescribeVolumesCommand_base {
@@ -80,6 +80,7 @@ declare const DisassociateFileSystemAliasesCommand_base: {
80
80
  * @throws {@link FSxServiceException}
81
81
  * <p>Base exception class for all service exceptions from FSx service.</p>
82
82
  *
83
+ *
83
84
  * @public
84
85
  */
85
86
  export declare class DisassociateFileSystemAliasesCommand extends DisassociateFileSystemAliasesCommand_base {
@@ -101,28 +101,28 @@ declare const ListTagsForResourceCommand_base: {
101
101
  * @throws {@link FSxServiceException}
102
102
  * <p>Base exception class for all service exceptions from FSx service.</p>
103
103
  *
104
- * @public
104
+ *
105
105
  * @example To list tags for a resource
106
106
  * ```javascript
107
107
  * // This operation lists tags for an Amazon FSx resource.
108
108
  * const input = {
109
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec"
109
+ * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec"
110
110
  * };
111
111
  * const command = new ListTagsForResourceCommand(input);
112
112
  * const response = await client.send(command);
113
- * /* response ==
113
+ * /* response is
114
114
  * {
115
- * "Tags": [
115
+ * Tags: [
116
116
  * {
117
- * "Key": "Name",
118
- * "Value": "MyFileSystem"
117
+ * Key: "Name",
118
+ * Value: "MyFileSystem"
119
119
  * }
120
120
  * ]
121
121
  * }
122
122
  * *\/
123
- * // example id: to-list-tags-for-a-fsx-resource-1481847318372
124
123
  * ```
125
124
  *
125
+ * @public
126
126
  */
127
127
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
128
128
  /** @internal type navigation helper, not in runtime. */
@@ -648,6 +648,7 @@ declare const ReleaseFileSystemNfsV3LocksCommand_base: {
648
648
  * @throws {@link FSxServiceException}
649
649
  * <p>Base exception class for all service exceptions from FSx service.</p>
650
650
  *
651
+ *
651
652
  * @public
652
653
  */
653
654
  export declare class ReleaseFileSystemNfsV3LocksCommand extends ReleaseFileSystemNfsV3LocksCommand_base {
@@ -660,6 +660,7 @@ declare const RestoreVolumeFromSnapshotCommand_base: {
660
660
  * @throws {@link FSxServiceException}
661
661
  * <p>Base exception class for all service exceptions from FSx service.</p>
662
662
  *
663
+ *
663
664
  * @public
664
665
  */
665
666
  export declare class RestoreVolumeFromSnapshotCommand extends RestoreVolumeFromSnapshotCommand_base {
@@ -639,6 +639,7 @@ declare const StartMisconfiguredStateRecoveryCommand_base: {
639
639
  * @throws {@link FSxServiceException}
640
640
  * <p>Base exception class for all service exceptions from FSx service.</p>
641
641
  *
642
+ *
642
643
  * @public
643
644
  */
644
645
  export declare class StartMisconfiguredStateRecoveryCommand extends StartMisconfiguredStateRecoveryCommand_base {
@@ -74,24 +74,27 @@ declare const TagResourceCommand_base: {
74
74
  * @throws {@link FSxServiceException}
75
75
  * <p>Base exception class for all service exceptions from FSx service.</p>
76
76
  *
77
- * @public
77
+ *
78
78
  * @example To tag a resource
79
79
  * ```javascript
80
80
  * // This operation tags an Amazon FSx resource.
81
81
  * const input = {
82
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
83
- * "Tags": [
82
+ * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
83
+ * Tags: [
84
84
  * {
85
- * "Key": "Name",
86
- * "Value": "MyFileSystem"
85
+ * Key: "Name",
86
+ * Value: "MyFileSystem"
87
87
  * }
88
88
  * ]
89
89
  * };
90
90
  * const command = new TagResourceCommand(input);
91
- * await client.send(command);
92
- * // example id: to-tag-a-fsx-resource-1481847318371
91
+ * const response = await client.send(command);
92
+ * /* response is
93
+ * { /* metadata only *\/ }
94
+ * *\/
93
95
  * ```
94
96
  *
97
+ * @public
95
98
  */
96
99
  export declare class TagResourceCommand extends TagResourceCommand_base {
97
100
  /** @internal type navigation helper, not in runtime. */
@@ -71,21 +71,24 @@ declare const UntagResourceCommand_base: {
71
71
  * @throws {@link FSxServiceException}
72
72
  * <p>Base exception class for all service exceptions from FSx service.</p>
73
73
  *
74
- * @public
74
+ *
75
75
  * @example To untag a resource
76
76
  * ```javascript
77
77
  * // This operation untags an Amazon FSx resource.
78
78
  * const input = {
79
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
80
- * "TagKeys": [
79
+ * ResourceARN: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
80
+ * TagKeys: [
81
81
  * "Name"
82
82
  * ]
83
83
  * };
84
84
  * const command = new UntagResourceCommand(input);
85
- * await client.send(command);
86
- * // example id: to-untag-a-fsx-resource-1481847318373
85
+ * const response = await client.send(command);
86
+ * /* response is
87
+ * { /* metadata only *\/ }
88
+ * *\/
87
89
  * ```
88
90
  *
91
+ * @public
89
92
  */
90
93
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
91
94
  /** @internal type navigation helper, not in runtime. */
@@ -136,6 +136,7 @@ declare const UpdateDataRepositoryAssociationCommand_base: {
136
136
  * @throws {@link FSxServiceException}
137
137
  * <p>Base exception class for all service exceptions from FSx service.</p>
138
138
  *
139
+ *
139
140
  * @public
140
141
  */
141
142
  export declare class UpdateDataRepositoryAssociationCommand extends UpdateDataRepositoryAssociationCommand_base {
@@ -120,6 +120,7 @@ declare const UpdateFileCacheCommand_base: {
120
120
  * @throws {@link FSxServiceException}
121
121
  * <p>Base exception class for all service exceptions from FSx service.</p>
122
122
  *
123
+ *
123
124
  * @public
124
125
  */
125
126
  export declare class UpdateFileCacheCommand extends UpdateFileCacheCommand_base {
@@ -974,53 +974,8 @@ declare const UpdateFileSystemCommand_base: {
974
974
  * @throws {@link FSxServiceException}
975
975
  * <p>Base exception class for all service exceptions from FSx service.</p>
976
976
  *
977
- * @public
978
- * @example To update an existing file system
979
- * ```javascript
980
- * // This operation updates an existing file system.
981
- * const input = {
982
- * "FileSystemId": "fs-0498eed5fe91001ec",
983
- * "WindowsConfiguration": {
984
- * "AutomaticBackupRetentionDays": 10,
985
- * "DailyAutomaticBackupStartTime": "06:00",
986
- * "WeeklyMaintenanceStartTime": "3:06:00"
987
- * }
988
- * };
989
- * const command = new UpdateFileSystemCommand(input);
990
- * const response = await client.send(command);
991
- * /* response ==
992
- * {
993
- * "FileSystem": {
994
- * "CreationTime": "1481841524.0",
995
- * "DNSName": "fs-0498eed5fe91001ec.fsx.com",
996
- * "FileSystemId": "fs-0498eed5fe91001ec",
997
- * "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
998
- * "Lifecycle": "AVAILABLE",
999
- * "OwnerId": "012345678912",
1000
- * "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
1001
- * "StorageCapacity": 300,
1002
- * "SubnetIds": [
1003
- * "subnet-1234abcd"
1004
- * ],
1005
- * "Tags": [
1006
- * {
1007
- * "Key": "Name",
1008
- * "Value": "MyFileSystem"
1009
- * }
1010
- * ],
1011
- * "VpcId": "vpc-ab1234cd",
1012
- * "WindowsConfiguration": {
1013
- * "AutomaticBackupRetentionDays": 10,
1014
- * "DailyAutomaticBackupStartTime": "06:00",
1015
- * "ThroughputCapacity": 8,
1016
- * "WeeklyMaintenanceStartTime": "3:06:00"
1017
- * }
1018
- * }
1019
- * }
1020
- * *\/
1021
- * // example id: to-update-a-file-system-1481840798595
1022
- * ```
1023
977
  *
978
+ * @public
1024
979
  */
1025
980
  export declare class UpdateFileSystemCommand extends UpdateFileSystemCommand_base {
1026
981
  /** @internal type navigation helper, not in runtime. */
@@ -75,6 +75,7 @@ declare const UpdateSharedVpcConfigurationCommand_base: {
75
75
  * @throws {@link FSxServiceException}
76
76
  * <p>Base exception class for all service exceptions from FSx service.</p>
77
77
  *
78
+ *
78
79
  * @public
79
80
  */
80
81
  export declare class UpdateSharedVpcConfigurationCommand extends UpdateSharedVpcConfigurationCommand_base {
@@ -637,6 +637,7 @@ declare const UpdateSnapshotCommand_base: {
637
637
  * @throws {@link FSxServiceException}
638
638
  * <p>Base exception class for all service exceptions from FSx service.</p>
639
639
  *
640
+ *
640
641
  * @public
641
642
  */
642
643
  export declare class UpdateSnapshotCommand extends UpdateSnapshotCommand_base {
@@ -143,6 +143,7 @@ declare const UpdateStorageVirtualMachineCommand_base: {
143
143
  * @throws {@link FSxServiceException}
144
144
  * <p>Base exception class for all service exceptions from FSx service.</p>
145
145
  *
146
+ *
146
147
  * @public
147
148
  */
148
149
  export declare class UpdateStorageVirtualMachineCommand extends UpdateStorageVirtualMachineCommand_base {
@@ -707,6 +707,7 @@ declare const UpdateVolumeCommand_base: {
707
707
  * @throws {@link FSxServiceException}
708
708
  * <p>Base exception class for all service exceptions from FSx service.</p>
709
709
  *
710
+ *
710
711
  * @public
711
712
  */
712
713
  export declare class UpdateVolumeCommand extends UpdateVolumeCommand_base {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-fsx",
3
3
  "description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native",
4
- "version": "3.775.0",
4
+ "version": "3.782.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-fsx",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.775.0",
24
- "@aws-sdk/credential-provider-node": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.782.0",
25
25
  "@aws-sdk/middleware-host-header": "3.775.0",
26
26
  "@aws-sdk/middleware-logger": "3.775.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
- "@aws-sdk/middleware-user-agent": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.782.0",
29
29
  "@aws-sdk/region-config-resolver": "3.775.0",
30
30
  "@aws-sdk/types": "3.775.0",
31
- "@aws-sdk/util-endpoints": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.782.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.775.0",
33
- "@aws-sdk/util-user-agent-node": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.782.0",
34
34
  "@smithy/config-resolver": "^4.1.0",
35
35
  "@smithy/core": "^3.2.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",