@aws-sdk/client-fsx 3.699.0 → 3.703.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.
- package/dist-cjs/index.js +9 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/protocols/Aws_json1_1.js +1 -0
- package/dist-types/commands/CopyBackupCommand.d.ts +13 -2
- package/dist-types/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +12 -2
- package/dist-types/commands/CreateBackupCommand.d.ts +13 -2
- package/dist-types/commands/CreateFileSystemCommand.d.ts +19 -4
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +18 -3
- package/dist-types/commands/CreateSnapshotCommand.d.ts +12 -2
- package/dist-types/commands/CreateVolumeCommand.d.ts +12 -2
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +12 -2
- package/dist-types/commands/DescribeBackupsCommand.d.ts +13 -2
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +12 -2
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +12 -2
- package/dist-types/commands/DescribeVolumesCommand.d.ts +12 -2
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +12 -2
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +12 -2
- package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +12 -2
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +22 -3
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +12 -2
- package/dist-types/commands/UpdateVolumeCommand.d.ts +12 -2
- package/dist-types/models/models_0.d.ts +100 -13
- package/dist-types/ts3.4/models/models_0.d.ts +19 -1
- package/package.json +1 -1
|
@@ -645,6 +645,12 @@ export interface LustreFileSystemConfiguration {
|
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
647
|
MetadataConfiguration?: FileSystemLustreMetadataConfiguration | undefined;
|
|
648
|
+
/**
|
|
649
|
+
* <p>Specifies whether Elastic Fabric Adapter (EFA) and GPUDirect Storage (GDS)
|
|
650
|
+
* support is enabled for the Amazon FSx for Lustre file system.</p>
|
|
651
|
+
* @public
|
|
652
|
+
*/
|
|
653
|
+
EfaEnabled?: boolean | undefined;
|
|
648
654
|
}
|
|
649
655
|
/**
|
|
650
656
|
* @public
|
|
@@ -908,6 +914,52 @@ export declare const OpenZFSDeploymentType: {
|
|
|
908
914
|
* @public
|
|
909
915
|
*/
|
|
910
916
|
export type OpenZFSDeploymentType = (typeof OpenZFSDeploymentType)[keyof typeof OpenZFSDeploymentType];
|
|
917
|
+
/**
|
|
918
|
+
* @public
|
|
919
|
+
* @enum
|
|
920
|
+
*/
|
|
921
|
+
export declare const OpenZFSReadCacheSizingMode: {
|
|
922
|
+
readonly NO_CACHE: "NO_CACHE";
|
|
923
|
+
readonly PROPORTIONAL_TO_THROUGHPUT_CAPACITY: "PROPORTIONAL_TO_THROUGHPUT_CAPACITY";
|
|
924
|
+
readonly USER_PROVISIONED: "USER_PROVISIONED";
|
|
925
|
+
};
|
|
926
|
+
/**
|
|
927
|
+
* @public
|
|
928
|
+
*/
|
|
929
|
+
export type OpenZFSReadCacheSizingMode = (typeof OpenZFSReadCacheSizingMode)[keyof typeof OpenZFSReadCacheSizingMode];
|
|
930
|
+
/**
|
|
931
|
+
* <p>
|
|
932
|
+
* The configuration for the optional provisioned SSD read cache on file systems that use the Intelligent-Tiering storage class.
|
|
933
|
+
* </p>
|
|
934
|
+
* @public
|
|
935
|
+
*/
|
|
936
|
+
export interface OpenZFSReadCacheConfiguration {
|
|
937
|
+
/**
|
|
938
|
+
* <p>
|
|
939
|
+
* Specifies how the provisioned SSD read cache is sized, as follows:
|
|
940
|
+
* </p>
|
|
941
|
+
* <ul>
|
|
942
|
+
* <li>
|
|
943
|
+
* <p>Set to <code>NO_CACHE</code> if you do not want to use an SSD read cache with your Intelligent-Tiering file system.</p>
|
|
944
|
+
* </li>
|
|
945
|
+
* <li>
|
|
946
|
+
* <p>Set to <code>USER_PROVISIONED</code> to specify the exact size of your SSD read cache.</p>
|
|
947
|
+
* </li>
|
|
948
|
+
* <li>
|
|
949
|
+
* <p>Set to <code>PROPORTIONAL_TO_THROUGHPUT_CAPACITY</code> to have your SSD read cache automatically sized based on your throughput capacity.</p>
|
|
950
|
+
* </li>
|
|
951
|
+
* </ul>
|
|
952
|
+
* @public
|
|
953
|
+
*/
|
|
954
|
+
SizingMode?: OpenZFSReadCacheSizingMode | undefined;
|
|
955
|
+
/**
|
|
956
|
+
* <p>
|
|
957
|
+
* Required if <code>SizingMode</code> is set to <code>USER_PROVISIONED</code>. Specifies the size of the file system's SSD read cache, in gibibytes (GiB).
|
|
958
|
+
* </p>
|
|
959
|
+
* @public
|
|
960
|
+
*/
|
|
961
|
+
SizeGiB?: number | undefined;
|
|
962
|
+
}
|
|
911
963
|
/**
|
|
912
964
|
* <p>The configuration for the Amazon FSx for OpenZFS file system. </p>
|
|
913
965
|
* @public
|
|
@@ -1012,6 +1064,12 @@ export interface OpenZFSFileSystemConfiguration {
|
|
|
1012
1064
|
* @public
|
|
1013
1065
|
*/
|
|
1014
1066
|
EndpointIpAddress?: string | undefined;
|
|
1067
|
+
/**
|
|
1068
|
+
* <p>
|
|
1069
|
+
* Required when <code>StorageType</code> is set to <code>INTELLIGENT_TIERING</code>. Specifies the optional provisioned SSD read cache. </p>
|
|
1070
|
+
* @public
|
|
1071
|
+
*/
|
|
1072
|
+
ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
|
|
1015
1073
|
}
|
|
1016
1074
|
/**
|
|
1017
1075
|
* @public
|
|
@@ -1019,6 +1077,7 @@ export interface OpenZFSFileSystemConfiguration {
|
|
|
1019
1077
|
*/
|
|
1020
1078
|
export declare const StorageType: {
|
|
1021
1079
|
readonly HDD: "HDD";
|
|
1080
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
1022
1081
|
readonly SSD: "SSD";
|
|
1023
1082
|
};
|
|
1024
1083
|
/**
|
|
@@ -4913,6 +4972,13 @@ export interface CreateFileSystemLustreConfiguration {
|
|
|
4913
4972
|
* @public
|
|
4914
4973
|
*/
|
|
4915
4974
|
DataCompressionType?: DataCompressionType | undefined;
|
|
4975
|
+
/**
|
|
4976
|
+
* <p>(Optional) Specifies whether Elastic Fabric Adapter (EFA) and GPUDirect Storage (GDS)
|
|
4977
|
+
* support is enabled for the Amazon FSx for Lustre file system.</p>
|
|
4978
|
+
* <p>(Default = <code>false</code>)</p>
|
|
4979
|
+
* @public
|
|
4980
|
+
*/
|
|
4981
|
+
EfaEnabled?: boolean | undefined;
|
|
4916
4982
|
/**
|
|
4917
4983
|
* <p>The Lustre logging configuration used when creating an Amazon FSx for Lustre
|
|
4918
4984
|
* file system. When logging is enabled, Lustre logs error and warning events for data repositories
|
|
@@ -5310,6 +5376,13 @@ export interface CreateFileSystemOpenZFSConfiguration {
|
|
|
5310
5376
|
* @public
|
|
5311
5377
|
*/
|
|
5312
5378
|
RouteTableIds?: string[] | undefined;
|
|
5379
|
+
/**
|
|
5380
|
+
* <p>
|
|
5381
|
+
* Specifies the optional provisioned SSD read cache on file systems that use the Intelligent-Tiering storage class.
|
|
5382
|
+
* </p>
|
|
5383
|
+
* @public
|
|
5384
|
+
*/
|
|
5385
|
+
ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
|
|
5313
5386
|
}
|
|
5314
5387
|
/**
|
|
5315
5388
|
* <p>The Windows file access auditing configuration used when creating
|
|
@@ -5661,10 +5734,10 @@ export interface CreateFileSystemRequest {
|
|
|
5661
5734
|
* </ul>
|
|
5662
5735
|
* @public
|
|
5663
5736
|
*/
|
|
5664
|
-
StorageCapacity
|
|
5737
|
+
StorageCapacity?: number | undefined;
|
|
5665
5738
|
/**
|
|
5666
|
-
* <p>Sets the storage
|
|
5667
|
-
* <code>SSD</code> and <code>
|
|
5739
|
+
* <p>Sets the storage class for the file system that you're creating. Valid values are
|
|
5740
|
+
* <code>SSD</code>, <code>HDD</code>, and <code>INTELLIGENT_TIERING</code>.</p>
|
|
5668
5741
|
* <ul>
|
|
5669
5742
|
* <li>
|
|
5670
5743
|
* <p>Set to <code>SSD</code> to use solid state drive storage. SSD is supported on all Windows,
|
|
@@ -5675,12 +5748,16 @@ export interface CreateFileSystemRequest {
|
|
|
5675
5748
|
* HDD is supported on <code>SINGLE_AZ_2</code> and <code>MULTI_AZ_1</code> Windows file system deployment types,
|
|
5676
5749
|
* and on <code>PERSISTENT_1</code> Lustre file system deployment types.</p>
|
|
5677
5750
|
* </li>
|
|
5751
|
+
* <li>
|
|
5752
|
+
* <p>Set to <code>INTELLIGENT_TIERING</code> to use fully elastic, intelligently-tiered storage. Intelligent-Tiering is only available for OpenZFS file systems with the Multi-AZ deployment type.</p>
|
|
5753
|
+
* </li>
|
|
5678
5754
|
* </ul>
|
|
5679
5755
|
* <p>Default value is <code>SSD</code>. For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options"> Storage
|
|
5680
5756
|
* type options</a> in the <i>FSx for Windows File Server User
|
|
5681
|
-
* Guide</i
|
|
5757
|
+
* Guide</i>, <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/what-is.html#storage-options">Multiple storage
|
|
5682
5758
|
* options</a> in the <i>FSx for Lustre User
|
|
5683
|
-
*
|
|
5759
|
+
* Guide</i>, and <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance-intelligent-tiering">Working with Intelligent-Tiering</a> in the <i>Amazon FSx for OpenZFS User
|
|
5760
|
+
* Guide</i>. </p>
|
|
5684
5761
|
* @public
|
|
5685
5762
|
*/
|
|
5686
5763
|
StorageType?: StorageType | undefined;
|
|
@@ -6720,14 +6797,11 @@ export interface CreateOpenZFSVolumeConfiguration {
|
|
|
6720
6797
|
*/
|
|
6721
6798
|
StorageCapacityQuotaGiB?: number | undefined;
|
|
6722
6799
|
/**
|
|
6723
|
-
* <p>Specifies the suggested block size for a volume in a ZFS dataset, in kibibytes (KiB).
|
|
6724
|
-
*
|
|
6725
|
-
*
|
|
6726
|
-
* Generally, workloads that write in fixed small or large record sizes
|
|
6727
|
-
*
|
|
6728
|
-
* (small record size) or media streaming workloads (large record size).
|
|
6729
|
-
* For additional guidance on when
|
|
6730
|
-
* to set a custom record size, see
|
|
6800
|
+
* <p>Specifies the suggested block size for a volume in a ZFS dataset, in kibibytes (KiB).
|
|
6801
|
+
* For file systems using the Intelligent-Tiering storage class, valid values are 128, 256, 512, 1024, 2048, or 4096 KiB, with a default of 2048 KiB.
|
|
6802
|
+
* For all other file systems, valid values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024 KiB, with a default of 128 KiB.
|
|
6803
|
+
* We recommend using the default setting for the majority of use cases. Generally, workloads that write in fixed small or large record sizes may benefit from setting a custom record size, like database workloads (small record size) or media streaming workloads (large record size).
|
|
6804
|
+
* For additional guidance on when to set a custom record size, see
|
|
6731
6805
|
* <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#record-size-performance">
|
|
6732
6806
|
* ZFS Record size</a> in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
|
|
6733
6807
|
* @public
|
|
@@ -8939,6 +9013,12 @@ export interface UpdateFileSystemOpenZFSConfiguration {
|
|
|
8939
9013
|
* @public
|
|
8940
9014
|
*/
|
|
8941
9015
|
RemoveRouteTableIds?: string[] | undefined;
|
|
9016
|
+
/**
|
|
9017
|
+
* <p>
|
|
9018
|
+
* The configuration for the optional provisioned SSD read cache on file systems that use the Intelligent-Tiering storage class.</p>
|
|
9019
|
+
* @public
|
|
9020
|
+
*/
|
|
9021
|
+
ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
|
|
8942
9022
|
}
|
|
8943
9023
|
/**
|
|
8944
9024
|
* <p>Specifies changes you are making to the self-managed Microsoft Active Directory configuration to which
|
|
@@ -10398,6 +10478,13 @@ export interface Backup {
|
|
|
10398
10478
|
* @public
|
|
10399
10479
|
*/
|
|
10400
10480
|
Volume?: Volume | undefined;
|
|
10481
|
+
/**
|
|
10482
|
+
* <p>
|
|
10483
|
+
* The size of the backup in bytes. This represents the amount of data that the file system would contain if you restore this backup.
|
|
10484
|
+
* </p>
|
|
10485
|
+
* @public
|
|
10486
|
+
*/
|
|
10487
|
+
SizeInBytes?: number | undefined;
|
|
10401
10488
|
}
|
|
10402
10489
|
/**
|
|
10403
10490
|
* @public
|
|
@@ -165,6 +165,7 @@ export interface LustreFileSystemConfiguration {
|
|
|
165
165
|
LogConfiguration?: LustreLogConfiguration | undefined;
|
|
166
166
|
RootSquashConfiguration?: LustreRootSquashConfiguration | undefined;
|
|
167
167
|
MetadataConfiguration?: FileSystemLustreMetadataConfiguration | undefined;
|
|
168
|
+
EfaEnabled?: boolean | undefined;
|
|
168
169
|
}
|
|
169
170
|
export declare const OntapDeploymentType: {
|
|
170
171
|
readonly MULTI_AZ_1: "MULTI_AZ_1";
|
|
@@ -216,6 +217,17 @@ export declare const OpenZFSDeploymentType: {
|
|
|
216
217
|
};
|
|
217
218
|
export type OpenZFSDeploymentType =
|
|
218
219
|
(typeof OpenZFSDeploymentType)[keyof typeof OpenZFSDeploymentType];
|
|
220
|
+
export declare const OpenZFSReadCacheSizingMode: {
|
|
221
|
+
readonly NO_CACHE: "NO_CACHE";
|
|
222
|
+
readonly PROPORTIONAL_TO_THROUGHPUT_CAPACITY: "PROPORTIONAL_TO_THROUGHPUT_CAPACITY";
|
|
223
|
+
readonly USER_PROVISIONED: "USER_PROVISIONED";
|
|
224
|
+
};
|
|
225
|
+
export type OpenZFSReadCacheSizingMode =
|
|
226
|
+
(typeof OpenZFSReadCacheSizingMode)[keyof typeof OpenZFSReadCacheSizingMode];
|
|
227
|
+
export interface OpenZFSReadCacheConfiguration {
|
|
228
|
+
SizingMode?: OpenZFSReadCacheSizingMode | undefined;
|
|
229
|
+
SizeGiB?: number | undefined;
|
|
230
|
+
}
|
|
219
231
|
export interface OpenZFSFileSystemConfiguration {
|
|
220
232
|
AutomaticBackupRetentionDays?: number | undefined;
|
|
221
233
|
CopyTagsToBackups?: boolean | undefined;
|
|
@@ -230,9 +242,11 @@ export interface OpenZFSFileSystemConfiguration {
|
|
|
230
242
|
EndpointIpAddressRange?: string | undefined;
|
|
231
243
|
RouteTableIds?: string[] | undefined;
|
|
232
244
|
EndpointIpAddress?: string | undefined;
|
|
245
|
+
ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
|
|
233
246
|
}
|
|
234
247
|
export declare const StorageType: {
|
|
235
248
|
readonly HDD: "HDD";
|
|
249
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
236
250
|
readonly SSD: "SSD";
|
|
237
251
|
};
|
|
238
252
|
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
@@ -987,6 +1001,7 @@ export interface CreateFileSystemLustreConfiguration {
|
|
|
987
1001
|
CopyTagsToBackups?: boolean | undefined;
|
|
988
1002
|
DriveCacheType?: DriveCacheType | undefined;
|
|
989
1003
|
DataCompressionType?: DataCompressionType | undefined;
|
|
1004
|
+
EfaEnabled?: boolean | undefined;
|
|
990
1005
|
LogConfiguration?: LustreLogCreateConfiguration | undefined;
|
|
991
1006
|
RootSquashConfiguration?: LustreRootSquashConfiguration | undefined;
|
|
992
1007
|
MetadataConfiguration?:
|
|
@@ -1028,6 +1043,7 @@ export interface CreateFileSystemOpenZFSConfiguration {
|
|
|
1028
1043
|
PreferredSubnetId?: string | undefined;
|
|
1029
1044
|
EndpointIpAddressRange?: string | undefined;
|
|
1030
1045
|
RouteTableIds?: string[] | undefined;
|
|
1046
|
+
ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
|
|
1031
1047
|
}
|
|
1032
1048
|
export interface WindowsAuditLogCreateConfiguration {
|
|
1033
1049
|
FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | undefined;
|
|
@@ -1061,7 +1077,7 @@ export interface CreateFileSystemWindowsConfiguration {
|
|
|
1061
1077
|
export interface CreateFileSystemRequest {
|
|
1062
1078
|
ClientRequestToken?: string | undefined;
|
|
1063
1079
|
FileSystemType: FileSystemType | undefined;
|
|
1064
|
-
StorageCapacity
|
|
1080
|
+
StorageCapacity?: number | undefined;
|
|
1065
1081
|
StorageType?: StorageType | undefined;
|
|
1066
1082
|
SubnetIds: string[] | undefined;
|
|
1067
1083
|
SecurityGroupIds?: string[] | undefined;
|
|
@@ -1713,6 +1729,7 @@ export interface UpdateFileSystemOpenZFSConfiguration {
|
|
|
1713
1729
|
DiskIopsConfiguration?: DiskIopsConfiguration | undefined;
|
|
1714
1730
|
AddRouteTableIds?: string[] | undefined;
|
|
1715
1731
|
RemoveRouteTableIds?: string[] | undefined;
|
|
1732
|
+
ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
|
|
1716
1733
|
}
|
|
1717
1734
|
export interface SelfManagedActiveDirectoryConfigurationUpdates {
|
|
1718
1735
|
UserName?: string | undefined;
|
|
@@ -1935,6 +1952,7 @@ export interface Backup {
|
|
|
1935
1952
|
SourceBackupRegion?: string | undefined;
|
|
1936
1953
|
ResourceType?: ResourceType | undefined;
|
|
1937
1954
|
Volume?: Volume | undefined;
|
|
1955
|
+
SizeInBytes?: number | undefined;
|
|
1938
1956
|
}
|
|
1939
1957
|
export interface CopyBackupResponse {
|
|
1940
1958
|
Backup?: Backup | undefined;
|
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.
|
|
4
|
+
"version": "3.703.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",
|