@aws-sdk/client-elasticache 3.131.0 → 3.132.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.132.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.131.0...v3.132.0) (2022-07-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-elasticache:** Adding AutoMinorVersionUpgrade in the DescribeReplicationGroups API ([e694134](https://github.com/aws/aws-sdk-js-v3/commit/e694134054db9c206aec4b6e6fa26b8ab807d6eb))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-elasticache
|
|
@@ -9053,6 +9053,7 @@ const deserializeAws_queryReplicationGroup = (output, context) => {
|
|
|
9053
9053
|
LogDeliveryConfigurations: undefined,
|
|
9054
9054
|
ReplicationGroupCreateTime: undefined,
|
|
9055
9055
|
DataTiering: undefined,
|
|
9056
|
+
AutoMinorVersionUpgrade: undefined,
|
|
9056
9057
|
};
|
|
9057
9058
|
if (output["ReplicationGroupId"] !== undefined) {
|
|
9058
9059
|
contents.ReplicationGroupId = (0, smithy_client_1.expectString)(output["ReplicationGroupId"]);
|
|
@@ -9149,6 +9150,9 @@ const deserializeAws_queryReplicationGroup = (output, context) => {
|
|
|
9149
9150
|
if (output["DataTiering"] !== undefined) {
|
|
9150
9151
|
contents.DataTiering = (0, smithy_client_1.expectString)(output["DataTiering"]);
|
|
9151
9152
|
}
|
|
9153
|
+
if (output["AutoMinorVersionUpgrade"] !== undefined) {
|
|
9154
|
+
contents.AutoMinorVersionUpgrade = (0, smithy_client_1.parseBoolean)(output["AutoMinorVersionUpgrade"]);
|
|
9155
|
+
}
|
|
9152
9156
|
return contents;
|
|
9153
9157
|
};
|
|
9154
9158
|
const deserializeAws_queryReplicationGroupAlreadyExistsFault = (output, context) => {
|
|
@@ -10502,6 +10502,7 @@ var deserializeAws_queryReplicationGroup = function (output, context) {
|
|
|
10502
10502
|
LogDeliveryConfigurations: undefined,
|
|
10503
10503
|
ReplicationGroupCreateTime: undefined,
|
|
10504
10504
|
DataTiering: undefined,
|
|
10505
|
+
AutoMinorVersionUpgrade: undefined,
|
|
10505
10506
|
};
|
|
10506
10507
|
if (output["ReplicationGroupId"] !== undefined) {
|
|
10507
10508
|
contents.ReplicationGroupId = __expectString(output["ReplicationGroupId"]);
|
|
@@ -10598,6 +10599,9 @@ var deserializeAws_queryReplicationGroup = function (output, context) {
|
|
|
10598
10599
|
if (output["DataTiering"] !== undefined) {
|
|
10599
10600
|
contents.DataTiering = __expectString(output["DataTiering"]);
|
|
10600
10601
|
}
|
|
10602
|
+
if (output["AutoMinorVersionUpgrade"] !== undefined) {
|
|
10603
|
+
contents.AutoMinorVersionUpgrade = __parseBoolean(output["AutoMinorVersionUpgrade"]);
|
|
10604
|
+
}
|
|
10601
10605
|
return contents;
|
|
10602
10606
|
};
|
|
10603
10607
|
var deserializeAws_queryReplicationGroupAlreadyExistsFault = function (output, context) {
|
|
@@ -1047,6 +1047,11 @@ export interface ReplicationGroup {
|
|
|
1047
1047
|
* For more information, see <a href="https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html">Data tiering</a>.</p>
|
|
1048
1048
|
*/
|
|
1049
1049
|
DataTiering?: DataTieringStatus | string;
|
|
1050
|
+
/**
|
|
1051
|
+
* <p> If you are running Redis engine version 6.0 or later, set this parameter to yes if you want to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.
|
|
1052
|
+
* </p>
|
|
1053
|
+
*/
|
|
1054
|
+
AutoMinorVersionUpgrade?: boolean;
|
|
1050
1055
|
}
|
|
1051
1056
|
export declare namespace ReplicationGroup {
|
|
1052
1057
|
/**
|
|
@@ -1325,7 +1330,7 @@ export interface Snapshot {
|
|
|
1325
1330
|
*
|
|
1326
1331
|
* </li>
|
|
1327
1332
|
* <li>
|
|
1328
|
-
* <p>Previous generation: (not recommended)</p>
|
|
1333
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
1329
1334
|
* <p>
|
|
1330
1335
|
* <b>T1 node types:</b>
|
|
1331
1336
|
* <code>cache.t1.micro</code>
|
|
@@ -1355,7 +1360,7 @@ export interface Snapshot {
|
|
|
1355
1360
|
*
|
|
1356
1361
|
* <ul>
|
|
1357
1362
|
* <li>
|
|
1358
|
-
* <p>Previous generation: (not recommended)</p>
|
|
1363
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
1359
1364
|
* <p>
|
|
1360
1365
|
* <b>C1 node types:</b>
|
|
1361
1366
|
* <code>cache.c1.xlarge</code>
|
|
@@ -1470,7 +1475,7 @@ export interface Snapshot {
|
|
|
1470
1475
|
*
|
|
1471
1476
|
* </li>
|
|
1472
1477
|
* <li>
|
|
1473
|
-
* <p>Previous generation: (not recommended)</p>
|
|
1478
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
1474
1479
|
* <p>
|
|
1475
1480
|
* <b>M2 node types:</b>
|
|
1476
1481
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -1917,7 +1922,7 @@ export interface CreateCacheClusterMessage {
|
|
|
1917
1922
|
*
|
|
1918
1923
|
* </li>
|
|
1919
1924
|
* <li>
|
|
1920
|
-
* <p>Previous generation: (not recommended)</p>
|
|
1925
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
1921
1926
|
* <p>
|
|
1922
1927
|
* <b>T1 node types:</b>
|
|
1923
1928
|
* <code>cache.t1.micro</code>
|
|
@@ -1947,7 +1952,7 @@ export interface CreateCacheClusterMessage {
|
|
|
1947
1952
|
*
|
|
1948
1953
|
* <ul>
|
|
1949
1954
|
* <li>
|
|
1950
|
-
* <p>Previous generation: (not recommended)</p>
|
|
1955
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
1951
1956
|
* <p>
|
|
1952
1957
|
* <b>C1 node types:</b>
|
|
1953
1958
|
* <code>cache.c1.xlarge</code>
|
|
@@ -2020,7 +2025,7 @@ export interface CreateCacheClusterMessage {
|
|
|
2020
2025
|
*
|
|
2021
2026
|
* </li>
|
|
2022
2027
|
* <li>
|
|
2023
|
-
* <p>Previous generation: (not recommended)</p>
|
|
2028
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
2024
2029
|
* <p>
|
|
2025
2030
|
* <b>M2 node types:</b>
|
|
2026
2031
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -2313,7 +2318,7 @@ export declare namespace CreateCacheClusterMessage {
|
|
|
2313
2318
|
*
|
|
2314
2319
|
* </li>
|
|
2315
2320
|
* <li>
|
|
2316
|
-
* <p>Previous generation: (not recommended)</p>
|
|
2321
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
2317
2322
|
* <p>
|
|
2318
2323
|
* <b>T1 node types:</b>
|
|
2319
2324
|
* <code>cache.t1.micro</code>
|
|
@@ -2343,7 +2348,7 @@ export declare namespace CreateCacheClusterMessage {
|
|
|
2343
2348
|
*
|
|
2344
2349
|
* <ul>
|
|
2345
2350
|
* <li>
|
|
2346
|
-
* <p>Previous generation: (not recommended)</p>
|
|
2351
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
2347
2352
|
* <p>
|
|
2348
2353
|
* <b>C1 node types:</b>
|
|
2349
2354
|
* <code>cache.c1.xlarge</code>
|
|
@@ -2447,7 +2452,7 @@ export declare namespace CreateCacheClusterMessage {
|
|
|
2447
2452
|
*
|
|
2448
2453
|
* </li>
|
|
2449
2454
|
* <li>
|
|
2450
|
-
* <p>Previous generation: (not recommended)</p>
|
|
2455
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
2451
2456
|
* <p>
|
|
2452
2457
|
* <b>M2 node types:</b>
|
|
2453
2458
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -2759,7 +2764,7 @@ export interface CacheCluster {
|
|
|
2759
2764
|
*
|
|
2760
2765
|
* </li>
|
|
2761
2766
|
* <li>
|
|
2762
|
-
* <p>Previous generation: (not recommended)</p>
|
|
2767
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
2763
2768
|
* <p>
|
|
2764
2769
|
* <b>T1 node types:</b>
|
|
2765
2770
|
* <code>cache.t1.micro</code>
|
|
@@ -2789,7 +2794,7 @@ export interface CacheCluster {
|
|
|
2789
2794
|
*
|
|
2790
2795
|
* <ul>
|
|
2791
2796
|
* <li>
|
|
2792
|
-
* <p>Previous generation: (not recommended)</p>
|
|
2797
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
2793
2798
|
* <p>
|
|
2794
2799
|
* <b>C1 node types:</b>
|
|
2795
2800
|
* <code>cache.c1.xlarge</code>
|
|
@@ -2894,7 +2899,7 @@ export interface CacheCluster {
|
|
|
2894
2899
|
*
|
|
2895
2900
|
* </li>
|
|
2896
2901
|
* <li>
|
|
2897
|
-
* <p>Previous generation: (not recommended)</p>
|
|
2902
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
2898
2903
|
* <p>
|
|
2899
2904
|
* <b>M2 node types:</b>
|
|
2900
2905
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -3988,7 +3993,7 @@ export interface CreateReplicationGroupMessage {
|
|
|
3988
3993
|
*
|
|
3989
3994
|
* </li>
|
|
3990
3995
|
* <li>
|
|
3991
|
-
* <p>Previous generation: (not recommended)</p>
|
|
3996
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
3992
3997
|
* <p>
|
|
3993
3998
|
* <b>T1 node types:</b>
|
|
3994
3999
|
* <code>cache.t1.micro</code>
|
|
@@ -4018,7 +4023,7 @@ export interface CreateReplicationGroupMessage {
|
|
|
4018
4023
|
*
|
|
4019
4024
|
* <ul>
|
|
4020
4025
|
* <li>
|
|
4021
|
-
* <p>Previous generation: (not recommended)</p>
|
|
4026
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
4022
4027
|
* <p>
|
|
4023
4028
|
* <b>C1 node types:</b>
|
|
4024
4029
|
* <code>cache.c1.xlarge</code>
|
|
@@ -4123,7 +4128,7 @@ export interface CreateReplicationGroupMessage {
|
|
|
4123
4128
|
*
|
|
4124
4129
|
* </li>
|
|
4125
4130
|
* <li>
|
|
4126
|
-
* <p>Previous generation: (not recommended)</p>
|
|
4131
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
4127
4132
|
* <p>
|
|
4128
4133
|
* <b>M2 node types:</b>
|
|
4129
4134
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -6149,7 +6154,7 @@ export interface DescribeReservedCacheNodesMessage {
|
|
|
6149
6154
|
*
|
|
6150
6155
|
* </li>
|
|
6151
6156
|
* <li>
|
|
6152
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6157
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6153
6158
|
* <p>
|
|
6154
6159
|
* <b>T1 node types:</b>
|
|
6155
6160
|
* <code>cache.t1.micro</code>
|
|
@@ -6179,7 +6184,7 @@ export interface DescribeReservedCacheNodesMessage {
|
|
|
6179
6184
|
*
|
|
6180
6185
|
* <ul>
|
|
6181
6186
|
* <li>
|
|
6182
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6187
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6183
6188
|
* <p>
|
|
6184
6189
|
* <b>C1 node types:</b>
|
|
6185
6190
|
* <code>cache.c1.xlarge</code>
|
|
@@ -6283,7 +6288,7 @@ export interface DescribeReservedCacheNodesMessage {
|
|
|
6283
6288
|
*
|
|
6284
6289
|
* </li>
|
|
6285
6290
|
* <li>
|
|
6286
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6291
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6287
6292
|
* <p>
|
|
6288
6293
|
* <b>M2 node types:</b>
|
|
6289
6294
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -6482,7 +6487,7 @@ export interface ReservedCacheNode {
|
|
|
6482
6487
|
*
|
|
6483
6488
|
* </li>
|
|
6484
6489
|
* <li>
|
|
6485
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6490
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6486
6491
|
* <p>
|
|
6487
6492
|
* <b>T1 node types:</b>
|
|
6488
6493
|
* <code>cache.t1.micro</code>
|
|
@@ -6512,7 +6517,7 @@ export interface ReservedCacheNode {
|
|
|
6512
6517
|
*
|
|
6513
6518
|
* <ul>
|
|
6514
6519
|
* <li>
|
|
6515
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6520
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6516
6521
|
* <p>
|
|
6517
6522
|
* <b>C1 node types:</b>
|
|
6518
6523
|
* <code>cache.c1.xlarge</code>
|
|
@@ -6616,7 +6621,7 @@ export interface ReservedCacheNode {
|
|
|
6616
6621
|
*
|
|
6617
6622
|
* </li>
|
|
6618
6623
|
* <li>
|
|
6619
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6624
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6620
6625
|
* <p>
|
|
6621
6626
|
* <b>M2 node types:</b>
|
|
6622
6627
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -6825,7 +6830,7 @@ export interface DescribeReservedCacheNodesOfferingsMessage {
|
|
|
6825
6830
|
*
|
|
6826
6831
|
* </li>
|
|
6827
6832
|
* <li>
|
|
6828
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6833
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6829
6834
|
* <p>
|
|
6830
6835
|
* <b>T1 node types:</b>
|
|
6831
6836
|
* <code>cache.t1.micro</code>
|
|
@@ -6855,7 +6860,7 @@ export interface DescribeReservedCacheNodesOfferingsMessage {
|
|
|
6855
6860
|
*
|
|
6856
6861
|
* <ul>
|
|
6857
6862
|
* <li>
|
|
6858
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6863
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6859
6864
|
* <p>
|
|
6860
6865
|
* <b>C1 node types:</b>
|
|
6861
6866
|
* <code>cache.c1.xlarge</code>
|
|
@@ -6961,7 +6966,7 @@ export interface DescribeReservedCacheNodesOfferingsMessage {
|
|
|
6961
6966
|
*
|
|
6962
6967
|
* </li>
|
|
6963
6968
|
* <li>
|
|
6964
|
-
* <p>Previous generation: (not recommended)</p>
|
|
6969
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
6965
6970
|
* <p>
|
|
6966
6971
|
* <b>M2 node types:</b>
|
|
6967
6972
|
* <code>cache.m2.xlarge</code>,
|
|
@@ -7138,7 +7143,7 @@ export interface ReservedCacheNodesOffering {
|
|
|
7138
7143
|
*
|
|
7139
7144
|
* </li>
|
|
7140
7145
|
* <li>
|
|
7141
|
-
* <p>Previous generation: (not recommended)</p>
|
|
7146
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
7142
7147
|
* <p>
|
|
7143
7148
|
* <b>T1 node types:</b>
|
|
7144
7149
|
* <code>cache.t1.micro</code>
|
|
@@ -7168,7 +7173,7 @@ export interface ReservedCacheNodesOffering {
|
|
|
7168
7173
|
*
|
|
7169
7174
|
* <ul>
|
|
7170
7175
|
* <li>
|
|
7171
|
-
* <p>Previous generation: (not recommended)</p>
|
|
7176
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
7172
7177
|
* <p>
|
|
7173
7178
|
* <b>C1 node types:</b>
|
|
7174
7179
|
* <code>cache.c1.xlarge</code>
|
|
@@ -7274,7 +7279,7 @@ export interface ReservedCacheNodesOffering {
|
|
|
7274
7279
|
*
|
|
7275
7280
|
* </li>
|
|
7276
7281
|
* <li>
|
|
7277
|
-
* <p>Previous generation: (not recommended)</p>
|
|
7282
|
+
* <p>Previous generation: (not recommended. Existing clusters are still supported but creation of new clusters is not supported for these types.)</p>
|
|
7278
7283
|
* <p>
|
|
7279
7284
|
* <b>M2 node types:</b>
|
|
7280
7285
|
* <code>cache.m2.xlarge</code>,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticache",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticache Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.132.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",
|