Skip to content

Commit e610c88

Browse files
Update generated code (#1777)
update generated code
1 parent ddad0a0 commit e610c88

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

src/Input/DescribeCacheClustersMessage.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ final class DescribeCacheClustersMessage extends Input
5050

5151
/**
5252
* An optional flag that can be included in the `DescribeCacheCluster` request to show only nodes (API/CLI: clusters)
53-
* that are not members of a replication group. In practice, this mean Memcached and single node Redis OSS clusters.
53+
* that are not members of a replication group. In practice, this means Memcached and single node Valkey or Redis OSS
54+
* clusters.
5455
*
5556
* @var bool|null
5657
*/

src/ValueObject/CacheCluster.php

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ final class CacheCluster
111111
* **Additional node type info**
112112
*
113113
* - All current generation instance types are created in Amazon VPC by default.
114-
* - Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
115-
* - Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
116-
* - Redis OSS configuration variables `appendonly` and `appendfsync` are not supported on Redis OSS version 2.8.22 and
117-
* later.
114+
* - Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
115+
* - Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
116+
* - The configuration variables `appendonly` and `appendfsync` are not supported on Valkey, or on Redis OSS version
117+
* 2.8.22 and later.
118118
*
119119
* [^1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
120120
* [^2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
@@ -148,8 +148,8 @@ final class CacheCluster
148148
/**
149149
* The number of cache nodes in the cluster.
150150
*
151-
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1
152-
* and 40.
151+
* For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be
152+
* between 1 and 40.
153153
*
154154
* @var int|null
155155
*/
@@ -239,8 +239,8 @@ final class CacheCluster
239239
private $cacheNodes;
240240

241241
/**
242-
*  If you are running Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in to the
243-
* next auto minor version upgrade campaign. This parameter is disabled for previous versions. .
242+
*  If you are running Valkey or Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in
243+
* to the next auto minor version upgrade campaign. This parameter is disabled for previous versions. .
244244
*
245245
* @var bool|null
246246
*/
@@ -281,7 +281,7 @@ final class CacheCluster
281281
private $snapshotWindow;
282282

283283
/**
284-
* A flag that enables using an `AuthToken` (password) when issuing Redis OSS commands.
284+
* A flag that enables using an `AuthToken` (password) when issuing Valkey or Redis OSS commands.
285285
*
286286
* Default: `false`
287287
*
@@ -345,8 +345,9 @@ final class CacheCluster
345345
private $logDeliveryConfigurations;
346346

347347
/**
348-
* Must be either `ipv4` | `ipv6` | `dual_stack`. IPv6 is supported for workloads using Redis OSS engine version 6.2
349-
* onward or Memcached engine version 1.6.6 on all instances built on the Nitro system [^1].
348+
* Must be either `ipv4` | `ipv6` | `dual_stack`. IPv6 is supported for workloads using Valkey 7.2 and above, Redis OSS
349+
* engine version 6.2 and above or Memcached engine version 1.6.6 and above on all instances built on the Nitro system
350+
* [^1].
350351
*
351352
* [^1]: http://aws.amazon.com/ec2/nitro/
352353
*
@@ -355,8 +356,9 @@ final class CacheCluster
355356
private $networkType;
356357

357358
/**
358-
* The network type associated with the cluster, either `ipv4` | `ipv6`. IPv6 is supported for workloads using Redis OSS
359-
* engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system [^1].
359+
* The network type associated with the cluster, either `ipv4` | `ipv6`. IPv6 is supported for workloads using Valkey
360+
* 7.2 and above, Redis OSS engine version 6.2 and above or Memcached engine version 1.6.6 and above on all instances
361+
* built on the Nitro system [^1].
360362
*
361363
* [^1]: http://aws.amazon.com/ec2/nitro/
362364
*

src/ValueObject/CacheNode.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's
7-
* protocol-compliant caching software - either Memcached or Redis OSS.
7+
* protocol-compliant caching software - either Memcached, Valkey or Redis OSS.
88
*
99
* The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more
1010
* memory and computational power at lower cost when compared to their equivalent previous generation counterparts.
@@ -79,10 +79,10 @@
7979
* **Additional node type info**
8080
*
8181
* - All current generation instance types are created in Amazon VPC by default.
82-
* - Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
83-
* - Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
84-
* - Redis OSS configuration variables `appendonly` and `appendfsync` are not supported on Redis OSS version 2.8.22 and
85-
* later.
82+
* - Valkey or Redis OSS append-only files (AOF) are not supported for T1 or T2 instances.
83+
* - Valkey or Redis OSS Multi-AZ with automatic failover is not supported on T1 instances.
84+
* - The configuration variables `appendonly` and `appendfsync` are not supported on Valkey, or on Redis OSS version
85+
* 2.8.22 and later.
8686
*
8787
* [^1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
8888
* [^2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion

src/ValueObject/PendingModifiedValues.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ final class PendingModifiedValues
1313
/**
1414
* The new number of cache nodes for the cluster.
1515
*
16-
* For clusters running Redis OSS, this value must be 1. For clusters running Memcached, this value must be between 1
17-
* and 40.
16+
* For clusters running Valkey or Redis OSS, this value must be 1. For clusters running Memcached, this value must be
17+
* between 1 and 40.
1818
*
1919
* @var int|null
2020
*/

0 commit comments

Comments
 (0)