aws-sdk-elasticache 1.97.0 → 1.98.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: 0cd614dedf2ee360c31241653f0ffc5c5574113009feb460a234be5b0eed4f1e
4
- data.tar.gz: e9fd4f0fb90c5d6e73077cc70a2be8f3933448b262e89204ccfdb001e16defc4
3
+ metadata.gz: 9b73769de8b3d8f4803259d568eee203ece9c605d9cf0fd0cac436e7da6321f1
4
+ data.tar.gz: be0791afd7efa200317a73fa96f610f970c47567a51d80c77e732f7a9fb7ba06
5
5
  SHA512:
6
- metadata.gz: f755da91b3e2cb0dc06de97f45bda53458b8923bbe8ff3160b831c3647d70ab1f481a50bd7caf96ec3053f866f730635d66bcffebe705d5a4bae6eb7a3d48def
7
- data.tar.gz: 73eeb5cb5b650529b8566e3850f7097d88b04d739523b4999d47eed3e23743763d881b7c35b4ef7d01f88e5bf9f0c633529ca5b02ddb76d36676fc4becc1fe0f
6
+ metadata.gz: d7bcd71acb5b24332e424d97dc0cb96471306b92b64812b792030901477cbd83300039c3e14e0be22c51c31991b710bdc30c8129bdd007ef861da7d59bae4ef7
7
+ data.tar.gz: 286f3253efaef2d056ff50d9b96f0b9b68b0e0efe14c95c1c2434e137a4379cd1a202bc0a1d3b2c524d8a0d9229faec0811cef42b15c38b47342c30ce6e3f7ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.98.0 (2024-03-27)
5
+ ------------------
6
+
7
+ * Feature - Added minimum capacity to Amazon ElastiCache Serverless. This feature allows customer to ensure minimum capacity even without current load
8
+
4
9
  1.97.0 (2024-03-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.97.0
1
+ 1.98.0
@@ -2907,11 +2907,13 @@ module Aws::ElastiCache
2907
2907
  # major_engine_version: "String",
2908
2908
  # cache_usage_limits: {
2909
2909
  # data_storage: {
2910
- # maximum: 1, # required
2910
+ # maximum: 1,
2911
+ # minimum: 1,
2911
2912
  # unit: "GB", # required, accepts GB
2912
2913
  # },
2913
2914
  # ecpu_per_second: {
2914
- # maximum: 1, # required
2915
+ # maximum: 1,
2916
+ # minimum: 1,
2915
2917
  # },
2916
2918
  # },
2917
2919
  # kms_key_id: "String",
@@ -2939,8 +2941,10 @@ module Aws::ElastiCache
2939
2941
  # resp.serverless_cache.major_engine_version #=> String
2940
2942
  # resp.serverless_cache.full_engine_version #=> String
2941
2943
  # resp.serverless_cache.cache_usage_limits.data_storage.maximum #=> Integer
2944
+ # resp.serverless_cache.cache_usage_limits.data_storage.minimum #=> Integer
2942
2945
  # resp.serverless_cache.cache_usage_limits.data_storage.unit #=> String, one of "GB"
2943
2946
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
2947
+ # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
2944
2948
  # resp.serverless_cache.kms_key_id #=> String
2945
2949
  # resp.serverless_cache.security_group_ids #=> Array
2946
2950
  # resp.serverless_cache.security_group_ids[0] #=> String
@@ -4169,8 +4173,10 @@ module Aws::ElastiCache
4169
4173
  # resp.serverless_cache.major_engine_version #=> String
4170
4174
  # resp.serverless_cache.full_engine_version #=> String
4171
4175
  # resp.serverless_cache.cache_usage_limits.data_storage.maximum #=> Integer
4176
+ # resp.serverless_cache.cache_usage_limits.data_storage.minimum #=> Integer
4172
4177
  # resp.serverless_cache.cache_usage_limits.data_storage.unit #=> String, one of "GB"
4173
4178
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
4179
+ # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
4174
4180
  # resp.serverless_cache.kms_key_id #=> String
4175
4181
  # resp.serverless_cache.security_group_ids #=> Array
4176
4182
  # resp.serverless_cache.security_group_ids[0] #=> String
@@ -7741,8 +7747,10 @@ module Aws::ElastiCache
7741
7747
  # resp.serverless_caches[0].major_engine_version #=> String
7742
7748
  # resp.serverless_caches[0].full_engine_version #=> String
7743
7749
  # resp.serverless_caches[0].cache_usage_limits.data_storage.maximum #=> Integer
7750
+ # resp.serverless_caches[0].cache_usage_limits.data_storage.minimum #=> Integer
7744
7751
  # resp.serverless_caches[0].cache_usage_limits.data_storage.unit #=> String, one of "GB"
7745
7752
  # resp.serverless_caches[0].cache_usage_limits.ecpu_per_second.maximum #=> Integer
7753
+ # resp.serverless_caches[0].cache_usage_limits.ecpu_per_second.minimum #=> Integer
7746
7754
  # resp.serverless_caches[0].kms_key_id #=> String
7747
7755
  # resp.serverless_caches[0].security_group_ids #=> Array
7748
7756
  # resp.serverless_caches[0].security_group_ids[0] #=> String
@@ -10183,11 +10191,13 @@ module Aws::ElastiCache
10183
10191
  # description: "String",
10184
10192
  # cache_usage_limits: {
10185
10193
  # data_storage: {
10186
- # maximum: 1, # required
10194
+ # maximum: 1,
10195
+ # minimum: 1,
10187
10196
  # unit: "GB", # required, accepts GB
10188
10197
  # },
10189
10198
  # ecpu_per_second: {
10190
- # maximum: 1, # required
10199
+ # maximum: 1,
10200
+ # minimum: 1,
10191
10201
  # },
10192
10202
  # },
10193
10203
  # remove_user_group: false,
@@ -10207,8 +10217,10 @@ module Aws::ElastiCache
10207
10217
  # resp.serverless_cache.major_engine_version #=> String
10208
10218
  # resp.serverless_cache.full_engine_version #=> String
10209
10219
  # resp.serverless_cache.cache_usage_limits.data_storage.maximum #=> Integer
10220
+ # resp.serverless_cache.cache_usage_limits.data_storage.minimum #=> Integer
10210
10221
  # resp.serverless_cache.cache_usage_limits.data_storage.unit #=> String, one of "GB"
10211
10222
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
10223
+ # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
10212
10224
  # resp.serverless_cache.kms_key_id #=> String
10213
10225
  # resp.serverless_cache.security_group_ids #=> Array
10214
10226
  # resp.serverless_cache.security_group_ids[0] #=> String
@@ -11295,7 +11307,7 @@ module Aws::ElastiCache
11295
11307
  params: params,
11296
11308
  config: config)
11297
11309
  context[:gem_name] = 'aws-sdk-elasticache'
11298
- context[:gem_version] = '1.97.0'
11310
+ context[:gem_version] = '1.98.0'
11299
11311
  Seahorse::Client::Request.new(handlers, context)
11300
11312
  end
11301
11313
 
@@ -867,7 +867,8 @@ module Aws::ElastiCache
867
867
 
868
868
  CustomerNodeEndpointList.member = Shapes::ShapeRef.new(shape: CustomerNodeEndpoint)
869
869
 
870
- DataStorage.add_member(:maximum, Shapes::ShapeRef.new(shape: IntegerOptional, required: true, location_name: "Maximum"))
870
+ DataStorage.add_member(:maximum, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Maximum"))
871
+ DataStorage.add_member(:minimum, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Minimum"))
871
872
  DataStorage.add_member(:unit, Shapes::ShapeRef.new(shape: DataStorageUnit, required: true, location_name: "Unit"))
872
873
  DataStorage.struct_class = Types::DataStorage
873
874
 
@@ -1130,7 +1131,8 @@ module Aws::ElastiCache
1130
1131
 
1131
1132
  EC2SecurityGroupList.member = Shapes::ShapeRef.new(shape: EC2SecurityGroup, location_name: "EC2SecurityGroup")
1132
1133
 
1133
- ECPUPerSecond.add_member(:maximum, Shapes::ShapeRef.new(shape: IntegerOptional, required: true, location_name: "Maximum"))
1134
+ ECPUPerSecond.add_member(:maximum, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Maximum"))
1135
+ ECPUPerSecond.add_member(:minimum, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Minimum"))
1134
1136
  ECPUPerSecond.struct_class = Types::ECPUPerSecond
1135
1137
 
1136
1138
  Endpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
@@ -3184,6 +3184,10 @@ module Aws::ElastiCache
3184
3184
  # The upper limit for data storage the cache is set to use.
3185
3185
  # @return [Integer]
3186
3186
  #
3187
+ # @!attribute [rw] minimum
3188
+ # The lower limit for data storage the cache is set to use.
3189
+ # @return [Integer]
3190
+ #
3187
3191
  # @!attribute [rw] unit
3188
3192
  # The unit that the storage is measured in, in GB.
3189
3193
  # @return [String]
@@ -3192,6 +3196,7 @@ module Aws::ElastiCache
3192
3196
  #
3193
3197
  class DataStorage < Struct.new(
3194
3198
  :maximum,
3199
+ :minimum,
3195
3200
  :unit)
3196
3201
  SENSITIVE = []
3197
3202
  include Aws::Structure
@@ -4951,10 +4956,16 @@ module Aws::ElastiCache
4951
4956
  # consume per second.
4952
4957
  # @return [Integer]
4953
4958
  #
4959
+ # @!attribute [rw] minimum
4960
+ # The configuration for the minimum number of ECPUs the cache should
4961
+ # be able consume per second.
4962
+ # @return [Integer]
4963
+ #
4954
4964
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ECPUPerSecond AWS API Documentation
4955
4965
  #
4956
4966
  class ECPUPerSecond < Struct.new(
4957
- :maximum)
4967
+ :maximum,
4968
+ :minimum)
4958
4969
  SENSITIVE = []
4959
4970
  include Aws::Structure
4960
4971
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticache/customizations'
53
53
  # @!group service
54
54
  module Aws::ElastiCache
55
55
 
56
- GEM_VERSION = '1.97.0'
56
+ GEM_VERSION = '1.98.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -388,11 +388,13 @@ module Aws
388
388
  ?major_engine_version: ::String,
389
389
  ?cache_usage_limits: {
390
390
  data_storage: {
391
- maximum: ::Integer,
391
+ maximum: ::Integer?,
392
+ minimum: ::Integer?,
392
393
  unit: ("GB")
393
394
  }?,
394
395
  ecpu_per_second: {
395
- maximum: ::Integer
396
+ maximum: ::Integer?,
397
+ minimum: ::Integer?
396
398
  }?
397
399
  },
398
400
  ?kms_key_id: ::String,
@@ -1225,11 +1227,13 @@ module Aws
1225
1227
  ?description: ::String,
1226
1228
  ?cache_usage_limits: {
1227
1229
  data_storage: {
1228
- maximum: ::Integer,
1230
+ maximum: ::Integer?,
1231
+ minimum: ::Integer?,
1229
1232
  unit: ("GB")
1230
1233
  }?,
1231
1234
  ecpu_per_second: {
1232
- maximum: ::Integer
1235
+ maximum: ::Integer?,
1236
+ minimum: ::Integer?
1233
1237
  }?
1234
1238
  },
1235
1239
  ?remove_user_group: bool,
data/sig/types.rbs CHANGED
@@ -557,6 +557,7 @@ module Aws::ElastiCache
557
557
 
558
558
  class DataStorage
559
559
  attr_accessor maximum: ::Integer
560
+ attr_accessor minimum: ::Integer
560
561
  attr_accessor unit: ("GB")
561
562
  SENSITIVE: []
562
563
  end
@@ -925,6 +926,7 @@ module Aws::ElastiCache
925
926
 
926
927
  class ECPUPerSecond
927
928
  attr_accessor maximum: ::Integer
929
+ attr_accessor minimum: ::Integer
928
930
  SENSITIVE: []
929
931
  end
930
932
 
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.97.0
4
+ version: 1.98.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: 2024-03-11 00:00:00.000000000 Z
11
+ date: 2024-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core