aws-sdk-elasticache 1.124.0 → 1.125.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 14e4075081fd634dd63ff7db5ef590383959f94550157e5c14fc30081d7d5f64
4
- data.tar.gz: cae7f219d9bafd97314024797aedc6f3556c5ff831c43ae1d74ea0bac7e0606c
3
+ metadata.gz: d968032385523920310ad35dd15b262d7c7f250e4dc2ef2a9faa888ce2b1dede
4
+ data.tar.gz: 88d807a2daddc37660a7c0b950b9a43fa73491b73403f86f780a13b46d0da2a6
5
5
  SHA512:
6
- metadata.gz: 753c324e696e45cd31721f3cb276e85cd6e50bc7baa7956f58c9c613431b70aec6dca27829704c7355b8292759af711d662e31c2c4b24386c5cf160729ca3c82
7
- data.tar.gz: d638ef13b357bab5242da3a3b0958f634c54e3651257a78be924ba2d9d64b7b1f32c4d0e71c8b860f8efd98511338225c641e91c28dae9d4f109285dbfd8a83b
6
+ metadata.gz: a762c6f007e64c9939736072a73d292c8a6b22e400c58055ae5dcdfcdbd74adb25911cd7ff4779a7763020798ff5dd03cf325841febeb9bbbe668f6e36049dcc
7
+ data.tar.gz: 7487c6070994db25d57dc795c9cbb14ec84e26dd1d4401941e40f95b7bb1e5471c6a287e8eebc04ef274ea1b620dab5f664c0bb7d60d9ac0cf1ded1ba7b6ca87
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.125.0 (2025-04-10)
5
+ ------------------
6
+
7
+ * Feature - AWS ElastiCache SDK now supports using MemcachedUpgradeConfig parameter with ModifyCacheCluster API to enable updating Memcached cache node types. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage and implementation.
8
+
4
9
  1.124.0 (2025-03-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.124.0
1
+ 1.125.0
@@ -1707,6 +1707,8 @@ module Aws::ElastiCache
1707
1707
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
1708
1708
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
1709
1709
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
1710
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
1711
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
1710
1712
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
1711
1713
  # resp.cache_cluster.notification_configuration.topic_status #=> String
1712
1714
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -3852,6 +3854,8 @@ module Aws::ElastiCache
3852
3854
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
3853
3855
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
3854
3856
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
3857
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
3858
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
3855
3859
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
3856
3860
  # resp.cache_cluster.notification_configuration.topic_status #=> String
3857
3861
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -4791,6 +4795,8 @@ module Aws::ElastiCache
4791
4795
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
4792
4796
  # resp.cache_clusters[0].pending_modified_values.transit_encryption_enabled #=> Boolean
4793
4797
  # resp.cache_clusters[0].pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
4798
+ # resp.cache_clusters[0].pending_modified_values.scale_config.scale_percentage #=> Integer
4799
+ # resp.cache_clusters[0].pending_modified_values.scale_config.scale_interval_minutes #=> Integer
4794
4800
  # resp.cache_clusters[0].notification_configuration.topic_arn #=> String
4795
4801
  # resp.cache_clusters[0].notification_configuration.topic_status #=> String
4796
4802
  # resp.cache_clusters[0].cache_security_groups #=> Array
@@ -9131,8 +9137,8 @@ module Aws::ElastiCache
9131
9137
  # Default: `false`
9132
9138
  #
9133
9139
  # @option params [String] :engine
9134
- # Modifies the engine listed in a cluster message. The options are
9135
- # redis, memcached or valkey.
9140
+ # The engine type used by the cache cluster. The options are valkey,
9141
+ # memcached or redis.
9136
9142
  #
9137
9143
  # @option params [String] :engine_version
9138
9144
  # The upgraded version of the cache engine to be run on the cache nodes.
@@ -9219,6 +9225,10 @@ module Aws::ElastiCache
9219
9225
  #
9220
9226
  # [1]: http://aws.amazon.com/ec2/nitro/
9221
9227
  #
9228
+ # @option params [Types::ScaleConfig] :scale_config
9229
+ # Configures horizontal or vertical scaling for Memcached clusters,
9230
+ # specifying the scaling percentage and interval.
9231
+ #
9222
9232
  # @return [Types::ModifyCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9223
9233
  #
9224
9234
  # * {Types::ModifyCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
@@ -9304,6 +9314,10 @@ module Aws::ElastiCache
9304
9314
  # },
9305
9315
  # ],
9306
9316
  # ip_discovery: "ipv4", # accepts ipv4, ipv6
9317
+ # scale_config: {
9318
+ # scale_percentage: 1,
9319
+ # scale_interval_minutes: 1,
9320
+ # },
9307
9321
  # })
9308
9322
  #
9309
9323
  # @example Response structure
@@ -9335,6 +9349,8 @@ module Aws::ElastiCache
9335
9349
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9336
9350
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
9337
9351
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
9352
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
9353
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
9338
9354
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
9339
9355
  # resp.cache_cluster.notification_configuration.topic_status #=> String
9340
9356
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -10783,6 +10799,8 @@ module Aws::ElastiCache
10783
10799
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
10784
10800
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
10785
10801
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
10802
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
10803
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
10786
10804
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
10787
10805
  # resp.cache_cluster.notification_configuration.topic_status #=> String
10788
10806
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -11469,7 +11487,7 @@ module Aws::ElastiCache
11469
11487
  tracer: tracer
11470
11488
  )
11471
11489
  context[:gem_name] = 'aws-sdk-elasticache'
11472
- context[:gem_version] = '1.124.0'
11490
+ context[:gem_version] = '1.125.0'
11473
11491
  Seahorse::Client::Request.new(handlers, context)
11474
11492
  end
11475
11493
 
@@ -334,6 +334,7 @@ module Aws::ElastiCache
334
334
  ReshardingStatus = Shapes::StructureShape.new(name: 'ReshardingStatus')
335
335
  RevokeCacheSecurityGroupIngressMessage = Shapes::StructureShape.new(name: 'RevokeCacheSecurityGroupIngressMessage')
336
336
  RevokeCacheSecurityGroupIngressResult = Shapes::StructureShape.new(name: 'RevokeCacheSecurityGroupIngressResult')
337
+ ScaleConfig = Shapes::StructureShape.new(name: 'ScaleConfig')
337
338
  SecurityGroupIdsList = Shapes::ListShape.new(name: 'SecurityGroupIdsList')
338
339
  SecurityGroupMembership = Shapes::StructureShape.new(name: 'SecurityGroupMembership')
339
340
  SecurityGroupMembershipList = Shapes::ListShape.new(name: 'SecurityGroupMembershipList')
@@ -1332,6 +1333,7 @@ module Aws::ElastiCache
1332
1333
  ModifyCacheClusterMessage.add_member(:auth_token_update_strategy, Shapes::ShapeRef.new(shape: AuthTokenUpdateStrategyType, location_name: "AuthTokenUpdateStrategy"))
1333
1334
  ModifyCacheClusterMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
1334
1335
  ModifyCacheClusterMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
1336
+ ModifyCacheClusterMessage.add_member(:scale_config, Shapes::ShapeRef.new(shape: ScaleConfig, location_name: "ScaleConfig"))
1335
1337
  ModifyCacheClusterMessage.struct_class = Types::ModifyCacheClusterMessage
1336
1338
 
1337
1339
  ModifyCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
@@ -1560,6 +1562,7 @@ module Aws::ElastiCache
1560
1562
  PendingModifiedValues.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: PendingLogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
1561
1563
  PendingModifiedValues.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
1562
1564
  PendingModifiedValues.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
1565
+ PendingModifiedValues.add_member(:scale_config, Shapes::ShapeRef.new(shape: ScaleConfig, location_name: "ScaleConfig"))
1563
1566
  PendingModifiedValues.struct_class = Types::PendingModifiedValues
1564
1567
 
1565
1568
  PreferredAvailabilityZoneList.member = Shapes::ShapeRef.new(shape: String, location_name: "PreferredAvailabilityZone")
@@ -1748,6 +1751,10 @@ module Aws::ElastiCache
1748
1751
  RevokeCacheSecurityGroupIngressResult.add_member(:cache_security_group, Shapes::ShapeRef.new(shape: CacheSecurityGroup, location_name: "CacheSecurityGroup"))
1749
1752
  RevokeCacheSecurityGroupIngressResult.struct_class = Types::RevokeCacheSecurityGroupIngressResult
1750
1753
 
1754
+ ScaleConfig.add_member(:scale_percentage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ScalePercentage"))
1755
+ ScaleConfig.add_member(:scale_interval_minutes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ScaleIntervalMinutes"))
1756
+ ScaleConfig.struct_class = Types::ScaleConfig
1757
+
1751
1758
  SecurityGroupIdsList.member = Shapes::ShapeRef.new(shape: String, location_name: "SecurityGroupId")
1752
1759
 
1753
1760
  SecurityGroupMembership.add_member(:security_group_id, Shapes::ShapeRef.new(shape: String, location_name: "SecurityGroupId"))
@@ -6015,8 +6015,8 @@ module Aws::ElastiCache
6015
6015
  # @return [Boolean]
6016
6016
  #
6017
6017
  # @!attribute [rw] engine
6018
- # Modifies the engine listed in a cluster message. The options are
6019
- # redis, memcached or valkey.
6018
+ # The engine type used by the cache cluster. The options are valkey,
6019
+ # memcached or redis.
6020
6020
  # @return [String]
6021
6021
  #
6022
6022
  # @!attribute [rw] engine_version
@@ -6116,6 +6116,11 @@ module Aws::ElastiCache
6116
6116
  # [1]: http://aws.amazon.com/ec2/nitro/
6117
6117
  # @return [String]
6118
6118
  #
6119
+ # @!attribute [rw] scale_config
6120
+ # Configures horizontal or vertical scaling for Memcached clusters,
6121
+ # specifying the scaling percentage and interval.
6122
+ # @return [Types::ScaleConfig]
6123
+ #
6119
6124
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheClusterMessage AWS API Documentation
6120
6125
  #
6121
6126
  class ModifyCacheClusterMessage < Struct.new(
@@ -6140,7 +6145,8 @@ module Aws::ElastiCache
6140
6145
  :auth_token,
6141
6146
  :auth_token_update_strategy,
6142
6147
  :log_delivery_configurations,
6143
- :ip_discovery)
6148
+ :ip_discovery,
6149
+ :scale_config)
6144
6150
  SENSITIVE = []
6145
6151
  include Aws::Structure
6146
6152
  end
@@ -7354,6 +7360,11 @@ module Aws::ElastiCache
7354
7360
  # encryption, with no downtime.
7355
7361
  # @return [String]
7356
7362
  #
7363
+ # @!attribute [rw] scale_config
7364
+ # The scaling configuration changes that are pending for the Memcached
7365
+ # cluster.
7366
+ # @return [Types::ScaleConfig]
7367
+ #
7357
7368
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/PendingModifiedValues AWS API Documentation
7358
7369
  #
7359
7370
  class PendingModifiedValues < Struct.new(
@@ -7364,7 +7375,8 @@ module Aws::ElastiCache
7364
7375
  :auth_token_status,
7365
7376
  :log_delivery_configurations,
7366
7377
  :transit_encryption_enabled,
7367
- :transit_encryption_mode)
7378
+ :transit_encryption_mode,
7379
+ :scale_config)
7368
7380
  SENSITIVE = []
7369
7381
  include Aws::Structure
7370
7382
  end
@@ -8500,6 +8512,28 @@ module Aws::ElastiCache
8500
8512
  include Aws::Structure
8501
8513
  end
8502
8514
 
8515
+ # Configuration settings for horizontal or vertical scaling operations
8516
+ # on Memcached clusters.
8517
+ #
8518
+ # @!attribute [rw] scale_percentage
8519
+ # The percentage by which to scale the Memcached cluster, either
8520
+ # horizontally by adding nodes or vertically by increasing resources.
8521
+ # @return [Integer]
8522
+ #
8523
+ # @!attribute [rw] scale_interval_minutes
8524
+ # The time interval in seconds between scaling operations when
8525
+ # performing gradual scaling for a Memcached cluster.
8526
+ # @return [Integer]
8527
+ #
8528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ScaleConfig AWS API Documentation
8529
+ #
8530
+ class ScaleConfig < Struct.new(
8531
+ :scale_percentage,
8532
+ :scale_interval_minutes)
8533
+ SENSITIVE = []
8534
+ include Aws::Structure
8535
+ end
8536
+
8503
8537
  # Represents a single cache security group and its status.
8504
8538
  #
8505
8539
  # @!attribute [rw] security_group_id
@@ -55,7 +55,7 @@ module Aws::ElastiCache
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticache/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticache/endpoints'
57
57
 
58
- GEM_VERSION = '1.124.0'
58
+ GEM_VERSION = '1.125.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1102,7 +1102,11 @@ module Aws
1102
1102
  enabled: bool?
1103
1103
  },
1104
1104
  ],
1105
- ?ip_discovery: ("ipv4" | "ipv6")
1105
+ ?ip_discovery: ("ipv4" | "ipv6"),
1106
+ ?scale_config: {
1107
+ scale_percentage: ::Integer?,
1108
+ scale_interval_minutes: ::Integer?
1109
+ }
1106
1110
  ) -> _ModifyCacheClusterResponseSuccess
1107
1111
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyCacheClusterResponseSuccess
1108
1112
 
data/sig/types.rbs CHANGED
@@ -1173,6 +1173,7 @@ module Aws::ElastiCache
1173
1173
  attr_accessor auth_token_update_strategy: ("SET" | "ROTATE" | "DELETE")
1174
1174
  attr_accessor log_delivery_configurations: ::Array[Types::LogDeliveryConfigurationRequest]
1175
1175
  attr_accessor ip_discovery: ("ipv4" | "ipv6")
1176
+ attr_accessor scale_config: Types::ScaleConfig
1176
1177
  SENSITIVE: []
1177
1178
  end
1178
1179
 
@@ -1426,6 +1427,7 @@ module Aws::ElastiCache
1426
1427
  attr_accessor log_delivery_configurations: ::Array[Types::PendingLogDeliveryConfiguration]
1427
1428
  attr_accessor transit_encryption_enabled: bool
1428
1429
  attr_accessor transit_encryption_mode: ("preferred" | "required")
1430
+ attr_accessor scale_config: Types::ScaleConfig
1429
1431
  SENSITIVE: []
1430
1432
  end
1431
1433
 
@@ -1641,6 +1643,12 @@ module Aws::ElastiCache
1641
1643
  SENSITIVE: []
1642
1644
  end
1643
1645
 
1646
+ class ScaleConfig
1647
+ attr_accessor scale_percentage: ::Integer
1648
+ attr_accessor scale_interval_minutes: ::Integer
1649
+ SENSITIVE: []
1650
+ end
1651
+
1644
1652
  class SecurityGroupMembership
1645
1653
  attr_accessor security_group_id: ::String
1646
1654
  attr_accessor status: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.124.0
4
+ version: 1.125.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-04 00:00:00.000000000 Z
11
+ date: 2025-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core