@aws-sdk/client-elasticsearch-service 3.137.0 → 3.139.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.139.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.138.0...v3.139.0) (2022-07-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-elasticsearch-service:** This release adds support for gp3 EBS (Elastic Block Store) storage. ([3bb625d](https://github.com/aws/aws-sdk-js-v3/commit/3bb625d03be2e1bfec90eac07b136ad84b039b6f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -3480,6 +3480,7 @@ const serializeAws_restJson1EBSOptions = (input, context) => {
|
|
|
3480
3480
|
return {
|
|
3481
3481
|
...(input.EBSEnabled != null && { EBSEnabled: input.EBSEnabled }),
|
|
3482
3482
|
...(input.Iops != null && { Iops: input.Iops }),
|
|
3483
|
+
...(input.Throughput != null && { Throughput: input.Throughput }),
|
|
3483
3484
|
...(input.VolumeSize != null && { VolumeSize: input.VolumeSize }),
|
|
3484
3485
|
...(input.VolumeType != null && { VolumeType: input.VolumeType }),
|
|
3485
3486
|
};
|
|
@@ -3928,6 +3929,7 @@ const deserializeAws_restJson1EBSOptions = (output, context) => {
|
|
|
3928
3929
|
return {
|
|
3929
3930
|
EBSEnabled: (0, smithy_client_1.expectBoolean)(output.EBSEnabled),
|
|
3930
3931
|
Iops: (0, smithy_client_1.expectInt32)(output.Iops),
|
|
3932
|
+
Throughput: (0, smithy_client_1.expectInt32)(output.Throughput),
|
|
3931
3933
|
VolumeSize: (0, smithy_client_1.expectInt32)(output.VolumeSize),
|
|
3932
3934
|
VolumeType: (0, smithy_client_1.expectString)(output.VolumeType),
|
|
3933
3935
|
};
|
|
@@ -4429,7 +4429,7 @@ var serializeAws_restJson1Duration = function (input, context) {
|
|
|
4429
4429
|
return __assign(__assign({}, (input.Unit != null && { Unit: input.Unit })), (input.Value != null && { Value: input.Value }));
|
|
4430
4430
|
};
|
|
4431
4431
|
var serializeAws_restJson1EBSOptions = function (input, context) {
|
|
4432
|
-
return __assign(__assign(__assign(__assign({}, (input.EBSEnabled != null && { EBSEnabled: input.EBSEnabled })), (input.Iops != null && { Iops: input.Iops })), (input.VolumeSize != null && { VolumeSize: input.VolumeSize })), (input.VolumeType != null && { VolumeType: input.VolumeType }));
|
|
4432
|
+
return __assign(__assign(__assign(__assign(__assign({}, (input.EBSEnabled != null && { EBSEnabled: input.EBSEnabled })), (input.Iops != null && { Iops: input.Iops })), (input.Throughput != null && { Throughput: input.Throughput })), (input.VolumeSize != null && { VolumeSize: input.VolumeSize })), (input.VolumeType != null && { VolumeType: input.VolumeType }));
|
|
4433
4433
|
};
|
|
4434
4434
|
var serializeAws_restJson1ElasticsearchClusterConfig = function (input, context) {
|
|
4435
4435
|
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ColdStorageOptions != null && {
|
|
@@ -4822,6 +4822,7 @@ var deserializeAws_restJson1EBSOptions = function (output, context) {
|
|
|
4822
4822
|
return {
|
|
4823
4823
|
EBSEnabled: __expectBoolean(output.EBSEnabled),
|
|
4824
4824
|
Iops: __expectInt32(output.Iops),
|
|
4825
|
+
Throughput: __expectInt32(output.Throughput),
|
|
4825
4826
|
VolumeSize: __expectInt32(output.VolumeSize),
|
|
4826
4827
|
VolumeType: __expectString(output.VolumeType),
|
|
4827
4828
|
};
|
|
@@ -691,7 +691,7 @@ export interface DomainEndpointOptions {
|
|
|
691
691
|
*/
|
|
692
692
|
CustomEndpointCertificateArn?: string;
|
|
693
693
|
}
|
|
694
|
-
export declare type VolumeType = "gp2" | "io1" | "standard";
|
|
694
|
+
export declare type VolumeType = "gp2" | "gp3" | "io1" | "standard";
|
|
695
695
|
/**
|
|
696
696
|
* <p>Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs" target="_blank"> Configuring EBS-based Storage</a>.</p>
|
|
697
697
|
*/
|
|
@@ -709,9 +709,13 @@ export interface EBSOptions {
|
|
|
709
709
|
*/
|
|
710
710
|
VolumeSize?: number;
|
|
711
711
|
/**
|
|
712
|
-
* <p>Specifies the
|
|
712
|
+
* <p>Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).</p>
|
|
713
713
|
*/
|
|
714
714
|
Iops?: number;
|
|
715
|
+
/**
|
|
716
|
+
* <p>Specifies the Throughput for GP3 EBS volume (SSD).</p>
|
|
717
|
+
*/
|
|
718
|
+
Throughput?: number;
|
|
715
719
|
}
|
|
716
720
|
/**
|
|
717
721
|
* <p>Specifies the configuration for cold storage options such as enabled</p>
|
|
@@ -1964,6 +1968,10 @@ export interface StorageTypeLimit {
|
|
|
1964
1968
|
* Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
|
|
1965
1969
|
* <li>MinimumIops</li>
|
|
1966
1970
|
* Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
|
|
1971
|
+
* <li>MaximumThroughput</li>
|
|
1972
|
+
* Maximum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
|
|
1973
|
+
* <li>MinimumThroughput</li>
|
|
1974
|
+
* Minimum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
|
|
1967
1975
|
* </ol>
|
|
1968
1976
|
* </p>
|
|
1969
1977
|
*/
|
|
@@ -2005,6 +2013,7 @@ export interface StorageType {
|
|
|
2005
2013
|
* <ol>
|
|
2006
2014
|
* <li>standard</li>
|
|
2007
2015
|
* <li>gp2</li>
|
|
2016
|
+
* <li>gp3</li>
|
|
2008
2017
|
* <li>io1</li>
|
|
2009
2018
|
* </ol>
|
|
2010
2019
|
* Refer <code><a>VolumeType</a></code> for more information regarding above EBS storage options.
|
|
@@ -352,7 +352,7 @@ export interface DomainEndpointOptions {
|
|
|
352
352
|
|
|
353
353
|
CustomEndpointCertificateArn?: string;
|
|
354
354
|
}
|
|
355
|
-
export declare type VolumeType = "gp2" | "io1" | "standard";
|
|
355
|
+
export declare type VolumeType = "gp2" | "gp3" | "io1" | "standard";
|
|
356
356
|
|
|
357
357
|
export interface EBSOptions {
|
|
358
358
|
|
|
@@ -363,6 +363,8 @@ export interface EBSOptions {
|
|
|
363
363
|
VolumeSize?: number;
|
|
364
364
|
|
|
365
365
|
Iops?: number;
|
|
366
|
+
|
|
367
|
+
Throughput?: number;
|
|
366
368
|
}
|
|
367
369
|
|
|
368
370
|
export interface ColdStorageOptions {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticsearch-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticsearch Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.139.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",
|