@aws-sdk/client-elasticache 3.666.0 → 3.668.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 +14 -14
@@ -39,8 +39,8 @@ export interface StartMigrationMessage {
39
39
  */
40
40
  ReplicationGroupId: string | undefined;
41
41
  /**
42
- * <p>List of endpoints from which data should be migrated. For Redis OSS (cluster mode
43
- * disabled), list should have only one element.</p>
42
+ * <p>List of endpoints from which data should be migrated. For Valkey or Redis OSS (cluster mode
43
+ * disabled), the list should have only one element.</p>
44
44
  * @public
45
45
  */
46
46
  CustomerNodeEndpointList: CustomerNodeEndpoint[] | undefined;
@@ -50,7 +50,7 @@ export interface StartMigrationMessage {
50
50
  */
51
51
  export interface StartMigrationResponse {
52
52
  /**
53
- * <p>Contains all of the attributes of a specific Redis OSS replication group.</p>
53
+ * <p>Contains all of the attributes of a specific Valkey or Redis OSS replication group.</p>
54
54
  * @public
55
55
  */
56
56
  ReplicationGroup?: ReplicationGroup;
@@ -116,7 +116,7 @@ export declare class TestFailoverNotAvailableFault extends __BaseException {
116
116
  */
117
117
  export interface TestFailoverResult {
118
118
  /**
119
- * <p>Contains all of the attributes of a specific Redis OSS replication group.</p>
119
+ * <p>Contains all of the attributes of a specific Valkey or Redis OSS replication group.</p>
120
120
  * @public
121
121
  */
122
122
  ReplicationGroup?: ReplicationGroup;
@@ -142,7 +142,7 @@ export interface TestMigrationMessage {
142
142
  */
143
143
  export interface TestMigrationResponse {
144
144
  /**
145
- * <p>Contains all of the attributes of a specific Redis OSS replication group.</p>
145
+ * <p>Contains all of the attributes of a specific Valkey or Redis OSS replication group.</p>
146
146
  * @public
147
147
  */
148
148
  ReplicationGroup?: ReplicationGroup;
@@ -429,6 +429,7 @@ export interface ReplicationGroup {
429
429
  IpDiscovery?: IpDiscovery;
430
430
  TransitEncryptionMode?: TransitEncryptionMode;
431
431
  ClusterMode?: ClusterMode;
432
+ Engine?: string;
432
433
  }
433
434
  export interface CompleteMigrationResponse {
434
435
  ReplicationGroup?: ReplicationGroup;
@@ -1862,6 +1863,7 @@ export interface ModifyCacheClusterMessage {
1862
1863
  CacheParameterGroupName?: string;
1863
1864
  NotificationTopicStatus?: string;
1864
1865
  ApplyImmediately?: boolean;
1866
+ Engine?: string;
1865
1867
  EngineVersion?: string;
1866
1868
  AutoMinorVersionUpgrade?: boolean;
1867
1869
  SnapshotRetentionLimit?: number;
@@ -1903,6 +1905,7 @@ export interface ModifyGlobalReplicationGroupMessage {
1903
1905
  GlobalReplicationGroupId: string | undefined;
1904
1906
  ApplyImmediately: boolean | undefined;
1905
1907
  CacheNodeType?: string;
1908
+ Engine?: string;
1906
1909
  EngineVersion?: string;
1907
1910
  CacheParameterGroupName?: string;
1908
1911
  GlobalReplicationGroupDescription?: string;
@@ -1926,6 +1929,7 @@ export interface ModifyReplicationGroupMessage {
1926
1929
  CacheParameterGroupName?: string;
1927
1930
  NotificationTopicStatus?: string;
1928
1931
  ApplyImmediately?: boolean;
1932
+ Engine?: string;
1929
1933
  EngineVersion?: string;
1930
1934
  AutoMinorVersionUpgrade?: boolean;
1931
1935
  SnapshotRetentionLimit?: number;
@@ -1965,6 +1969,8 @@ export interface ModifyServerlessCacheRequest {
1965
1969
  SecurityGroupIds?: string[];
1966
1970
  SnapshotRetentionLimit?: number;
1967
1971
  DailySnapshotTime?: string;
1972
+ Engine?: string;
1973
+ MajorEngineVersion?: string;
1968
1974
  }
1969
1975
  export interface ModifyServerlessCacheResponse {
1970
1976
  ServerlessCache?: ServerlessCache;
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.666.0",
4
+ "version": "3.668.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-elasticache",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.666.0",
24
- "@aws-sdk/client-sts": "3.666.0",
25
- "@aws-sdk/core": "3.666.0",
26
- "@aws-sdk/credential-provider-node": "3.666.0",
27
- "@aws-sdk/middleware-host-header": "3.664.0",
28
- "@aws-sdk/middleware-logger": "3.664.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.664.0",
30
- "@aws-sdk/middleware-user-agent": "3.666.0",
31
- "@aws-sdk/region-config-resolver": "3.664.0",
32
- "@aws-sdk/types": "3.664.0",
33
- "@aws-sdk/util-endpoints": "3.664.0",
34
- "@aws-sdk/util-user-agent-browser": "3.664.0",
35
- "@aws-sdk/util-user-agent-node": "3.666.0",
23
+ "@aws-sdk/client-sso-oidc": "3.668.0",
24
+ "@aws-sdk/client-sts": "3.668.0",
25
+ "@aws-sdk/core": "3.667.0",
26
+ "@aws-sdk/credential-provider-node": "3.668.0",
27
+ "@aws-sdk/middleware-host-header": "3.667.0",
28
+ "@aws-sdk/middleware-logger": "3.667.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.667.0",
30
+ "@aws-sdk/middleware-user-agent": "3.668.0",
31
+ "@aws-sdk/region-config-resolver": "3.667.0",
32
+ "@aws-sdk/types": "3.667.0",
33
+ "@aws-sdk/util-endpoints": "3.667.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.667.0",
35
+ "@aws-sdk/util-user-agent-node": "3.668.0",
36
36
  "@smithy/config-resolver": "^3.0.9",
37
37
  "@smithy/core": "^2.4.8",
38
38
  "@smithy/fetch-http-handler": "^3.2.9",