@aws-sdk/client-elasticache 3.665.0 → 3.667.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.
Files changed (43) hide show
  1. package/dist-cjs/index.js +18 -0
  2. package/dist-es/protocols/Aws_query.js +18 -0
  3. package/dist-types/commands/AddTagsToResourceCommand.d.ts +2 -2
  4. package/dist-types/commands/CompleteMigrationCommand.d.ts +1 -0
  5. package/dist-types/commands/CopyServerlessCacheSnapshotCommand.d.ts +5 -5
  6. package/dist-types/commands/CopySnapshotCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateCacheClusterCommand.d.ts +2 -2
  8. package/dist-types/commands/CreateGlobalReplicationGroupCommand.d.ts +3 -3
  9. package/dist-types/commands/CreateReplicationGroupCommand.d.ts +9 -9
  10. package/dist-types/commands/CreateServerlessCacheSnapshotCommand.d.ts +3 -3
  11. package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -3
  12. package/dist-types/commands/CreateUserCommand.d.ts +1 -1
  13. package/dist-types/commands/CreateUserGroupCommand.d.ts +1 -1
  14. package/dist-types/commands/DecreaseReplicaCountCommand.d.ts +3 -2
  15. package/dist-types/commands/DeleteCacheClusterCommand.d.ts +5 -5
  16. package/dist-types/commands/DeleteReplicationGroupCommand.d.ts +3 -2
  17. package/dist-types/commands/DeleteServerlessCacheCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteServerlessCacheSnapshotCommand.d.ts +3 -3
  19. package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteUserCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteUserGroupCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeReplicationGroupsCommand.d.ts +2 -1
  23. package/dist-types/commands/DescribeServerlessCacheSnapshotsCommand.d.ts +2 -2
  24. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +1 -1
  25. package/dist-types/commands/ExportServerlessCacheSnapshotCommand.d.ts +3 -3
  26. package/dist-types/commands/IncreaseReplicaCountCommand.d.ts +3 -2
  27. package/dist-types/commands/ListAllowedNodeTypeModificationsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
  29. package/dist-types/commands/ModifyCacheClusterCommand.d.ts +1 -0
  30. package/dist-types/commands/ModifyGlobalReplicationGroupCommand.d.ts +1 -0
  31. package/dist-types/commands/ModifyReplicationGroupCommand.d.ts +5 -3
  32. package/dist-types/commands/ModifyReplicationGroupShardConfigurationCommand.d.ts +1 -0
  33. package/dist-types/commands/ModifyServerlessCacheCommand.d.ts +2 -0
  34. package/dist-types/commands/PurchaseReservedCacheNodesOfferingCommand.d.ts +1 -2
  35. package/dist-types/commands/RebootCacheClusterCommand.d.ts +3 -3
  36. package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +2 -2
  37. package/dist-types/commands/StartMigrationCommand.d.ts +1 -0
  38. package/dist-types/commands/TestFailoverCommand.d.ts +2 -1
  39. package/dist-types/commands/TestMigrationCommand.d.ts +1 -0
  40. package/dist-types/models/models_0.d.ts +242 -213
  41. package/dist-types/models/models_1.d.ts +5 -5
  42. package/dist-types/ts3.4/models/models_0.d.ts +6 -0
  43. package/package.json +19 -19
@@ -27,11 +27,11 @@ declare const ModifyReplicationGroupCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Modifies the settings for a replication group. This is limited to Redis OSS 7 and newer.</p>
30
+ * <p>Modifies the settings for a replication group. This is limited to Valkey and Redis OSS 7 and above.</p>
31
31
  * <ul>
32
32
  * <li>
33
33
  * <p>
34
- * <a href="https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/scaling-redis-cluster-mode-enabled.html">Scaling for Amazon ElastiCache (Redis OSS) (cluster mode enabled)</a> in
34
+ * <a href="https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/scaling-redis-cluster-mode-enabled.html">Scaling for Valkey or Redis OSS (cluster mode enabled)</a> in
35
35
  * the ElastiCache User Guide</p>
36
36
  * </li>
37
37
  * <li>
@@ -41,7 +41,7 @@ declare const ModifyReplicationGroupCommand_base: {
41
41
  * </li>
42
42
  * </ul>
43
43
  * <note>
44
- * <p>This operation is valid for Redis OSS only.</p>
44
+ * <p>This operation is valid for Valkey or Redis OSS only.</p>
45
45
  * </note>
46
46
  * @example
47
47
  * Use a bare-bones client and the command you need to make an API call.
@@ -68,6 +68,7 @@ declare const ModifyReplicationGroupCommand_base: {
68
68
  * CacheParameterGroupName: "STRING_VALUE",
69
69
  * NotificationTopicStatus: "STRING_VALUE",
70
70
  * ApplyImmediately: true || false,
71
+ * Engine: "STRING_VALUE",
71
72
  * EngineVersion: "STRING_VALUE",
72
73
  * AutoMinorVersionUpgrade: true || false,
73
74
  * SnapshotRetentionLimit: Number("int"),
@@ -225,6 +226,7 @@ declare const ModifyReplicationGroupCommand_base: {
225
226
  * // IpDiscovery: "ipv4" || "ipv6",
226
227
  * // TransitEncryptionMode: "preferred" || "required",
227
228
  * // ClusterMode: "enabled" || "disabled" || "compatible",
229
+ * // Engine: "STRING_VALUE",
228
230
  * // },
229
231
  * // };
230
232
  *
@@ -176,6 +176,7 @@ declare const ModifyReplicationGroupShardConfigurationCommand_base: {
176
176
  * // IpDiscovery: "ipv4" || "ipv6",
177
177
  * // TransitEncryptionMode: "preferred" || "required",
178
178
  * // ClusterMode: "enabled" || "disabled" || "compatible",
179
+ * // Engine: "STRING_VALUE",
179
180
  * // },
180
181
  * // };
181
182
  *
@@ -55,6 +55,8 @@ declare const ModifyServerlessCacheCommand_base: {
55
55
  * ],
56
56
  * SnapshotRetentionLimit: Number("int"),
57
57
  * DailySnapshotTime: "STRING_VALUE",
58
+ * Engine: "STRING_VALUE",
59
+ * MajorEngineVersion: "STRING_VALUE",
58
60
  * };
59
61
  * const command = new ModifyServerlessCacheCommand(input);
60
62
  * const response = await client.send(command);
@@ -28,8 +28,7 @@ declare const PurchaseReservedCacheNodesOfferingCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Allows you to purchase a reserved cache node offering. Reserved nodes are not eligible
31
- * for cancellation and are non-refundable. For more information, see <a href="https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/reserved-nodes.html">Managing Costs with Reserved Nodes</a> for Redis OSS or <a href="https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/reserved-nodes.html">Managing Costs with
32
- * Reserved Nodes</a> for Memcached.</p>
31
+ * for cancellation and are non-refundable. For more information, see <a href="https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/reserved-nodes.html">Managing Costs with Reserved Nodes</a>.</p>
33
32
  * @example
34
33
  * Use a bare-bones client and the command you need to make an API call.
35
34
  * ```javascript
@@ -34,10 +34,10 @@ declare const RebootCacheClusterCommand_base: {
34
34
  * <p>The reboot causes the contents of the cache (for each cache node being rebooted) to be
35
35
  * lost.</p>
36
36
  * <p>When the reboot is complete, a cluster event is created.</p>
37
- * <p>Rebooting a cluster is currently supported on Memcached and Redis OSS (cluster mode
38
- * disabled) clusters. Rebooting is not supported on Redis OSS (cluster mode enabled)
37
+ * <p>Rebooting a cluster is currently supported on Memcached, Valkey and Redis OSS (cluster mode
38
+ * disabled) clusters. Rebooting is not supported on Valkey or Redis OSS (cluster mode enabled)
39
39
  * clusters.</p>
40
- * <p>If you make changes to parameters that require a Redis OSS (cluster mode enabled) cluster
40
+ * <p>If you make changes to parameters that require a Valkey or Redis OSS (cluster mode enabled) cluster
41
41
  * reboot for the changes to be applied, see <a href="http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/nodes.rebooting.html">Rebooting a Cluster</a> for an alternate process.</p>
42
42
  * @example
43
43
  * Use a bare-bones client and the command you need to make an API call.
@@ -86,7 +86,7 @@ declare const RemoveTagsFromResourceCommand_base: {
86
86
  * <p>The requested replication group is not in the <code>available</code> state.</p>
87
87
  *
88
88
  * @throws {@link InvalidServerlessCacheSnapshotStateFault} (client fault)
89
- * <p>The state of the serverless cache snapshot was not received. Available for Redis OSS and Serverless Memcached only.</p>
89
+ * <p>The state of the serverless cache snapshot was not received. Available for Valkey, Redis OSS and Serverless Memcached only.</p>
90
90
  *
91
91
  * @throws {@link InvalidServerlessCacheStateFault} (client fault)
92
92
  * <p>The account for these credentials is not currently active.</p>
@@ -101,7 +101,7 @@ declare const RemoveTagsFromResourceCommand_base: {
101
101
  * <p>The serverless cache was not found or does not exist.</p>
102
102
  *
103
103
  * @throws {@link ServerlessCacheSnapshotNotFoundFault} (client fault)
104
- * <p>This serverless cache snapshot could not be found or does not exist. Available for Redis OSS and Serverless Memcached only.</p>
104
+ * <p>This serverless cache snapshot could not be found or does not exist. Available for Valkey, Redis OSS and Serverless Memcached only.</p>
105
105
  *
106
106
  * @throws {@link SnapshotNotFoundFault} (client fault)
107
107
  * <p>The requested snapshot name does not refer to an existing snapshot.</p>
@@ -165,6 +165,7 @@ declare const StartMigrationCommand_base: {
165
165
  * // IpDiscovery: "ipv4" || "ipv6",
166
166
  * // TransitEncryptionMode: "preferred" || "required",
167
167
  * // ClusterMode: "enabled" || "disabled" || "compatible",
168
+ * // Engine: "STRING_VALUE",
168
169
  * // },
169
170
  * // };
170
171
  *
@@ -49,7 +49,7 @@ declare const TestFailoverCommand_base: {
49
49
  * <p> </p>
50
50
  * </li>
51
51
  * <li>
52
- * <p>If calling this operation multiple times on different shards in the same Redis OSS (cluster mode enabled) replication group, the first node replacement must
52
+ * <p>If calling this operation multiple times on different shards in the same Valkey or Redis OSS (cluster mode enabled) replication group, the first node replacement must
53
53
  * complete before a subsequent call can be made.</p>
54
54
  * </li>
55
55
  * <li>
@@ -236,6 +236,7 @@ declare const TestFailoverCommand_base: {
236
236
  * // IpDiscovery: "ipv4" || "ipv6",
237
237
  * // TransitEncryptionMode: "preferred" || "required",
238
238
  * // ClusterMode: "enabled" || "disabled" || "compatible",
239
+ * // Engine: "STRING_VALUE",
239
240
  * // },
240
241
  * // };
241
242
  *
@@ -165,6 +165,7 @@ declare const TestMigrationCommand_base: {
165
165
  * // IpDiscovery: "ipv4" || "ipv6",
166
166
  * // TransitEncryptionMode: "preferred" || "required",
167
167
  * // ClusterMode: "enabled" || "disabled" || "compatible",
168
+ * // Engine: "STRING_VALUE",
168
169
  * // },
169
170
  * // };
170
171
  *