@aws-sdk/client-fsx 3.58.0 → 3.60.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +3 -2
- package/dist-types/FSx.d.ts +6 -1
- package/dist-types/commands/CreateFileSystemCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +101 -34
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.60.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.59.0...v3.60.0) (2022-03-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-fsx:** This release adds support for modifying throughput capacity for FSx for ONTAP file systems. ([4619832](https://github.com/aws/aws-sdk-js-v3/commit/4619832b1c2059c731d944c82d14dcd28bc3a482))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-fsx
|
|
@@ -3590,6 +3590,8 @@ const serializeAws_json1_1UpdateFileSystemOntapConfiguration = (input, context)
|
|
|
3590
3590
|
}),
|
|
3591
3591
|
...(input.FsxAdminPassword !== undefined &&
|
|
3592
3592
|
input.FsxAdminPassword !== null && { FsxAdminPassword: input.FsxAdminPassword }),
|
|
3593
|
+
...(input.ThroughputCapacity !== undefined &&
|
|
3594
|
+
input.ThroughputCapacity !== null && { ThroughputCapacity: input.ThroughputCapacity }),
|
|
3593
3595
|
...(input.WeeklyMaintenanceStartTime !== undefined &&
|
|
3594
3596
|
input.WeeklyMaintenanceStartTime !== null && { WeeklyMaintenanceStartTime: input.WeeklyMaintenanceStartTime }),
|
|
3595
3597
|
};
|
|
@@ -3952,7 +3952,7 @@ var serializeAws_json1_1UpdateFileSystemLustreConfiguration = function (input, c
|
|
|
3952
3952
|
input.WeeklyMaintenanceStartTime !== null && { WeeklyMaintenanceStartTime: input.WeeklyMaintenanceStartTime }));
|
|
3953
3953
|
};
|
|
3954
3954
|
var serializeAws_json1_1UpdateFileSystemOntapConfiguration = function (input, context) {
|
|
3955
|
-
return __assign(__assign(__assign(__assign(__assign({}, (input.AutomaticBackupRetentionDays !== undefined &&
|
|
3955
|
+
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.AutomaticBackupRetentionDays !== undefined &&
|
|
3956
3956
|
input.AutomaticBackupRetentionDays !== null && {
|
|
3957
3957
|
AutomaticBackupRetentionDays: input.AutomaticBackupRetentionDays,
|
|
3958
3958
|
})), (input.DailyAutomaticBackupStartTime !== undefined &&
|
|
@@ -3962,7 +3962,8 @@ var serializeAws_json1_1UpdateFileSystemOntapConfiguration = function (input, co
|
|
|
3962
3962
|
input.DiskIopsConfiguration !== null && {
|
|
3963
3963
|
DiskIopsConfiguration: serializeAws_json1_1DiskIopsConfiguration(input.DiskIopsConfiguration, context),
|
|
3964
3964
|
})), (input.FsxAdminPassword !== undefined &&
|
|
3965
|
-
input.FsxAdminPassword !== null && { FsxAdminPassword: input.FsxAdminPassword })), (input.
|
|
3965
|
+
input.FsxAdminPassword !== null && { FsxAdminPassword: input.FsxAdminPassword })), (input.ThroughputCapacity !== undefined &&
|
|
3966
|
+
input.ThroughputCapacity !== null && { ThroughputCapacity: input.ThroughputCapacity })), (input.WeeklyMaintenanceStartTime !== undefined &&
|
|
3966
3967
|
input.WeeklyMaintenanceStartTime !== null && { WeeklyMaintenanceStartTime: input.WeeklyMaintenanceStartTime }));
|
|
3967
3968
|
};
|
|
3968
3969
|
var serializeAws_json1_1UpdateFileSystemOpenZFSConfiguration = function (input, context) {
|
package/dist-types/FSx.d.ts
CHANGED
|
@@ -234,7 +234,7 @@ export declare class FSx extends FSxClient {
|
|
|
234
234
|
* an initial lifecycle state of <code>CREATING</code>.</p>
|
|
235
235
|
* </li>
|
|
236
236
|
* <li>
|
|
237
|
-
* <p>Returns the description of the file system.</p>
|
|
237
|
+
* <p>Returns the description of the file system in JSON format.</p>
|
|
238
238
|
* </li>
|
|
239
239
|
* </ul>
|
|
240
240
|
*
|
|
@@ -784,6 +784,11 @@ export declare class FSx extends FSxClient {
|
|
|
784
784
|
* </li>
|
|
785
785
|
* <li>
|
|
786
786
|
* <p>
|
|
787
|
+
* <code>ThroughputCapacity</code>
|
|
788
|
+
* </p>
|
|
789
|
+
* </li>
|
|
790
|
+
* <li>
|
|
791
|
+
* <p>
|
|
787
792
|
* <code>WeeklyMaintenanceStartTime</code>
|
|
788
793
|
* </p>
|
|
789
794
|
* </li>
|
|
@@ -44,7 +44,7 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
44
44
|
* an initial lifecycle state of <code>CREATING</code>.</p>
|
|
45
45
|
* </li>
|
|
46
46
|
* <li>
|
|
47
|
-
* <p>Returns the description of the file system.</p>
|
|
47
|
+
* <p>Returns the description of the file system in JSON format.</p>
|
|
48
48
|
* </li>
|
|
49
49
|
* </ul>
|
|
50
50
|
*
|
|
@@ -112,6 +112,11 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
112
112
|
* </li>
|
|
113
113
|
* <li>
|
|
114
114
|
* <p>
|
|
115
|
+
* <code>ThroughputCapacity</code>
|
|
116
|
+
* </p>
|
|
117
|
+
* </li>
|
|
118
|
+
* <li>
|
|
119
|
+
* <p>
|
|
115
120
|
* <code>WeeklyMaintenanceStartTime</code>
|
|
116
121
|
* </p>
|
|
117
122
|
* </li>
|
|
@@ -581,7 +581,7 @@ export interface OntapFileSystemConfiguration {
|
|
|
581
581
|
*/
|
|
582
582
|
RouteTableIds?: string[];
|
|
583
583
|
/**
|
|
584
|
-
* <p>The sustained throughput of an Amazon FSx file system in MBps.</p>
|
|
584
|
+
* <p>The sustained throughput of an Amazon FSx file system in Megabytes per second (MBps).</p>
|
|
585
585
|
*/
|
|
586
586
|
ThroughputCapacity?: number;
|
|
587
587
|
/**
|
|
@@ -1244,7 +1244,7 @@ export declare enum OpenZFSDataCompressionType {
|
|
|
1244
1244
|
ZSTD = "ZSTD"
|
|
1245
1245
|
}
|
|
1246
1246
|
/**
|
|
1247
|
-
* <p>Specifies who can mount
|
|
1247
|
+
* <p>Specifies who can mount an OpenZFS file system and the options available while
|
|
1248
1248
|
* mounting the file system.</p>
|
|
1249
1249
|
*/
|
|
1250
1250
|
export interface OpenZFSClientConfiguration {
|
|
@@ -1801,13 +1801,29 @@ export interface CopyBackupRequest {
|
|
|
1801
1801
|
*/
|
|
1802
1802
|
SourceRegion?: string;
|
|
1803
1803
|
/**
|
|
1804
|
-
* <p>
|
|
1805
|
-
*
|
|
1806
|
-
*
|
|
1807
|
-
*
|
|
1808
|
-
*
|
|
1809
|
-
*
|
|
1810
|
-
*
|
|
1804
|
+
* <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
|
|
1805
|
+
* Amazon FSx file systems, as follows:</p>
|
|
1806
|
+
* <ul>
|
|
1807
|
+
* <li>
|
|
1808
|
+
* <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
|
|
1809
|
+
* and <code>PERSISTENT_2</code> deployment types only.</p>
|
|
1810
|
+
* <p>
|
|
1811
|
+
* <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
|
|
1812
|
+
* the Amazon FSx service KMS key for your account.</p>
|
|
1813
|
+
* </li>
|
|
1814
|
+
* <li>
|
|
1815
|
+
* <p>Amazon FSx for NetApp ONTAP</p>
|
|
1816
|
+
* </li>
|
|
1817
|
+
* <li>
|
|
1818
|
+
* <p>Amazon FSx for OpenZFS</p>
|
|
1819
|
+
* </li>
|
|
1820
|
+
* <li>
|
|
1821
|
+
* <p>Amazon FSx for Windows File Server</p>
|
|
1822
|
+
* </li>
|
|
1823
|
+
* </ul>
|
|
1824
|
+
* <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
|
|
1825
|
+
* For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
|
|
1826
|
+
* <i>Key Management Service API Reference</i>.</p>
|
|
1811
1827
|
*/
|
|
1812
1828
|
KmsKeyId?: string;
|
|
1813
1829
|
/**
|
|
@@ -3548,13 +3564,29 @@ export interface CreateFileSystemRequest {
|
|
|
3548
3564
|
*/
|
|
3549
3565
|
Tags?: Tag[];
|
|
3550
3566
|
/**
|
|
3551
|
-
* <p>
|
|
3552
|
-
*
|
|
3553
|
-
*
|
|
3554
|
-
*
|
|
3555
|
-
*
|
|
3556
|
-
*
|
|
3557
|
-
*
|
|
3567
|
+
* <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
|
|
3568
|
+
* Amazon FSx file systems, as follows:</p>
|
|
3569
|
+
* <ul>
|
|
3570
|
+
* <li>
|
|
3571
|
+
* <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
|
|
3572
|
+
* and <code>PERSISTENT_2</code> deployment types only.</p>
|
|
3573
|
+
* <p>
|
|
3574
|
+
* <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
|
|
3575
|
+
* the Amazon FSx service KMS key for your account.</p>
|
|
3576
|
+
* </li>
|
|
3577
|
+
* <li>
|
|
3578
|
+
* <p>Amazon FSx for NetApp ONTAP</p>
|
|
3579
|
+
* </li>
|
|
3580
|
+
* <li>
|
|
3581
|
+
* <p>Amazon FSx for OpenZFS</p>
|
|
3582
|
+
* </li>
|
|
3583
|
+
* <li>
|
|
3584
|
+
* <p>Amazon FSx for Windows File Server</p>
|
|
3585
|
+
* </li>
|
|
3586
|
+
* </ul>
|
|
3587
|
+
* <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
|
|
3588
|
+
* For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
|
|
3589
|
+
* <i>Key Management Service API Reference</i>.</p>
|
|
3558
3590
|
*/
|
|
3559
3591
|
KmsKeyId?: string;
|
|
3560
3592
|
/**
|
|
@@ -3813,13 +3845,29 @@ export interface CreateFileSystemFromBackupRequest {
|
|
|
3813
3845
|
*/
|
|
3814
3846
|
StorageType?: StorageType | string;
|
|
3815
3847
|
/**
|
|
3816
|
-
* <p>
|
|
3817
|
-
*
|
|
3818
|
-
*
|
|
3819
|
-
*
|
|
3820
|
-
*
|
|
3821
|
-
*
|
|
3822
|
-
*
|
|
3848
|
+
* <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
|
|
3849
|
+
* Amazon FSx file systems, as follows:</p>
|
|
3850
|
+
* <ul>
|
|
3851
|
+
* <li>
|
|
3852
|
+
* <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
|
|
3853
|
+
* and <code>PERSISTENT_2</code> deployment types only.</p>
|
|
3854
|
+
* <p>
|
|
3855
|
+
* <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
|
|
3856
|
+
* the Amazon FSx service KMS key for your account.</p>
|
|
3857
|
+
* </li>
|
|
3858
|
+
* <li>
|
|
3859
|
+
* <p>Amazon FSx for NetApp ONTAP</p>
|
|
3860
|
+
* </li>
|
|
3861
|
+
* <li>
|
|
3862
|
+
* <p>Amazon FSx for OpenZFS</p>
|
|
3863
|
+
* </li>
|
|
3864
|
+
* <li>
|
|
3865
|
+
* <p>Amazon FSx for Windows File Server</p>
|
|
3866
|
+
* </li>
|
|
3867
|
+
* </ul>
|
|
3868
|
+
* <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
|
|
3869
|
+
* For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
|
|
3870
|
+
* <i>Key Management Service API Reference</i>.</p>
|
|
3823
3871
|
*/
|
|
3824
3872
|
KmsKeyId?: string;
|
|
3825
3873
|
/**
|
|
@@ -4049,7 +4097,7 @@ export declare enum StorageVirtualMachineSubtype {
|
|
|
4049
4097
|
SYNC_SOURCE = "SYNC_SOURCE"
|
|
4050
4098
|
}
|
|
4051
4099
|
/**
|
|
4052
|
-
* <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM)
|
|
4100
|
+
* <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM) configuration.</p>
|
|
4053
4101
|
*/
|
|
4054
4102
|
export interface StorageVirtualMachine {
|
|
4055
4103
|
/**
|
|
@@ -5964,6 +6012,11 @@ export interface UpdateFileSystemOntapConfiguration {
|
|
|
5964
6012
|
* the case of <code>USER_PROVISIONED</code> IOPS, the total number of SSD IOPS provisioned.</p>
|
|
5965
6013
|
*/
|
|
5966
6014
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
6015
|
+
/**
|
|
6016
|
+
* <p>Specifies the throughput of an FSx for NetApp ONTAP file system, measured in megabytes per second
|
|
6017
|
+
* (MBps). Valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
|
|
6018
|
+
*/
|
|
6019
|
+
ThroughputCapacity?: number;
|
|
5967
6020
|
}
|
|
5968
6021
|
export declare namespace UpdateFileSystemOntapConfiguration {
|
|
5969
6022
|
/**
|
|
@@ -6255,7 +6308,7 @@ export declare namespace UpdateStorageVirtualMachineRequest {
|
|
|
6255
6308
|
}
|
|
6256
6309
|
export interface UpdateStorageVirtualMachineResponse {
|
|
6257
6310
|
/**
|
|
6258
|
-
* <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM)
|
|
6311
|
+
* <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM) configuration.</p>
|
|
6259
6312
|
*/
|
|
6260
6313
|
StorageVirtualMachine?: StorageVirtualMachine;
|
|
6261
6314
|
}
|
|
@@ -6647,16 +6700,30 @@ export interface FileSystem {
|
|
|
6647
6700
|
*/
|
|
6648
6701
|
DNSName?: string;
|
|
6649
6702
|
/**
|
|
6650
|
-
* <p>The ID of the Key Management Service (KMS) key used to encrypt
|
|
6651
|
-
* system
|
|
6652
|
-
*
|
|
6653
|
-
*
|
|
6654
|
-
*
|
|
6655
|
-
*
|
|
6703
|
+
* <p>The ID of the Key Management Service (KMS) key used to encrypt Amazon FSx file
|
|
6704
|
+
* system data. Used as follows with Amazon FSx file system types:</p>
|
|
6705
|
+
* <ul>
|
|
6706
|
+
* <li>
|
|
6707
|
+
* <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
|
|
6708
|
+
* and <code>PERSISTENT_2</code> deployment types only.</p>
|
|
6709
|
+
* <p>
|
|
6710
|
+
* <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
|
|
6711
|
+
* the Amazon FSx service KMS key for your account.</p>
|
|
6712
|
+
* </li>
|
|
6713
|
+
* <li>
|
|
6714
|
+
* <p>Amazon FSx for NetApp ONTAP</p>
|
|
6715
|
+
* </li>
|
|
6716
|
+
* <li>
|
|
6717
|
+
* <p>Amazon FSx for OpenZFS</p>
|
|
6718
|
+
* </li>
|
|
6719
|
+
* <li>
|
|
6720
|
+
* <p>Amazon FSx for Windows File Server</p>
|
|
6721
|
+
* </li>
|
|
6722
|
+
* </ul>
|
|
6656
6723
|
*/
|
|
6657
6724
|
KmsKeyId?: string;
|
|
6658
6725
|
/**
|
|
6659
|
-
* <p>The Amazon Resource Name (ARN)
|
|
6726
|
+
* <p>The Amazon Resource Name (ARN) of the file system resource.</p>
|
|
6660
6727
|
*/
|
|
6661
6728
|
ResourceARN?: string;
|
|
6662
6729
|
/**
|
|
@@ -6666,7 +6733,7 @@ export interface FileSystem {
|
|
|
6666
6733
|
*/
|
|
6667
6734
|
Tags?: Tag[];
|
|
6668
6735
|
/**
|
|
6669
|
-
* <p>The configuration for this FSx for Windows File Server file system.</p>
|
|
6736
|
+
* <p>The configuration for this Amazon FSx for Windows File Server file system.</p>
|
|
6670
6737
|
*/
|
|
6671
6738
|
WindowsConfiguration?: WindowsFileSystemConfiguration;
|
|
6672
6739
|
/**
|
|
@@ -6680,7 +6747,7 @@ export interface FileSystem {
|
|
|
6680
6747
|
*/
|
|
6681
6748
|
AdministrativeActions?: AdministrativeAction[];
|
|
6682
6749
|
/**
|
|
6683
|
-
* <p>The configuration for this FSx for ONTAP file system.</p>
|
|
6750
|
+
* <p>The configuration for this Amazon FSx for NetApp ONTAP file system.</p>
|
|
6684
6751
|
*/
|
|
6685
6752
|
OntapConfiguration?: OntapFileSystemConfiguration;
|
|
6686
6753
|
/**
|
|
@@ -2323,6 +2323,8 @@ export interface UpdateFileSystemOntapConfiguration {
|
|
|
2323
2323
|
WeeklyMaintenanceStartTime?: string;
|
|
2324
2324
|
|
|
2325
2325
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
2326
|
+
|
|
2327
|
+
ThroughputCapacity?: number;
|
|
2326
2328
|
}
|
|
2327
2329
|
export declare namespace UpdateFileSystemOntapConfiguration {
|
|
2328
2330
|
|
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.60.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|