aws-sdk-elasticache 1.33.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-elasticache.rb +3 -1
- data/lib/aws-sdk-elasticache/client.rb +78 -10
- data/lib/aws-sdk-elasticache/client_api.rb +13 -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 +83 -14
- data/lib/aws-sdk-elasticache/waiters.rb +2 -0
- metadata +4 -4
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:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ElastiCache
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::ElastiCache
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::ElastiCache
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -461,6 +465,7 @@ module Aws::ElastiCache
|
|
461
465
|
# resp.cache_security_group.ec2_security_groups[0].status #=> String
|
462
466
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_name #=> String
|
463
467
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
468
|
+
# resp.cache_security_group.arn #=> String
|
464
469
|
#
|
465
470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AuthorizeCacheSecurityGroupIngress AWS API Documentation
|
466
471
|
#
|
@@ -627,6 +632,7 @@ module Aws::ElastiCache
|
|
627
632
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
628
633
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
629
634
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
635
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
630
636
|
# resp.replication_group.configuration_endpoint.address #=> String
|
631
637
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
632
638
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -638,6 +644,7 @@ module Aws::ElastiCache
|
|
638
644
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
639
645
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
640
646
|
# resp.replication_group.kms_key_id #=> String
|
647
|
+
# resp.replication_group.arn #=> String
|
641
648
|
#
|
642
649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
|
643
650
|
#
|
@@ -849,6 +856,7 @@ module Aws::ElastiCache
|
|
849
856
|
# resp.snapshot.node_snapshots[0].cache_node_create_time #=> Time
|
850
857
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
851
858
|
# resp.snapshot.kms_key_id #=> String
|
859
|
+
# resp.snapshot.arn #=> String
|
852
860
|
#
|
853
861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshot AWS API Documentation
|
854
862
|
#
|
@@ -905,9 +913,9 @@ module Aws::ElastiCache
|
|
905
913
|
# @option params [String] :preferred_availability_zone
|
906
914
|
# The EC2 Availability Zone in which the cluster is created.
|
907
915
|
#
|
908
|
-
# All nodes belonging to this
|
909
|
-
#
|
910
|
-
#
|
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`.
|
911
919
|
#
|
912
920
|
# Default: System chosen Availability Zone.
|
913
921
|
#
|
@@ -1365,6 +1373,7 @@ module Aws::ElastiCache
|
|
1365
1373
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
1366
1374
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
1367
1375
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
1376
|
+
# resp.cache_cluster.arn #=> String
|
1368
1377
|
#
|
1369
1378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheCluster AWS API Documentation
|
1370
1379
|
#
|
@@ -1445,6 +1454,7 @@ module Aws::ElastiCache
|
|
1445
1454
|
# resp.cache_parameter_group.cache_parameter_group_family #=> String
|
1446
1455
|
# resp.cache_parameter_group.description #=> String
|
1447
1456
|
# resp.cache_parameter_group.is_global #=> Boolean
|
1457
|
+
# resp.cache_parameter_group.arn #=> String
|
1448
1458
|
#
|
1449
1459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheParameterGroup AWS API Documentation
|
1450
1460
|
#
|
@@ -1509,6 +1519,7 @@ module Aws::ElastiCache
|
|
1509
1519
|
# resp.cache_security_group.ec2_security_groups[0].status #=> String
|
1510
1520
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_name #=> String
|
1511
1521
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
1522
|
+
# resp.cache_security_group.arn #=> String
|
1512
1523
|
#
|
1513
1524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheSecurityGroup AWS API Documentation
|
1514
1525
|
#
|
@@ -1603,6 +1614,7 @@ module Aws::ElastiCache
|
|
1603
1614
|
# resp.cache_subnet_group.subnets #=> Array
|
1604
1615
|
# resp.cache_subnet_group.subnets[0].subnet_identifier #=> String
|
1605
1616
|
# resp.cache_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
1617
|
+
# resp.cache_subnet_group.arn #=> String
|
1606
1618
|
#
|
1607
1619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheSubnetGroup AWS API Documentation
|
1608
1620
|
#
|
@@ -1672,6 +1684,7 @@ module Aws::ElastiCache
|
|
1672
1684
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
1673
1685
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
1674
1686
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
1687
|
+
# resp.global_replication_group.arn #=> String
|
1675
1688
|
#
|
1676
1689
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateGlobalReplicationGroup AWS API Documentation
|
1677
1690
|
#
|
@@ -1747,9 +1760,6 @@ module Aws::ElastiCache
|
|
1747
1760
|
# Specifies whether a read-only replica is automatically promoted to
|
1748
1761
|
# read/write primary if the existing primary fails.
|
1749
1762
|
#
|
1750
|
-
# If `true`, Multi-AZ is enabled for this replication group. If `false`,
|
1751
|
-
# Multi-AZ is disabled for this replication group.
|
1752
|
-
#
|
1753
1763
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
1754
1764
|
# enabled) replication groups.
|
1755
1765
|
#
|
@@ -1764,6 +1774,15 @@ module Aws::ElastiCache
|
|
1764
1774
|
#
|
1765
1775
|
# * Redis (cluster mode enabled): T1 node types.
|
1766
1776
|
#
|
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
|
1785
|
+
#
|
1767
1786
|
# @option params [Integer] :num_cache_clusters
|
1768
1787
|
# The number of clusters this replication group initially has.
|
1769
1788
|
#
|
@@ -2218,6 +2237,7 @@ module Aws::ElastiCache
|
|
2218
2237
|
# global_replication_group_id: "String",
|
2219
2238
|
# primary_cluster_id: "String",
|
2220
2239
|
# automatic_failover_enabled: false,
|
2240
|
+
# multi_az_enabled: false,
|
2221
2241
|
# num_cache_clusters: 1,
|
2222
2242
|
# preferred_cache_cluster_a_zs: ["String"],
|
2223
2243
|
# num_node_groups: 1,
|
@@ -2288,6 +2308,7 @@ module Aws::ElastiCache
|
|
2288
2308
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2289
2309
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2290
2310
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2311
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2291
2312
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2292
2313
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2293
2314
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -2299,6 +2320,7 @@ module Aws::ElastiCache
|
|
2299
2320
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
2300
2321
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
2301
2322
|
# resp.replication_group.kms_key_id #=> String
|
2323
|
+
# resp.replication_group.arn #=> String
|
2302
2324
|
#
|
2303
2325
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
|
2304
2326
|
#
|
@@ -2507,6 +2529,7 @@ module Aws::ElastiCache
|
|
2507
2529
|
# resp.snapshot.node_snapshots[0].cache_node_create_time #=> Time
|
2508
2530
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
2509
2531
|
# resp.snapshot.kms_key_id #=> String
|
2532
|
+
# resp.snapshot.arn #=> String
|
2510
2533
|
#
|
2511
2534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshot AWS API Documentation
|
2512
2535
|
#
|
@@ -2579,6 +2602,7 @@ module Aws::ElastiCache
|
|
2579
2602
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
2580
2603
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
2581
2604
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
2605
|
+
# resp.global_replication_group.arn #=> String
|
2582
2606
|
#
|
2583
2607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseNodeGroupsInGlobalReplicationGroup AWS API Documentation
|
2584
2608
|
#
|
@@ -2681,6 +2705,7 @@ module Aws::ElastiCache
|
|
2681
2705
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2682
2706
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2683
2707
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2708
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2684
2709
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2685
2710
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2686
2711
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -2692,6 +2717,7 @@ module Aws::ElastiCache
|
|
2692
2717
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
2693
2718
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
2694
2719
|
# resp.replication_group.kms_key_id #=> String
|
2720
|
+
# resp.replication_group.arn #=> String
|
2695
2721
|
#
|
2696
2722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
|
2697
2723
|
#
|
@@ -2831,6 +2857,7 @@ module Aws::ElastiCache
|
|
2831
2857
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
2832
2858
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
2833
2859
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
2860
|
+
# resp.cache_cluster.arn #=> String
|
2834
2861
|
#
|
2835
2862
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteCacheCluster AWS API Documentation
|
2836
2863
|
#
|
@@ -3013,6 +3040,7 @@ module Aws::ElastiCache
|
|
3013
3040
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
3014
3041
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
3015
3042
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
3043
|
+
# resp.global_replication_group.arn #=> String
|
3016
3044
|
#
|
3017
3045
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteGlobalReplicationGroup AWS API Documentation
|
3018
3046
|
#
|
@@ -3116,6 +3144,7 @@ module Aws::ElastiCache
|
|
3116
3144
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
3117
3145
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
3118
3146
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
3147
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
3119
3148
|
# resp.replication_group.configuration_endpoint.address #=> String
|
3120
3149
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
3121
3150
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -3127,6 +3156,7 @@ module Aws::ElastiCache
|
|
3127
3156
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
3128
3157
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
3129
3158
|
# resp.replication_group.kms_key_id #=> String
|
3159
|
+
# resp.replication_group.arn #=> String
|
3130
3160
|
#
|
3131
3161
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
|
3132
3162
|
#
|
@@ -3238,6 +3268,7 @@ module Aws::ElastiCache
|
|
3238
3268
|
# resp.snapshot.node_snapshots[0].cache_node_create_time #=> Time
|
3239
3269
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
3240
3270
|
# resp.snapshot.kms_key_id #=> String
|
3271
|
+
# resp.snapshot.arn #=> String
|
3241
3272
|
#
|
3242
3273
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshot AWS API Documentation
|
3243
3274
|
#
|
@@ -3482,6 +3513,7 @@ module Aws::ElastiCache
|
|
3482
3513
|
# resp.cache_clusters[0].auth_token_last_modified_date #=> Time
|
3483
3514
|
# resp.cache_clusters[0].transit_encryption_enabled #=> Boolean
|
3484
3515
|
# resp.cache_clusters[0].at_rest_encryption_enabled #=> Boolean
|
3516
|
+
# resp.cache_clusters[0].arn #=> String
|
3485
3517
|
#
|
3486
3518
|
#
|
3487
3519
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -3818,6 +3850,7 @@ module Aws::ElastiCache
|
|
3818
3850
|
# resp.cache_parameter_groups[0].cache_parameter_group_family #=> String
|
3819
3851
|
# resp.cache_parameter_groups[0].description #=> String
|
3820
3852
|
# resp.cache_parameter_groups[0].is_global #=> Boolean
|
3853
|
+
# resp.cache_parameter_groups[0].arn #=> String
|
3821
3854
|
#
|
3822
3855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheParameterGroups AWS API Documentation
|
3823
3856
|
#
|
@@ -4368,6 +4401,7 @@ module Aws::ElastiCache
|
|
4368
4401
|
# resp.cache_security_groups[0].ec2_security_groups[0].status #=> String
|
4369
4402
|
# resp.cache_security_groups[0].ec2_security_groups[0].ec2_security_group_name #=> String
|
4370
4403
|
# resp.cache_security_groups[0].ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
4404
|
+
# resp.cache_security_groups[0].arn #=> String
|
4371
4405
|
#
|
4372
4406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheSecurityGroups AWS API Documentation
|
4373
4407
|
#
|
@@ -4474,6 +4508,7 @@ module Aws::ElastiCache
|
|
4474
4508
|
# resp.cache_subnet_groups[0].subnets #=> Array
|
4475
4509
|
# resp.cache_subnet_groups[0].subnets[0].subnet_identifier #=> String
|
4476
4510
|
# resp.cache_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
4511
|
+
# resp.cache_subnet_groups[0].arn #=> String
|
4477
4512
|
#
|
4478
4513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheSubnetGroups AWS API Documentation
|
4479
4514
|
#
|
@@ -5415,6 +5450,7 @@ module Aws::ElastiCache
|
|
5415
5450
|
# resp.global_replication_groups[0].auth_token_enabled #=> Boolean
|
5416
5451
|
# resp.global_replication_groups[0].transit_encryption_enabled #=> Boolean
|
5417
5452
|
# resp.global_replication_groups[0].at_rest_encryption_enabled #=> Boolean
|
5453
|
+
# resp.global_replication_groups[0].arn #=> String
|
5418
5454
|
#
|
5419
5455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeGlobalReplicationGroups AWS API Documentation
|
5420
5456
|
#
|
@@ -5566,6 +5602,7 @@ module Aws::ElastiCache
|
|
5566
5602
|
# resp.replication_groups[0].node_groups[0].node_group_members[0].current_role #=> String
|
5567
5603
|
# resp.replication_groups[0].snapshotting_cluster_id #=> String
|
5568
5604
|
# resp.replication_groups[0].automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
5605
|
+
# resp.replication_groups[0].multi_az #=> String, one of "enabled", "disabled"
|
5569
5606
|
# resp.replication_groups[0].configuration_endpoint.address #=> String
|
5570
5607
|
# resp.replication_groups[0].configuration_endpoint.port #=> Integer
|
5571
5608
|
# resp.replication_groups[0].snapshot_retention_limit #=> Integer
|
@@ -5577,6 +5614,7 @@ module Aws::ElastiCache
|
|
5577
5614
|
# resp.replication_groups[0].transit_encryption_enabled #=> Boolean
|
5578
5615
|
# resp.replication_groups[0].at_rest_encryption_enabled #=> Boolean
|
5579
5616
|
# resp.replication_groups[0].kms_key_id #=> String
|
5617
|
+
# resp.replication_groups[0].arn #=> String
|
5580
5618
|
#
|
5581
5619
|
#
|
5582
5620
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -6464,6 +6502,7 @@ module Aws::ElastiCache
|
|
6464
6502
|
# resp.snapshots[0].node_snapshots[0].cache_node_create_time #=> Time
|
6465
6503
|
# resp.snapshots[0].node_snapshots[0].snapshot_create_time #=> Time
|
6466
6504
|
# resp.snapshots[0].kms_key_id #=> String
|
6505
|
+
# resp.snapshots[0].arn #=> String
|
6467
6506
|
#
|
6468
6507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeSnapshots AWS API Documentation
|
6469
6508
|
#
|
@@ -6635,6 +6674,7 @@ module Aws::ElastiCache
|
|
6635
6674
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
6636
6675
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
6637
6676
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
6677
|
+
# resp.global_replication_group.arn #=> String
|
6638
6678
|
#
|
6639
6679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DisassociateGlobalReplicationGroup AWS API Documentation
|
6640
6680
|
#
|
@@ -6646,7 +6686,7 @@ module Aws::ElastiCache
|
|
6646
6686
|
end
|
6647
6687
|
|
6648
6688
|
# Used to failover the primary region to a selected secondary region.
|
6649
|
-
# The selected secondary region will
|
6689
|
+
# The selected secondary region will become primary, and all other
|
6650
6690
|
# clusters will become secondary.
|
6651
6691
|
#
|
6652
6692
|
# @option params [required, String] :global_replication_group_id
|
@@ -6691,6 +6731,7 @@ module Aws::ElastiCache
|
|
6691
6731
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
6692
6732
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
6693
6733
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
6734
|
+
# resp.global_replication_group.arn #=> String
|
6694
6735
|
#
|
6695
6736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/FailoverGlobalReplicationGroup AWS API Documentation
|
6696
6737
|
#
|
@@ -6763,6 +6804,7 @@ module Aws::ElastiCache
|
|
6763
6804
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
6764
6805
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
6765
6806
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
6807
|
+
# resp.global_replication_group.arn #=> String
|
6766
6808
|
#
|
6767
6809
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseNodeGroupsInGlobalReplicationGroup AWS API Documentation
|
6768
6810
|
#
|
@@ -6849,6 +6891,7 @@ module Aws::ElastiCache
|
|
6849
6891
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
6850
6892
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
6851
6893
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
6894
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
6852
6895
|
# resp.replication_group.configuration_endpoint.address #=> String
|
6853
6896
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
6854
6897
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -6860,6 +6903,7 @@ module Aws::ElastiCache
|
|
6860
6903
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
6861
6904
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
6862
6905
|
# resp.replication_group.kms_key_id #=> String
|
6906
|
+
# resp.replication_group.arn #=> String
|
6863
6907
|
#
|
6864
6908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
|
6865
6909
|
#
|
@@ -7460,6 +7504,7 @@ module Aws::ElastiCache
|
|
7460
7504
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
7461
7505
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
7462
7506
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
7507
|
+
# resp.cache_cluster.arn #=> String
|
7463
7508
|
#
|
7464
7509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheCluster AWS API Documentation
|
7465
7510
|
#
|
@@ -7626,6 +7671,7 @@ module Aws::ElastiCache
|
|
7626
7671
|
# resp.cache_subnet_group.subnets #=> Array
|
7627
7672
|
# resp.cache_subnet_group.subnets[0].subnet_identifier #=> String
|
7628
7673
|
# resp.cache_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
7674
|
+
# resp.cache_subnet_group.arn #=> String
|
7629
7675
|
#
|
7630
7676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheSubnetGroup AWS API Documentation
|
7631
7677
|
#
|
@@ -7698,6 +7744,7 @@ module Aws::ElastiCache
|
|
7698
7744
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
7699
7745
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
7700
7746
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
7747
|
+
# resp.global_replication_group.arn #=> String
|
7701
7748
|
#
|
7702
7749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyGlobalReplicationGroup AWS API Documentation
|
7703
7750
|
#
|
@@ -7758,6 +7805,15 @@ module Aws::ElastiCache
|
|
7758
7805
|
#
|
7759
7806
|
# * Redis (cluster mode enabled): T1 node types.
|
7760
7807
|
#
|
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
|
7816
|
+
#
|
7761
7817
|
# @option params [String] :node_group_id
|
7762
7818
|
# Deprecated. This parameter is not used.
|
7763
7819
|
#
|
@@ -7995,6 +8051,7 @@ module Aws::ElastiCache
|
|
7995
8051
|
# primary_cluster_id: "String",
|
7996
8052
|
# snapshotting_cluster_id: "String",
|
7997
8053
|
# automatic_failover_enabled: false,
|
8054
|
+
# multi_az_enabled: false,
|
7998
8055
|
# node_group_id: "String",
|
7999
8056
|
# cache_security_group_names: ["String"],
|
8000
8057
|
# security_group_ids: ["String"],
|
@@ -8042,6 +8099,7 @@ module Aws::ElastiCache
|
|
8042
8099
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8043
8100
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8044
8101
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8102
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8045
8103
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8046
8104
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8047
8105
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8053,6 +8111,7 @@ module Aws::ElastiCache
|
|
8053
8111
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8054
8112
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8055
8113
|
# resp.replication_group.kms_key_id #=> String
|
8114
|
+
# resp.replication_group.arn #=> String
|
8056
8115
|
#
|
8057
8116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
|
8058
8117
|
#
|
@@ -8159,6 +8218,7 @@ module Aws::ElastiCache
|
|
8159
8218
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8160
8219
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8161
8220
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8221
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8162
8222
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8163
8223
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8164
8224
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8170,6 +8230,7 @@ module Aws::ElastiCache
|
|
8170
8230
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8171
8231
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8172
8232
|
# resp.replication_group.kms_key_id #=> String
|
8233
|
+
# resp.replication_group.arn #=> String
|
8173
8234
|
#
|
8174
8235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
|
8175
8236
|
#
|
@@ -8292,6 +8353,7 @@ module Aws::ElastiCache
|
|
8292
8353
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
8293
8354
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
8294
8355
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
8356
|
+
# resp.global_replication_group.arn #=> String
|
8295
8357
|
#
|
8296
8358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RebalanceSlotsInGlobalReplicationGroup AWS API Documentation
|
8297
8359
|
#
|
@@ -8440,6 +8502,7 @@ module Aws::ElastiCache
|
|
8440
8502
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
8441
8503
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
8442
8504
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
8505
|
+
# resp.cache_cluster.arn #=> String
|
8443
8506
|
#
|
8444
8507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RebootCacheCluster AWS API Documentation
|
8445
8508
|
#
|
@@ -8651,6 +8714,7 @@ module Aws::ElastiCache
|
|
8651
8714
|
# resp.cache_security_group.ec2_security_groups[0].status #=> String
|
8652
8715
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_name #=> String
|
8653
8716
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
8717
|
+
# resp.cache_security_group.arn #=> String
|
8654
8718
|
#
|
8655
8719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RevokeCacheSecurityGroupIngress AWS API Documentation
|
8656
8720
|
#
|
@@ -8716,6 +8780,7 @@ module Aws::ElastiCache
|
|
8716
8780
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8717
8781
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8718
8782
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8783
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8719
8784
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8720
8785
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8721
8786
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8727,6 +8792,7 @@ module Aws::ElastiCache
|
|
8727
8792
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8728
8793
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8729
8794
|
# resp.replication_group.kms_key_id #=> String
|
8795
|
+
# resp.replication_group.arn #=> String
|
8730
8796
|
#
|
8731
8797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
|
8732
8798
|
#
|
@@ -8842,6 +8908,7 @@ module Aws::ElastiCache
|
|
8842
8908
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8843
8909
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8844
8910
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8911
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8845
8912
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8846
8913
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8847
8914
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8853,6 +8920,7 @@ module Aws::ElastiCache
|
|
8853
8920
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8854
8921
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8855
8922
|
# resp.replication_group.kms_key_id #=> String
|
8923
|
+
# resp.replication_group.arn #=> String
|
8856
8924
|
#
|
8857
8925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
|
8858
8926
|
#
|
@@ -8876,7 +8944,7 @@ module Aws::ElastiCache
|
|
8876
8944
|
params: params,
|
8877
8945
|
config: config)
|
8878
8946
|
context[:gem_name] = 'aws-sdk-elasticache'
|
8879
|
-
context[:gem_version] = '1.
|
8947
|
+
context[:gem_version] = '1.38.0'
|
8880
8948
|
Seahorse::Client::Request.new(handlers, context)
|
8881
8949
|
end
|
8882
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:
|
@@ -186,6 +188,7 @@ module Aws::ElastiCache
|
|
186
188
|
ModifyReplicationGroupResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupResult')
|
187
189
|
ModifyReplicationGroupShardConfigurationMessage = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationMessage')
|
188
190
|
ModifyReplicationGroupShardConfigurationResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationResult')
|
191
|
+
MultiAZStatus = Shapes::StringShape.new(name: 'MultiAZStatus')
|
189
192
|
NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
|
190
193
|
NodeGroup = Shapes::StructureShape.new(name: 'NodeGroup')
|
191
194
|
NodeGroupConfiguration = Shapes::StructureShape.new(name: 'NodeGroupConfiguration')
|
@@ -367,6 +370,7 @@ module Aws::ElastiCache
|
|
367
370
|
CacheCluster.add_member(:auth_token_last_modified_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "AuthTokenLastModifiedDate"))
|
368
371
|
CacheCluster.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
369
372
|
CacheCluster.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
373
|
+
CacheCluster.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
370
374
|
CacheCluster.struct_class = Types::CacheCluster
|
371
375
|
|
372
376
|
CacheClusterAlreadyExistsFault.struct_class = Types::CacheClusterAlreadyExistsFault
|
@@ -442,6 +446,7 @@ module Aws::ElastiCache
|
|
442
446
|
CacheParameterGroup.add_member(:cache_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "CacheParameterGroupFamily"))
|
443
447
|
CacheParameterGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
444
448
|
CacheParameterGroup.add_member(:is_global, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsGlobal"))
|
449
|
+
CacheParameterGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
445
450
|
CacheParameterGroup.struct_class = Types::CacheParameterGroup
|
446
451
|
|
447
452
|
CacheParameterGroupAlreadyExistsFault.struct_class = Types::CacheParameterGroupAlreadyExistsFault
|
@@ -473,6 +478,7 @@ module Aws::ElastiCache
|
|
473
478
|
CacheSecurityGroup.add_member(:cache_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "CacheSecurityGroupName"))
|
474
479
|
CacheSecurityGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
475
480
|
CacheSecurityGroup.add_member(:ec2_security_groups, Shapes::ShapeRef.new(shape: EC2SecurityGroupList, location_name: "EC2SecurityGroups"))
|
481
|
+
CacheSecurityGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
476
482
|
CacheSecurityGroup.struct_class = Types::CacheSecurityGroup
|
477
483
|
|
478
484
|
CacheSecurityGroupAlreadyExistsFault.struct_class = Types::CacheSecurityGroupAlreadyExistsFault
|
@@ -499,6 +505,7 @@ module Aws::ElastiCache
|
|
499
505
|
CacheSubnetGroup.add_member(:cache_subnet_group_description, Shapes::ShapeRef.new(shape: String, location_name: "CacheSubnetGroupDescription"))
|
500
506
|
CacheSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
501
507
|
CacheSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
508
|
+
CacheSubnetGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
502
509
|
CacheSubnetGroup.struct_class = Types::CacheSubnetGroup
|
503
510
|
|
504
511
|
CacheSubnetGroupAlreadyExistsFault.struct_class = Types::CacheSubnetGroupAlreadyExistsFault
|
@@ -606,6 +613,7 @@ module Aws::ElastiCache
|
|
606
613
|
CreateReplicationGroupMessage.add_member(:global_replication_group_id, Shapes::ShapeRef.new(shape: String, location_name: "GlobalReplicationGroupId"))
|
607
614
|
CreateReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
608
615
|
CreateReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
616
|
+
CreateReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
609
617
|
CreateReplicationGroupMessage.add_member(:num_cache_clusters, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumCacheClusters"))
|
610
618
|
CreateReplicationGroupMessage.add_member(:preferred_cache_cluster_a_zs, Shapes::ShapeRef.new(shape: AvailabilityZonesList, location_name: "PreferredCacheClusterAZs"))
|
611
619
|
CreateReplicationGroupMessage.add_member(:num_node_groups, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumNodeGroups"))
|
@@ -891,6 +899,7 @@ module Aws::ElastiCache
|
|
891
899
|
GlobalReplicationGroup.add_member(:auth_token_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AuthTokenEnabled"))
|
892
900
|
GlobalReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
893
901
|
GlobalReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
902
|
+
GlobalReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
894
903
|
GlobalReplicationGroup.struct_class = Types::GlobalReplicationGroup
|
895
904
|
|
896
905
|
GlobalReplicationGroupAlreadyExistsFault.struct_class = Types::GlobalReplicationGroupAlreadyExistsFault
|
@@ -1019,6 +1028,7 @@ module Aws::ElastiCache
|
|
1019
1028
|
ModifyReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
1020
1029
|
ModifyReplicationGroupMessage.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1021
1030
|
ModifyReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
1031
|
+
ModifyReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
1022
1032
|
ModifyReplicationGroupMessage.add_member(:node_group_id, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "NodeGroupId"))
|
1023
1033
|
ModifyReplicationGroupMessage.add_member(:cache_security_group_names, Shapes::ShapeRef.new(shape: CacheSecurityGroupNameList, location_name: "CacheSecurityGroupNames"))
|
1024
1034
|
ModifyReplicationGroupMessage.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdsList, location_name: "SecurityGroupIds"))
|
@@ -1216,6 +1226,7 @@ module Aws::ElastiCache
|
|
1216
1226
|
ReplicationGroup.add_member(:node_groups, Shapes::ShapeRef.new(shape: NodeGroupList, location_name: "NodeGroups"))
|
1217
1227
|
ReplicationGroup.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1218
1228
|
ReplicationGroup.add_member(:automatic_failover, Shapes::ShapeRef.new(shape: AutomaticFailoverStatus, location_name: "AutomaticFailover"))
|
1229
|
+
ReplicationGroup.add_member(:multi_az, Shapes::ShapeRef.new(shape: MultiAZStatus, location_name: "MultiAZ"))
|
1219
1230
|
ReplicationGroup.add_member(:configuration_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ConfigurationEndpoint"))
|
1220
1231
|
ReplicationGroup.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
1221
1232
|
ReplicationGroup.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
@@ -1226,6 +1237,7 @@ module Aws::ElastiCache
|
|
1226
1237
|
ReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
1227
1238
|
ReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
1228
1239
|
ReplicationGroup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1240
|
+
ReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
1229
1241
|
ReplicationGroup.struct_class = Types::ReplicationGroup
|
1230
1242
|
|
1231
1243
|
ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
|
@@ -1379,6 +1391,7 @@ module Aws::ElastiCache
|
|
1379
1391
|
Snapshot.add_member(:automatic_failover, Shapes::ShapeRef.new(shape: AutomaticFailoverStatus, location_name: "AutomaticFailover"))
|
1380
1392
|
Snapshot.add_member(:node_snapshots, Shapes::ShapeRef.new(shape: NodeSnapshotList, location_name: "NodeSnapshots"))
|
1381
1393
|
Snapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1394
|
+
Snapshot.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
1382
1395
|
Snapshot.struct_class = Types::Snapshot
|
1383
1396
|
|
1384
1397
|
SnapshotAlreadyExistsFault.struct_class = Types::SnapshotAlreadyExistsFault
|
@@ -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:
|
@@ -478,6 +480,10 @@ module Aws::ElastiCache
|
|
478
480
|
# Default: `false`
|
479
481
|
# @return [Boolean]
|
480
482
|
#
|
483
|
+
# @!attribute [rw] arn
|
484
|
+
# The ARN (Amazon Resource Name) of the cache cluster.
|
485
|
+
# @return [String]
|
486
|
+
#
|
481
487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
|
482
488
|
#
|
483
489
|
class CacheCluster < Struct.new(
|
@@ -506,7 +512,8 @@ module Aws::ElastiCache
|
|
506
512
|
:auth_token_enabled,
|
507
513
|
:auth_token_last_modified_date,
|
508
514
|
:transit_encryption_enabled,
|
509
|
-
:at_rest_encryption_enabled
|
515
|
+
:at_rest_encryption_enabled,
|
516
|
+
:arn)
|
510
517
|
include Aws::Structure
|
511
518
|
end
|
512
519
|
|
@@ -875,13 +882,18 @@ module Aws::ElastiCache
|
|
875
882
|
# Datastore
|
876
883
|
# @return [Boolean]
|
877
884
|
#
|
885
|
+
# @!attribute [rw] arn
|
886
|
+
# The ARN (Amazon Resource Name) of the cache parameter group.
|
887
|
+
# @return [String]
|
888
|
+
#
|
878
889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheParameterGroup AWS API Documentation
|
879
890
|
#
|
880
891
|
class CacheParameterGroup < Struct.new(
|
881
892
|
:cache_parameter_group_name,
|
882
893
|
:cache_parameter_group_family,
|
883
894
|
:description,
|
884
|
-
:is_global
|
895
|
+
:is_global,
|
896
|
+
:arn)
|
885
897
|
include Aws::Structure
|
886
898
|
end
|
887
899
|
|
@@ -1016,13 +1028,18 @@ module Aws::ElastiCache
|
|
1016
1028
|
# cache security group.
|
1017
1029
|
# @return [Array<Types::EC2SecurityGroup>]
|
1018
1030
|
#
|
1031
|
+
# @!attribute [rw] arn
|
1032
|
+
# The ARN (Amazon Resource Name) of the cache security group.
|
1033
|
+
# @return [String]
|
1034
|
+
#
|
1019
1035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSecurityGroup AWS API Documentation
|
1020
1036
|
#
|
1021
1037
|
class CacheSecurityGroup < Struct.new(
|
1022
1038
|
:owner_id,
|
1023
1039
|
:cache_security_group_name,
|
1024
1040
|
:description,
|
1025
|
-
:ec2_security_groups
|
1041
|
+
:ec2_security_groups,
|
1042
|
+
:arn)
|
1026
1043
|
include Aws::Structure
|
1027
1044
|
end
|
1028
1045
|
|
@@ -1109,13 +1126,18 @@ module Aws::ElastiCache
|
|
1109
1126
|
# A list of subnets associated with the cache subnet group.
|
1110
1127
|
# @return [Array<Types::Subnet>]
|
1111
1128
|
#
|
1129
|
+
# @!attribute [rw] arn
|
1130
|
+
# The ARN (Amazon Resource Name) of the cache subnet group.
|
1131
|
+
# @return [String]
|
1132
|
+
#
|
1112
1133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSubnetGroup AWS API Documentation
|
1113
1134
|
#
|
1114
1135
|
class CacheSubnetGroup < Struct.new(
|
1115
1136
|
:cache_subnet_group_name,
|
1116
1137
|
:cache_subnet_group_description,
|
1117
1138
|
:vpc_id,
|
1118
|
-
:subnets
|
1139
|
+
:subnets,
|
1140
|
+
:arn)
|
1119
1141
|
include Aws::Structure
|
1120
1142
|
end
|
1121
1143
|
|
@@ -1427,9 +1449,9 @@ module Aws::ElastiCache
|
|
1427
1449
|
# @!attribute [rw] preferred_availability_zone
|
1428
1450
|
# The EC2 Availability Zone in which the cluster is created.
|
1429
1451
|
#
|
1430
|
-
# All nodes belonging to this
|
1431
|
-
#
|
1432
|
-
#
|
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`.
|
1433
1455
|
#
|
1434
1456
|
# Default: System chosen Availability Zone.
|
1435
1457
|
# @return [String]
|
@@ -1985,6 +2007,7 @@ module Aws::ElastiCache
|
|
1985
2007
|
# global_replication_group_id: "String",
|
1986
2008
|
# primary_cluster_id: "String",
|
1987
2009
|
# automatic_failover_enabled: false,
|
2010
|
+
# multi_az_enabled: false,
|
1988
2011
|
# num_cache_clusters: 1,
|
1989
2012
|
# preferred_cache_cluster_a_zs: ["String"],
|
1990
2013
|
# num_node_groups: 1,
|
@@ -2061,9 +2084,6 @@ module Aws::ElastiCache
|
|
2061
2084
|
# Specifies whether a read-only replica is automatically promoted to
|
2062
2085
|
# read/write primary if the existing primary fails.
|
2063
2086
|
#
|
2064
|
-
# If `true`, Multi-AZ is enabled for this replication group. If
|
2065
|
-
# `false`, Multi-AZ is disabled for this replication group.
|
2066
|
-
#
|
2067
2087
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
2068
2088
|
# enabled) replication groups.
|
2069
2089
|
#
|
@@ -2079,6 +2099,16 @@ module Aws::ElastiCache
|
|
2079
2099
|
# * Redis (cluster mode enabled): T1 node types.
|
2080
2100
|
# @return [Boolean]
|
2081
2101
|
#
|
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
|
2110
|
+
# @return [Boolean]
|
2111
|
+
#
|
2082
2112
|
# @!attribute [rw] num_cache_clusters
|
2083
2113
|
# The number of clusters this replication group initially has.
|
2084
2114
|
#
|
@@ -2464,6 +2494,7 @@ module Aws::ElastiCache
|
|
2464
2494
|
:global_replication_group_id,
|
2465
2495
|
:primary_cluster_id,
|
2466
2496
|
:automatic_failover_enabled,
|
2497
|
+
:multi_az_enabled,
|
2467
2498
|
:num_cache_clusters,
|
2468
2499
|
:preferred_cache_cluster_a_zs,
|
2469
2500
|
:num_node_groups,
|
@@ -4379,6 +4410,10 @@ module Aws::ElastiCache
|
|
4379
4410
|
# Amazon VPC using redis version `3.2.6`, `4.x` or later.
|
4380
4411
|
# @return [Boolean]
|
4381
4412
|
#
|
4413
|
+
# @!attribute [rw] arn
|
4414
|
+
# The ARN (Amazon Resource Name) of the global replication group.
|
4415
|
+
# @return [String]
|
4416
|
+
#
|
4382
4417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/GlobalReplicationGroup AWS API Documentation
|
4383
4418
|
#
|
4384
4419
|
class GlobalReplicationGroup < Struct.new(
|
@@ -4393,7 +4428,8 @@ module Aws::ElastiCache
|
|
4393
4428
|
:global_node_groups,
|
4394
4429
|
:auth_token_enabled,
|
4395
4430
|
:transit_encryption_enabled,
|
4396
|
-
:at_rest_encryption_enabled
|
4431
|
+
:at_rest_encryption_enabled,
|
4432
|
+
:arn)
|
4397
4433
|
include Aws::Structure
|
4398
4434
|
end
|
4399
4435
|
|
@@ -5327,6 +5363,7 @@ module Aws::ElastiCache
|
|
5327
5363
|
# primary_cluster_id: "String",
|
5328
5364
|
# snapshotting_cluster_id: "String",
|
5329
5365
|
# automatic_failover_enabled: false,
|
5366
|
+
# multi_az_enabled: false,
|
5330
5367
|
# node_group_id: "String",
|
5331
5368
|
# cache_security_group_names: ["String"],
|
5332
5369
|
# security_group_ids: ["String"],
|
@@ -5382,6 +5419,16 @@ module Aws::ElastiCache
|
|
5382
5419
|
# * Redis (cluster mode enabled): T1 node types.
|
5383
5420
|
# @return [Boolean]
|
5384
5421
|
#
|
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
|
5430
|
+
# @return [Boolean]
|
5431
|
+
#
|
5385
5432
|
# @!attribute [rw] node_group_id
|
5386
5433
|
# Deprecated. This parameter is not used.
|
5387
5434
|
# @return [String]
|
@@ -5561,6 +5608,7 @@ module Aws::ElastiCache
|
|
5561
5608
|
:primary_cluster_id,
|
5562
5609
|
:snapshotting_cluster_id,
|
5563
5610
|
:automatic_failover_enabled,
|
5611
|
+
:multi_az_enabled,
|
5564
5612
|
:node_group_id,
|
5565
5613
|
:cache_security_group_names,
|
5566
5614
|
:security_group_ids,
|
@@ -5704,7 +5752,7 @@ module Aws::ElastiCache
|
|
5704
5752
|
#
|
5705
5753
|
# @!attribute [rw] status
|
5706
5754
|
# The current state of this replication group - `creating`,
|
5707
|
-
# `available`,
|
5755
|
+
# `available`, `modifying`, `deleting`.
|
5708
5756
|
# @return [String]
|
5709
5757
|
#
|
5710
5758
|
# @!attribute [rw] primary_endpoint
|
@@ -6447,6 +6495,16 @@ module Aws::ElastiCache
|
|
6447
6495
|
# * Redis (cluster mode enabled): T1 node types.
|
6448
6496
|
# @return [String]
|
6449
6497
|
#
|
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
|
6506
|
+
# @return [String]
|
6507
|
+
#
|
6450
6508
|
# @!attribute [rw] configuration_endpoint
|
6451
6509
|
# The configuration endpoint for this replication group. Use the
|
6452
6510
|
# configuration endpoint to connect to this replication group.
|
@@ -6532,6 +6590,10 @@ module Aws::ElastiCache
|
|
6532
6590
|
# The ID of the KMS key used to encrypt the disk in the cluster.
|
6533
6591
|
# @return [String]
|
6534
6592
|
#
|
6593
|
+
# @!attribute [rw] arn
|
6594
|
+
# The ARN (Amazon Resource Name) of the replication group.
|
6595
|
+
# @return [String]
|
6596
|
+
#
|
6535
6597
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
6536
6598
|
#
|
6537
6599
|
class ReplicationGroup < Struct.new(
|
@@ -6544,6 +6606,7 @@ module Aws::ElastiCache
|
|
6544
6606
|
:node_groups,
|
6545
6607
|
:snapshotting_cluster_id,
|
6546
6608
|
:automatic_failover,
|
6609
|
+
:multi_az,
|
6547
6610
|
:configuration_endpoint,
|
6548
6611
|
:snapshot_retention_limit,
|
6549
6612
|
:snapshot_window,
|
@@ -6553,7 +6616,8 @@ module Aws::ElastiCache
|
|
6553
6616
|
:auth_token_last_modified_date,
|
6554
6617
|
:transit_encryption_enabled,
|
6555
6618
|
:at_rest_encryption_enabled,
|
6556
|
-
:kms_key_id
|
6619
|
+
:kms_key_id,
|
6620
|
+
:arn)
|
6557
6621
|
include Aws::Structure
|
6558
6622
|
end
|
6559
6623
|
|
@@ -7486,6 +7550,10 @@ module Aws::ElastiCache
|
|
7486
7550
|
# The ID of the KMS key used to encrypt the snapshot.
|
7487
7551
|
# @return [String]
|
7488
7552
|
#
|
7553
|
+
# @!attribute [rw] arn
|
7554
|
+
# The ARN (Amazon Resource Name) of the snapshot.
|
7555
|
+
# @return [String]
|
7556
|
+
#
|
7489
7557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
|
7490
7558
|
#
|
7491
7559
|
class Snapshot < Struct.new(
|
@@ -7513,7 +7581,8 @@ module Aws::ElastiCache
|
|
7513
7581
|
:num_node_groups,
|
7514
7582
|
:automatic_failover,
|
7515
7583
|
:node_snapshots,
|
7516
|
-
:kms_key_id
|
7584
|
+
:kms_key_id,
|
7585
|
+
:arn)
|
7517
7586
|
include Aws::Structure
|
7518
7587
|
end
|
7519
7588
|
|
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-
|
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
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|