@aws-sdk/client-fsx 3.64.0 → 3.72.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,33 @@
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.72.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.71.0...v3.72.0) (2022-04-15)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-fsx
9
+
10
+
11
+
12
+
13
+
14
+ # [3.70.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.69.0...v3.70.0) (2022-04-13)
15
+
16
+
17
+ ### Features
18
+
19
+ * **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))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-fsx
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.64.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.63.0...v3.64.0) (2022-04-05)
7
34
 
8
35
 
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
- // proccess err and data.
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
- // proccess err and data.
153
+ // process err and data.
154
154
  });
155
155
  ```
156
156
 
@@ -150,6 +150,7 @@ var LustreFileSystemConfiguration;
150
150
  var OntapDeploymentType;
151
151
  (function (OntapDeploymentType) {
152
152
  OntapDeploymentType["MULTI_AZ_1"] = "MULTI_AZ_1";
153
+ OntapDeploymentType["SINGLE_AZ_1"] = "SINGLE_AZ_1";
153
154
  })(OntapDeploymentType = exports.OntapDeploymentType || (exports.OntapDeploymentType = {}));
154
155
  var DiskIopsConfigurationMode;
155
156
  (function (DiskIopsConfigurationMode) {
@@ -129,6 +129,7 @@ export var LustreFileSystemConfiguration;
129
129
  export var OntapDeploymentType;
130
130
  (function (OntapDeploymentType) {
131
131
  OntapDeploymentType["MULTI_AZ_1"] = "MULTI_AZ_1";
132
+ OntapDeploymentType["SINGLE_AZ_1"] = "SINGLE_AZ_1";
132
133
  })(OntapDeploymentType || (OntapDeploymentType = {}));
133
134
  export var DiskIopsConfigurationMode;
134
135
  (function (DiskIopsConfigurationMode) {
@@ -451,7 +451,8 @@ export declare namespace LustreFileSystemConfiguration {
451
451
  const filterSensitiveLog: (obj: LustreFileSystemConfiguration) => any;
452
452
  }
453
453
  export declare enum OntapDeploymentType {
454
- MULTI_AZ_1 = "MULTI_AZ_1"
454
+ MULTI_AZ_1 = "MULTI_AZ_1",
455
+ SINGLE_AZ_1 = "SINGLE_AZ_1"
455
456
  }
456
457
  export declare enum DiskIopsConfigurationMode {
457
458
  AUTOMATIC = "AUTOMATIC",
@@ -544,11 +545,28 @@ export interface OntapFileSystemConfiguration {
544
545
  */
545
546
  DailyAutomaticBackupStartTime?: string;
546
547
  /**
547
- * <p>The ONTAP file system deployment type.</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>
548
566
  */
549
567
  DeploymentType?: OntapDeploymentType | string;
550
568
  /**
551
- * <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
552
570
  * are created.</p>
553
571
  * <important>
554
572
  * <p>The Endpoint IP address range you select for your file system
@@ -577,7 +595,7 @@ export interface OntapFileSystemConfiguration {
577
595
  */
578
596
  PreferredSubnetId?: string;
579
597
  /**
580
- * <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
581
599
  * created.</p>
582
600
  */
583
601
  RouteTableIds?: string[];
@@ -2961,7 +2979,8 @@ export declare namespace CreateFileSystemLustreConfiguration {
2961
2979
  const filterSensitiveLog: (obj: CreateFileSystemLustreConfiguration) => any;
2962
2980
  }
2963
2981
  /**
2964
- * <p>The ONTAP configuration properties of the FSx for ONTAP file system that you are creating.</p>
2982
+ * <p>The ONTAP configuration properties of the FSx for ONTAP file system that you
2983
+ * are creating.</p>
2965
2984
  */
2966
2985
  export interface CreateFileSystemOntapConfiguration {
2967
2986
  /**
@@ -2977,17 +2996,33 @@ export interface CreateFileSystemOntapConfiguration {
2977
2996
  */
2978
2997
  DailyAutomaticBackupStartTime?: string;
2979
2998
  /**
2980
- * <p>Specifies the FSx for ONTAP file system deployment type to use in creating the file system.
2981
- * <code>MULTI_AZ_1</code> is the supported ONTAP deployment type.</p>
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>
2982
3017
  */
2983
3018
  DeploymentType: OntapDeploymentType | string | undefined;
2984
3019
  /**
2985
- * <p>Specifies the IP address range in which the endpoints to access your file system
2986
- * will be created. By default, Amazon FSx selects an unused IP address range for you
2987
- * 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>
2988
3023
  * <important>
2989
- * <p>The Endpoint IP address range you select for your file system
2990
- * must exist outside the VPC's CIDR range and must be at least /30 or larger.</p>
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>
2991
3026
  * </important>
2992
3027
  */
2993
3028
  EndpointIpAddressRange?: string;
@@ -3001,20 +3036,20 @@ export interface CreateFileSystemOntapConfiguration {
3001
3036
  */
3002
3037
  DiskIopsConfiguration?: DiskIopsConfiguration;
3003
3038
  /**
3004
- * <p>Required when <code>DeploymentType</code> is set to <code>MULTI_AZ_1</code>. This specifies the subnet
3005
- * 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>
3006
3041
  */
3007
3042
  PreferredSubnetId?: string;
3008
3043
  /**
3009
- * <p>Specifies the virtual private cloud (VPC) route tables in which your file system's
3010
- * endpoints will be created. You should specify all VPC route tables associated with the
3011
- * subnets in which your clients are located. By default, Amazon FSx selects your VPC's
3012
- * 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>
3013
3048
  */
3014
3049
  RouteTableIds?: string[];
3015
3050
  /**
3016
- * <p>Sets the throughput capacity for the file system that you're creating.
3017
- * Valid values are 128, 256, 512, 1024, and 2048 MBps.</p>
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>
3018
3053
  */
3019
3054
  ThroughputCapacity: number | undefined;
3020
3055
  /**
@@ -3626,7 +3661,8 @@ export interface CreateFileSystemRequest {
3626
3661
  */
3627
3662
  LustreConfiguration?: CreateFileSystemLustreConfiguration;
3628
3663
  /**
3629
- * <p>The ONTAP configuration properties of the FSx for ONTAP file system that you are creating.</p>
3664
+ * <p>The ONTAP configuration properties of the FSx for ONTAP file system that you
3665
+ * are creating.</p>
3630
3666
  */
3631
3667
  OntapConfiguration?: CreateFileSystemOntapConfiguration;
3632
3668
  /**
@@ -184,7 +184,8 @@ export declare namespace LustreFileSystemConfiguration {
184
184
  const filterSensitiveLog: (obj: LustreFileSystemConfiguration) => any;
185
185
  }
186
186
  export declare enum OntapDeploymentType {
187
- MULTI_AZ_1 = "MULTI_AZ_1"
187
+ MULTI_AZ_1 = "MULTI_AZ_1",
188
+ SINGLE_AZ_1 = "SINGLE_AZ_1"
188
189
  }
189
190
  export declare enum DiskIopsConfigurationMode {
190
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.64.0",
4
+ "version": "3.72.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.58.0",
21
+ "@aws-sdk/client-sts": "3.72.0",
22
22
  "@aws-sdk/config-resolver": "3.58.0",
23
- "@aws-sdk/credential-provider-node": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.72.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",
@@ -35,15 +35,15 @@
35
35
  "@aws-sdk/node-config-provider": "3.58.0",
36
36
  "@aws-sdk/node-http-handler": "3.58.0",
37
37
  "@aws-sdk/protocol-http": "3.58.0",
38
- "@aws-sdk/smithy-client": "3.55.0",
38
+ "@aws-sdk/smithy-client": "3.72.0",
39
39
  "@aws-sdk/types": "3.55.0",
40
40
  "@aws-sdk/url-parser": "3.55.0",
41
41
  "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.58.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.72.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.72.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.58.0",
48
48
  "@aws-sdk/util-user-agent-node": "3.58.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",