@aws-sdk/client-fsx 3.52.0 → 3.54.1

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 (31) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/FSxServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +492 -10
  5. package/dist-cjs/protocols/Aws_json1_1.js +508 -1721
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/FSxServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +453 -5
  9. package/dist-es/protocols/Aws_json1_1.js +1003 -1812
  10. package/dist-types/FSx.d.ts +9 -10
  11. package/dist-types/FSxClient.d.ts +2 -2
  12. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +2 -2
  13. package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -3
  14. package/dist-types/commands/CreateVolumeCommand.d.ts +1 -2
  15. package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateSnapshotCommand.d.ts +1 -1
  18. package/dist-types/index.d.ts +1 -0
  19. package/dist-types/models/FSxServiceException.d.ts +10 -0
  20. package/dist-types/models/models_0.d.ts +426 -181
  21. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  22. package/dist-types/runtimeConfig.d.ts +1 -1
  23. package/dist-types/runtimeConfig.native.d.ts +1 -1
  24. package/dist-types/ts3.4/FSxClient.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/FSxServiceException.d.ts +6 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +192 -109
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  31. package/package.json +27 -27
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { FSxServiceException as __BaseException } from "./FSxServiceException";
2
3
  /**
3
4
  * <p>The Microsoft Active Directory attributes of the Amazon FSx for Windows File
4
5
  * Server file system.</p>
@@ -35,9 +36,9 @@ export declare enum ActiveDirectoryErrorType {
35
36
  /**
36
37
  * <p>An Active Directory error.</p>
37
38
  */
38
- export interface ActiveDirectoryError extends __SmithyException, $MetadataBearer {
39
- name: "ActiveDirectoryError";
40
- $fault: "client";
39
+ export declare class ActiveDirectoryError extends __BaseException {
40
+ readonly name: "ActiveDirectoryError";
41
+ readonly $fault: "client";
41
42
  /**
42
43
  * <p>The directory ID of the directory that an error pertains to.</p>
43
44
  */
@@ -50,6 +51,10 @@ export interface ActiveDirectoryError extends __SmithyException, $MetadataBearer
50
51
  * <p>A detailed error message.</p>
51
52
  */
52
53
  Message?: string;
54
+ /**
55
+ * @internal
56
+ */
57
+ constructor(opts: __ExceptionOptionType<ActiveDirectoryError, __BaseException>);
53
58
  }
54
59
  export declare enum AdministrativeActionType {
55
60
  FILE_SYSTEM_ALIAS_ASSOCIATION = "FILE_SYSTEM_ALIAS_ASSOCIATION",
@@ -544,6 +549,12 @@ export interface OntapFileSystemConfiguration {
544
549
  /**
545
550
  * <p>The IP address range in which the endpoints to access your file system
546
551
  * are created.</p>
552
+ * <important>
553
+ * <p>The Endpoint IP address range you select for your file system
554
+ * must exist outside the VPC's CIDR range and must be at least /30 or larger.
555
+ * If you do not specify this optional parameter, Amazon FSx will automatically
556
+ * select a CIDR block for you.</p>
557
+ * </important>
547
558
  */
548
559
  EndpointIpAddressRange?: string;
549
560
  /**
@@ -638,7 +649,7 @@ export interface OpenZFSFileSystemConfiguration {
638
649
  DeploymentType?: OpenZFSDeploymentType | string;
639
650
  /**
640
651
  * <p>The throughput of an Amazon FSx file system, measured in megabytes per second
641
- * (MBps), in 2 to the nth increments, between 2^3 (8) and 2^11 (2048). </p>
652
+ * (MBps). Valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
642
653
  */
643
654
  ThroughputCapacity?: number;
644
655
  /**
@@ -1014,15 +1025,6 @@ export declare enum SnapshotLifecycle {
1014
1025
  DELETING = "DELETING",
1015
1026
  PENDING = "PENDING"
1016
1027
  }
1017
- export declare enum VolumeLifecycle {
1018
- AVAILABLE = "AVAILABLE",
1019
- CREATED = "CREATED",
1020
- CREATING = "CREATING",
1021
- DELETING = "DELETING",
1022
- FAILED = "FAILED",
1023
- MISCONFIGURED = "MISCONFIGURED",
1024
- PENDING = "PENDING"
1025
- }
1026
1028
  /**
1027
1029
  * <p>Describes why a resource lifecycle state changed.</p>
1028
1030
  */
@@ -1038,6 +1040,15 @@ export declare namespace LifecycleTransitionReason {
1038
1040
  */
1039
1041
  const filterSensitiveLog: (obj: LifecycleTransitionReason) => any;
1040
1042
  }
1043
+ export declare enum VolumeLifecycle {
1044
+ AVAILABLE = "AVAILABLE",
1045
+ CREATED = "CREATED",
1046
+ CREATING = "CREATING",
1047
+ DELETING = "DELETING",
1048
+ FAILED = "FAILED",
1049
+ MISCONFIGURED = "MISCONFIGURED",
1050
+ PENDING = "PENDING"
1051
+ }
1041
1052
  export declare enum FlexCacheEndpointType {
1042
1053
  CACHE = "CACHE",
1043
1054
  NONE = "NONE",
@@ -1228,6 +1239,7 @@ export declare namespace OntapVolumeConfiguration {
1228
1239
  const filterSensitiveLog: (obj: OntapVolumeConfiguration) => any;
1229
1240
  }
1230
1241
  export declare enum OpenZFSDataCompressionType {
1242
+ LZ4 = "LZ4",
1231
1243
  NONE = "NONE",
1232
1244
  ZSTD = "ZSTD"
1233
1245
  }
@@ -1239,7 +1251,7 @@ export interface OpenZFSClientConfiguration {
1239
1251
  /**
1240
1252
  * <p>A value that specifies who can mount the file system. You can provide a wildcard
1241
1253
  * character (<code>*</code>), an IP address (<code>0.0.0.0</code>), or a CIDR address
1242
- * (<code>192.0.2.0/24</code>. By default, Amazon FSx uses the wildcard
1254
+ * (<code>192.0.2.0/24</code>). By default, Amazon FSx uses the wildcard
1243
1255
  * character when specifying the client. </p>
1244
1256
  */
1245
1257
  Clients: string | undefined;
@@ -1250,8 +1262,8 @@ export interface OpenZFSClientConfiguration {
1250
1262
  * <ul>
1251
1263
  * <li>
1252
1264
  * <p>
1253
- * <code>crossmount</code> is used by default. If you don't specify
1254
- * <code>crossmount</code> when changing the client configuration, you won't be
1265
+ * <code>crossmnt</code> is used by default. If you don't specify
1266
+ * <code>crossmnt</code> when changing the client configuration, you won't be
1255
1267
  * able to see or access snapshots in your file system's snapshot directory.</p>
1256
1268
  * </li>
1257
1269
  * <li>
@@ -1272,7 +1284,7 @@ export declare namespace OpenZFSClientConfiguration {
1272
1284
  const filterSensitiveLog: (obj: OpenZFSClientConfiguration) => any;
1273
1285
  }
1274
1286
  /**
1275
- * <p>The Network File System NFS) configurations for mounting an Amazon FSx for
1287
+ * <p>The Network File System (NFS) configurations for mounting an Amazon FSx for
1276
1288
  * OpenZFS file system. </p>
1277
1289
  */
1278
1290
  export interface OpenZFSNfsExport {
@@ -1380,19 +1392,33 @@ export interface OpenZFSVolumeConfiguration {
1380
1392
  */
1381
1393
  StorageCapacityQuotaGiB?: number;
1382
1394
  /**
1383
- * <p>The method used to compress the data on the volume. Unless a compression type is
1384
- * specified, volumes inherit the <code>DataCompressionType</code> value of their parent
1385
- * volume.</p>
1395
+ * <p>The record size of an OpenZFS volume, in kibibytes (KiB). Valid values are 4, 8,
1396
+ * 16, 32, 64, 128, 256, 512, or 1024 KiB. The default is 128 KiB.
1397
+ * Most workloads should use the default record size. For guidance on when
1398
+ * to set a custom record size, see the
1399
+ * <i>Amazon FSx for OpenZFS User Guide</i>.</p>
1400
+ */
1401
+ RecordSizeKiB?: number;
1402
+ /**
1403
+ * <p>Specifies the method used to compress the data on the volume. The compression
1404
+ * type is <code>NONE</code> by default.</p>
1386
1405
  * <ul>
1387
1406
  * <li>
1388
1407
  * <p>
1389
- * <code>NONE</code> - Doesn't compress the data on the volume.</p>
1408
+ * <code>NONE</code> - Doesn't compress the data on the volume.
1409
+ * <code>NONE</code> is the default.</p>
1390
1410
  * </li>
1391
1411
  * <li>
1392
1412
  * <p>
1393
1413
  * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
1394
- * (ZSTD) compression algorithm. This algorithm reduces the amount of space used on
1395
- * your volume and has very little impact on compute resources.</p>
1414
+ * (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better
1415
+ * compression ratio to minimize on-disk storage utilization.</p>
1416
+ * </li>
1417
+ * <li>
1418
+ * <p>
1419
+ * <code>LZ4</code> - Compresses the data in the volume using the LZ4
1420
+ * compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive
1421
+ * and delivers higher write throughput speeds.</p>
1396
1422
  * </li>
1397
1423
  * </ul>
1398
1424
  */
@@ -1403,7 +1429,7 @@ export interface OpenZFSVolumeConfiguration {
1403
1429
  * for the volume are copied to snapshots where the user doesn't specify tags. If this
1404
1430
  * value is <code>true</code> and you specify one or more tags, only the specified tags are
1405
1431
  * copied to snapshots. If you specify one or more tags when creating the snapshot, no tags
1406
- * are copied from the volume, regardless of this value. </p>
1432
+ * are copied from the volume, regardless of this value.</p>
1407
1433
  */
1408
1434
  CopyTagsToSnapshots?: boolean;
1409
1435
  /**
@@ -1416,12 +1442,12 @@ export interface OpenZFSVolumeConfiguration {
1416
1442
  */
1417
1443
  ReadOnly?: boolean;
1418
1444
  /**
1419
- * <p>The configuration object for mounting a Network File System (NFS) file
1420
- * system.</p>
1445
+ * <p>The configuration object for mounting a Network File System (NFS)
1446
+ * file system.</p>
1421
1447
  */
1422
1448
  NfsExports?: OpenZFSNfsExport[];
1423
1449
  /**
1424
- * <p>An object specifying how much storage users or groups can use on the volume. </p>
1450
+ * <p>An object specifying how much storage users or groups can use on the volume.</p>
1425
1451
  */
1426
1452
  UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[];
1427
1453
  }
@@ -1503,35 +1529,47 @@ export declare namespace AssociateFileSystemAliasesResponse {
1503
1529
  /**
1504
1530
  * <p>A generic error indicating a failure with a client request.</p>
1505
1531
  */
1506
- export interface BadRequest extends __SmithyException, $MetadataBearer {
1507
- name: "BadRequest";
1508
- $fault: "client";
1532
+ export declare class BadRequest extends __BaseException {
1533
+ readonly name: "BadRequest";
1534
+ readonly $fault: "client";
1509
1535
  /**
1510
1536
  * <p>A detailed error message.</p>
1511
1537
  */
1512
1538
  Message?: string;
1539
+ /**
1540
+ * @internal
1541
+ */
1542
+ constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
1513
1543
  }
1514
1544
  /**
1515
1545
  * <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
1516
1546
  */
1517
- export interface FileSystemNotFound extends __SmithyException, $MetadataBearer {
1518
- name: "FileSystemNotFound";
1519
- $fault: "client";
1547
+ export declare class FileSystemNotFound extends __BaseException {
1548
+ readonly name: "FileSystemNotFound";
1549
+ readonly $fault: "client";
1520
1550
  /**
1521
1551
  * <p>A detailed error message.</p>
1522
1552
  */
1523
1553
  Message?: string;
1554
+ /**
1555
+ * @internal
1556
+ */
1557
+ constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
1524
1558
  }
1525
1559
  /**
1526
1560
  * <p>A generic error indicating a server-side failure.</p>
1527
1561
  */
1528
- export interface InternalServerError extends __SmithyException, $MetadataBearer {
1529
- name: "InternalServerError";
1530
- $fault: "server";
1562
+ export declare class InternalServerError extends __BaseException {
1563
+ readonly name: "InternalServerError";
1564
+ readonly $fault: "server";
1531
1565
  /**
1532
1566
  * <p>A detailed error message.</p>
1533
1567
  */
1534
1568
  Message?: string;
1569
+ /**
1570
+ * @internal
1571
+ */
1572
+ constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
1535
1573
  }
1536
1574
  export declare enum EventType {
1537
1575
  CHANGED = "CHANGED",
@@ -1687,46 +1725,62 @@ export declare namespace CancelDataRepositoryTaskResponse {
1687
1725
  /**
1688
1726
  * <p>The data repository task could not be canceled because the task has already ended.</p>
1689
1727
  */
1690
- export interface DataRepositoryTaskEnded extends __SmithyException, $MetadataBearer {
1691
- name: "DataRepositoryTaskEnded";
1692
- $fault: "client";
1728
+ export declare class DataRepositoryTaskEnded extends __BaseException {
1729
+ readonly name: "DataRepositoryTaskEnded";
1730
+ readonly $fault: "client";
1693
1731
  /**
1694
1732
  * <p>A detailed error message.</p>
1695
1733
  */
1696
1734
  Message?: string;
1735
+ /**
1736
+ * @internal
1737
+ */
1738
+ constructor(opts: __ExceptionOptionType<DataRepositoryTaskEnded, __BaseException>);
1697
1739
  }
1698
1740
  /**
1699
1741
  * <p>The data repository task or tasks you specified could not be found.</p>
1700
1742
  */
1701
- export interface DataRepositoryTaskNotFound extends __SmithyException, $MetadataBearer {
1702
- name: "DataRepositoryTaskNotFound";
1703
- $fault: "client";
1743
+ export declare class DataRepositoryTaskNotFound extends __BaseException {
1744
+ readonly name: "DataRepositoryTaskNotFound";
1745
+ readonly $fault: "client";
1704
1746
  /**
1705
1747
  * <p>A detailed error message.</p>
1706
1748
  */
1707
1749
  Message?: string;
1750
+ /**
1751
+ * @internal
1752
+ */
1753
+ constructor(opts: __ExceptionOptionType<DataRepositoryTaskNotFound, __BaseException>);
1708
1754
  }
1709
1755
  /**
1710
1756
  * <p>The requested operation is not supported for this resource or API.</p>
1711
1757
  */
1712
- export interface UnsupportedOperation extends __SmithyException, $MetadataBearer {
1713
- name: "UnsupportedOperation";
1714
- $fault: "client";
1758
+ export declare class UnsupportedOperation extends __BaseException {
1759
+ readonly name: "UnsupportedOperation";
1760
+ readonly $fault: "client";
1715
1761
  /**
1716
1762
  * <p>A detailed error message.</p>
1717
1763
  */
1718
1764
  Message?: string;
1765
+ /**
1766
+ * @internal
1767
+ */
1768
+ constructor(opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>);
1719
1769
  }
1720
1770
  /**
1721
1771
  * <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
1722
1772
  */
1723
- export interface BackupNotFound extends __SmithyException, $MetadataBearer {
1724
- name: "BackupNotFound";
1725
- $fault: "client";
1773
+ export declare class BackupNotFound extends __BaseException {
1774
+ readonly name: "BackupNotFound";
1775
+ readonly $fault: "client";
1726
1776
  /**
1727
1777
  * <p>A detailed error message.</p>
1728
1778
  */
1729
1779
  Message?: string;
1780
+ /**
1781
+ * @internal
1782
+ */
1783
+ constructor(opts: __ExceptionOptionType<BackupNotFound, __BaseException>);
1730
1784
  }
1731
1785
  export interface CopyBackupRequest {
1732
1786
  /**
@@ -1816,9 +1870,9 @@ export declare enum BackupType {
1816
1870
  * token but different parameters settings. A client request token should always uniquely
1817
1871
  * identify a single request.</p>
1818
1872
  */
1819
- export interface IncompatibleParameterError extends __SmithyException, $MetadataBearer {
1820
- name: "IncompatibleParameterError";
1821
- $fault: "client";
1873
+ export declare class IncompatibleParameterError extends __BaseException {
1874
+ readonly name: "IncompatibleParameterError";
1875
+ readonly $fault: "client";
1822
1876
  /**
1823
1877
  * <p>A parameter that is incompatible with the earlier request.</p>
1824
1878
  */
@@ -1827,54 +1881,74 @@ export interface IncompatibleParameterError extends __SmithyException, $Metadata
1827
1881
  * <p>A detailed error message.</p>
1828
1882
  */
1829
1883
  Message?: string;
1884
+ /**
1885
+ * @internal
1886
+ */
1887
+ constructor(opts: __ExceptionOptionType<IncompatibleParameterError, __BaseException>);
1830
1888
  }
1831
1889
  /**
1832
1890
  * <p>Amazon FSx doesn't support Multi-AZ Windows File Server copy backup in the
1833
1891
  * destination Region, so the copied backup can't be restored.</p>
1834
1892
  */
1835
- export interface IncompatibleRegionForMultiAZ extends __SmithyException, $MetadataBearer {
1836
- name: "IncompatibleRegionForMultiAZ";
1837
- $fault: "client";
1893
+ export declare class IncompatibleRegionForMultiAZ extends __BaseException {
1894
+ readonly name: "IncompatibleRegionForMultiAZ";
1895
+ readonly $fault: "client";
1838
1896
  /**
1839
1897
  * <p>A detailed error message.</p>
1840
1898
  */
1841
1899
  Message?: string;
1900
+ /**
1901
+ * @internal
1902
+ */
1903
+ constructor(opts: __ExceptionOptionType<IncompatibleRegionForMultiAZ, __BaseException>);
1842
1904
  }
1843
1905
  /**
1844
1906
  * <p>The Key Management Service (KMS) key of the destination backup is not
1845
1907
  * valid.</p>
1846
1908
  */
1847
- export interface InvalidDestinationKmsKey extends __SmithyException, $MetadataBearer {
1848
- name: "InvalidDestinationKmsKey";
1849
- $fault: "client";
1909
+ export declare class InvalidDestinationKmsKey extends __BaseException {
1910
+ readonly name: "InvalidDestinationKmsKey";
1911
+ readonly $fault: "client";
1850
1912
  /**
1851
1913
  * <p>A detailed error message.</p>
1852
1914
  */
1853
1915
  Message?: string;
1916
+ /**
1917
+ * @internal
1918
+ */
1919
+ constructor(opts: __ExceptionOptionType<InvalidDestinationKmsKey, __BaseException>);
1854
1920
  }
1855
1921
  /**
1856
1922
  * <p>The Region provided for <code>SourceRegion</code> is not valid or is in a different
1857
1923
  * Amazon Web Services partition.</p>
1858
1924
  */
1859
- export interface InvalidRegion extends __SmithyException, $MetadataBearer {
1860
- name: "InvalidRegion";
1861
- $fault: "client";
1925
+ export declare class InvalidRegion extends __BaseException {
1926
+ readonly name: "InvalidRegion";
1927
+ readonly $fault: "client";
1862
1928
  /**
1863
1929
  * <p>A detailed error message.</p>
1864
1930
  */
1865
1931
  Message?: string;
1932
+ /**
1933
+ * @internal
1934
+ */
1935
+ constructor(opts: __ExceptionOptionType<InvalidRegion, __BaseException>);
1866
1936
  }
1867
1937
  /**
1868
1938
  * <p>The Key Management Service (KMS) key of the source backup is not
1869
1939
  * valid.</p>
1870
1940
  */
1871
- export interface InvalidSourceKmsKey extends __SmithyException, $MetadataBearer {
1872
- name: "InvalidSourceKmsKey";
1873
- $fault: "client";
1941
+ export declare class InvalidSourceKmsKey extends __BaseException {
1942
+ readonly name: "InvalidSourceKmsKey";
1943
+ readonly $fault: "client";
1874
1944
  /**
1875
1945
  * <p>A detailed error message.</p>
1876
1946
  */
1877
1947
  Message?: string;
1948
+ /**
1949
+ * @internal
1950
+ */
1951
+ constructor(opts: __ExceptionOptionType<InvalidSourceKmsKey, __BaseException>);
1878
1952
  }
1879
1953
  export declare enum ServiceLimit {
1880
1954
  FILE_SYSTEM_COUNT = "FILE_SYSTEM_COUNT",
@@ -1891,9 +1965,9 @@ export declare enum ServiceLimit {
1891
1965
  * <p>An error indicating that a particular service limit was exceeded. You can increase
1892
1966
  * some service limits by contacting Amazon Web Services Support.</p>
1893
1967
  */
1894
- export interface ServiceLimitExceeded extends __SmithyException, $MetadataBearer {
1895
- name: "ServiceLimitExceeded";
1896
- $fault: "client";
1968
+ export declare class ServiceLimitExceeded extends __BaseException {
1969
+ readonly name: "ServiceLimitExceeded";
1970
+ readonly $fault: "client";
1897
1971
  /**
1898
1972
  * <p>Enumeration of the service limit that was exceeded. </p>
1899
1973
  */
@@ -1902,14 +1976,18 @@ export interface ServiceLimitExceeded extends __SmithyException, $MetadataBearer
1902
1976
  * <p>A detailed error message.</p>
1903
1977
  */
1904
1978
  Message?: string;
1979
+ /**
1980
+ * @internal
1981
+ */
1982
+ constructor(opts: __ExceptionOptionType<ServiceLimitExceeded, __BaseException>);
1905
1983
  }
1906
1984
  /**
1907
1985
  * <p>The request was rejected because the lifecycle status of the source backup isn't
1908
1986
  * <code>AVAILABLE</code>.</p>
1909
1987
  */
1910
- export interface SourceBackupUnavailable extends __SmithyException, $MetadataBearer {
1911
- name: "SourceBackupUnavailable";
1912
- $fault: "client";
1988
+ export declare class SourceBackupUnavailable extends __BaseException {
1989
+ readonly name: "SourceBackupUnavailable";
1990
+ readonly $fault: "client";
1913
1991
  /**
1914
1992
  * <p>A detailed error message.</p>
1915
1993
  */
@@ -1918,18 +1996,26 @@ export interface SourceBackupUnavailable extends __SmithyException, $MetadataBea
1918
1996
  * <p>The ID of the source backup. Specifies the backup that you are copying.</p>
1919
1997
  */
1920
1998
  BackupId?: string;
1999
+ /**
2000
+ * @internal
2001
+ */
2002
+ constructor(opts: __ExceptionOptionType<SourceBackupUnavailable, __BaseException>);
1921
2003
  }
1922
2004
  /**
1923
2005
  * <p>Another backup is already under way. Wait for completion before initiating
1924
2006
  * additional backups of this file system.</p>
1925
2007
  */
1926
- export interface BackupInProgress extends __SmithyException, $MetadataBearer {
1927
- name: "BackupInProgress";
1928
- $fault: "client";
2008
+ export declare class BackupInProgress extends __BaseException {
2009
+ readonly name: "BackupInProgress";
2010
+ readonly $fault: "client";
1929
2011
  /**
1930
2012
  * <p>A detailed error message.</p>
1931
2013
  */
1932
2014
  Message?: string;
2015
+ /**
2016
+ * @internal
2017
+ */
2018
+ constructor(opts: __ExceptionOptionType<BackupInProgress, __BaseException>);
1933
2019
  }
1934
2020
  /**
1935
2021
  * <p>The request object for the <code>CreateBackup</code> operation.</p>
@@ -1965,15 +2051,19 @@ export declare namespace CreateBackupRequest {
1965
2051
  const filterSensitiveLog: (obj: CreateBackupRequest) => any;
1966
2052
  }
1967
2053
  /**
1968
- * <p>No Amazon FSx for NetApp ONTAP volumes were found based upon the supplied parameters.</p>
2054
+ * <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
1969
2055
  */
1970
- export interface VolumeNotFound extends __SmithyException, $MetadataBearer {
1971
- name: "VolumeNotFound";
1972
- $fault: "client";
2056
+ export declare class VolumeNotFound extends __BaseException {
2057
+ readonly name: "VolumeNotFound";
2058
+ readonly $fault: "client";
1973
2059
  /**
1974
2060
  * <p>A detailed error message.</p>
1975
2061
  */
1976
2062
  Message?: string;
2063
+ /**
2064
+ * @internal
2065
+ */
2066
+ constructor(opts: __ExceptionOptionType<VolumeNotFound, __BaseException>);
1977
2067
  }
1978
2068
  /**
1979
2069
  * <p>The configuration for an Amazon S3 data repository linked to an
@@ -2023,6 +2113,11 @@ export interface CreateDataRepositoryAssociationRequest {
2023
2113
  * <p>This path specifies where in your file system files will be exported
2024
2114
  * from or imported to. This file system directory can be linked to only one
2025
2115
  * Amazon S3 bucket, and no other S3 bucket can be linked to the directory.</p>
2116
+ * <note>
2117
+ * <p>If you specify only a forward slash (<code>/</code>) as the file system
2118
+ * path, you can link only 1 data repository to the file system. You can only specify
2119
+ * "/" as the file system path for the first data repository associated with a file system.</p>
2120
+ * </note>
2026
2121
  */
2027
2122
  FileSystemPath: string | undefined;
2028
2123
  /**
@@ -2170,7 +2265,12 @@ export interface DataRepositoryAssociation {
2170
2265
  * path <code>/ns1/ns2</code>.</p>
2171
2266
  * <p>This path specifies where in your file system files will be exported
2172
2267
  * from or imported to. This file system directory can be linked to only one
2173
- * Amazon S3 bucket, and no other S3 bucket can be linked to the directory. </p>
2268
+ * Amazon S3 bucket, and no other S3 bucket can be linked to the directory.</p>
2269
+ * <note>
2270
+ * <p>If you specify only a forward slash (<code>/</code>) as the file system
2271
+ * path, you can link only 1 data repository to the file system. You can only specify
2272
+ * "/" as the file system path for the first data repository associated with a file system.</p>
2273
+ * </note>
2174
2274
  */
2175
2275
  FileSystemPath?: string;
2176
2276
  /**
@@ -2502,13 +2602,17 @@ export declare namespace CreateDataRepositoryTaskResponse {
2502
2602
  * <p>An existing data repository task is currently executing on the file system.
2503
2603
  * Wait until the existing task has completed, then create the new task.</p>
2504
2604
  */
2505
- export interface DataRepositoryTaskExecuting extends __SmithyException, $MetadataBearer {
2506
- name: "DataRepositoryTaskExecuting";
2507
- $fault: "client";
2605
+ export declare class DataRepositoryTaskExecuting extends __BaseException {
2606
+ readonly name: "DataRepositoryTaskExecuting";
2607
+ readonly $fault: "client";
2508
2608
  /**
2509
2609
  * <p>A detailed error message.</p>
2510
2610
  */
2511
2611
  Message?: string;
2612
+ /**
2613
+ * @internal
2614
+ */
2615
+ constructor(opts: __ExceptionOptionType<DataRepositoryTaskExecuting, __BaseException>);
2512
2616
  }
2513
2617
  /**
2514
2618
  * <p>The Lustre logging configuration used when creating or updating an
@@ -2741,11 +2845,11 @@ export interface CreateFileSystemLustreConfiguration {
2741
2845
  * in the S3 bucket.</p>
2742
2846
  * </li>
2743
2847
  * </ul>
2744
- * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html">
2848
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/older-deployment-types.html#legacy-auto-import-from-s3">
2745
2849
  * Automatically import updates from your S3 bucket</a>.</p>
2746
2850
  * <note>
2747
2851
  * <p>This parameter is not supported for file systems with the <code>Persistent_2</code> deployment type.
2748
- * Instead, use <code>CreateDataRepositoryAssociation"</code> to create
2852
+ * Instead, use <code>CreateDataRepositoryAssociation</code> to create
2749
2853
  * a data repository association to link your Lustre file system to a data repository.</p>
2750
2854
  * </note>
2751
2855
  */
@@ -2864,6 +2968,10 @@ export interface CreateFileSystemOntapConfiguration {
2864
2968
  * <p>Specifies the IP address range in which the endpoints to access your file system
2865
2969
  * will be created. By default, Amazon FSx selects an unused IP address range for you
2866
2970
  * from the 198.19.* range.</p>
2971
+ * <important>
2972
+ * <p>The Endpoint IP address range you select for your file system
2973
+ * must exist outside the VPC's CIDR range and must be at least /30 or larger.</p>
2974
+ * </important>
2867
2975
  */
2868
2976
  EndpointIpAddressRange?: string;
2869
2977
  /**
@@ -2915,19 +3023,35 @@ export declare namespace CreateFileSystemOntapConfiguration {
2915
3023
  */
2916
3024
  export interface OpenZFSCreateRootVolumeConfiguration {
2917
3025
  /**
2918
- * <p>Specifies the method used to compress the data on the volume. Unless the compression
2919
- * type is specified, volumes inherit the <code>DataCompressionType</code> value of their
2920
- * parent volume.</p>
3026
+ * <p>Specifies the record size of an OpenZFS root volume, in kibibytes (KiB). Valid values are 4, 8,
3027
+ * 16, 32, 64, 128, 256, 512, or 1024 KiB. The default is 128 KiB. Most workloads should use the
3028
+ * default record size. Database workflows can benefit from a smaller record size, while streaming
3029
+ * workflows can benefit from a larger record size. For additional guidance on setting a custom record
3030
+ * size, see <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs">
3031
+ * Tips for maximizing performance</a> in the
3032
+ * <i>Amazon FSx for OpenZFS User Guide</i>.</p>
3033
+ */
3034
+ RecordSizeKiB?: number;
3035
+ /**
3036
+ * <p>Specifies the method used to compress the data on the volume. The compression
3037
+ * type is <code>NONE</code> by default.</p>
2921
3038
  * <ul>
2922
3039
  * <li>
2923
3040
  * <p>
2924
- * <code>NONE</code> - Doesn't compress the data on the volume.</p>
3041
+ * <code>NONE</code> - Doesn't compress the data on the volume.
3042
+ * <code>NONE</code> is the default.</p>
3043
+ * </li>
3044
+ * <li>
3045
+ * <p>
3046
+ * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
3047
+ * (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better
3048
+ * compression ratio to minimize on-disk storage utilization.</p>
2925
3049
  * </li>
2926
3050
  * <li>
2927
3051
  * <p>
2928
- * <code>ZSTD</code> - Compresses the data in the volume using the ZStandard
2929
- * (ZSTD) compression algorithm. This algorithm reduces the amount of space used on
2930
- * your volume and has very little impact on compute resources.</p>
3052
+ * <code>LZ4</code> - Compresses the data in the volume using the LZ4
3053
+ * compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive
3054
+ * and delivers higher write throughput speeds.</p>
2931
3055
  * </li>
2932
3056
  * </ul>
2933
3057
  */
@@ -2941,9 +3065,9 @@ export interface OpenZFSCreateRootVolumeConfiguration {
2941
3065
  */
2942
3066
  UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[];
2943
3067
  /**
2944
- * <p>A Boolean value indicating whether tags for the volume should be copied to snapshots.
2945
- * This value defaults to <code>false</code>. If it's set to <code>true</code>, all tags
2946
- * for the volume are copied to snapshots where the user doesn't specify tags. If this
3068
+ * <p>A Boolean value indicating whether tags for the volume should be copied to snapshots
3069
+ * of the volume. This value defaults to <code>false</code>. If it's set to <code>true</code>,
3070
+ * all tags for the volume are copied to snapshots where the user doesn't specify tags. If this
2947
3071
  * value is <code>true</code> and you specify one or more tags, only the specified tags are
2948
3072
  * copied to snapshots. If you specify one or more tags when creating the snapshot, no tags
2949
3073
  * are copied from the volume, regardless of this value. </p>
@@ -2963,7 +3087,7 @@ export declare namespace OpenZFSCreateRootVolumeConfiguration {
2963
3087
  const filterSensitiveLog: (obj: OpenZFSCreateRootVolumeConfiguration) => any;
2964
3088
  }
2965
3089
  /**
2966
- * <p>The OpenZFS configuration properties for the file system that you are creating.</p>
3090
+ * <p>The Amazon FSx for OpenZFS configuration properties for the file system that you are creating.</p>
2967
3091
  */
2968
3092
  export interface CreateFileSystemOpenZFSConfiguration {
2969
3093
  /**
@@ -2999,8 +3123,8 @@ export interface CreateFileSystemOpenZFSConfiguration {
2999
3123
  DailyAutomaticBackupStartTime?: string;
3000
3124
  /**
3001
3125
  * <p>Specifies the file system deployment type. Amazon FSx for OpenZFS supports
3002
- * <code>SINGLE_AZ_1</code>. <code>SINGLE_AZ_1</code> is a file system configured for a
3003
- * single Availability Zone (AZ) of redundancy.</p>
3126
+ * <code>SINGLE_AZ_1</code>. <code>SINGLE_AZ_1</code> deployment type is configured for redundancy
3127
+ * within a single Availability Zone.</p>
3004
3128
  */
3005
3129
  DeploymentType: OpenZFSDeploymentType | string | undefined;
3006
3130
  /**
@@ -3510,31 +3634,39 @@ export declare namespace CreateFileSystemRequest {
3510
3634
  /**
3511
3635
  * <p>The path provided for data repository export isn't valid.</p>
3512
3636
  */
3513
- export interface InvalidExportPath extends __SmithyException, $MetadataBearer {
3514
- name: "InvalidExportPath";
3515
- $fault: "client";
3637
+ export declare class InvalidExportPath extends __BaseException {
3638
+ readonly name: "InvalidExportPath";
3639
+ readonly $fault: "client";
3516
3640
  /**
3517
3641
  * <p>A detailed error message.</p>
3518
3642
  */
3519
3643
  Message?: string;
3644
+ /**
3645
+ * @internal
3646
+ */
3647
+ constructor(opts: __ExceptionOptionType<InvalidExportPath, __BaseException>);
3520
3648
  }
3521
3649
  /**
3522
3650
  * <p>The path provided for data repository import isn't valid.</p>
3523
3651
  */
3524
- export interface InvalidImportPath extends __SmithyException, $MetadataBearer {
3525
- name: "InvalidImportPath";
3526
- $fault: "client";
3652
+ export declare class InvalidImportPath extends __BaseException {
3653
+ readonly name: "InvalidImportPath";
3654
+ readonly $fault: "client";
3527
3655
  /**
3528
3656
  * <p>A detailed error message.</p>
3529
3657
  */
3530
3658
  Message?: string;
3659
+ /**
3660
+ * @internal
3661
+ */
3662
+ constructor(opts: __ExceptionOptionType<InvalidImportPath, __BaseException>);
3531
3663
  }
3532
3664
  /**
3533
3665
  * <p>One or more network settings specified in the request are invalid.</p>
3534
3666
  */
3535
- export interface InvalidNetworkSettings extends __SmithyException, $MetadataBearer {
3536
- name: "InvalidNetworkSettings";
3537
- $fault: "client";
3667
+ export declare class InvalidNetworkSettings extends __BaseException {
3668
+ readonly name: "InvalidNetworkSettings";
3669
+ readonly $fault: "client";
3538
3670
  /**
3539
3671
  * <p>Error message explaining what's wrong with network settings.</p>
3540
3672
  */
@@ -3551,28 +3683,40 @@ export interface InvalidNetworkSettings extends __SmithyException, $MetadataBear
3551
3683
  * <p>The route table ID is either invalid or not part of the VPC specified.</p>
3552
3684
  */
3553
3685
  InvalidRouteTableId?: string;
3686
+ /**
3687
+ * @internal
3688
+ */
3689
+ constructor(opts: __ExceptionOptionType<InvalidNetworkSettings, __BaseException>);
3554
3690
  }
3555
3691
  /**
3556
3692
  * <p>An invalid value for <code>PerUnitStorageThroughput</code> was provided. Please create your file system again, using a valid value.</p>
3557
3693
  */
3558
- export interface InvalidPerUnitStorageThroughput extends __SmithyException, $MetadataBearer {
3559
- name: "InvalidPerUnitStorageThroughput";
3560
- $fault: "client";
3694
+ export declare class InvalidPerUnitStorageThroughput extends __BaseException {
3695
+ readonly name: "InvalidPerUnitStorageThroughput";
3696
+ readonly $fault: "client";
3561
3697
  /**
3562
3698
  * <p>A detailed error message.</p>
3563
3699
  */
3564
3700
  Message?: string;
3701
+ /**
3702
+ * @internal
3703
+ */
3704
+ constructor(opts: __ExceptionOptionType<InvalidPerUnitStorageThroughput, __BaseException>);
3565
3705
  }
3566
3706
  /**
3567
3707
  * <p>A file system configuration is required for this operation.</p>
3568
3708
  */
3569
- export interface MissingFileSystemConfiguration extends __SmithyException, $MetadataBearer {
3570
- name: "MissingFileSystemConfiguration";
3571
- $fault: "client";
3709
+ export declare class MissingFileSystemConfiguration extends __BaseException {
3710
+ readonly name: "MissingFileSystemConfiguration";
3711
+ readonly $fault: "client";
3572
3712
  /**
3573
3713
  * <p>A detailed error message.</p>
3574
3714
  */
3575
3715
  Message?: string;
3716
+ /**
3717
+ * @internal
3718
+ */
3719
+ constructor(opts: __ExceptionOptionType<MissingFileSystemConfiguration, __BaseException>);
3576
3720
  }
3577
3721
  /**
3578
3722
  * <p>The request object for the <code>CreateFileSystemFromBackup</code>
@@ -4133,39 +4277,73 @@ export declare namespace CreateOpenZFSOriginSnapshotConfiguration {
4133
4277
  const filterSensitiveLog: (obj: CreateOpenZFSOriginSnapshotConfiguration) => any;
4134
4278
  }
4135
4279
  /**
4136
- * <p>Specifies the configuration of the OpenZFS volume that you are creating.</p>
4280
+ * <p>Specifies the configuration of the Amazon FSx for OpenZFS volume that you are creating.</p>
4137
4281
  */
4138
4282
  export interface CreateOpenZFSVolumeConfiguration {
4139
4283
  /**
4140
- * <p>The ID of the volume to use as the parent volume. </p>
4284
+ * <p>The ID of the volume to use as the parent volume of the volume that you are creating.</p>
4141
4285
  */
4142
4286
  ParentVolumeId: string | undefined;
4143
4287
  /**
4144
- * <p>The amount of storage in gibibytes (GiB) to reserve from the parent volume. You can't
4145
- * reserve more storage than the parent volume has reserved.</p>
4288
+ * <p>Specifies the amount of storage in gibibytes (GiB) to reserve from the parent volume. Setting
4289
+ * <code>StorageCapacityReservationGiB</code> guarantees that the specified amount of storage space
4290
+ * on the parent volume will always be available for the volume.
4291
+ * You can't reserve more storage than the parent volume has. To <i>not</i> specify a storage capacity
4292
+ * reservation, set this to <code>0</code> or <code>-1</code>. For more information, see
4293
+ * <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/managing-volumes.html#volume-properties">Volume properties</a>
4294
+ * in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
4146
4295
  */
4147
4296
  StorageCapacityReservationGiB?: number;
4148
4297
  /**
4149
- * <p>The maximum amount of storage in gibibytes (GiB) that the volume can use from its
4150
- * parent. You can specify a quota larger than the storage on the parent volume.</p>
4298
+ * <p>Sets the maximum storage size in gibibytes (GiB) for the volume. You can specify
4299
+ * a quota that is larger than the storage on the parent volume. A volume quota limits
4300
+ * the amount of storage that the volume can consume to the configured amount, but does not
4301
+ * guarantee the space will be available on the parent volume. To guarantee quota space, you must also set
4302
+ * <code>StorageCapacityReservationGiB</code>. To <i>not</i> specify a storage capacity quota, set this to <code>-1</code>.
4303
+ * </p>
4304
+ * <p>For more information, see
4305
+ * <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/managing-volumes.html#volume-properties">Volume properties</a>
4306
+ * in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
4151
4307
  */
4152
4308
  StorageCapacityQuotaGiB?: number;
4153
4309
  /**
4154
- * <p>Specifies the method used to compress the data on the volume. Unless the compression
4155
- * type is specified, volumes inherit the <code>DataCompressionType</code> value of their
4156
- * parent volume.</p>
4310
+ * <p>Specifies the suggested block size for a volume in a ZFS dataset, in kibibytes (KiB). Valid values are 4, 8,
4311
+ * 16, 32, 64, 128, 256, 512, or 1024 KiB. The default is 128 KiB.
4312
+ * We recommend using the default setting for the majority of use cases.
4313
+ * Generally, workloads that write in fixed small or large record sizes
4314
+ * may benefit from setting a custom record size, like database workloads
4315
+ * (small record size) or media streaming workloads (large record size).
4316
+ * For additional guidance on when
4317
+ * to set a custom record size, see
4318
+ * <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#record-size-performance">
4319
+ * ZFS Record size</a> in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
4320
+ */
4321
+ RecordSizeKiB?: number;
4322
+ /**
4323
+ * <p>Specifies the method used to compress the data on the volume. The compression
4324
+ * type is <code>NONE</code> by default.</p>
4157
4325
  * <ul>
4158
4326
  * <li>
4159
4327
  * <p>
4160
- * <code>NONE</code> - Doesn't compress the data on the volume.</p>
4328
+ * <code>NONE</code> - Doesn't compress the data on the volume.
4329
+ * <code>NONE</code> is the default.</p>
4161
4330
  * </li>
4162
4331
  * <li>
4163
4332
  * <p>
4164
4333
  * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
4165
- * (ZSTD) compression algorithm. This algorithm reduces the amount of space used on
4166
- * your volume and has very little impact on compute resources.</p>
4334
+ * (ZSTD) compression algorithm. ZSTD compression provides a higher level of
4335
+ * data compression and higher read throughput performance than LZ4 compression.</p>
4336
+ * </li>
4337
+ * <li>
4338
+ * <p>
4339
+ * <code>LZ4</code> - Compresses the data in the volume using the LZ4
4340
+ * compression algorithm. LZ4 compression provides a lower level of compression
4341
+ * and higher write throughput performance than ZSTD compression.</p>
4167
4342
  * </li>
4168
4343
  * </ul>
4344
+ * <p>For more information about volume compression types and the performance of your Amazon FSx for OpenZFS file system,
4345
+ * see <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs">
4346
+ * Tips for maximizing performance</a> File system and volume settings in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
4169
4347
  */
4170
4348
  DataCompressionType?: OpenZFSDataCompressionType | string;
4171
4349
  /**
@@ -4174,7 +4352,7 @@ export interface CreateOpenZFSVolumeConfiguration {
4174
4352
  * for the volume are copied to snapshots where the user doesn't specify tags. If this
4175
4353
  * value is <code>true</code>, and you specify one or more tags, only the specified tags
4176
4354
  * are copied to snapshots. If you specify one or more tags when creating the snapshot, no
4177
- * tags are copied from the volume, regardless of this value. </p>
4355
+ * tags are copied from the volume, regardless of this value.</p>
4178
4356
  */
4179
4357
  CopyTagsToSnapshots?: boolean;
4180
4358
  /**
@@ -4183,15 +4361,15 @@ export interface CreateOpenZFSVolumeConfiguration {
4183
4361
  */
4184
4362
  OriginSnapshot?: CreateOpenZFSOriginSnapshotConfiguration;
4185
4363
  /**
4186
- * <p>A Boolean value indicating whether the volume is read-only. </p>
4364
+ * <p>A Boolean value indicating whether the volume is read-only.</p>
4187
4365
  */
4188
4366
  ReadOnly?: boolean;
4189
4367
  /**
4190
- * <p>The configuration object for mounting a Network File System (NFS) file system. </p>
4368
+ * <p>The configuration object for mounting a Network File System (NFS) file system.</p>
4191
4369
  */
4192
4370
  NfsExports?: OpenZFSNfsExport[];
4193
4371
  /**
4194
- * <p>An object specifying how much storage users or groups can use on the volume. </p>
4372
+ * <p>An object specifying how much storage users or groups can use on the volume.</p>
4195
4373
  */
4196
4374
  UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[];
4197
4375
  }
@@ -4239,24 +4417,32 @@ export declare namespace CreateVolumeRequest {
4239
4417
  /**
4240
4418
  * <p>A volume configuration is required for this operation.</p>
4241
4419
  */
4242
- export interface MissingVolumeConfiguration extends __SmithyException, $MetadataBearer {
4243
- name: "MissingVolumeConfiguration";
4244
- $fault: "client";
4420
+ export declare class MissingVolumeConfiguration extends __BaseException {
4421
+ readonly name: "MissingVolumeConfiguration";
4422
+ readonly $fault: "client";
4245
4423
  /**
4246
4424
  * <p>A detailed error message.</p>
4247
4425
  */
4248
4426
  Message?: string;
4427
+ /**
4428
+ * @internal
4429
+ */
4430
+ constructor(opts: __ExceptionOptionType<MissingVolumeConfiguration, __BaseException>);
4249
4431
  }
4250
4432
  /**
4251
- * <p>No Amazon FSx for NetApp ONTAP SVMs were found based upon the supplied parameters.</p>
4433
+ * <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
4252
4434
  */
4253
- export interface StorageVirtualMachineNotFound extends __SmithyException, $MetadataBearer {
4254
- name: "StorageVirtualMachineNotFound";
4255
- $fault: "client";
4435
+ export declare class StorageVirtualMachineNotFound extends __BaseException {
4436
+ readonly name: "StorageVirtualMachineNotFound";
4437
+ readonly $fault: "client";
4256
4438
  /**
4257
4439
  * <p>A detailed error message.</p>
4258
4440
  */
4259
4441
  Message?: string;
4442
+ /**
4443
+ * @internal
4444
+ */
4445
+ constructor(opts: __ExceptionOptionType<StorageVirtualMachineNotFound, __BaseException>);
4260
4446
  }
4261
4447
  export interface CreateVolumeFromBackupRequest {
4262
4448
  /**
@@ -4291,9 +4477,9 @@ export declare namespace CreateVolumeFromBackupRequest {
4291
4477
  /**
4292
4478
  * <p>You can't delete a backup while it's being copied.</p>
4293
4479
  */
4294
- export interface BackupBeingCopied extends __SmithyException, $MetadataBearer {
4295
- name: "BackupBeingCopied";
4296
- $fault: "client";
4480
+ export declare class BackupBeingCopied extends __BaseException {
4481
+ readonly name: "BackupBeingCopied";
4482
+ readonly $fault: "client";
4297
4483
  /**
4298
4484
  * <p>A detailed error message.</p>
4299
4485
  */
@@ -4302,14 +4488,18 @@ export interface BackupBeingCopied extends __SmithyException, $MetadataBearer {
4302
4488
  * <p>The ID of the source backup. Specifies the backup that you are copying.</p>
4303
4489
  */
4304
4490
  BackupId?: string;
4491
+ /**
4492
+ * @internal
4493
+ */
4494
+ constructor(opts: __ExceptionOptionType<BackupBeingCopied, __BaseException>);
4305
4495
  }
4306
4496
  /**
4307
4497
  * <p>You can't delete a backup while it's being used to restore a file
4308
4498
  * system.</p>
4309
4499
  */
4310
- export interface BackupRestoring extends __SmithyException, $MetadataBearer {
4311
- name: "BackupRestoring";
4312
- $fault: "client";
4500
+ export declare class BackupRestoring extends __BaseException {
4501
+ readonly name: "BackupRestoring";
4502
+ readonly $fault: "client";
4313
4503
  /**
4314
4504
  * <p>A detailed error message.</p>
4315
4505
  */
@@ -4318,6 +4508,10 @@ export interface BackupRestoring extends __SmithyException, $MetadataBearer {
4318
4508
  * <p>The ID of a file system being restored from the backup.</p>
4319
4509
  */
4320
4510
  FileSystemId?: string;
4511
+ /**
4512
+ * @internal
4513
+ */
4514
+ constructor(opts: __ExceptionOptionType<BackupRestoring, __BaseException>);
4321
4515
  }
4322
4516
  /**
4323
4517
  * <p>The request object for the <code>DeleteBackup</code> operation.</p>
@@ -4363,13 +4557,17 @@ export declare namespace DeleteBackupResponse {
4363
4557
  /**
4364
4558
  * <p>No data repository associations were found based upon the supplied parameters.</p>
4365
4559
  */
4366
- export interface DataRepositoryAssociationNotFound extends __SmithyException, $MetadataBearer {
4367
- name: "DataRepositoryAssociationNotFound";
4368
- $fault: "client";
4560
+ export declare class DataRepositoryAssociationNotFound extends __BaseException {
4561
+ readonly name: "DataRepositoryAssociationNotFound";
4562
+ readonly $fault: "client";
4369
4563
  /**
4370
4564
  * <p>A detailed error message.</p>
4371
4565
  */
4372
4566
  Message?: string;
4567
+ /**
4568
+ * @internal
4569
+ */
4570
+ constructor(opts: __ExceptionOptionType<DataRepositoryAssociationNotFound, __BaseException>);
4373
4571
  }
4374
4572
  export interface DeleteDataRepositoryAssociationRequest {
4375
4573
  /**
@@ -4443,8 +4641,11 @@ export declare namespace DeleteFileSystemLustreConfiguration {
4443
4641
  */
4444
4642
  const filterSensitiveLog: (obj: DeleteFileSystemLustreConfiguration) => any;
4445
4643
  }
4644
+ export declare enum DeleteFileSystemOpenZFSOption {
4645
+ DELETE_CHILD_VOLUMES_AND_SNAPSHOTS = "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"
4646
+ }
4446
4647
  /**
4447
- * <p>The configuration object for the OpenZFS file system used in the
4648
+ * <p>The configuration object for the Amazon FSx for OpenZFS file system used in the
4448
4649
  * <code>DeleteFileSystem</code> operation.</p>
4449
4650
  */
4450
4651
  export interface DeleteFileSystemOpenZFSConfiguration {
@@ -4452,15 +4653,19 @@ export interface DeleteFileSystemOpenZFSConfiguration {
4452
4653
  * <p>By default, Amazon FSx for OpenZFS takes a final backup on your behalf when
4453
4654
  * the <code>DeleteFileSystem</code> operation is invoked. Doing this helps protect you
4454
4655
  * from data loss, and we highly recommend taking the final backup. If you want to skip
4455
- * this backup, use this
4456
- * value
4457
- * to do so. </p>
4656
+ * taking a final backup, set this value to <code>true</code>.</p>
4458
4657
  */
4459
4658
  SkipFinalBackup?: boolean;
4460
4659
  /**
4461
- * <p>A list of <code>Tag</code> values, with a maximum of 50 elements.</p>
4660
+ * <p>A list of tags to apply to the file system's final backup.</p>
4462
4661
  */
4463
4662
  FinalBackupTags?: Tag[];
4663
+ /**
4664
+ * <p>To delete a file system if there are child volumes present below the root volume,
4665
+ * use the string <code>DELETE_CHILD_VOLUMES_AND_SNAPSHOTS</code>. If your file system
4666
+ * has child volumes and you don't use this option, the delete request will fail.</p>
4667
+ */
4668
+ Options?: (DeleteFileSystemOpenZFSOption | string)[];
4464
4669
  }
4465
4670
  export declare namespace DeleteFileSystemOpenZFSConfiguration {
4466
4671
  /**
@@ -4661,13 +4866,17 @@ export declare namespace DeleteSnapshotResponse {
4661
4866
  /**
4662
4867
  * <p>No Amazon FSx snapshots were found based on the supplied parameters.</p>
4663
4868
  */
4664
- export interface SnapshotNotFound extends __SmithyException, $MetadataBearer {
4665
- name: "SnapshotNotFound";
4666
- $fault: "client";
4869
+ export declare class SnapshotNotFound extends __BaseException {
4870
+ readonly name: "SnapshotNotFound";
4871
+ readonly $fault: "client";
4667
4872
  /**
4668
4873
  * <p>A detailed error message.</p>
4669
4874
  */
4670
4875
  Message?: string;
4876
+ /**
4877
+ * @internal
4878
+ */
4879
+ constructor(opts: __ExceptionOptionType<SnapshotNotFound, __BaseException>);
4671
4880
  }
4672
4881
  export interface DeleteStorageVirtualMachineRequest {
4673
4882
  /**
@@ -4925,13 +5134,17 @@ export declare namespace DescribeDataRepositoryAssociationsResponse {
4925
5134
  /**
4926
5135
  * <p>You have filtered the response to a data repository type that is not supported.</p>
4927
5136
  */
4928
- export interface InvalidDataRepositoryType extends __SmithyException, $MetadataBearer {
4929
- name: "InvalidDataRepositoryType";
4930
- $fault: "client";
5137
+ export declare class InvalidDataRepositoryType extends __BaseException {
5138
+ readonly name: "InvalidDataRepositoryType";
5139
+ readonly $fault: "client";
4931
5140
  /**
4932
5141
  * <p>A detailed error message.</p>
4933
5142
  */
4934
5143
  Message?: string;
5144
+ /**
5145
+ * @internal
5146
+ */
5147
+ constructor(opts: __ExceptionOptionType<InvalidDataRepositoryType, __BaseException>);
4935
5148
  }
4936
5149
  export declare enum DataRepositoryTaskFilterName {
4937
5150
  DATA_REPO_ASSOCIATION_ID = "data-repository-association-id",
@@ -5374,9 +5587,9 @@ export declare namespace ListTagsForResourceResponse {
5374
5587
  * <p>The resource specified for the tagging operation is not a resource type owned by
5375
5588
  * Amazon FSx. Use the API of the relevant service to perform the operation. </p>
5376
5589
  */
5377
- export interface NotServiceResourceError extends __SmithyException, $MetadataBearer {
5378
- name: "NotServiceResourceError";
5379
- $fault: "client";
5590
+ export declare class NotServiceResourceError extends __BaseException {
5591
+ readonly name: "NotServiceResourceError";
5592
+ readonly $fault: "client";
5380
5593
  /**
5381
5594
  * <p>The Amazon Resource Name (ARN) of the non-Amazon FSx resource.</p>
5382
5595
  */
@@ -5385,13 +5598,17 @@ export interface NotServiceResourceError extends __SmithyException, $MetadataBea
5385
5598
  * <p>A detailed error message.</p>
5386
5599
  */
5387
5600
  Message?: string;
5601
+ /**
5602
+ * @internal
5603
+ */
5604
+ constructor(opts: __ExceptionOptionType<NotServiceResourceError, __BaseException>);
5388
5605
  }
5389
5606
  /**
5390
5607
  * <p>The resource specified does not support tagging. </p>
5391
5608
  */
5392
- export interface ResourceDoesNotSupportTagging extends __SmithyException, $MetadataBearer {
5393
- name: "ResourceDoesNotSupportTagging";
5394
- $fault: "client";
5609
+ export declare class ResourceDoesNotSupportTagging extends __BaseException {
5610
+ readonly name: "ResourceDoesNotSupportTagging";
5611
+ readonly $fault: "client";
5395
5612
  /**
5396
5613
  * <p>The Amazon Resource Name (ARN) of the resource that doesn't support
5397
5614
  * tagging.</p>
@@ -5401,13 +5618,17 @@ export interface ResourceDoesNotSupportTagging extends __SmithyException, $Metad
5401
5618
  * <p>A detailed error message.</p>
5402
5619
  */
5403
5620
  Message?: string;
5621
+ /**
5622
+ * @internal
5623
+ */
5624
+ constructor(opts: __ExceptionOptionType<ResourceDoesNotSupportTagging, __BaseException>);
5404
5625
  }
5405
5626
  /**
5406
5627
  * <p>The resource specified by the Amazon Resource Name (ARN) can't be found.</p>
5407
5628
  */
5408
- export interface ResourceNotFound extends __SmithyException, $MetadataBearer {
5409
- name: "ResourceNotFound";
5410
- $fault: "client";
5629
+ export declare class ResourceNotFound extends __BaseException {
5630
+ readonly name: "ResourceNotFound";
5631
+ readonly $fault: "client";
5411
5632
  /**
5412
5633
  * <p>The resource ARN of the resource that can't be found.</p>
5413
5634
  */
@@ -5416,6 +5637,10 @@ export interface ResourceNotFound extends __SmithyException, $MetadataBearer {
5416
5637
  * <p>A detailed error message.</p>
5417
5638
  */
5418
5639
  Message?: string;
5640
+ /**
5641
+ * @internal
5642
+ */
5643
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
5419
5644
  }
5420
5645
  export interface ReleaseFileSystemNfsV3LocksRequest {
5421
5646
  /**
@@ -5763,7 +5988,7 @@ export interface UpdateFileSystemOpenZFSConfiguration {
5763
5988
  * where the user doesn't specify tags. If this value is <code>true</code> and you specify
5764
5989
  * one or more tags, only the specified tags are copied to backups. If you specify one or
5765
5990
  * more tags when creating a user-initiated backup, no tags are copied from the file
5766
- * system, regardless of this value. </p>
5991
+ * system, regardless of this value.</p>
5767
5992
  */
5768
5993
  CopyTagsToBackups?: boolean;
5769
5994
  /**
@@ -5772,7 +5997,7 @@ export interface UpdateFileSystemOpenZFSConfiguration {
5772
5997
  * for the volume are copied to snapshots where the user doesn't specify tags. If this
5773
5998
  * value is <code>true</code> and you specify one or more tags, only the specified tags are
5774
5999
  * copied to snapshots. If you specify one or more tags when creating the snapshot, no tags
5775
- * are copied from the volume, regardless of this value. </p>
6000
+ * are copied from the volume, regardless of this value.</p>
5776
6001
  */
5777
6002
  CopyTagsToVolumes?: boolean;
5778
6003
  /**
@@ -5783,7 +6008,7 @@ export interface UpdateFileSystemOpenZFSConfiguration {
5783
6008
  DailyAutomaticBackupStartTime?: string;
5784
6009
  /**
5785
6010
  * <p>The throughput of an Amazon FSx file system, measured in megabytes per second
5786
- * (MBps), in 2 to the nth increments, between 2^3 (8) and 2^12 (4096). </p>
6011
+ * (MBps). Valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
5787
6012
  */
5788
6013
  ThroughputCapacity?: number;
5789
6014
  /**
@@ -5970,7 +6195,7 @@ export interface UpdateSnapshotRequest {
5970
6195
  */
5971
6196
  ClientRequestToken?: string;
5972
6197
  /**
5973
- * <p>The name of the snapshot to update. </p>
6198
+ * <p>The name of the snapshot to update.</p>
5974
6199
  */
5975
6200
  Name: string | undefined;
5976
6201
  /**
@@ -6075,36 +6300,52 @@ export declare namespace UpdateOntapVolumeConfiguration {
6075
6300
  const filterSensitiveLog: (obj: UpdateOntapVolumeConfiguration) => any;
6076
6301
  }
6077
6302
  /**
6078
- * <p>Used to specify changes to the OpenZFS configuration for the volume that you are
6079
- * updating.</p>
6303
+ * <p>Used to specify changes to the OpenZFS configuration for the volume
6304
+ * that you are updating.</p>
6080
6305
  */
6081
6306
  export interface UpdateOpenZFSVolumeConfiguration {
6082
6307
  /**
6083
- * <p>The amount of storage in gibibytes (GiB) to reserve from the parent volume. You can't
6084
- * reserve more storage than the parent volume has reserved.</p>
6308
+ * <p>The amount of storage in gibibytes (GiB) to reserve from the parent volume.
6309
+ * You can't reserve more storage than the parent volume has reserved. You can specify
6310
+ * a value of <code>-1</code> to unset a volume's storage capacity reservation.</p>
6085
6311
  */
6086
6312
  StorageCapacityReservationGiB?: number;
6087
6313
  /**
6088
- * <p></p>
6089
- * <p>The maximum amount of storage in gibibytes (GiB) that the volume can use from its
6090
- * parent. You can specify a quota larger than the storage on the parent volume.</p>
6314
+ * <p>The maximum amount of storage in gibibytes (GiB) that the volume can use from its
6315
+ * parent. You can specify a quota larger than the storage on the parent volume. You
6316
+ * can specify a value of <code>-1</code> to unset a volume's storage capacity quota.</p>
6091
6317
  */
6092
6318
  StorageCapacityQuotaGiB?: number;
6093
6319
  /**
6094
- * <p></p>
6095
- * <p>Specifies the method used to compress the data on the volume. Unless the compression
6096
- * type is specified, volumes inherit the <code>DataCompressionType</code> value of their
6097
- * parent volume.</p>
6320
+ * <p>Specifies the record size of an OpenZFS volume, in kibibytes (KiB). Valid values are 4, 8,
6321
+ * 16, 32, 64, 128, 256, 512, or 1024 KiB. The default is 128 KiB.
6322
+ * Most workloads should use the default record size. Database workflows can benefit from a smaller
6323
+ * record size, while streaming workflows can benefit from a larger record size. For additional guidance on when
6324
+ * to set a custom record size, see <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs">
6325
+ * Tips for maximizing performance</a> in the
6326
+ * <i>Amazon FSx for OpenZFS User Guide</i>.</p>
6327
+ */
6328
+ RecordSizeKiB?: number;
6329
+ /**
6330
+ * <p>Specifies the method used to compress the data on the volume. The compression
6331
+ * type is <code>NONE</code> by default.</p>
6098
6332
  * <ul>
6099
6333
  * <li>
6100
6334
  * <p>
6101
- * <code>NONE</code> - Doesn't compress the data on the volume.</p>
6335
+ * <code>NONE</code> - Doesn't compress the data on the volume.
6336
+ * <code>NONE</code> is the default.</p>
6102
6337
  * </li>
6103
6338
  * <li>
6104
6339
  * <p>
6105
6340
  * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
6106
- * (ZSTD) compression algorithm. This algorithm reduces the amount of space used on
6107
- * your volume and has very little impact on compute resources.</p>
6341
+ * (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better
6342
+ * compression ratio to minimize on-disk storage utilization.</p>
6343
+ * </li>
6344
+ * <li>
6345
+ * <p>
6346
+ * <code>LZ4</code> - Compresses the data in the volume using the LZ4
6347
+ * compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive
6348
+ * and delivers higher write throughput speeds.</p>
6108
6349
  * </li>
6109
6350
  * </ul>
6110
6351
  */
@@ -6509,6 +6750,10 @@ export interface Snapshot {
6509
6750
  * </ul>
6510
6751
  */
6511
6752
  Lifecycle?: SnapshotLifecycle | string;
6753
+ /**
6754
+ * <p>Describes why a resource lifecycle state changed.</p>
6755
+ */
6756
+ LifecycleTransitionReason?: LifecycleTransitionReason;
6512
6757
  /**
6513
6758
  * <p>A list of <code>Tag</code> values, with a maximum of 50 elements.</p>
6514
6759
  */