@aws-sdk/client-fsx 3.60.0 → 3.70.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
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.70.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.69.0...v3.70.0) (2022-04-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-fsx:** This release adds support for deploying FSx for ONTAP file systems in a single Availability Zone. ([2f160df](https://github.com/aws/aws-sdk-js-v3/commit/2f160df5f6c82b9750ca386e88a8dd664e8b7ffc))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-fsx
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.64.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.63.0...v3.64.0) (2022-04-05)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **client-fsx:** Provide customers more visibility into file system status by adding new "Misconfigured Unavailable" status for Amazon FSx for Windows File Server. ([c921027](https://github.com/aws/aws-sdk-js-v3/commit/c921027a293f7f1c5e1300ad541070b6a01e7fbc))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.60.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.59.0...v3.60.0) (2022-03-30)
|
|
7
37
|
|
|
8
38
|
|
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ but they are supported by the send operation.
|
|
|
116
116
|
```js
|
|
117
117
|
// callbacks.
|
|
118
118
|
client.send(command, (err, data) => {
|
|
119
|
-
//
|
|
119
|
+
// process err and data.
|
|
120
120
|
});
|
|
121
121
|
```
|
|
122
122
|
|
|
@@ -150,7 +150,7 @@ client
|
|
|
150
150
|
|
|
151
151
|
// callbacks.
|
|
152
152
|
client.associateFileSystemAliases(params, (err, data) => {
|
|
153
|
-
//
|
|
153
|
+
// process err and data.
|
|
154
154
|
});
|
|
155
155
|
```
|
|
156
156
|
|
|
@@ -80,6 +80,7 @@ var FileSystemLifecycle;
|
|
|
80
80
|
FileSystemLifecycle["DELETING"] = "DELETING";
|
|
81
81
|
FileSystemLifecycle["FAILED"] = "FAILED";
|
|
82
82
|
FileSystemLifecycle["MISCONFIGURED"] = "MISCONFIGURED";
|
|
83
|
+
FileSystemLifecycle["MISCONFIGURED_UNAVAILABLE"] = "MISCONFIGURED_UNAVAILABLE";
|
|
83
84
|
FileSystemLifecycle["UPDATING"] = "UPDATING";
|
|
84
85
|
})(FileSystemLifecycle = exports.FileSystemLifecycle || (exports.FileSystemLifecycle = {}));
|
|
85
86
|
var DataCompressionType;
|
|
@@ -149,6 +150,7 @@ var LustreFileSystemConfiguration;
|
|
|
149
150
|
var OntapDeploymentType;
|
|
150
151
|
(function (OntapDeploymentType) {
|
|
151
152
|
OntapDeploymentType["MULTI_AZ_1"] = "MULTI_AZ_1";
|
|
153
|
+
OntapDeploymentType["SINGLE_AZ_1"] = "SINGLE_AZ_1";
|
|
152
154
|
})(OntapDeploymentType = exports.OntapDeploymentType || (exports.OntapDeploymentType = {}));
|
|
153
155
|
var DiskIopsConfigurationMode;
|
|
154
156
|
(function (DiskIopsConfigurationMode) {
|
|
@@ -67,6 +67,7 @@ export var FileSystemLifecycle;
|
|
|
67
67
|
FileSystemLifecycle["DELETING"] = "DELETING";
|
|
68
68
|
FileSystemLifecycle["FAILED"] = "FAILED";
|
|
69
69
|
FileSystemLifecycle["MISCONFIGURED"] = "MISCONFIGURED";
|
|
70
|
+
FileSystemLifecycle["MISCONFIGURED_UNAVAILABLE"] = "MISCONFIGURED_UNAVAILABLE";
|
|
70
71
|
FileSystemLifecycle["UPDATING"] = "UPDATING";
|
|
71
72
|
})(FileSystemLifecycle || (FileSystemLifecycle = {}));
|
|
72
73
|
export var DataCompressionType;
|
|
@@ -128,6 +129,7 @@ export var LustreFileSystemConfiguration;
|
|
|
128
129
|
export var OntapDeploymentType;
|
|
129
130
|
(function (OntapDeploymentType) {
|
|
130
131
|
OntapDeploymentType["MULTI_AZ_1"] = "MULTI_AZ_1";
|
|
132
|
+
OntapDeploymentType["SINGLE_AZ_1"] = "SINGLE_AZ_1";
|
|
131
133
|
})(OntapDeploymentType || (OntapDeploymentType = {}));
|
|
132
134
|
export var DiskIopsConfigurationMode;
|
|
133
135
|
(function (DiskIopsConfigurationMode) {
|
|
@@ -115,6 +115,7 @@ export declare enum FileSystemLifecycle {
|
|
|
115
115
|
DELETING = "DELETING",
|
|
116
116
|
FAILED = "FAILED",
|
|
117
117
|
MISCONFIGURED = "MISCONFIGURED",
|
|
118
|
+
MISCONFIGURED_UNAVAILABLE = "MISCONFIGURED_UNAVAILABLE",
|
|
118
119
|
UPDATING = "UPDATING"
|
|
119
120
|
}
|
|
120
121
|
export declare enum DataCompressionType {
|
|
@@ -450,7 +451,8 @@ export declare namespace LustreFileSystemConfiguration {
|
|
|
450
451
|
const filterSensitiveLog: (obj: LustreFileSystemConfiguration) => any;
|
|
451
452
|
}
|
|
452
453
|
export declare enum OntapDeploymentType {
|
|
453
|
-
MULTI_AZ_1 = "MULTI_AZ_1"
|
|
454
|
+
MULTI_AZ_1 = "MULTI_AZ_1",
|
|
455
|
+
SINGLE_AZ_1 = "SINGLE_AZ_1"
|
|
454
456
|
}
|
|
455
457
|
export declare enum DiskIopsConfigurationMode {
|
|
456
458
|
AUTOMATIC = "AUTOMATIC",
|
|
@@ -543,11 +545,28 @@ export interface OntapFileSystemConfiguration {
|
|
|
543
545
|
*/
|
|
544
546
|
DailyAutomaticBackupStartTime?: string;
|
|
545
547
|
/**
|
|
546
|
-
* <p>
|
|
548
|
+
* <p>Specifies the FSx for ONTAP file system deployment type in use in the file
|
|
549
|
+
* system. </p>
|
|
550
|
+
* <ul>
|
|
551
|
+
* <li>
|
|
552
|
+
* <p>
|
|
553
|
+
* <code>MULTI_AZ_1</code> - (Default) A high availability file system configured
|
|
554
|
+
* for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ)
|
|
555
|
+
* unavailability. </p>
|
|
556
|
+
* </li>
|
|
557
|
+
* <li>
|
|
558
|
+
* <p>
|
|
559
|
+
* <code>SINGLE_AZ_1</code> - A file system configured for Single-AZ
|
|
560
|
+
* redundancy.</p>
|
|
561
|
+
* </li>
|
|
562
|
+
* </ul>
|
|
563
|
+
* <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to
|
|
564
|
+
* <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html">Choosing Multi-AZ or
|
|
565
|
+
* Single-AZ file system deployment</a>. </p>
|
|
547
566
|
*/
|
|
548
567
|
DeploymentType?: OntapDeploymentType | string;
|
|
549
568
|
/**
|
|
550
|
-
* <p>The IP address range in which the endpoints to access your file system
|
|
569
|
+
* <p>(Multi-AZ only) The IP address range in which the endpoints to access your file system
|
|
551
570
|
* are created.</p>
|
|
552
571
|
* <important>
|
|
553
572
|
* <p>The Endpoint IP address range you select for your file system
|
|
@@ -576,7 +595,7 @@ export interface OntapFileSystemConfiguration {
|
|
|
576
595
|
*/
|
|
577
596
|
PreferredSubnetId?: string;
|
|
578
597
|
/**
|
|
579
|
-
* <p>The VPC route tables in which your file system's endpoints are
|
|
598
|
+
* <p>(Multi-AZ only) The VPC route tables in which your file system's endpoints are
|
|
580
599
|
* created.</p>
|
|
581
600
|
*/
|
|
582
601
|
RouteTableIds?: string[];
|
|
@@ -2960,7 +2979,8 @@ export declare namespace CreateFileSystemLustreConfiguration {
|
|
|
2960
2979
|
const filterSensitiveLog: (obj: CreateFileSystemLustreConfiguration) => any;
|
|
2961
2980
|
}
|
|
2962
2981
|
/**
|
|
2963
|
-
* <p>The ONTAP configuration properties of the FSx for ONTAP file system that you
|
|
2982
|
+
* <p>The ONTAP configuration properties of the FSx for ONTAP file system that you
|
|
2983
|
+
* are creating.</p>
|
|
2964
2984
|
*/
|
|
2965
2985
|
export interface CreateFileSystemOntapConfiguration {
|
|
2966
2986
|
/**
|
|
@@ -2976,17 +2996,33 @@ export interface CreateFileSystemOntapConfiguration {
|
|
|
2976
2996
|
*/
|
|
2977
2997
|
DailyAutomaticBackupStartTime?: string;
|
|
2978
2998
|
/**
|
|
2979
|
-
* <p>Specifies the FSx for ONTAP file system deployment type to use in creating
|
|
2980
|
-
*
|
|
2999
|
+
* <p>Specifies the FSx for ONTAP file system deployment type to use in creating
|
|
3000
|
+
* the file system. </p>
|
|
3001
|
+
* <ul>
|
|
3002
|
+
* <li>
|
|
3003
|
+
* <p>
|
|
3004
|
+
* <code>MULTI_AZ_1</code> - (Default) A high availability file system configured
|
|
3005
|
+
* for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ)
|
|
3006
|
+
* unavailability. </p>
|
|
3007
|
+
* </li>
|
|
3008
|
+
* <li>
|
|
3009
|
+
* <p>
|
|
3010
|
+
* <code>SINGLE_AZ_1</code> - A file system configured for Single-AZ
|
|
3011
|
+
* redundancy.</p>
|
|
3012
|
+
* </li>
|
|
3013
|
+
* </ul>
|
|
3014
|
+
* <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to
|
|
3015
|
+
* <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html">Choosing Multi-AZ or
|
|
3016
|
+
* Single-AZ file system deployment</a>. </p>
|
|
2981
3017
|
*/
|
|
2982
3018
|
DeploymentType: OntapDeploymentType | string | undefined;
|
|
2983
3019
|
/**
|
|
2984
|
-
* <p>Specifies the IP address range in which the endpoints to access your
|
|
2985
|
-
* will be created. By default, Amazon FSx selects an unused IP address
|
|
2986
|
-
* from the 198.19.* range.</p>
|
|
3020
|
+
* <p>(Multi-AZ only) Specifies the IP address range in which the endpoints to access your
|
|
3021
|
+
* file system will be created. By default, Amazon FSx selects an unused IP address
|
|
3022
|
+
* range for you from the 198.19.* range.</p>
|
|
2987
3023
|
* <important>
|
|
2988
|
-
* <p>The Endpoint IP address range you select for your file system
|
|
2989
|
-
*
|
|
3024
|
+
* <p>The Endpoint IP address range you select for your file system must exist outside
|
|
3025
|
+
* the VPC's CIDR range and must be at least /30 or larger.</p>
|
|
2990
3026
|
* </important>
|
|
2991
3027
|
*/
|
|
2992
3028
|
EndpointIpAddressRange?: string;
|
|
@@ -3000,20 +3036,20 @@ export interface CreateFileSystemOntapConfiguration {
|
|
|
3000
3036
|
*/
|
|
3001
3037
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
3002
3038
|
/**
|
|
3003
|
-
* <p>Required when <code>DeploymentType</code> is set to <code>MULTI_AZ_1</code>. This
|
|
3004
|
-
* in which you want the preferred file server to be located.</p>
|
|
3039
|
+
* <p>Required when <code>DeploymentType</code> is set to <code>MULTI_AZ_1</code>. This
|
|
3040
|
+
* specifies the subnet in which you want the preferred file server to be located.</p>
|
|
3005
3041
|
*/
|
|
3006
3042
|
PreferredSubnetId?: string;
|
|
3007
3043
|
/**
|
|
3008
|
-
* <p>Specifies the virtual private cloud (VPC) route tables in which your
|
|
3009
|
-
* endpoints will be created. You should specify all VPC route tables
|
|
3010
|
-
* subnets in which your clients are located. By default, Amazon FSx
|
|
3011
|
-
* default route table.</p>
|
|
3044
|
+
* <p>(Multi-AZ only) Specifies the virtual private cloud (VPC) route tables in which your
|
|
3045
|
+
* file system's endpoints will be created. You should specify all VPC route tables
|
|
3046
|
+
* associated with the subnets in which your clients are located. By default, Amazon FSx
|
|
3047
|
+
* selects your VPC's default route table.</p>
|
|
3012
3048
|
*/
|
|
3013
3049
|
RouteTableIds?: string[];
|
|
3014
3050
|
/**
|
|
3015
|
-
* <p>Sets the throughput capacity for the file system that you're creating.
|
|
3016
|
-
*
|
|
3051
|
+
* <p>Sets the throughput capacity for the file system that you're creating. Valid values
|
|
3052
|
+
* are 128, 256, 512, 1024, and 2048 MBps.</p>
|
|
3017
3053
|
*/
|
|
3018
3054
|
ThroughputCapacity: number | undefined;
|
|
3019
3055
|
/**
|
|
@@ -3625,7 +3661,8 @@ export interface CreateFileSystemRequest {
|
|
|
3625
3661
|
*/
|
|
3626
3662
|
LustreConfiguration?: CreateFileSystemLustreConfiguration;
|
|
3627
3663
|
/**
|
|
3628
|
-
* <p>The ONTAP configuration properties of the FSx for ONTAP file system that you
|
|
3664
|
+
* <p>The ONTAP configuration properties of the FSx for ONTAP file system that you
|
|
3665
|
+
* are creating.</p>
|
|
3629
3666
|
*/
|
|
3630
3667
|
OntapConfiguration?: CreateFileSystemOntapConfiguration;
|
|
3631
3668
|
/**
|
|
@@ -5739,9 +5776,9 @@ export interface RestoreVolumeFromSnapshotRequest {
|
|
|
5739
5776
|
* </li>
|
|
5740
5777
|
* <li>
|
|
5741
5778
|
* <p>
|
|
5742
|
-
* <code>DELETE_CLONED_VOLUMES</code> - Deletes any
|
|
5743
|
-
*
|
|
5744
|
-
*
|
|
5779
|
+
* <code>DELETE_CLONED_VOLUMES</code> - Deletes any dependent clone volumes
|
|
5780
|
+
* created from intermediate snapshots. If there are any dependent clone volumes and this
|
|
5781
|
+
* option isn't used, <code>RestoreVolumeFromSnapshot</code> fails.</p>
|
|
5745
5782
|
* </li>
|
|
5746
5783
|
* </ul>
|
|
5747
5784
|
*/
|
|
@@ -6014,7 +6051,7 @@ export interface UpdateFileSystemOntapConfiguration {
|
|
|
6014
6051
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
6015
6052
|
/**
|
|
6016
6053
|
* <p>Specifies the throughput of an FSx for NetApp ONTAP file system, measured in megabytes per second
|
|
6017
|
-
* (MBps). Valid values are
|
|
6054
|
+
* (MBps). Valid values are 128, 256, 512, 1024, or 2048 MB/s.</p>
|
|
6018
6055
|
*/
|
|
6019
6056
|
ThroughputCapacity?: number;
|
|
6020
6057
|
}
|
|
@@ -6647,6 +6684,11 @@ export interface FileSystem {
|
|
|
6647
6684
|
* </li>
|
|
6648
6685
|
* <li>
|
|
6649
6686
|
* <p>
|
|
6687
|
+
* <code>MISCONFIGURED_UNAVAILABLE</code> - (Amazon FSx for Windows File Server only) The file system is
|
|
6688
|
+
* currently unavailable due to a change in your Active Directory configuration.</p>
|
|
6689
|
+
* </li>
|
|
6690
|
+
* <li>
|
|
6691
|
+
* <p>
|
|
6650
6692
|
* <code>UPDATING</code> - The file system is undergoing a customer-initiated update.</p>
|
|
6651
6693
|
* </li>
|
|
6652
6694
|
* </ul>
|
|
@@ -78,6 +78,7 @@ export declare enum FileSystemLifecycle {
|
|
|
78
78
|
DELETING = "DELETING",
|
|
79
79
|
FAILED = "FAILED",
|
|
80
80
|
MISCONFIGURED = "MISCONFIGURED",
|
|
81
|
+
MISCONFIGURED_UNAVAILABLE = "MISCONFIGURED_UNAVAILABLE",
|
|
81
82
|
UPDATING = "UPDATING"
|
|
82
83
|
}
|
|
83
84
|
export declare enum DataCompressionType {
|
|
@@ -183,7 +184,8 @@ export declare namespace LustreFileSystemConfiguration {
|
|
|
183
184
|
const filterSensitiveLog: (obj: LustreFileSystemConfiguration) => any;
|
|
184
185
|
}
|
|
185
186
|
export declare enum OntapDeploymentType {
|
|
186
|
-
MULTI_AZ_1 = "MULTI_AZ_1"
|
|
187
|
+
MULTI_AZ_1 = "MULTI_AZ_1",
|
|
188
|
+
SINGLE_AZ_1 = "SINGLE_AZ_1"
|
|
187
189
|
}
|
|
188
190
|
export declare enum DiskIopsConfigurationMode {
|
|
189
191
|
AUTOMATIC = "AUTOMATIC",
|
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.70.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.67.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.67.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|