aws-sdk-elasticache 1.78.0 → 1.80.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 +66 -15
- data/lib/aws-sdk-elasticache/client_api.rb +1 -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 +90 -28
- data/lib/aws-sdk-elasticache.rb +5 -1
- metadata +8 -4
@@ -0,0 +1,198 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
module Aws::ElastiCache
|
12
|
+
module Plugins
|
13
|
+
class Endpoints < Seahorse::Client::Plugin
|
14
|
+
option(
|
15
|
+
:endpoint_provider,
|
16
|
+
doc_type: 'Aws::ElastiCache::EndpointProvider',
|
17
|
+
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
|
+
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
|
+
'where `parameters` is a Struct similar to '\
|
20
|
+
'`Aws::ElastiCache::EndpointParameters`'
|
21
|
+
) do |cfg|
|
22
|
+
Aws::ElastiCache::EndpointProvider.new
|
23
|
+
end
|
24
|
+
|
25
|
+
# @api private
|
26
|
+
class Handler < Seahorse::Client::Handler
|
27
|
+
def call(context)
|
28
|
+
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
|
+
unless context[:discovered_endpoint]
|
30
|
+
params = parameters_for_operation(context)
|
31
|
+
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
|
+
|
33
|
+
context.http_request.endpoint = endpoint.url
|
34
|
+
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
end
|
36
|
+
|
37
|
+
context[:endpoint_params] = params
|
38
|
+
context[:auth_scheme] =
|
39
|
+
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
|
+
|
41
|
+
@handler.call(context)
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def apply_endpoint_headers(context, headers)
|
47
|
+
headers.each do |key, values|
|
48
|
+
value = values
|
49
|
+
.compact
|
50
|
+
.map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
|
51
|
+
.join(',')
|
52
|
+
|
53
|
+
context.http_request.headers[key] = value
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def parameters_for_operation(context)
|
58
|
+
case context.operation_name
|
59
|
+
when :add_tags_to_resource
|
60
|
+
Aws::ElastiCache::Endpoints::AddTagsToResource.build(context)
|
61
|
+
when :authorize_cache_security_group_ingress
|
62
|
+
Aws::ElastiCache::Endpoints::AuthorizeCacheSecurityGroupIngress.build(context)
|
63
|
+
when :batch_apply_update_action
|
64
|
+
Aws::ElastiCache::Endpoints::BatchApplyUpdateAction.build(context)
|
65
|
+
when :batch_stop_update_action
|
66
|
+
Aws::ElastiCache::Endpoints::BatchStopUpdateAction.build(context)
|
67
|
+
when :complete_migration
|
68
|
+
Aws::ElastiCache::Endpoints::CompleteMigration.build(context)
|
69
|
+
when :copy_snapshot
|
70
|
+
Aws::ElastiCache::Endpoints::CopySnapshot.build(context)
|
71
|
+
when :create_cache_cluster
|
72
|
+
Aws::ElastiCache::Endpoints::CreateCacheCluster.build(context)
|
73
|
+
when :create_cache_parameter_group
|
74
|
+
Aws::ElastiCache::Endpoints::CreateCacheParameterGroup.build(context)
|
75
|
+
when :create_cache_security_group
|
76
|
+
Aws::ElastiCache::Endpoints::CreateCacheSecurityGroup.build(context)
|
77
|
+
when :create_cache_subnet_group
|
78
|
+
Aws::ElastiCache::Endpoints::CreateCacheSubnetGroup.build(context)
|
79
|
+
when :create_global_replication_group
|
80
|
+
Aws::ElastiCache::Endpoints::CreateGlobalReplicationGroup.build(context)
|
81
|
+
when :create_replication_group
|
82
|
+
Aws::ElastiCache::Endpoints::CreateReplicationGroup.build(context)
|
83
|
+
when :create_snapshot
|
84
|
+
Aws::ElastiCache::Endpoints::CreateSnapshot.build(context)
|
85
|
+
when :create_user
|
86
|
+
Aws::ElastiCache::Endpoints::CreateUser.build(context)
|
87
|
+
when :create_user_group
|
88
|
+
Aws::ElastiCache::Endpoints::CreateUserGroup.build(context)
|
89
|
+
when :decrease_node_groups_in_global_replication_group
|
90
|
+
Aws::ElastiCache::Endpoints::DecreaseNodeGroupsInGlobalReplicationGroup.build(context)
|
91
|
+
when :decrease_replica_count
|
92
|
+
Aws::ElastiCache::Endpoints::DecreaseReplicaCount.build(context)
|
93
|
+
when :delete_cache_cluster
|
94
|
+
Aws::ElastiCache::Endpoints::DeleteCacheCluster.build(context)
|
95
|
+
when :delete_cache_parameter_group
|
96
|
+
Aws::ElastiCache::Endpoints::DeleteCacheParameterGroup.build(context)
|
97
|
+
when :delete_cache_security_group
|
98
|
+
Aws::ElastiCache::Endpoints::DeleteCacheSecurityGroup.build(context)
|
99
|
+
when :delete_cache_subnet_group
|
100
|
+
Aws::ElastiCache::Endpoints::DeleteCacheSubnetGroup.build(context)
|
101
|
+
when :delete_global_replication_group
|
102
|
+
Aws::ElastiCache::Endpoints::DeleteGlobalReplicationGroup.build(context)
|
103
|
+
when :delete_replication_group
|
104
|
+
Aws::ElastiCache::Endpoints::DeleteReplicationGroup.build(context)
|
105
|
+
when :delete_snapshot
|
106
|
+
Aws::ElastiCache::Endpoints::DeleteSnapshot.build(context)
|
107
|
+
when :delete_user
|
108
|
+
Aws::ElastiCache::Endpoints::DeleteUser.build(context)
|
109
|
+
when :delete_user_group
|
110
|
+
Aws::ElastiCache::Endpoints::DeleteUserGroup.build(context)
|
111
|
+
when :describe_cache_clusters
|
112
|
+
Aws::ElastiCache::Endpoints::DescribeCacheClusters.build(context)
|
113
|
+
when :describe_cache_engine_versions
|
114
|
+
Aws::ElastiCache::Endpoints::DescribeCacheEngineVersions.build(context)
|
115
|
+
when :describe_cache_parameter_groups
|
116
|
+
Aws::ElastiCache::Endpoints::DescribeCacheParameterGroups.build(context)
|
117
|
+
when :describe_cache_parameters
|
118
|
+
Aws::ElastiCache::Endpoints::DescribeCacheParameters.build(context)
|
119
|
+
when :describe_cache_security_groups
|
120
|
+
Aws::ElastiCache::Endpoints::DescribeCacheSecurityGroups.build(context)
|
121
|
+
when :describe_cache_subnet_groups
|
122
|
+
Aws::ElastiCache::Endpoints::DescribeCacheSubnetGroups.build(context)
|
123
|
+
when :describe_engine_default_parameters
|
124
|
+
Aws::ElastiCache::Endpoints::DescribeEngineDefaultParameters.build(context)
|
125
|
+
when :describe_events
|
126
|
+
Aws::ElastiCache::Endpoints::DescribeEvents.build(context)
|
127
|
+
when :describe_global_replication_groups
|
128
|
+
Aws::ElastiCache::Endpoints::DescribeGlobalReplicationGroups.build(context)
|
129
|
+
when :describe_replication_groups
|
130
|
+
Aws::ElastiCache::Endpoints::DescribeReplicationGroups.build(context)
|
131
|
+
when :describe_reserved_cache_nodes
|
132
|
+
Aws::ElastiCache::Endpoints::DescribeReservedCacheNodes.build(context)
|
133
|
+
when :describe_reserved_cache_nodes_offerings
|
134
|
+
Aws::ElastiCache::Endpoints::DescribeReservedCacheNodesOfferings.build(context)
|
135
|
+
when :describe_service_updates
|
136
|
+
Aws::ElastiCache::Endpoints::DescribeServiceUpdates.build(context)
|
137
|
+
when :describe_snapshots
|
138
|
+
Aws::ElastiCache::Endpoints::DescribeSnapshots.build(context)
|
139
|
+
when :describe_update_actions
|
140
|
+
Aws::ElastiCache::Endpoints::DescribeUpdateActions.build(context)
|
141
|
+
when :describe_user_groups
|
142
|
+
Aws::ElastiCache::Endpoints::DescribeUserGroups.build(context)
|
143
|
+
when :describe_users
|
144
|
+
Aws::ElastiCache::Endpoints::DescribeUsers.build(context)
|
145
|
+
when :disassociate_global_replication_group
|
146
|
+
Aws::ElastiCache::Endpoints::DisassociateGlobalReplicationGroup.build(context)
|
147
|
+
when :failover_global_replication_group
|
148
|
+
Aws::ElastiCache::Endpoints::FailoverGlobalReplicationGroup.build(context)
|
149
|
+
when :increase_node_groups_in_global_replication_group
|
150
|
+
Aws::ElastiCache::Endpoints::IncreaseNodeGroupsInGlobalReplicationGroup.build(context)
|
151
|
+
when :increase_replica_count
|
152
|
+
Aws::ElastiCache::Endpoints::IncreaseReplicaCount.build(context)
|
153
|
+
when :list_allowed_node_type_modifications
|
154
|
+
Aws::ElastiCache::Endpoints::ListAllowedNodeTypeModifications.build(context)
|
155
|
+
when :list_tags_for_resource
|
156
|
+
Aws::ElastiCache::Endpoints::ListTagsForResource.build(context)
|
157
|
+
when :modify_cache_cluster
|
158
|
+
Aws::ElastiCache::Endpoints::ModifyCacheCluster.build(context)
|
159
|
+
when :modify_cache_parameter_group
|
160
|
+
Aws::ElastiCache::Endpoints::ModifyCacheParameterGroup.build(context)
|
161
|
+
when :modify_cache_subnet_group
|
162
|
+
Aws::ElastiCache::Endpoints::ModifyCacheSubnetGroup.build(context)
|
163
|
+
when :modify_global_replication_group
|
164
|
+
Aws::ElastiCache::Endpoints::ModifyGlobalReplicationGroup.build(context)
|
165
|
+
when :modify_replication_group
|
166
|
+
Aws::ElastiCache::Endpoints::ModifyReplicationGroup.build(context)
|
167
|
+
when :modify_replication_group_shard_configuration
|
168
|
+
Aws::ElastiCache::Endpoints::ModifyReplicationGroupShardConfiguration.build(context)
|
169
|
+
when :modify_user
|
170
|
+
Aws::ElastiCache::Endpoints::ModifyUser.build(context)
|
171
|
+
when :modify_user_group
|
172
|
+
Aws::ElastiCache::Endpoints::ModifyUserGroup.build(context)
|
173
|
+
when :purchase_reserved_cache_nodes_offering
|
174
|
+
Aws::ElastiCache::Endpoints::PurchaseReservedCacheNodesOffering.build(context)
|
175
|
+
when :rebalance_slots_in_global_replication_group
|
176
|
+
Aws::ElastiCache::Endpoints::RebalanceSlotsInGlobalReplicationGroup.build(context)
|
177
|
+
when :reboot_cache_cluster
|
178
|
+
Aws::ElastiCache::Endpoints::RebootCacheCluster.build(context)
|
179
|
+
when :remove_tags_from_resource
|
180
|
+
Aws::ElastiCache::Endpoints::RemoveTagsFromResource.build(context)
|
181
|
+
when :reset_cache_parameter_group
|
182
|
+
Aws::ElastiCache::Endpoints::ResetCacheParameterGroup.build(context)
|
183
|
+
when :revoke_cache_security_group_ingress
|
184
|
+
Aws::ElastiCache::Endpoints::RevokeCacheSecurityGroupIngress.build(context)
|
185
|
+
when :start_migration
|
186
|
+
Aws::ElastiCache::Endpoints::StartMigration.build(context)
|
187
|
+
when :test_failover
|
188
|
+
Aws::ElastiCache::Endpoints::TestFailover.build(context)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
def add_handlers(handlers, _config)
|
194
|
+
handlers.add(Handler, step: :build, priority: 75)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
@@ -314,7 +314,9 @@ module Aws::ElastiCache
|
|
314
314
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
315
315
|
# `cache.t2.medium`
|
316
316
|
#
|
317
|
-
# * Previous generation: (not recommended
|
317
|
+
# * Previous generation: (not recommended. Existing clusters are
|
318
|
+
# still supported but creation of new clusters is not supported
|
319
|
+
# for these types.)
|
318
320
|
#
|
319
321
|
# **T1 node types:** `cache.t1.micro`
|
320
322
|
#
|
@@ -326,7 +328,9 @@ module Aws::ElastiCache
|
|
326
328
|
#
|
327
329
|
# * Compute optimized:
|
328
330
|
#
|
329
|
-
# * Previous generation: (not recommended
|
331
|
+
# * Previous generation: (not recommended. Existing clusters are
|
332
|
+
# still supported but creation of new clusters is not supported
|
333
|
+
# for these types.)
|
330
334
|
#
|
331
335
|
# **C1 node types:** `cache.c1.xlarge`
|
332
336
|
#
|
@@ -364,7 +368,9 @@ module Aws::ElastiCache
|
|
364
368
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
365
369
|
# `cache.r4.16xlarge`
|
366
370
|
#
|
367
|
-
# * Previous generation: (not recommended
|
371
|
+
# * Previous generation: (not recommended. Existing clusters are
|
372
|
+
# still supported but creation of new clusters is not supported
|
373
|
+
# for these types.)
|
368
374
|
#
|
369
375
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
370
376
|
# `cache.m2.4xlarge`
|
@@ -734,7 +740,9 @@ module Aws::ElastiCache
|
|
734
740
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
735
741
|
# `cache.t2.medium`
|
736
742
|
#
|
737
|
-
# * Previous generation: (not recommended
|
743
|
+
# * Previous generation: (not recommended. Existing clusters are still
|
744
|
+
# supported but creation of new clusters is not supported for these
|
745
|
+
# types.)
|
738
746
|
#
|
739
747
|
# **T1 node types:** `cache.t1.micro`
|
740
748
|
#
|
@@ -746,7 +754,9 @@ module Aws::ElastiCache
|
|
746
754
|
#
|
747
755
|
# * Compute optimized:
|
748
756
|
#
|
749
|
-
# * Previous generation: (not recommended
|
757
|
+
# * Previous generation: (not recommended. Existing clusters are still
|
758
|
+
# supported but creation of new clusters is not supported for these
|
759
|
+
# types.)
|
750
760
|
#
|
751
761
|
# **C1 node types:** `cache.c1.xlarge`
|
752
762
|
#
|
@@ -783,7 +793,9 @@ module Aws::ElastiCache
|
|
783
793
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
784
794
|
# `cache.r4.16xlarge`
|
785
795
|
#
|
786
|
-
# * Previous generation: (not recommended
|
796
|
+
# * Previous generation: (not recommended. Existing clusters are still
|
797
|
+
# supported but creation of new clusters is not supported for these
|
798
|
+
# types.)
|
787
799
|
#
|
788
800
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
789
801
|
# `cache.m2.4xlarge`
|
@@ -1747,7 +1759,9 @@ module Aws::ElastiCache
|
|
1747
1759
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
1748
1760
|
# `cache.t2.medium`
|
1749
1761
|
#
|
1750
|
-
# * Previous generation: (not recommended
|
1762
|
+
# * Previous generation: (not recommended. Existing clusters are
|
1763
|
+
# still supported but creation of new clusters is not supported
|
1764
|
+
# for these types.)
|
1751
1765
|
#
|
1752
1766
|
# **T1 node types:** `cache.t1.micro`
|
1753
1767
|
#
|
@@ -1759,7 +1773,9 @@ module Aws::ElastiCache
|
|
1759
1773
|
#
|
1760
1774
|
# * Compute optimized:
|
1761
1775
|
#
|
1762
|
-
# * Previous generation: (not recommended
|
1776
|
+
# * Previous generation: (not recommended. Existing clusters are
|
1777
|
+
# still supported but creation of new clusters is not supported
|
1778
|
+
# for these types.)
|
1763
1779
|
#
|
1764
1780
|
# **C1 node types:** `cache.c1.xlarge`
|
1765
1781
|
#
|
@@ -1786,7 +1802,9 @@ module Aws::ElastiCache
|
|
1786
1802
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
1787
1803
|
# `cache.r4.16xlarge`
|
1788
1804
|
#
|
1789
|
-
# * Previous generation: (not recommended
|
1805
|
+
# * Previous generation: (not recommended. Existing clusters are
|
1806
|
+
# still supported but creation of new clusters is not supported
|
1807
|
+
# for these types.)
|
1790
1808
|
#
|
1791
1809
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
1792
1810
|
# `cache.m2.4xlarge`
|
@@ -2544,7 +2562,9 @@ module Aws::ElastiCache
|
|
2544
2562
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
2545
2563
|
# `cache.t2.medium`
|
2546
2564
|
#
|
2547
|
-
# * Previous generation: (not recommended
|
2565
|
+
# * Previous generation: (not recommended. Existing clusters are
|
2566
|
+
# still supported but creation of new clusters is not supported
|
2567
|
+
# for these types.)
|
2548
2568
|
#
|
2549
2569
|
# **T1 node types:** `cache.t1.micro`
|
2550
2570
|
#
|
@@ -2556,7 +2576,9 @@ module Aws::ElastiCache
|
|
2556
2576
|
#
|
2557
2577
|
# * Compute optimized:
|
2558
2578
|
#
|
2559
|
-
# * Previous generation: (not recommended
|
2579
|
+
# * Previous generation: (not recommended. Existing clusters are
|
2580
|
+
# still supported but creation of new clusters is not supported
|
2581
|
+
# for these types.)
|
2560
2582
|
#
|
2561
2583
|
# **C1 node types:** `cache.c1.xlarge`
|
2562
2584
|
#
|
@@ -2594,7 +2616,9 @@ module Aws::ElastiCache
|
|
2594
2616
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
2595
2617
|
# `cache.r4.16xlarge`
|
2596
2618
|
#
|
2597
|
-
# * Previous generation: (not recommended
|
2619
|
+
# * Previous generation: (not recommended. Existing clusters are
|
2620
|
+
# still supported but creation of new clusters is not supported
|
2621
|
+
# for these types.)
|
2598
2622
|
#
|
2599
2623
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
2600
2624
|
# `cache.m2.4xlarge`
|
@@ -4219,7 +4243,9 @@ module Aws::ElastiCache
|
|
4219
4243
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
4220
4244
|
# `cache.t2.medium`
|
4221
4245
|
#
|
4222
|
-
# * Previous generation: (not recommended
|
4246
|
+
# * Previous generation: (not recommended. Existing clusters are
|
4247
|
+
# still supported but creation of new clusters is not supported
|
4248
|
+
# for these types.)
|
4223
4249
|
#
|
4224
4250
|
# **T1 node types:** `cache.t1.micro`
|
4225
4251
|
#
|
@@ -4231,7 +4257,9 @@ module Aws::ElastiCache
|
|
4231
4257
|
#
|
4232
4258
|
# * Compute optimized:
|
4233
4259
|
#
|
4234
|
-
# * Previous generation: (not recommended
|
4260
|
+
# * Previous generation: (not recommended. Existing clusters are
|
4261
|
+
# still supported but creation of new clusters is not supported
|
4262
|
+
# for these types.)
|
4235
4263
|
#
|
4236
4264
|
# **C1 node types:** `cache.c1.xlarge`
|
4237
4265
|
#
|
@@ -4269,7 +4297,9 @@ module Aws::ElastiCache
|
|
4269
4297
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
4270
4298
|
# `cache.r4.16xlarge`
|
4271
4299
|
#
|
4272
|
-
# * Previous generation: (not recommended
|
4300
|
+
# * Previous generation: (not recommended. Existing clusters are
|
4301
|
+
# still supported but creation of new clusters is not supported
|
4302
|
+
# for these types.)
|
4273
4303
|
#
|
4274
4304
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
4275
4305
|
# `cache.m2.4xlarge`
|
@@ -4413,7 +4443,9 @@ module Aws::ElastiCache
|
|
4413
4443
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
4414
4444
|
# `cache.t2.medium`
|
4415
4445
|
#
|
4416
|
-
# * Previous generation: (not recommended
|
4446
|
+
# * Previous generation: (not recommended. Existing clusters are
|
4447
|
+
# still supported but creation of new clusters is not supported
|
4448
|
+
# for these types.)
|
4417
4449
|
#
|
4418
4450
|
# **T1 node types:** `cache.t1.micro`
|
4419
4451
|
#
|
@@ -4425,7 +4457,9 @@ module Aws::ElastiCache
|
|
4425
4457
|
#
|
4426
4458
|
# * Compute optimized:
|
4427
4459
|
#
|
4428
|
-
# * Previous generation: (not recommended
|
4460
|
+
# * Previous generation: (not recommended. Existing clusters are
|
4461
|
+
# still supported but creation of new clusters is not supported
|
4462
|
+
# for these types.)
|
4429
4463
|
#
|
4430
4464
|
# **C1 node types:** `cache.c1.xlarge`
|
4431
4465
|
#
|
@@ -4463,7 +4497,9 @@ module Aws::ElastiCache
|
|
4463
4497
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
4464
4498
|
# `cache.r4.16xlarge`
|
4465
4499
|
#
|
4466
|
-
# * Previous generation: (not recommended
|
4500
|
+
# * Previous generation: (not recommended. Existing clusters are
|
4501
|
+
# still supported but creation of new clusters is not supported
|
4502
|
+
# for these types.)
|
4467
4503
|
#
|
4468
4504
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
4469
4505
|
# `cache.m2.4xlarge`
|
@@ -7889,6 +7925,13 @@ module Aws::ElastiCache
|
|
7889
7925
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
7890
7926
|
# @return [String]
|
7891
7927
|
#
|
7928
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
7929
|
+
# If you are running Redis engine version 6.0 or later, set this
|
7930
|
+
# parameter to yes if you want to opt-in to the next auto minor
|
7931
|
+
# version upgrade campaign. This parameter is disabled for previous
|
7932
|
+
# versions.
|
7933
|
+
# @return [Boolean]
|
7934
|
+
#
|
7892
7935
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
7893
7936
|
#
|
7894
7937
|
class ReplicationGroup < Struct.new(
|
@@ -7917,7 +7960,8 @@ module Aws::ElastiCache
|
|
7917
7960
|
:user_group_ids,
|
7918
7961
|
:log_delivery_configurations,
|
7919
7962
|
:replication_group_create_time,
|
7920
|
-
:data_tiering
|
7963
|
+
:data_tiering,
|
7964
|
+
:auto_minor_version_upgrade)
|
7921
7965
|
SENSITIVE = []
|
7922
7966
|
include Aws::Structure
|
7923
7967
|
end
|
@@ -8059,7 +8103,9 @@ module Aws::ElastiCache
|
|
8059
8103
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
8060
8104
|
# `cache.t2.medium`
|
8061
8105
|
#
|
8062
|
-
# * Previous generation: (not recommended
|
8106
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8107
|
+
# still supported but creation of new clusters is not supported
|
8108
|
+
# for these types.)
|
8063
8109
|
#
|
8064
8110
|
# **T1 node types:** `cache.t1.micro`
|
8065
8111
|
#
|
@@ -8071,7 +8117,9 @@ module Aws::ElastiCache
|
|
8071
8117
|
#
|
8072
8118
|
# * Compute optimized:
|
8073
8119
|
#
|
8074
|
-
# * Previous generation: (not recommended
|
8120
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8121
|
+
# still supported but creation of new clusters is not supported
|
8122
|
+
# for these types.)
|
8075
8123
|
#
|
8076
8124
|
# **C1 node types:** `cache.c1.xlarge`
|
8077
8125
|
#
|
@@ -8109,7 +8157,9 @@ module Aws::ElastiCache
|
|
8109
8157
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
8110
8158
|
# `cache.r4.16xlarge`
|
8111
8159
|
#
|
8112
|
-
# * Previous generation: (not recommended
|
8160
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8161
|
+
# still supported but creation of new clusters is not supported
|
8162
|
+
# for these types.)
|
8113
8163
|
#
|
8114
8164
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
8115
8165
|
# `cache.m2.4xlarge`
|
@@ -8283,7 +8333,9 @@ module Aws::ElastiCache
|
|
8283
8333
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
8284
8334
|
# `cache.t2.medium`
|
8285
8335
|
#
|
8286
|
-
# * Previous generation: (not recommended
|
8336
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8337
|
+
# still supported but creation of new clusters is not supported
|
8338
|
+
# for these types.)
|
8287
8339
|
#
|
8288
8340
|
# **T1 node types:** `cache.t1.micro`
|
8289
8341
|
#
|
@@ -8295,7 +8347,9 @@ module Aws::ElastiCache
|
|
8295
8347
|
#
|
8296
8348
|
# * Compute optimized:
|
8297
8349
|
#
|
8298
|
-
# * Previous generation: (not recommended
|
8350
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8351
|
+
# still supported but creation of new clusters is not supported
|
8352
|
+
# for these types.)
|
8299
8353
|
#
|
8300
8354
|
# **C1 node types:** `cache.c1.xlarge`
|
8301
8355
|
#
|
@@ -8333,7 +8387,9 @@ module Aws::ElastiCache
|
|
8333
8387
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
8334
8388
|
# `cache.r4.16xlarge`
|
8335
8389
|
#
|
8336
|
-
# * Previous generation: (not recommended
|
8390
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8391
|
+
# still supported but creation of new clusters is not supported
|
8392
|
+
# for these types.)
|
8337
8393
|
#
|
8338
8394
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
8339
8395
|
# `cache.m2.4xlarge`
|
@@ -8786,7 +8842,9 @@ module Aws::ElastiCache
|
|
8786
8842
|
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
8787
8843
|
# `cache.t2.medium`
|
8788
8844
|
#
|
8789
|
-
# * Previous generation: (not recommended
|
8845
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8846
|
+
# still supported but creation of new clusters is not supported
|
8847
|
+
# for these types.)
|
8790
8848
|
#
|
8791
8849
|
# **T1 node types:** `cache.t1.micro`
|
8792
8850
|
#
|
@@ -8798,7 +8856,9 @@ module Aws::ElastiCache
|
|
8798
8856
|
#
|
8799
8857
|
# * Compute optimized:
|
8800
8858
|
#
|
8801
|
-
# * Previous generation: (not recommended
|
8859
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8860
|
+
# still supported but creation of new clusters is not supported
|
8861
|
+
# for these types.)
|
8802
8862
|
#
|
8803
8863
|
# **C1 node types:** `cache.c1.xlarge`
|
8804
8864
|
#
|
@@ -8840,7 +8900,9 @@ module Aws::ElastiCache
|
|
8840
8900
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
8841
8901
|
# `cache.r4.16xlarge`
|
8842
8902
|
#
|
8843
|
-
# * Previous generation: (not recommended
|
8903
|
+
# * Previous generation: (not recommended. Existing clusters are
|
8904
|
+
# still supported but creation of new clusters is not supported
|
8905
|
+
# for these types.)
|
8844
8906
|
#
|
8845
8907
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
8846
8908
|
# `cache.m2.4xlarge`
|
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.80.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.80.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-
|
11
|
+
date: 2022-10-25 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
|