aws-sdk-elasticache 1.37.1 → 1.38.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 +4 -4
- data/lib/aws-sdk-elasticache.rb +3 -1
- data/lib/aws-sdk-elasticache/client.rb +22 -9
- data/lib/aws-sdk-elasticache/client_api.rb +2 -0
- data/lib/aws-sdk-elasticache/customizations.rb +1 -0
- data/lib/aws-sdk-elasticache/errors.rb +2 -0
- data/lib/aws-sdk-elasticache/resource.rb +2 -0
- data/lib/aws-sdk-elasticache/types.rb +28 -8
- data/lib/aws-sdk-elasticache/waiters.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68a773d54dfe4a2219a00d0a038a8f741e7bd42ca7dcaeeb7f584e1aceb3ff9d
|
|
4
|
+
data.tar.gz: 9e0c9d9fc7dd0012ed6f6614382ddbfa19ada888b5c42b61b6ab49e3b0327be8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da0e50efc093a4216b547fa47df94f4b245d9215c597a51f45826377dd1e35874f584b771f8092c9d150edbe32864a389e8a3c2d5e8034ced7baf1e12af8f4ec
|
|
7
|
+
data.tar.gz: 24c5b8871f37c8af24fa61a8caf2c741bad3b959fe5a226fbcada1be9e28d1db7768146b4e48097aa8ca0afc122059f94b706863a0f2a615a4fdbaf040e03984
|
data/lib/aws-sdk-elasticache.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-elasticache/customizations'
|
|
|
46
48
|
# @service
|
|
47
49
|
module Aws::ElastiCache
|
|
48
50
|
|
|
49
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.38.0'
|
|
50
52
|
|
|
51
53
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -911,9 +913,9 @@ module Aws::ElastiCache
|
|
|
911
913
|
# @option params [String] :preferred_availability_zone
|
|
912
914
|
# The EC2 Availability Zone in which the cluster is created.
|
|
913
915
|
#
|
|
914
|
-
# All nodes belonging to this
|
|
915
|
-
#
|
|
916
|
-
#
|
|
916
|
+
# All nodes belonging to this cluster are placed in the preferred
|
|
917
|
+
# Availability Zone. If you want to create your nodes across multiple
|
|
918
|
+
# Availability Zones, use `PreferredAvailabilityZones`.
|
|
917
919
|
#
|
|
918
920
|
# Default: System chosen Availability Zone.
|
|
919
921
|
#
|
|
@@ -1758,9 +1760,6 @@ module Aws::ElastiCache
|
|
|
1758
1760
|
# Specifies whether a read-only replica is automatically promoted to
|
|
1759
1761
|
# read/write primary if the existing primary fails.
|
|
1760
1762
|
#
|
|
1761
|
-
# If `true`, Multi-AZ is enabled for this replication group. If `false`,
|
|
1762
|
-
# Multi-AZ is disabled for this replication group.
|
|
1763
|
-
#
|
|
1764
1763
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
|
1765
1764
|
# enabled) replication groups.
|
|
1766
1765
|
#
|
|
@@ -1776,9 +1775,16 @@ module Aws::ElastiCache
|
|
|
1776
1775
|
# * Redis (cluster mode enabled): T1 node types.
|
|
1777
1776
|
#
|
|
1778
1777
|
# @option params [Boolean] :multi_az_enabled
|
|
1778
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
|
1779
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
|
1780
|
+
# Multi-AZ][1].
|
|
1781
|
+
#
|
|
1782
|
+
#
|
|
1783
|
+
#
|
|
1784
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
|
1779
1785
|
#
|
|
1780
1786
|
# @option params [Integer] :num_cache_clusters
|
|
1781
|
-
# The number of
|
|
1787
|
+
# The number of clusters this replication group initially has.
|
|
1782
1788
|
#
|
|
1783
1789
|
# This parameter is not used if there is more than one node group
|
|
1784
1790
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
|
@@ -6680,7 +6686,7 @@ module Aws::ElastiCache
|
|
|
6680
6686
|
end
|
|
6681
6687
|
|
|
6682
6688
|
# Used to failover the primary region to a selected secondary region.
|
|
6683
|
-
# The selected secondary region will
|
|
6689
|
+
# The selected secondary region will become primary, and all other
|
|
6684
6690
|
# clusters will become secondary.
|
|
6685
6691
|
#
|
|
6686
6692
|
# @option params [required, String] :global_replication_group_id
|
|
@@ -7800,6 +7806,13 @@ module Aws::ElastiCache
|
|
|
7800
7806
|
# * Redis (cluster mode enabled): T1 node types.
|
|
7801
7807
|
#
|
|
7802
7808
|
# @option params [Boolean] :multi_az_enabled
|
|
7809
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
|
7810
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
|
7811
|
+
# Multi-AZ][1].
|
|
7812
|
+
#
|
|
7813
|
+
#
|
|
7814
|
+
#
|
|
7815
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
|
7803
7816
|
#
|
|
7804
7817
|
# @option params [String] :node_group_id
|
|
7805
7818
|
# Deprecated. This parameter is not used.
|
|
@@ -8931,7 +8944,7 @@ module Aws::ElastiCache
|
|
|
8931
8944
|
params: params,
|
|
8932
8945
|
config: config)
|
|
8933
8946
|
context[:gem_name] = 'aws-sdk-elasticache'
|
|
8934
|
-
context[:gem_version] = '1.
|
|
8947
|
+
context[:gem_version] = '1.38.0'
|
|
8935
8948
|
Seahorse::Client::Request.new(handlers, context)
|
|
8936
8949
|
end
|
|
8937
8950
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -1447,9 +1449,9 @@ module Aws::ElastiCache
|
|
|
1447
1449
|
# @!attribute [rw] preferred_availability_zone
|
|
1448
1450
|
# The EC2 Availability Zone in which the cluster is created.
|
|
1449
1451
|
#
|
|
1450
|
-
# All nodes belonging to this
|
|
1451
|
-
#
|
|
1452
|
-
#
|
|
1452
|
+
# All nodes belonging to this cluster are placed in the preferred
|
|
1453
|
+
# Availability Zone. If you want to create your nodes across multiple
|
|
1454
|
+
# Availability Zones, use `PreferredAvailabilityZones`.
|
|
1453
1455
|
#
|
|
1454
1456
|
# Default: System chosen Availability Zone.
|
|
1455
1457
|
# @return [String]
|
|
@@ -2082,9 +2084,6 @@ module Aws::ElastiCache
|
|
|
2082
2084
|
# Specifies whether a read-only replica is automatically promoted to
|
|
2083
2085
|
# read/write primary if the existing primary fails.
|
|
2084
2086
|
#
|
|
2085
|
-
# If `true`, Multi-AZ is enabled for this replication group. If
|
|
2086
|
-
# `false`, Multi-AZ is disabled for this replication group.
|
|
2087
|
-
#
|
|
2088
2087
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
|
2089
2088
|
# enabled) replication groups.
|
|
2090
2089
|
#
|
|
@@ -2101,10 +2100,17 @@ module Aws::ElastiCache
|
|
|
2101
2100
|
# @return [Boolean]
|
|
2102
2101
|
#
|
|
2103
2102
|
# @!attribute [rw] multi_az_enabled
|
|
2103
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
|
2104
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
|
2105
|
+
# Multi-AZ][1].
|
|
2106
|
+
#
|
|
2107
|
+
#
|
|
2108
|
+
#
|
|
2109
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
|
2104
2110
|
# @return [Boolean]
|
|
2105
2111
|
#
|
|
2106
2112
|
# @!attribute [rw] num_cache_clusters
|
|
2107
|
-
# The number of
|
|
2113
|
+
# The number of clusters this replication group initially has.
|
|
2108
2114
|
#
|
|
2109
2115
|
# This parameter is not used if there is more than one node group
|
|
2110
2116
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
|
@@ -5414,6 +5420,13 @@ module Aws::ElastiCache
|
|
|
5414
5420
|
# @return [Boolean]
|
|
5415
5421
|
#
|
|
5416
5422
|
# @!attribute [rw] multi_az_enabled
|
|
5423
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
|
5424
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
|
5425
|
+
# Multi-AZ][1].
|
|
5426
|
+
#
|
|
5427
|
+
#
|
|
5428
|
+
#
|
|
5429
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
|
5417
5430
|
# @return [Boolean]
|
|
5418
5431
|
#
|
|
5419
5432
|
# @!attribute [rw] node_group_id
|
|
@@ -5739,7 +5752,7 @@ module Aws::ElastiCache
|
|
|
5739
5752
|
#
|
|
5740
5753
|
# @!attribute [rw] status
|
|
5741
5754
|
# The current state of this replication group - `creating`,
|
|
5742
|
-
# `available`,
|
|
5755
|
+
# `available`, `modifying`, `deleting`.
|
|
5743
5756
|
# @return [String]
|
|
5744
5757
|
#
|
|
5745
5758
|
# @!attribute [rw] primary_endpoint
|
|
@@ -6483,6 +6496,13 @@ module Aws::ElastiCache
|
|
|
6483
6496
|
# @return [String]
|
|
6484
6497
|
#
|
|
6485
6498
|
# @!attribute [rw] multi_az
|
|
6499
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
|
6500
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
|
6501
|
+
# Multi-AZ][1]
|
|
6502
|
+
#
|
|
6503
|
+
#
|
|
6504
|
+
#
|
|
6505
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
|
6486
6506
|
# @return [String]
|
|
6487
6507
|
#
|
|
6488
6508
|
# @!attribute [rw] configuration_endpoint
|
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.38.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: 2020-06-
|
|
11
|
+
date: 2020-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|