aws-sdk-elasticache 1.96.0 → 1.98.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 378cdd9df39c04fe20a0c77ca9613422e73b756feab7a0fc57220305e9abcd71
4
- data.tar.gz: 1e112a5ba8ef5960d346d9ab7e6a3c70620f64b3530e1f32a5ee96c62db840b4
3
+ metadata.gz: 9b73769de8b3d8f4803259d568eee203ece9c605d9cf0fd0cac436e7da6321f1
4
+ data.tar.gz: be0791afd7efa200317a73fa96f610f970c47567a51d80c77e732f7a9fb7ba06
5
5
  SHA512:
6
- metadata.gz: 78bdfd332455ed291105d2670780e5f9e97a09cc9aaaca445114a89f630f9f975fae324d069198c13428f8c4cc3332064fed4a3af1b868f6aa82b402da121ff5
7
- data.tar.gz: 9f3c909c4f518ce6ee93a426b5fa90173d6a260d8ade8eec1a291781506bb0b46c991a65d3c39fe57e4619b51ccd2f9e11bc60c58ad0e78924fde0679d762ef4
6
+ metadata.gz: d7bcd71acb5b24332e424d97dc0cb96471306b92b64812b792030901477cbd83300039c3e14e0be22c51c31991b710bdc30c8129bdd007ef861da7d59bae4ef7
7
+ data.tar.gz: 286f3253efaef2d056ff50d9b96f0b9b68b0e0efe14c95c1c2434e137a4379cd1a202bc0a1d3b2c524d8a0d9229faec0811cef42b15c38b47342c30ce6e3f7ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.97.0 (2024-03-11)
10
+ ------------------
11
+
12
+ * Feature - Revisions to API text that are now to be carried over to SDK text, changing usages of "SFO" in code examples to "us-west-1", and some other typos.
13
+
4
14
  1.96.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.96.0
1
+ 1.98.0
@@ -2048,9 +2048,9 @@ module Aws::ElastiCache
2048
2048
  # or a secondary replication group associated with a Global datastore.
2049
2049
  #
2050
2050
  # A Redis (cluster mode disabled) replication group is a collection of
2051
- # clusters, where one of the clusters is a read/write primary and the
2052
- # others are read-only replicas. Writes to the primary are
2053
- # asynchronously propagated to the replicas.
2051
+ # nodes, where one of the nodes is a read/write primary and the others
2052
+ # are read-only replicas. Writes to the primary are asynchronously
2053
+ # propagated to the replicas.
2054
2054
  #
2055
2055
  # A Redis cluster-mode enabled cluster is comprised of from 1 to 90
2056
2056
  # shards (API/CLI: node groups). Each shard has a primary node and up to
@@ -2397,11 +2397,6 @@ module Aws::ElastiCache
2397
2397
  # Specifies the weekly time range during which maintenance on the
2398
2398
  # cluster is performed. It is specified as a range in the format
2399
2399
  # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
2400
- # window is a 60 minute period. Valid values for `ddd` are:
2401
- #
2402
- # Specifies the weekly time range during which maintenance on the
2403
- # cluster is performed. It is specified as a range in the format
2404
- # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
2405
2400
  # window is a 60 minute period.
2406
2401
  #
2407
2402
  # Valid values for `ddd` are:
@@ -2912,11 +2907,13 @@ module Aws::ElastiCache
2912
2907
  # major_engine_version: "String",
2913
2908
  # cache_usage_limits: {
2914
2909
  # data_storage: {
2915
- # maximum: 1, # required
2910
+ # maximum: 1,
2911
+ # minimum: 1,
2916
2912
  # unit: "GB", # required, accepts GB
2917
2913
  # },
2918
2914
  # ecpu_per_second: {
2919
- # maximum: 1, # required
2915
+ # maximum: 1,
2916
+ # minimum: 1,
2920
2917
  # },
2921
2918
  # },
2922
2919
  # kms_key_id: "String",
@@ -2944,8 +2941,10 @@ module Aws::ElastiCache
2944
2941
  # resp.serverless_cache.major_engine_version #=> String
2945
2942
  # resp.serverless_cache.full_engine_version #=> String
2946
2943
  # resp.serverless_cache.cache_usage_limits.data_storage.maximum #=> Integer
2944
+ # resp.serverless_cache.cache_usage_limits.data_storage.minimum #=> Integer
2947
2945
  # resp.serverless_cache.cache_usage_limits.data_storage.unit #=> String, one of "GB"
2948
2946
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
2947
+ # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
2949
2948
  # resp.serverless_cache.kms_key_id #=> String
2950
2949
  # resp.serverless_cache.security_group_ids #=> Array
2951
2950
  # resp.serverless_cache.security_group_ids[0] #=> String
@@ -4174,8 +4173,10 @@ module Aws::ElastiCache
4174
4173
  # resp.serverless_cache.major_engine_version #=> String
4175
4174
  # resp.serverless_cache.full_engine_version #=> String
4176
4175
  # resp.serverless_cache.cache_usage_limits.data_storage.maximum #=> Integer
4176
+ # resp.serverless_cache.cache_usage_limits.data_storage.minimum #=> Integer
4177
4177
  # resp.serverless_cache.cache_usage_limits.data_storage.unit #=> String, one of "GB"
4178
4178
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
4179
+ # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
4179
4180
  # resp.serverless_cache.kms_key_id #=> String
4180
4181
  # resp.serverless_cache.security_group_ids #=> Array
4181
4182
  # resp.serverless_cache.security_group_ids[0] #=> String
@@ -7746,8 +7747,10 @@ module Aws::ElastiCache
7746
7747
  # resp.serverless_caches[0].major_engine_version #=> String
7747
7748
  # resp.serverless_caches[0].full_engine_version #=> String
7748
7749
  # resp.serverless_caches[0].cache_usage_limits.data_storage.maximum #=> Integer
7750
+ # resp.serverless_caches[0].cache_usage_limits.data_storage.minimum #=> Integer
7749
7751
  # resp.serverless_caches[0].cache_usage_limits.data_storage.unit #=> String, one of "GB"
7750
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
7751
7754
  # resp.serverless_caches[0].kms_key_id #=> String
7752
7755
  # resp.serverless_caches[0].security_group_ids #=> Array
7753
7756
  # resp.serverless_caches[0].security_group_ids[0] #=> String
@@ -10188,11 +10191,13 @@ module Aws::ElastiCache
10188
10191
  # description: "String",
10189
10192
  # cache_usage_limits: {
10190
10193
  # data_storage: {
10191
- # maximum: 1, # required
10194
+ # maximum: 1,
10195
+ # minimum: 1,
10192
10196
  # unit: "GB", # required, accepts GB
10193
10197
  # },
10194
10198
  # ecpu_per_second: {
10195
- # maximum: 1, # required
10199
+ # maximum: 1,
10200
+ # minimum: 1,
10196
10201
  # },
10197
10202
  # },
10198
10203
  # remove_user_group: false,
@@ -10212,8 +10217,10 @@ module Aws::ElastiCache
10212
10217
  # resp.serverless_cache.major_engine_version #=> String
10213
10218
  # resp.serverless_cache.full_engine_version #=> String
10214
10219
  # resp.serverless_cache.cache_usage_limits.data_storage.maximum #=> Integer
10220
+ # resp.serverless_cache.cache_usage_limits.data_storage.minimum #=> Integer
10215
10221
  # resp.serverless_cache.cache_usage_limits.data_storage.unit #=> String, one of "GB"
10216
10222
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
10223
+ # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
10217
10224
  # resp.serverless_cache.kms_key_id #=> String
10218
10225
  # resp.serverless_cache.security_group_ids #=> Array
10219
10226
  # resp.serverless_cache.security_group_ids[0] #=> String
@@ -11300,7 +11307,7 @@ module Aws::ElastiCache
11300
11307
  params: params,
11301
11308
  config: config)
11302
11309
  context[:gem_name] = 'aws-sdk-elasticache'
11303
- context[:gem_version] = '1.96.0'
11310
+ context[:gem_version] = '1.98.0'
11304
11311
  Seahorse::Client::Request.new(handlers, context)
11305
11312
  end
11306
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"))
@@ -2618,11 +2618,6 @@ module Aws::ElastiCache
2618
2618
  # Specifies the weekly time range during which maintenance on the
2619
2619
  # cluster is performed. It is specified as a range in the format
2620
2620
  # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
2621
- # window is a 60 minute period. Valid values for `ddd` are:
2622
- #
2623
- # Specifies the weekly time range during which maintenance on the
2624
- # cluster is performed. It is specified as a range in the format
2625
- # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
2626
2621
  # window is a 60 minute period.
2627
2622
  #
2628
2623
  # Valid values for `ddd` are:
@@ -3189,6 +3184,10 @@ module Aws::ElastiCache
3189
3184
  # The upper limit for data storage the cache is set to use.
3190
3185
  # @return [Integer]
3191
3186
  #
3187
+ # @!attribute [rw] minimum
3188
+ # The lower limit for data storage the cache is set to use.
3189
+ # @return [Integer]
3190
+ #
3192
3191
  # @!attribute [rw] unit
3193
3192
  # The unit that the storage is measured in, in GB.
3194
3193
  # @return [String]
@@ -3197,6 +3196,7 @@ module Aws::ElastiCache
3197
3196
  #
3198
3197
  class DataStorage < Struct.new(
3199
3198
  :maximum,
3199
+ :minimum,
3200
3200
  :unit)
3201
3201
  SENSITIVE = []
3202
3202
  include Aws::Structure
@@ -4956,16 +4956,22 @@ module Aws::ElastiCache
4956
4956
  # consume per second.
4957
4957
  # @return [Integer]
4958
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
+ #
4959
4964
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ECPUPerSecond AWS API Documentation
4960
4965
  #
4961
4966
  class ECPUPerSecond < Struct.new(
4962
- :maximum)
4967
+ :maximum,
4968
+ :minimum)
4963
4969
  SENSITIVE = []
4964
4970
  include Aws::Structure
4965
4971
  end
4966
4972
 
4967
4973
  # Represents the information required for client programs to connect to
4968
- # a cache node.
4974
+ # a cache node. This value is read-only.
4969
4975
  #
4970
4976
  # @!attribute [rw] address
4971
4977
  # The DNS hostname of the cache node.
@@ -6836,7 +6842,8 @@ module Aws::ElastiCache
6836
6842
  # @return [Types::Endpoint]
6837
6843
  #
6838
6844
  # @!attribute [rw] reader_endpoint
6839
- # The endpoint of the replica nodes in this node group (shard).
6845
+ # The endpoint of the replica nodes in this node group (shard). This
6846
+ # value is read-only.
6840
6847
  # @return [Types::Endpoint]
6841
6848
  #
6842
6849
  # @!attribute [rw] slots
@@ -8500,12 +8507,12 @@ module Aws::ElastiCache
8500
8507
  #
8501
8508
  # @!attribute [rw] endpoint
8502
8509
  # Represents the information required for client programs to connect
8503
- # to a cache node.
8510
+ # to a cache node. This value is read-only.
8504
8511
  # @return [Types::Endpoint]
8505
8512
  #
8506
8513
  # @!attribute [rw] reader_endpoint
8507
8514
  # Represents the information required for client programs to connect
8508
- # to a cache node.
8515
+ # to a cache node. This value is read-only.
8509
8516
  # @return [Types::Endpoint]
8510
8517
  #
8511
8518
  # @!attribute [rw] arn
@@ -8518,10 +8525,10 @@ module Aws::ElastiCache
8518
8525
  # @return [String]
8519
8526
  #
8520
8527
  # @!attribute [rw] subnet_ids
8521
- # If no subnet IDs are given and your VPC is in SFO, then ElastiCache
8522
- # will select 2 default subnets across AZs in your VPC. For all other
8523
- # Regions, if no subnet IDs are given then ElastiCache will select 3
8524
- # default subnets across AZs in your default VPC.
8528
+ # If no subnet IDs are given and your VPC is in us-west-1, then
8529
+ # ElastiCache will select 2 default subnets across AZs in your VPC.
8530
+ # For all other Regions, if no subnet IDs are given then ElastiCache
8531
+ # will select 3 default subnets across AZs in your default VPC.
8525
8532
  # @return [Array<String>]
8526
8533
  #
8527
8534
  # @!attribute [rw] snapshot_retention_limit
@@ -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.96.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.96.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-01-26 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