aws-sdk-elasticache 1.79.0 → 1.81.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticache/client.rb +137 -44
- data/lib/aws-sdk-elasticache/client_api.rb +17 -0
- data/lib/aws-sdk-elasticache/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-elasticache/endpoint_provider.rb +117 -0
- data/lib/aws-sdk-elasticache/endpoints.rb +925 -0
- data/lib/aws-sdk-elasticache/plugins/endpoints.rb +198 -0
- data/lib/aws-sdk-elasticache/types.rb +173 -118
- data/lib/aws-sdk-elasticache.rb +5 -1
- metadata +8 -4
@@ -287,7 +287,7 @@ module Aws::ElastiCache
|
|
287
287
|
#
|
288
288
|
# * Current generation:
|
289
289
|
#
|
290
|
-
# **M6g node types
|
290
|
+
# **M6g node types** (available only for Redis engine version
|
291
291
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
292
292
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
293
293
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -305,7 +305,7 @@ module Aws::ElastiCache
|
|
305
305
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
306
306
|
#
|
307
307
|
# **T4g node types** (available only for Redis engine version
|
308
|
-
# 5.0.6 onward and
|
308
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
309
309
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
310
310
|
#
|
311
311
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -334,17 +334,6 @@ module Aws::ElastiCache
|
|
334
334
|
#
|
335
335
|
# **C1 node types:** `cache.c1.xlarge`
|
336
336
|
#
|
337
|
-
# * Memory optimized with data tiering:
|
338
|
-
#
|
339
|
-
# * Current generation:
|
340
|
-
#
|
341
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
342
|
-
# onward).
|
343
|
-
#
|
344
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
345
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
346
|
-
# `cache.r6gd.16xlarge`
|
347
|
-
#
|
348
337
|
# * Memory optimized:
|
349
338
|
#
|
350
339
|
# * Current generation:
|
@@ -572,6 +561,28 @@ module Aws::ElastiCache
|
|
572
561
|
# Returns the destination, format and type of the logs.
|
573
562
|
# @return [Array<Types::LogDeliveryConfiguration>]
|
574
563
|
#
|
564
|
+
# @!attribute [rw] network_type
|
565
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
566
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
567
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
568
|
+
# system][1].
|
569
|
+
#
|
570
|
+
#
|
571
|
+
#
|
572
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
573
|
+
# @return [String]
|
574
|
+
#
|
575
|
+
# @!attribute [rw] ip_discovery
|
576
|
+
# The network type associated with the cluster, either `ipv4` \|
|
577
|
+
# `ipv6`. IPv6 is supported for workloads using Redis engine version
|
578
|
+
# 6.2 onward or Memcached engine version 1.6.6 on all instances built
|
579
|
+
# on the [Nitro system][1].
|
580
|
+
#
|
581
|
+
#
|
582
|
+
#
|
583
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
584
|
+
# @return [String]
|
585
|
+
#
|
575
586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
|
576
587
|
#
|
577
588
|
class CacheCluster < Struct.new(
|
@@ -604,7 +615,9 @@ module Aws::ElastiCache
|
|
604
615
|
:at_rest_encryption_enabled,
|
605
616
|
:arn,
|
606
617
|
:replication_group_log_delivery_enabled,
|
607
|
-
:log_delivery_configurations
|
618
|
+
:log_delivery_configurations,
|
619
|
+
:network_type,
|
620
|
+
:ip_discovery)
|
608
621
|
SENSITIVE = []
|
609
622
|
include Aws::Structure
|
610
623
|
end
|
@@ -713,7 +726,7 @@ module Aws::ElastiCache
|
|
713
726
|
#
|
714
727
|
# * Current generation:
|
715
728
|
#
|
716
|
-
# **M6g node types
|
729
|
+
# **M6g node types** (available only for Redis engine version 5.0.6
|
717
730
|
# onward and for Memcached engine version 1.5.16 onward):
|
718
731
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
719
732
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -731,7 +744,7 @@ module Aws::ElastiCache
|
|
731
744
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
732
745
|
#
|
733
746
|
# **T4g node types** (available only for Redis engine version 5.0.6
|
734
|
-
# onward and
|
747
|
+
# onward and Memcached engine version 1.5.16 onward):
|
735
748
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
736
749
|
#
|
737
750
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -760,16 +773,6 @@ module Aws::ElastiCache
|
|
760
773
|
#
|
761
774
|
# **C1 node types:** `cache.c1.xlarge`
|
762
775
|
#
|
763
|
-
# * Memory optimized with data tiering:
|
764
|
-
#
|
765
|
-
# * Current generation:
|
766
|
-
#
|
767
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
768
|
-
# onward).
|
769
|
-
#
|
770
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
771
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
772
|
-
#
|
773
776
|
# * Memory optimized:
|
774
777
|
#
|
775
778
|
# * Current generation:
|
@@ -1289,6 +1292,16 @@ module Aws::ElastiCache
|
|
1289
1292
|
# The ARN (Amazon Resource Name) of the cache subnet group.
|
1290
1293
|
# @return [String]
|
1291
1294
|
#
|
1295
|
+
# @!attribute [rw] supported_network_types
|
1296
|
+
# Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
1297
|
+
# workloads using Redis engine version 6.2 onward or Memcached engine
|
1298
|
+
# version 1.6.6 on all instances built on the [Nitro system][1].
|
1299
|
+
#
|
1300
|
+
#
|
1301
|
+
#
|
1302
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
1303
|
+
# @return [Array<String>]
|
1304
|
+
#
|
1292
1305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSubnetGroup AWS API Documentation
|
1293
1306
|
#
|
1294
1307
|
class CacheSubnetGroup < Struct.new(
|
@@ -1296,7 +1309,8 @@ module Aws::ElastiCache
|
|
1296
1309
|
:cache_subnet_group_description,
|
1297
1310
|
:vpc_id,
|
1298
1311
|
:subnets,
|
1299
|
-
:arn
|
1312
|
+
:arn,
|
1313
|
+
:supported_network_types)
|
1300
1314
|
SENSITIVE = []
|
1301
1315
|
include Aws::Structure
|
1302
1316
|
end
|
@@ -1627,6 +1641,8 @@ module Aws::ElastiCache
|
|
1627
1641
|
# },
|
1628
1642
|
# ],
|
1629
1643
|
# transit_encryption_enabled: false,
|
1644
|
+
# network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
|
1645
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
1630
1646
|
# }
|
1631
1647
|
#
|
1632
1648
|
# @!attribute [rw] cache_cluster_id
|
@@ -2015,15 +2031,37 @@ module Aws::ElastiCache
|
|
2015
2031
|
#
|
2016
2032
|
# @!attribute [rw] transit_encryption_enabled
|
2017
2033
|
# A flag that enables in-transit encryption when set to true. You
|
2018
|
-
# cannot modify the value of
|
2034
|
+
# cannot modify the value of TransitEncryptionEnabled after the
|
2019
2035
|
# cluster is created. To enable in-transit encryption on a cluster you
|
2020
2036
|
# must set `TransitEncryptionEnabled` to true when you create a
|
2021
2037
|
# cluster.
|
2022
2038
|
#
|
2023
|
-
#
|
2024
|
-
#
|
2039
|
+
# Only available when creating a cache cluster in an Amazon VPC using
|
2040
|
+
# Memcached version 1.6.12 or later.
|
2025
2041
|
# @return [Boolean]
|
2026
2042
|
#
|
2043
|
+
# @!attribute [rw] network_type
|
2044
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
2045
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
2046
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
2047
|
+
# system][1].
|
2048
|
+
#
|
2049
|
+
#
|
2050
|
+
#
|
2051
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2052
|
+
# @return [String]
|
2053
|
+
#
|
2054
|
+
# @!attribute [rw] ip_discovery
|
2055
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
2056
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
2057
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
2058
|
+
# instances built on the [Nitro system][1].
|
2059
|
+
#
|
2060
|
+
#
|
2061
|
+
#
|
2062
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2063
|
+
# @return [String]
|
2064
|
+
#
|
2027
2065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheClusterMessage AWS API Documentation
|
2028
2066
|
#
|
2029
2067
|
class CreateCacheClusterMessage < Struct.new(
|
@@ -2054,7 +2092,9 @@ module Aws::ElastiCache
|
|
2054
2092
|
:preferred_outpost_arn,
|
2055
2093
|
:preferred_outpost_arns,
|
2056
2094
|
:log_delivery_configurations,
|
2057
|
-
:transit_encryption_enabled
|
2095
|
+
:transit_encryption_enabled,
|
2096
|
+
:network_type,
|
2097
|
+
:ip_discovery)
|
2058
2098
|
SENSITIVE = []
|
2059
2099
|
include Aws::Structure
|
2060
2100
|
end
|
@@ -2403,6 +2443,8 @@ module Aws::ElastiCache
|
|
2403
2443
|
# },
|
2404
2444
|
# ],
|
2405
2445
|
# data_tiering_enabled: false,
|
2446
|
+
# network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
|
2447
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
2406
2448
|
# }
|
2407
2449
|
#
|
2408
2450
|
# @!attribute [rw] replication_group_id
|
@@ -2582,17 +2624,6 @@ module Aws::ElastiCache
|
|
2582
2624
|
#
|
2583
2625
|
# **C1 node types:** `cache.c1.xlarge`
|
2584
2626
|
#
|
2585
|
-
# * Memory optimized with data tiering:
|
2586
|
-
#
|
2587
|
-
# * Current generation:
|
2588
|
-
#
|
2589
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
2590
|
-
# onward).
|
2591
|
-
#
|
2592
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
2593
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
2594
|
-
# `cache.r6gd.16xlarge`
|
2595
|
-
#
|
2596
2627
|
# * Memory optimized:
|
2597
2628
|
#
|
2598
2629
|
# * Current generation:
|
@@ -2896,6 +2927,28 @@ module Aws::ElastiCache
|
|
2896
2927
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
2897
2928
|
# @return [Boolean]
|
2898
2929
|
#
|
2930
|
+
# @!attribute [rw] network_type
|
2931
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
2932
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
2933
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
2934
|
+
# system][1].
|
2935
|
+
#
|
2936
|
+
#
|
2937
|
+
#
|
2938
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2939
|
+
# @return [String]
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] ip_discovery
|
2942
|
+
# The network type you choose when creating a replication group,
|
2943
|
+
# either `ipv4` \| `ipv6`. IPv6 is supported for workloads using Redis
|
2944
|
+
# engine version 6.2 onward or Memcached engine version 1.6.6 on all
|
2945
|
+
# instances built on the [Nitro system][1].
|
2946
|
+
#
|
2947
|
+
#
|
2948
|
+
#
|
2949
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2950
|
+
# @return [String]
|
2951
|
+
#
|
2899
2952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
|
2900
2953
|
#
|
2901
2954
|
class CreateReplicationGroupMessage < Struct.new(
|
@@ -2932,7 +2985,9 @@ module Aws::ElastiCache
|
|
2932
2985
|
:kms_key_id,
|
2933
2986
|
:user_group_ids,
|
2934
2987
|
:log_delivery_configurations,
|
2935
|
-
:data_tiering_enabled
|
2988
|
+
:data_tiering_enabled,
|
2989
|
+
:network_type,
|
2990
|
+
:ip_discovery)
|
2936
2991
|
SENSITIVE = []
|
2937
2992
|
include Aws::Structure
|
2938
2993
|
end
|
@@ -4216,7 +4271,7 @@ module Aws::ElastiCache
|
|
4216
4271
|
#
|
4217
4272
|
# * Current generation:
|
4218
4273
|
#
|
4219
|
-
# **M6g node types
|
4274
|
+
# **M6g node types** (available only for Redis engine version
|
4220
4275
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4221
4276
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
4222
4277
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -4234,7 +4289,7 @@ module Aws::ElastiCache
|
|
4234
4289
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4235
4290
|
#
|
4236
4291
|
# **T4g node types** (available only for Redis engine version
|
4237
|
-
# 5.0.6 onward and
|
4292
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
4238
4293
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
4239
4294
|
#
|
4240
4295
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -4263,17 +4318,6 @@ module Aws::ElastiCache
|
|
4263
4318
|
#
|
4264
4319
|
# **C1 node types:** `cache.c1.xlarge`
|
4265
4320
|
#
|
4266
|
-
# * Memory optimized with data tiering:
|
4267
|
-
#
|
4268
|
-
# * Current generation:
|
4269
|
-
#
|
4270
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
4271
|
-
# onward).
|
4272
|
-
#
|
4273
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
4274
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
4275
|
-
# `cache.r6gd.16xlarge`
|
4276
|
-
#
|
4277
4321
|
# * Memory optimized:
|
4278
4322
|
#
|
4279
4323
|
# * Current generation:
|
@@ -4416,8 +4460,8 @@ module Aws::ElastiCache
|
|
4416
4460
|
#
|
4417
4461
|
# * Current generation:
|
4418
4462
|
#
|
4419
|
-
# **M6g node types
|
4420
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
4463
|
+
# **M6g node types** (available only for Redis engine version
|
4464
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4421
4465
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
4422
4466
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
4423
4467
|
# `cache.m6g.16xlarge`
|
@@ -4434,7 +4478,7 @@ module Aws::ElastiCache
|
|
4434
4478
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4435
4479
|
#
|
4436
4480
|
# **T4g node types** (available only for Redis engine version
|
4437
|
-
# 5.0.6 onward and
|
4481
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
4438
4482
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
4439
4483
|
#
|
4440
4484
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -4463,17 +4507,6 @@ module Aws::ElastiCache
|
|
4463
4507
|
#
|
4464
4508
|
# **C1 node types:** `cache.c1.xlarge`
|
4465
4509
|
#
|
4466
|
-
# * Memory optimized with data tiering:
|
4467
|
-
#
|
4468
|
-
# * Current generation:
|
4469
|
-
#
|
4470
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
4471
|
-
# onward).
|
4472
|
-
#
|
4473
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
4474
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
4475
|
-
# `cache.r6gd.16xlarge`
|
4476
|
-
#
|
4477
4510
|
# * Memory optimized:
|
4478
4511
|
#
|
4479
4512
|
# * Current generation:
|
@@ -5920,6 +5953,7 @@ module Aws::ElastiCache
|
|
5920
5953
|
# enabled: false,
|
5921
5954
|
# },
|
5922
5955
|
# ],
|
5956
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
5923
5957
|
# }
|
5924
5958
|
#
|
5925
5959
|
# @!attribute [rw] cache_cluster_id
|
@@ -6255,6 +6289,17 @@ module Aws::ElastiCache
|
|
6255
6289
|
# Specifies the destination, format and type of the logs.
|
6256
6290
|
# @return [Array<Types::LogDeliveryConfigurationRequest>]
|
6257
6291
|
#
|
6292
|
+
# @!attribute [rw] ip_discovery
|
6293
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
6294
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
6295
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
6296
|
+
# instances built on the [Nitro system][1].
|
6297
|
+
#
|
6298
|
+
#
|
6299
|
+
#
|
6300
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
6301
|
+
# @return [String]
|
6302
|
+
#
|
6258
6303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheClusterMessage AWS API Documentation
|
6259
6304
|
#
|
6260
6305
|
class ModifyCacheClusterMessage < Struct.new(
|
@@ -6277,7 +6322,8 @@ module Aws::ElastiCache
|
|
6277
6322
|
:cache_node_type,
|
6278
6323
|
:auth_token,
|
6279
6324
|
:auth_token_update_strategy,
|
6280
|
-
:log_delivery_configurations
|
6325
|
+
:log_delivery_configurations,
|
6326
|
+
:ip_discovery)
|
6281
6327
|
SENSITIVE = []
|
6282
6328
|
include Aws::Structure
|
6283
6329
|
end
|
@@ -6514,6 +6560,7 @@ module Aws::ElastiCache
|
|
6514
6560
|
# enabled: false,
|
6515
6561
|
# },
|
6516
6562
|
# ],
|
6563
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
6517
6564
|
# }
|
6518
6565
|
#
|
6519
6566
|
# @!attribute [rw] replication_group_id
|
@@ -6742,6 +6789,17 @@ module Aws::ElastiCache
|
|
6742
6789
|
# Specifies the destination, format and type of the logs.
|
6743
6790
|
# @return [Array<Types::LogDeliveryConfigurationRequest>]
|
6744
6791
|
#
|
6792
|
+
# @!attribute [rw] ip_discovery
|
6793
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
6794
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
6795
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
6796
|
+
# instances built on the [Nitro system][1].
|
6797
|
+
#
|
6798
|
+
#
|
6799
|
+
#
|
6800
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
6801
|
+
# @return [String]
|
6802
|
+
#
|
6745
6803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
|
6746
6804
|
#
|
6747
6805
|
class ModifyReplicationGroupMessage < Struct.new(
|
@@ -6769,7 +6827,8 @@ module Aws::ElastiCache
|
|
6769
6827
|
:user_group_ids_to_add,
|
6770
6828
|
:user_group_ids_to_remove,
|
6771
6829
|
:remove_user_groups,
|
6772
|
-
:log_delivery_configurations
|
6830
|
+
:log_delivery_configurations,
|
6831
|
+
:ip_discovery)
|
6773
6832
|
SENSITIVE = []
|
6774
6833
|
include Aws::Structure
|
6775
6834
|
end
|
@@ -7926,12 +7985,34 @@ module Aws::ElastiCache
|
|
7926
7985
|
# @return [String]
|
7927
7986
|
#
|
7928
7987
|
# @!attribute [rw] auto_minor_version_upgrade
|
7929
|
-
#
|
7988
|
+
# If you are running Redis engine version 6.0 or later, set this
|
7930
7989
|
# parameter to yes if you want to opt-in to the next auto minor
|
7931
7990
|
# version upgrade campaign. This parameter is disabled for previous
|
7932
|
-
# versions.
|
7991
|
+
# versions.
|
7933
7992
|
# @return [Boolean]
|
7934
7993
|
#
|
7994
|
+
# @!attribute [rw] network_type
|
7995
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
7996
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
7997
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
7998
|
+
# system][1].
|
7999
|
+
#
|
8000
|
+
#
|
8001
|
+
#
|
8002
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
8003
|
+
# @return [String]
|
8004
|
+
#
|
8005
|
+
# @!attribute [rw] ip_discovery
|
8006
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
8007
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
8008
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
8009
|
+
# instances built on the [Nitro system][1].
|
8010
|
+
#
|
8011
|
+
#
|
8012
|
+
#
|
8013
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
8014
|
+
# @return [String]
|
8015
|
+
#
|
7935
8016
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
7936
8017
|
#
|
7937
8018
|
class ReplicationGroup < Struct.new(
|
@@ -7961,7 +8042,9 @@ module Aws::ElastiCache
|
|
7961
8042
|
:log_delivery_configurations,
|
7962
8043
|
:replication_group_create_time,
|
7963
8044
|
:data_tiering,
|
7964
|
-
:auto_minor_version_upgrade
|
8045
|
+
:auto_minor_version_upgrade,
|
8046
|
+
:network_type,
|
8047
|
+
:ip_discovery)
|
7965
8048
|
SENSITIVE = []
|
7966
8049
|
include Aws::Structure
|
7967
8050
|
end
|
@@ -8076,7 +8159,7 @@ module Aws::ElastiCache
|
|
8076
8159
|
#
|
8077
8160
|
# * Current generation:
|
8078
8161
|
#
|
8079
|
-
# **M6g node types
|
8162
|
+
# **M6g node types** (available only for Redis engine version
|
8080
8163
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8081
8164
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8082
8165
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -8123,17 +8206,6 @@ module Aws::ElastiCache
|
|
8123
8206
|
#
|
8124
8207
|
# **C1 node types:** `cache.c1.xlarge`
|
8125
8208
|
#
|
8126
|
-
# * Memory optimized with data tiering:
|
8127
|
-
#
|
8128
|
-
# * Current generation:
|
8129
|
-
#
|
8130
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
8131
|
-
# onward).
|
8132
|
-
#
|
8133
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
8134
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
8135
|
-
# `cache.r6gd.16xlarge`
|
8136
|
-
#
|
8137
8209
|
# * Memory optimized:
|
8138
8210
|
#
|
8139
8211
|
# * Current generation:
|
@@ -8306,7 +8378,7 @@ module Aws::ElastiCache
|
|
8306
8378
|
#
|
8307
8379
|
# * Current generation:
|
8308
8380
|
#
|
8309
|
-
# **M6g node types
|
8381
|
+
# **M6g node types** (available only for Redis engine version
|
8310
8382
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8311
8383
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8312
8384
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -8353,17 +8425,6 @@ module Aws::ElastiCache
|
|
8353
8425
|
#
|
8354
8426
|
# **C1 node types:** `cache.c1.xlarge`
|
8355
8427
|
#
|
8356
|
-
# * Memory optimized with data tiering:
|
8357
|
-
#
|
8358
|
-
# * Current generation:
|
8359
|
-
#
|
8360
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
8361
|
-
# onward).
|
8362
|
-
#
|
8363
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
8364
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
8365
|
-
# `cache.r6gd.16xlarge`
|
8366
|
-
#
|
8367
8428
|
# * Memory optimized:
|
8368
8429
|
#
|
8369
8430
|
# * Current generation:
|
@@ -8814,8 +8875,7 @@ module Aws::ElastiCache
|
|
8814
8875
|
# * Current generation:
|
8815
8876
|
#
|
8816
8877
|
# **M6g node types** (available only for Redis engine version
|
8817
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
8818
|
-
#
|
8878
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8819
8879
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8820
8880
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
8821
8881
|
# `cache.m6g.16xlarge`
|
@@ -8833,7 +8893,6 @@ module Aws::ElastiCache
|
|
8833
8893
|
#
|
8834
8894
|
# **T4g node types** (available only for Redis engine version
|
8835
8895
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
8836
|
-
#
|
8837
8896
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
8838
8897
|
#
|
8839
8898
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -8862,17 +8921,6 @@ module Aws::ElastiCache
|
|
8862
8921
|
#
|
8863
8922
|
# **C1 node types:** `cache.c1.xlarge`
|
8864
8923
|
#
|
8865
|
-
# * Memory optimized with data tiering:
|
8866
|
-
#
|
8867
|
-
# * Current generation:
|
8868
|
-
#
|
8869
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
8870
|
-
# onward).
|
8871
|
-
#
|
8872
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
8873
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
8874
|
-
# `cache.r6gd.16xlarge`
|
8875
|
-
#
|
8876
8924
|
# * Memory optimized:
|
8877
8925
|
#
|
8878
8926
|
# * Current generation:
|
@@ -8888,10 +8936,6 @@ module Aws::ElastiCache
|
|
8888
8936
|
#
|
8889
8937
|
# </note>
|
8890
8938
|
#
|
8891
|
-
# <note markdown="1"> For region availability, see [Supported Node Types][1]
|
8892
|
-
#
|
8893
|
-
# </note>
|
8894
|
-
#
|
8895
8939
|
# **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
|
8896
8940
|
# `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
|
8897
8941
|
# `cache.r5.24xlarge`
|
@@ -9195,12 +9239,23 @@ module Aws::ElastiCache
|
|
9195
9239
|
# The outpost ARN of the subnet.
|
9196
9240
|
# @return [Types::SubnetOutpost]
|
9197
9241
|
#
|
9242
|
+
# @!attribute [rw] supported_network_types
|
9243
|
+
# Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
9244
|
+
# workloads using Redis engine version 6.2 onward or Memcached engine
|
9245
|
+
# version 1.6.6 on all instances built on the [Nitro system][1].
|
9246
|
+
#
|
9247
|
+
#
|
9248
|
+
#
|
9249
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
9250
|
+
# @return [Array<String>]
|
9251
|
+
#
|
9198
9252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Subnet AWS API Documentation
|
9199
9253
|
#
|
9200
9254
|
class Subnet < Struct.new(
|
9201
9255
|
:subnet_identifier,
|
9202
9256
|
:subnet_availability_zone,
|
9203
|
-
:subnet_outpost
|
9257
|
+
:subnet_outpost,
|
9258
|
+
:supported_network_types)
|
9204
9259
|
SENSITIVE = []
|
9205
9260
|
include Aws::Structure
|
9206
9261
|
end
|
data/lib/aws-sdk-elasticache.rb
CHANGED
@@ -13,10 +13,14 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-elasticache/types'
|
15
15
|
require_relative 'aws-sdk-elasticache/client_api'
|
16
|
+
require_relative 'aws-sdk-elasticache/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-elasticache/client'
|
17
18
|
require_relative 'aws-sdk-elasticache/errors'
|
18
19
|
require_relative 'aws-sdk-elasticache/waiters'
|
19
20
|
require_relative 'aws-sdk-elasticache/resource'
|
21
|
+
require_relative 'aws-sdk-elasticache/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-elasticache/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-elasticache/endpoints'
|
20
24
|
require_relative 'aws-sdk-elasticache/customizations'
|
21
25
|
|
22
26
|
# This module provides support for Amazon ElastiCache. This module is available in the
|
@@ -49,6 +53,6 @@ require_relative 'aws-sdk-elasticache/customizations'
|
|
49
53
|
# @!group service
|
50
54
|
module Aws::ElastiCache
|
51
55
|
|
52
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.81.0'
|
53
57
|
|
54
58
|
end
|
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.
|
4
|
+
version: 1.81.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: 2022-07
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-elasticache/client.rb
|
60
60
|
- lib/aws-sdk-elasticache/client_api.rb
|
61
61
|
- lib/aws-sdk-elasticache/customizations.rb
|
62
|
+
- lib/aws-sdk-elasticache/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-elasticache/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-elasticache/endpoints.rb
|
62
65
|
- lib/aws-sdk-elasticache/errors.rb
|
66
|
+
- lib/aws-sdk-elasticache/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-elasticache/resource.rb
|
64
68
|
- lib/aws-sdk-elasticache/types.rb
|
65
69
|
- lib/aws-sdk-elasticache/waiters.rb
|