@aws-sdk/client-fsx 3.60.0 → 3.64.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,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.64.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.63.0...v3.64.0) (2022-04-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **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))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.60.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.59.0...v3.60.0) (2022-03-30)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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 {
|
|
@@ -5739,9 +5740,9 @@ export interface RestoreVolumeFromSnapshotRequest {
|
|
|
5739
5740
|
* </li>
|
|
5740
5741
|
* <li>
|
|
5741
5742
|
* <p>
|
|
5742
|
-
* <code>DELETE_CLONED_VOLUMES</code> - Deletes any
|
|
5743
|
-
*
|
|
5744
|
-
*
|
|
5743
|
+
* <code>DELETE_CLONED_VOLUMES</code> - Deletes any dependent clone volumes
|
|
5744
|
+
* created from intermediate snapshots. If there are any dependent clone volumes and this
|
|
5745
|
+
* option isn't used, <code>RestoreVolumeFromSnapshot</code> fails.</p>
|
|
5745
5746
|
* </li>
|
|
5746
5747
|
* </ul>
|
|
5747
5748
|
*/
|
|
@@ -6014,7 +6015,7 @@ export interface UpdateFileSystemOntapConfiguration {
|
|
|
6014
6015
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
6015
6016
|
/**
|
|
6016
6017
|
* <p>Specifies the throughput of an FSx for NetApp ONTAP file system, measured in megabytes per second
|
|
6017
|
-
* (MBps). Valid values are
|
|
6018
|
+
* (MBps). Valid values are 128, 256, 512, 1024, or 2048 MB/s.</p>
|
|
6018
6019
|
*/
|
|
6019
6020
|
ThroughputCapacity?: number;
|
|
6020
6021
|
}
|
|
@@ -6647,6 +6648,11 @@ export interface FileSystem {
|
|
|
6647
6648
|
* </li>
|
|
6648
6649
|
* <li>
|
|
6649
6650
|
* <p>
|
|
6651
|
+
* <code>MISCONFIGURED_UNAVAILABLE</code> - (Amazon FSx for Windows File Server only) The file system is
|
|
6652
|
+
* currently unavailable due to a change in your Active Directory configuration.</p>
|
|
6653
|
+
* </li>
|
|
6654
|
+
* <li>
|
|
6655
|
+
* <p>
|
|
6650
6656
|
* <code>UPDATING</code> - The file system is undergoing a customer-initiated update.</p>
|
|
6651
6657
|
* </li>
|
|
6652
6658
|
* </ul>
|
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.64.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",
|