aws-sdk-elasticache 1.32.0 → 1.37.1
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 +1 -1
- data/lib/aws-sdk-elasticache/client.rb +78 -31
- data/lib/aws-sdk-elasticache/client_api.rb +11 -0
- data/lib/aws-sdk-elasticache/types.rb +98 -42
- 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: a13a1e5c49d473c3bca8fb62ae6e1be1972cf3fedfe47e804e0ffb679cf29db6
|
4
|
+
data.tar.gz: 6ee932019e4173a468e9b170430f329047805837b430b8cdd8eb5713c49a2576
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c55d91b19d5f437fede4a9316e8aa22fcc8054faac7c5ed81a4269441bc4a7bb1d7e2e504bf5744da4945c0c515e7e02e60cafd64930c1b3bbc1d81f37519382
|
7
|
+
data.tar.gz: 140e42e0ddc9fa8760a2217205b94e0ef6d3bb089b214093bd2293fe75d818f7e2b5be5b0520ed2490d50c3ff926e409142de43bf90b50b918a2b3c06c4b0829
|
data/lib/aws-sdk-elasticache.rb
CHANGED
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
30
|
|
@@ -69,6 +70,7 @@ module Aws::ElastiCache
|
|
69
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
75
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
76
|
|
@@ -161,7 +163,7 @@ module Aws::ElastiCache
|
|
161
163
|
# @option options [String] :endpoint
|
162
164
|
# The client endpoint is normally constructed from the `:region`
|
163
165
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
167
|
#
|
166
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +178,7 @@ module Aws::ElastiCache
|
|
176
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
179
|
#
|
178
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
182
|
#
|
181
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
184
|
# The log formatter.
|
@@ -461,6 +463,7 @@ module Aws::ElastiCache
|
|
461
463
|
# resp.cache_security_group.ec2_security_groups[0].status #=> String
|
462
464
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_name #=> String
|
463
465
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
466
|
+
# resp.cache_security_group.arn #=> String
|
464
467
|
#
|
465
468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AuthorizeCacheSecurityGroupIngress AWS API Documentation
|
466
469
|
#
|
@@ -506,7 +509,7 @@ module Aws::ElastiCache
|
|
506
509
|
# resp.processed_update_actions[0].replication_group_id #=> String
|
507
510
|
# resp.processed_update_actions[0].cache_cluster_id #=> String
|
508
511
|
# resp.processed_update_actions[0].service_update_name #=> String
|
509
|
-
# resp.processed_update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete"
|
512
|
+
# resp.processed_update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete", "scheduling", "scheduled", "not-applicable"
|
510
513
|
# resp.unprocessed_update_actions #=> Array
|
511
514
|
# resp.unprocessed_update_actions[0].replication_group_id #=> String
|
512
515
|
# resp.unprocessed_update_actions[0].cache_cluster_id #=> String
|
@@ -558,7 +561,7 @@ module Aws::ElastiCache
|
|
558
561
|
# resp.processed_update_actions[0].replication_group_id #=> String
|
559
562
|
# resp.processed_update_actions[0].cache_cluster_id #=> String
|
560
563
|
# resp.processed_update_actions[0].service_update_name #=> String
|
561
|
-
# resp.processed_update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete"
|
564
|
+
# resp.processed_update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete", "scheduling", "scheduled", "not-applicable"
|
562
565
|
# resp.unprocessed_update_actions #=> Array
|
563
566
|
# resp.unprocessed_update_actions[0].replication_group_id #=> String
|
564
567
|
# resp.unprocessed_update_actions[0].cache_cluster_id #=> String
|
@@ -627,6 +630,7 @@ module Aws::ElastiCache
|
|
627
630
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
628
631
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
629
632
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
633
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
630
634
|
# resp.replication_group.configuration_endpoint.address #=> String
|
631
635
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
632
636
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -638,6 +642,7 @@ module Aws::ElastiCache
|
|
638
642
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
639
643
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
640
644
|
# resp.replication_group.kms_key_id #=> String
|
645
|
+
# resp.replication_group.arn #=> String
|
641
646
|
#
|
642
647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
|
643
648
|
#
|
@@ -849,6 +854,7 @@ module Aws::ElastiCache
|
|
849
854
|
# resp.snapshot.node_snapshots[0].cache_node_create_time #=> Time
|
850
855
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
851
856
|
# resp.snapshot.kms_key_id #=> String
|
857
|
+
# resp.snapshot.arn #=> String
|
852
858
|
#
|
853
859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshot AWS API Documentation
|
854
860
|
#
|
@@ -1365,6 +1371,7 @@ module Aws::ElastiCache
|
|
1365
1371
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
1366
1372
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
1367
1373
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
1374
|
+
# resp.cache_cluster.arn #=> String
|
1368
1375
|
#
|
1369
1376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheCluster AWS API Documentation
|
1370
1377
|
#
|
@@ -1445,6 +1452,7 @@ module Aws::ElastiCache
|
|
1445
1452
|
# resp.cache_parameter_group.cache_parameter_group_family #=> String
|
1446
1453
|
# resp.cache_parameter_group.description #=> String
|
1447
1454
|
# resp.cache_parameter_group.is_global #=> Boolean
|
1455
|
+
# resp.cache_parameter_group.arn #=> String
|
1448
1456
|
#
|
1449
1457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheParameterGroup AWS API Documentation
|
1450
1458
|
#
|
@@ -1509,6 +1517,7 @@ module Aws::ElastiCache
|
|
1509
1517
|
# resp.cache_security_group.ec2_security_groups[0].status #=> String
|
1510
1518
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_name #=> String
|
1511
1519
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
1520
|
+
# resp.cache_security_group.arn #=> String
|
1512
1521
|
#
|
1513
1522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheSecurityGroup AWS API Documentation
|
1514
1523
|
#
|
@@ -1603,6 +1612,7 @@ module Aws::ElastiCache
|
|
1603
1612
|
# resp.cache_subnet_group.subnets #=> Array
|
1604
1613
|
# resp.cache_subnet_group.subnets[0].subnet_identifier #=> String
|
1605
1614
|
# resp.cache_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
1615
|
+
# resp.cache_subnet_group.arn #=> String
|
1606
1616
|
#
|
1607
1617
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheSubnetGroup AWS API Documentation
|
1608
1618
|
#
|
@@ -1621,7 +1631,7 @@ module Aws::ElastiCache
|
|
1621
1631
|
# Global
|
1622
1632
|
# Datastore](/AmazonElastiCache/latest/red-ug/Redis-Global-Clusters.html).
|
1623
1633
|
#
|
1624
|
-
# * The **
|
1634
|
+
# * The **GlobalReplicationGroupIdSuffix** is the name of the Global
|
1625
1635
|
# Datastore.
|
1626
1636
|
#
|
1627
1637
|
# * The **PrimaryReplicationGroupId** represents the name of the primary
|
@@ -1629,7 +1639,7 @@ module Aws::ElastiCache
|
|
1629
1639
|
# secondary cluster.
|
1630
1640
|
#
|
1631
1641
|
# @option params [required, String] :global_replication_group_id_suffix
|
1632
|
-
# The suffix
|
1642
|
+
# The suffix name of a Global Datastore. The suffix guarantees
|
1633
1643
|
# uniqueness of the Global Datastore name across multiple regions.
|
1634
1644
|
#
|
1635
1645
|
# @option params [String] :global_replication_group_description
|
@@ -1672,6 +1682,7 @@ module Aws::ElastiCache
|
|
1672
1682
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
1673
1683
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
1674
1684
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
1685
|
+
# resp.global_replication_group.arn #=> String
|
1675
1686
|
#
|
1676
1687
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateGlobalReplicationGroup AWS API Documentation
|
1677
1688
|
#
|
@@ -1764,8 +1775,10 @@ module Aws::ElastiCache
|
|
1764
1775
|
#
|
1765
1776
|
# * Redis (cluster mode enabled): T1 node types.
|
1766
1777
|
#
|
1778
|
+
# @option params [Boolean] :multi_az_enabled
|
1779
|
+
#
|
1767
1780
|
# @option params [Integer] :num_cache_clusters
|
1768
|
-
# The number of
|
1781
|
+
# The number of nodes in the cluster.
|
1769
1782
|
#
|
1770
1783
|
# This parameter is not used if there is more than one node group
|
1771
1784
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -1819,10 +1832,10 @@ module Aws::ElastiCache
|
|
1819
1832
|
# If you're creating a Redis (cluster mode disabled) or a Redis
|
1820
1833
|
# (cluster mode enabled) replication group, you can use this parameter
|
1821
1834
|
# to individually configure each node group (shard), or you can omit
|
1822
|
-
# this parameter. However, when seeding a Redis (cluster
|
1823
|
-
# cluster from a S3 rdb file
|
1824
|
-
# using this parameter because you must specify the slots
|
1825
|
-
# group.
|
1835
|
+
# this parameter. However, it is required when seeding a Redis (cluster
|
1836
|
+
# mode enabled) cluster from a S3 rdb file. You must configure each node
|
1837
|
+
# group (shard) using this parameter because you must specify the slots
|
1838
|
+
# for each node group.
|
1826
1839
|
#
|
1827
1840
|
# @option params [String] :cache_node_type
|
1828
1841
|
# The compute and memory capacity of the nodes in the node group
|
@@ -2218,6 +2231,7 @@ module Aws::ElastiCache
|
|
2218
2231
|
# global_replication_group_id: "String",
|
2219
2232
|
# primary_cluster_id: "String",
|
2220
2233
|
# automatic_failover_enabled: false,
|
2234
|
+
# multi_az_enabled: false,
|
2221
2235
|
# num_cache_clusters: 1,
|
2222
2236
|
# preferred_cache_cluster_a_zs: ["String"],
|
2223
2237
|
# num_node_groups: 1,
|
@@ -2288,6 +2302,7 @@ module Aws::ElastiCache
|
|
2288
2302
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2289
2303
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2290
2304
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2305
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2291
2306
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2292
2307
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2293
2308
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -2299,6 +2314,7 @@ module Aws::ElastiCache
|
|
2299
2314
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
2300
2315
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
2301
2316
|
# resp.replication_group.kms_key_id #=> String
|
2317
|
+
# resp.replication_group.arn #=> String
|
2302
2318
|
#
|
2303
2319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
|
2304
2320
|
#
|
@@ -2507,6 +2523,7 @@ module Aws::ElastiCache
|
|
2507
2523
|
# resp.snapshot.node_snapshots[0].cache_node_create_time #=> Time
|
2508
2524
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
2509
2525
|
# resp.snapshot.kms_key_id #=> String
|
2526
|
+
# resp.snapshot.arn #=> String
|
2510
2527
|
#
|
2511
2528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshot AWS API Documentation
|
2512
2529
|
#
|
@@ -2579,6 +2596,7 @@ module Aws::ElastiCache
|
|
2579
2596
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
2580
2597
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
2581
2598
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
2599
|
+
# resp.global_replication_group.arn #=> String
|
2582
2600
|
#
|
2583
2601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseNodeGroupsInGlobalReplicationGroup AWS API Documentation
|
2584
2602
|
#
|
@@ -2681,6 +2699,7 @@ module Aws::ElastiCache
|
|
2681
2699
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2682
2700
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2683
2701
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2702
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2684
2703
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2685
2704
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2686
2705
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -2692,6 +2711,7 @@ module Aws::ElastiCache
|
|
2692
2711
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
2693
2712
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
2694
2713
|
# resp.replication_group.kms_key_id #=> String
|
2714
|
+
# resp.replication_group.arn #=> String
|
2695
2715
|
#
|
2696
2716
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
|
2697
2717
|
#
|
@@ -2831,6 +2851,7 @@ module Aws::ElastiCache
|
|
2831
2851
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
2832
2852
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
2833
2853
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
2854
|
+
# resp.cache_cluster.arn #=> String
|
2834
2855
|
#
|
2835
2856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteCacheCluster AWS API Documentation
|
2836
2857
|
#
|
@@ -2974,16 +2995,12 @@ module Aws::ElastiCache
|
|
2974
2995
|
# ElastiCache immediately begins deleting the selected resources; you
|
2975
2996
|
# cannot cancel or revert this operation.
|
2976
2997
|
#
|
2977
|
-
# <note markdown="1"> This operation is valid for Redis only.
|
2978
|
-
#
|
2979
|
-
# </note>
|
2980
|
-
#
|
2981
2998
|
# @option params [required, String] :global_replication_group_id
|
2982
2999
|
# The name of the Global Datastore
|
2983
3000
|
#
|
2984
3001
|
# @option params [required, Boolean] :retain_primary_replication_group
|
2985
|
-
#
|
2986
|
-
#
|
3002
|
+
# The primary replication group is retained as a standalone replication
|
3003
|
+
# group.
|
2987
3004
|
#
|
2988
3005
|
# @return [Types::DeleteGlobalReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2989
3006
|
#
|
@@ -3017,6 +3034,7 @@ module Aws::ElastiCache
|
|
3017
3034
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
3018
3035
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
3019
3036
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
3037
|
+
# resp.global_replication_group.arn #=> String
|
3020
3038
|
#
|
3021
3039
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteGlobalReplicationGroup AWS API Documentation
|
3022
3040
|
#
|
@@ -3120,6 +3138,7 @@ module Aws::ElastiCache
|
|
3120
3138
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
3121
3139
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
3122
3140
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
3141
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
3123
3142
|
# resp.replication_group.configuration_endpoint.address #=> String
|
3124
3143
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
3125
3144
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -3131,6 +3150,7 @@ module Aws::ElastiCache
|
|
3131
3150
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
3132
3151
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
3133
3152
|
# resp.replication_group.kms_key_id #=> String
|
3153
|
+
# resp.replication_group.arn #=> String
|
3134
3154
|
#
|
3135
3155
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
|
3136
3156
|
#
|
@@ -3242,6 +3262,7 @@ module Aws::ElastiCache
|
|
3242
3262
|
# resp.snapshot.node_snapshots[0].cache_node_create_time #=> Time
|
3243
3263
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
3244
3264
|
# resp.snapshot.kms_key_id #=> String
|
3265
|
+
# resp.snapshot.arn #=> String
|
3245
3266
|
#
|
3246
3267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshot AWS API Documentation
|
3247
3268
|
#
|
@@ -3486,6 +3507,7 @@ module Aws::ElastiCache
|
|
3486
3507
|
# resp.cache_clusters[0].auth_token_last_modified_date #=> Time
|
3487
3508
|
# resp.cache_clusters[0].transit_encryption_enabled #=> Boolean
|
3488
3509
|
# resp.cache_clusters[0].at_rest_encryption_enabled #=> Boolean
|
3510
|
+
# resp.cache_clusters[0].arn #=> String
|
3489
3511
|
#
|
3490
3512
|
#
|
3491
3513
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -3822,6 +3844,7 @@ module Aws::ElastiCache
|
|
3822
3844
|
# resp.cache_parameter_groups[0].cache_parameter_group_family #=> String
|
3823
3845
|
# resp.cache_parameter_groups[0].description #=> String
|
3824
3846
|
# resp.cache_parameter_groups[0].is_global #=> Boolean
|
3847
|
+
# resp.cache_parameter_groups[0].arn #=> String
|
3825
3848
|
#
|
3826
3849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheParameterGroups AWS API Documentation
|
3827
3850
|
#
|
@@ -4372,6 +4395,7 @@ module Aws::ElastiCache
|
|
4372
4395
|
# resp.cache_security_groups[0].ec2_security_groups[0].status #=> String
|
4373
4396
|
# resp.cache_security_groups[0].ec2_security_groups[0].ec2_security_group_name #=> String
|
4374
4397
|
# resp.cache_security_groups[0].ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
4398
|
+
# resp.cache_security_groups[0].arn #=> String
|
4375
4399
|
#
|
4376
4400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheSecurityGroups AWS API Documentation
|
4377
4401
|
#
|
@@ -4478,6 +4502,7 @@ module Aws::ElastiCache
|
|
4478
4502
|
# resp.cache_subnet_groups[0].subnets #=> Array
|
4479
4503
|
# resp.cache_subnet_groups[0].subnets[0].subnet_identifier #=> String
|
4480
4504
|
# resp.cache_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
4505
|
+
# resp.cache_subnet_groups[0].arn #=> String
|
4481
4506
|
#
|
4482
4507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheSubnetGroups AWS API Documentation
|
4483
4508
|
#
|
@@ -5419,6 +5444,7 @@ module Aws::ElastiCache
|
|
5419
5444
|
# resp.global_replication_groups[0].auth_token_enabled #=> Boolean
|
5420
5445
|
# resp.global_replication_groups[0].transit_encryption_enabled #=> Boolean
|
5421
5446
|
# resp.global_replication_groups[0].at_rest_encryption_enabled #=> Boolean
|
5447
|
+
# resp.global_replication_groups[0].arn #=> String
|
5422
5448
|
#
|
5423
5449
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeGlobalReplicationGroups AWS API Documentation
|
5424
5450
|
#
|
@@ -5570,6 +5596,7 @@ module Aws::ElastiCache
|
|
5570
5596
|
# resp.replication_groups[0].node_groups[0].node_group_members[0].current_role #=> String
|
5571
5597
|
# resp.replication_groups[0].snapshotting_cluster_id #=> String
|
5572
5598
|
# resp.replication_groups[0].automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
5599
|
+
# resp.replication_groups[0].multi_az #=> String, one of "enabled", "disabled"
|
5573
5600
|
# resp.replication_groups[0].configuration_endpoint.address #=> String
|
5574
5601
|
# resp.replication_groups[0].configuration_endpoint.port #=> Integer
|
5575
5602
|
# resp.replication_groups[0].snapshot_retention_limit #=> Integer
|
@@ -5581,6 +5608,7 @@ module Aws::ElastiCache
|
|
5581
5608
|
# resp.replication_groups[0].transit_encryption_enabled #=> Boolean
|
5582
5609
|
# resp.replication_groups[0].at_rest_encryption_enabled #=> Boolean
|
5583
5610
|
# resp.replication_groups[0].kms_key_id #=> String
|
5611
|
+
# resp.replication_groups[0].arn #=> String
|
5584
5612
|
#
|
5585
5613
|
#
|
5586
5614
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -6468,6 +6496,7 @@ module Aws::ElastiCache
|
|
6468
6496
|
# resp.snapshots[0].node_snapshots[0].cache_node_create_time #=> Time
|
6469
6497
|
# resp.snapshots[0].node_snapshots[0].snapshot_create_time #=> Time
|
6470
6498
|
# resp.snapshots[0].kms_key_id #=> String
|
6499
|
+
# resp.snapshots[0].arn #=> String
|
6471
6500
|
#
|
6472
6501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeSnapshots AWS API Documentation
|
6473
6502
|
#
|
@@ -6534,7 +6563,7 @@ module Aws::ElastiCache
|
|
6534
6563
|
# start_time: Time.now,
|
6535
6564
|
# end_time: Time.now,
|
6536
6565
|
# },
|
6537
|
-
# update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete
|
6566
|
+
# update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete, scheduling, scheduled, not-applicable
|
6538
6567
|
# show_node_level_update_status: false,
|
6539
6568
|
# max_records: 1,
|
6540
6569
|
# marker: "String",
|
@@ -6553,7 +6582,7 @@ module Aws::ElastiCache
|
|
6553
6582
|
# resp.update_actions[0].service_update_recommended_apply_by_date #=> Time
|
6554
6583
|
# resp.update_actions[0].service_update_type #=> String, one of "security-update"
|
6555
6584
|
# resp.update_actions[0].update_action_available_date #=> Time
|
6556
|
-
# resp.update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete"
|
6585
|
+
# resp.update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete", "scheduling", "scheduled", "not-applicable"
|
6557
6586
|
# resp.update_actions[0].nodes_updated #=> String
|
6558
6587
|
# resp.update_actions[0].update_action_status_modified_date #=> Time
|
6559
6588
|
# resp.update_actions[0].sla_met #=> String, one of "yes", "no", "n/a"
|
@@ -6639,6 +6668,7 @@ module Aws::ElastiCache
|
|
6639
6668
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
6640
6669
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
6641
6670
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
6671
|
+
# resp.global_replication_group.arn #=> String
|
6642
6672
|
#
|
6643
6673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DisassociateGlobalReplicationGroup AWS API Documentation
|
6644
6674
|
#
|
@@ -6650,6 +6680,8 @@ module Aws::ElastiCache
|
|
6650
6680
|
end
|
6651
6681
|
|
6652
6682
|
# Used to failover the primary region to a selected secondary region.
|
6683
|
+
# The selected secondary region will be come primary, and all other
|
6684
|
+
# clusters will become secondary.
|
6653
6685
|
#
|
6654
6686
|
# @option params [required, String] :global_replication_group_id
|
6655
6687
|
# The name of the Global Datastore
|
@@ -6693,6 +6725,7 @@ module Aws::ElastiCache
|
|
6693
6725
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
6694
6726
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
6695
6727
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
6728
|
+
# resp.global_replication_group.arn #=> String
|
6696
6729
|
#
|
6697
6730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/FailoverGlobalReplicationGroup AWS API Documentation
|
6698
6731
|
#
|
@@ -6765,6 +6798,7 @@ module Aws::ElastiCache
|
|
6765
6798
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
6766
6799
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
6767
6800
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
6801
|
+
# resp.global_replication_group.arn #=> String
|
6768
6802
|
#
|
6769
6803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseNodeGroupsInGlobalReplicationGroup AWS API Documentation
|
6770
6804
|
#
|
@@ -6851,6 +6885,7 @@ module Aws::ElastiCache
|
|
6851
6885
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
6852
6886
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
6853
6887
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
6888
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
6854
6889
|
# resp.replication_group.configuration_endpoint.address #=> String
|
6855
6890
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
6856
6891
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -6862,6 +6897,7 @@ module Aws::ElastiCache
|
|
6862
6897
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
6863
6898
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
6864
6899
|
# resp.replication_group.kms_key_id #=> String
|
6900
|
+
# resp.replication_group.arn #=> String
|
6865
6901
|
#
|
6866
6902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
|
6867
6903
|
#
|
@@ -7462,6 +7498,7 @@ module Aws::ElastiCache
|
|
7462
7498
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
7463
7499
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
7464
7500
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
7501
|
+
# resp.cache_cluster.arn #=> String
|
7465
7502
|
#
|
7466
7503
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheCluster AWS API Documentation
|
7467
7504
|
#
|
@@ -7628,6 +7665,7 @@ module Aws::ElastiCache
|
|
7628
7665
|
# resp.cache_subnet_group.subnets #=> Array
|
7629
7666
|
# resp.cache_subnet_group.subnets[0].subnet_identifier #=> String
|
7630
7667
|
# resp.cache_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
7668
|
+
# resp.cache_subnet_group.arn #=> String
|
7631
7669
|
#
|
7632
7670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheSubnetGroup AWS API Documentation
|
7633
7671
|
#
|
@@ -7644,12 +7682,10 @@ module Aws::ElastiCache
|
|
7644
7682
|
# The name of the Global Datastore
|
7645
7683
|
#
|
7646
7684
|
# @option params [required, Boolean] :apply_immediately
|
7647
|
-
#
|
7648
|
-
#
|
7649
|
-
# possible
|
7650
|
-
#
|
7651
|
-
# group are applied on the next maintenance reboot, or the next failure
|
7652
|
-
# reboot, whichever occurs first.
|
7685
|
+
# This parameter causes the modifications in this request and any
|
7686
|
+
# pending modifications to be applied, asynchronously and as soon as
|
7687
|
+
# possible. Modifications to Global Replication Groups cannot be
|
7688
|
+
# requested to be applied in PreferredMaintenceWindow.
|
7653
7689
|
#
|
7654
7690
|
# @option params [String] :cache_node_type
|
7655
7691
|
# A valid cache node type that you want to scale this Global Datastore
|
@@ -7702,6 +7738,7 @@ module Aws::ElastiCache
|
|
7702
7738
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
7703
7739
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
7704
7740
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
7741
|
+
# resp.global_replication_group.arn #=> String
|
7705
7742
|
#
|
7706
7743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyGlobalReplicationGroup AWS API Documentation
|
7707
7744
|
#
|
@@ -7714,10 +7751,6 @@ module Aws::ElastiCache
|
|
7714
7751
|
|
7715
7752
|
# Modifies the settings for a replication group.
|
7716
7753
|
#
|
7717
|
-
# For Redis (cluster mode enabled) clusters, this operation cannot be
|
7718
|
-
# used to change a cluster's node type or engine version. For more
|
7719
|
-
# information, see:
|
7720
|
-
#
|
7721
7754
|
# * [Scaling for Amazon ElastiCache for Redis (cluster mode enabled)][1]
|
7722
7755
|
# in the ElastiCache User Guide
|
7723
7756
|
#
|
@@ -7766,6 +7799,8 @@ module Aws::ElastiCache
|
|
7766
7799
|
#
|
7767
7800
|
# * Redis (cluster mode enabled): T1 node types.
|
7768
7801
|
#
|
7802
|
+
# @option params [Boolean] :multi_az_enabled
|
7803
|
+
#
|
7769
7804
|
# @option params [String] :node_group_id
|
7770
7805
|
# Deprecated. This parameter is not used.
|
7771
7806
|
#
|
@@ -8003,6 +8038,7 @@ module Aws::ElastiCache
|
|
8003
8038
|
# primary_cluster_id: "String",
|
8004
8039
|
# snapshotting_cluster_id: "String",
|
8005
8040
|
# automatic_failover_enabled: false,
|
8041
|
+
# multi_az_enabled: false,
|
8006
8042
|
# node_group_id: "String",
|
8007
8043
|
# cache_security_group_names: ["String"],
|
8008
8044
|
# security_group_ids: ["String"],
|
@@ -8050,6 +8086,7 @@ module Aws::ElastiCache
|
|
8050
8086
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8051
8087
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8052
8088
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8089
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8053
8090
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8054
8091
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8055
8092
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8061,6 +8098,7 @@ module Aws::ElastiCache
|
|
8061
8098
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8062
8099
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8063
8100
|
# resp.replication_group.kms_key_id #=> String
|
8101
|
+
# resp.replication_group.arn #=> String
|
8064
8102
|
#
|
8065
8103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
|
8066
8104
|
#
|
@@ -8167,6 +8205,7 @@ module Aws::ElastiCache
|
|
8167
8205
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8168
8206
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8169
8207
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8208
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8170
8209
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8171
8210
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8172
8211
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8178,6 +8217,7 @@ module Aws::ElastiCache
|
|
8178
8217
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8179
8218
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8180
8219
|
# resp.replication_group.kms_key_id #=> String
|
8220
|
+
# resp.replication_group.arn #=> String
|
8181
8221
|
#
|
8182
8222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
|
8183
8223
|
#
|
@@ -8259,7 +8299,7 @@ module Aws::ElastiCache
|
|
8259
8299
|
req.send_request(options)
|
8260
8300
|
end
|
8261
8301
|
|
8262
|
-
# Redistribute slots to ensure
|
8302
|
+
# Redistribute slots to ensure uniform distribution across existing
|
8263
8303
|
# shards in the cluster.
|
8264
8304
|
#
|
8265
8305
|
# @option params [required, String] :global_replication_group_id
|
@@ -8300,6 +8340,7 @@ module Aws::ElastiCache
|
|
8300
8340
|
# resp.global_replication_group.auth_token_enabled #=> Boolean
|
8301
8341
|
# resp.global_replication_group.transit_encryption_enabled #=> Boolean
|
8302
8342
|
# resp.global_replication_group.at_rest_encryption_enabled #=> Boolean
|
8343
|
+
# resp.global_replication_group.arn #=> String
|
8303
8344
|
#
|
8304
8345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RebalanceSlotsInGlobalReplicationGroup AWS API Documentation
|
8305
8346
|
#
|
@@ -8448,6 +8489,7 @@ module Aws::ElastiCache
|
|
8448
8489
|
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
8449
8490
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
8450
8491
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
8492
|
+
# resp.cache_cluster.arn #=> String
|
8451
8493
|
#
|
8452
8494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RebootCacheCluster AWS API Documentation
|
8453
8495
|
#
|
@@ -8659,6 +8701,7 @@ module Aws::ElastiCache
|
|
8659
8701
|
# resp.cache_security_group.ec2_security_groups[0].status #=> String
|
8660
8702
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_name #=> String
|
8661
8703
|
# resp.cache_security_group.ec2_security_groups[0].ec2_security_group_owner_id #=> String
|
8704
|
+
# resp.cache_security_group.arn #=> String
|
8662
8705
|
#
|
8663
8706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RevokeCacheSecurityGroupIngress AWS API Documentation
|
8664
8707
|
#
|
@@ -8724,6 +8767,7 @@ module Aws::ElastiCache
|
|
8724
8767
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8725
8768
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8726
8769
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8770
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8727
8771
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8728
8772
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8729
8773
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8735,6 +8779,7 @@ module Aws::ElastiCache
|
|
8735
8779
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8736
8780
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8737
8781
|
# resp.replication_group.kms_key_id #=> String
|
8782
|
+
# resp.replication_group.arn #=> String
|
8738
8783
|
#
|
8739
8784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
|
8740
8785
|
#
|
@@ -8850,6 +8895,7 @@ module Aws::ElastiCache
|
|
8850
8895
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8851
8896
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8852
8897
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8898
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8853
8899
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8854
8900
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8855
8901
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8861,6 +8907,7 @@ module Aws::ElastiCache
|
|
8861
8907
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
8862
8908
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
8863
8909
|
# resp.replication_group.kms_key_id #=> String
|
8910
|
+
# resp.replication_group.arn #=> String
|
8864
8911
|
#
|
8865
8912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
|
8866
8913
|
#
|
@@ -8884,7 +8931,7 @@ module Aws::ElastiCache
|
|
8884
8931
|
params: params,
|
8885
8932
|
config: config)
|
8886
8933
|
context[:gem_name] = 'aws-sdk-elasticache'
|
8887
|
-
context[:gem_version] = '1.
|
8934
|
+
context[:gem_version] = '1.37.1'
|
8888
8935
|
Seahorse::Client::Request.new(handlers, context)
|
8889
8936
|
end
|
8890
8937
|
|
@@ -186,6 +186,7 @@ module Aws::ElastiCache
|
|
186
186
|
ModifyReplicationGroupResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupResult')
|
187
187
|
ModifyReplicationGroupShardConfigurationMessage = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationMessage')
|
188
188
|
ModifyReplicationGroupShardConfigurationResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationResult')
|
189
|
+
MultiAZStatus = Shapes::StringShape.new(name: 'MultiAZStatus')
|
189
190
|
NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
|
190
191
|
NodeGroup = Shapes::StructureShape.new(name: 'NodeGroup')
|
191
192
|
NodeGroupConfiguration = Shapes::StructureShape.new(name: 'NodeGroupConfiguration')
|
@@ -367,6 +368,7 @@ module Aws::ElastiCache
|
|
367
368
|
CacheCluster.add_member(:auth_token_last_modified_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "AuthTokenLastModifiedDate"))
|
368
369
|
CacheCluster.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
369
370
|
CacheCluster.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
371
|
+
CacheCluster.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
370
372
|
CacheCluster.struct_class = Types::CacheCluster
|
371
373
|
|
372
374
|
CacheClusterAlreadyExistsFault.struct_class = Types::CacheClusterAlreadyExistsFault
|
@@ -442,6 +444,7 @@ module Aws::ElastiCache
|
|
442
444
|
CacheParameterGroup.add_member(:cache_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "CacheParameterGroupFamily"))
|
443
445
|
CacheParameterGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
444
446
|
CacheParameterGroup.add_member(:is_global, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsGlobal"))
|
447
|
+
CacheParameterGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
445
448
|
CacheParameterGroup.struct_class = Types::CacheParameterGroup
|
446
449
|
|
447
450
|
CacheParameterGroupAlreadyExistsFault.struct_class = Types::CacheParameterGroupAlreadyExistsFault
|
@@ -473,6 +476,7 @@ module Aws::ElastiCache
|
|
473
476
|
CacheSecurityGroup.add_member(:cache_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "CacheSecurityGroupName"))
|
474
477
|
CacheSecurityGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
475
478
|
CacheSecurityGroup.add_member(:ec2_security_groups, Shapes::ShapeRef.new(shape: EC2SecurityGroupList, location_name: "EC2SecurityGroups"))
|
479
|
+
CacheSecurityGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
476
480
|
CacheSecurityGroup.struct_class = Types::CacheSecurityGroup
|
477
481
|
|
478
482
|
CacheSecurityGroupAlreadyExistsFault.struct_class = Types::CacheSecurityGroupAlreadyExistsFault
|
@@ -499,6 +503,7 @@ module Aws::ElastiCache
|
|
499
503
|
CacheSubnetGroup.add_member(:cache_subnet_group_description, Shapes::ShapeRef.new(shape: String, location_name: "CacheSubnetGroupDescription"))
|
500
504
|
CacheSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
501
505
|
CacheSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
506
|
+
CacheSubnetGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
502
507
|
CacheSubnetGroup.struct_class = Types::CacheSubnetGroup
|
503
508
|
|
504
509
|
CacheSubnetGroupAlreadyExistsFault.struct_class = Types::CacheSubnetGroupAlreadyExistsFault
|
@@ -606,6 +611,7 @@ module Aws::ElastiCache
|
|
606
611
|
CreateReplicationGroupMessage.add_member(:global_replication_group_id, Shapes::ShapeRef.new(shape: String, location_name: "GlobalReplicationGroupId"))
|
607
612
|
CreateReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
608
613
|
CreateReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
614
|
+
CreateReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
609
615
|
CreateReplicationGroupMessage.add_member(:num_cache_clusters, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumCacheClusters"))
|
610
616
|
CreateReplicationGroupMessage.add_member(:preferred_cache_cluster_a_zs, Shapes::ShapeRef.new(shape: AvailabilityZonesList, location_name: "PreferredCacheClusterAZs"))
|
611
617
|
CreateReplicationGroupMessage.add_member(:num_node_groups, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumNodeGroups"))
|
@@ -891,6 +897,7 @@ module Aws::ElastiCache
|
|
891
897
|
GlobalReplicationGroup.add_member(:auth_token_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AuthTokenEnabled"))
|
892
898
|
GlobalReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
893
899
|
GlobalReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
900
|
+
GlobalReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
894
901
|
GlobalReplicationGroup.struct_class = Types::GlobalReplicationGroup
|
895
902
|
|
896
903
|
GlobalReplicationGroupAlreadyExistsFault.struct_class = Types::GlobalReplicationGroupAlreadyExistsFault
|
@@ -1019,6 +1026,7 @@ module Aws::ElastiCache
|
|
1019
1026
|
ModifyReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
1020
1027
|
ModifyReplicationGroupMessage.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1021
1028
|
ModifyReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
1029
|
+
ModifyReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
1022
1030
|
ModifyReplicationGroupMessage.add_member(:node_group_id, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "NodeGroupId"))
|
1023
1031
|
ModifyReplicationGroupMessage.add_member(:cache_security_group_names, Shapes::ShapeRef.new(shape: CacheSecurityGroupNameList, location_name: "CacheSecurityGroupNames"))
|
1024
1032
|
ModifyReplicationGroupMessage.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdsList, location_name: "SecurityGroupIds"))
|
@@ -1216,6 +1224,7 @@ module Aws::ElastiCache
|
|
1216
1224
|
ReplicationGroup.add_member(:node_groups, Shapes::ShapeRef.new(shape: NodeGroupList, location_name: "NodeGroups"))
|
1217
1225
|
ReplicationGroup.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1218
1226
|
ReplicationGroup.add_member(:automatic_failover, Shapes::ShapeRef.new(shape: AutomaticFailoverStatus, location_name: "AutomaticFailover"))
|
1227
|
+
ReplicationGroup.add_member(:multi_az, Shapes::ShapeRef.new(shape: MultiAZStatus, location_name: "MultiAZ"))
|
1219
1228
|
ReplicationGroup.add_member(:configuration_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ConfigurationEndpoint"))
|
1220
1229
|
ReplicationGroup.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
1221
1230
|
ReplicationGroup.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
@@ -1226,6 +1235,7 @@ module Aws::ElastiCache
|
|
1226
1235
|
ReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
1227
1236
|
ReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
1228
1237
|
ReplicationGroup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1238
|
+
ReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
1229
1239
|
ReplicationGroup.struct_class = Types::ReplicationGroup
|
1230
1240
|
|
1231
1241
|
ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
|
@@ -1379,6 +1389,7 @@ module Aws::ElastiCache
|
|
1379
1389
|
Snapshot.add_member(:automatic_failover, Shapes::ShapeRef.new(shape: AutomaticFailoverStatus, location_name: "AutomaticFailover"))
|
1380
1390
|
Snapshot.add_member(:node_snapshots, Shapes::ShapeRef.new(shape: NodeSnapshotList, location_name: "NodeSnapshots"))
|
1381
1391
|
Snapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1392
|
+
Snapshot.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
1382
1393
|
Snapshot.struct_class = Types::Snapshot
|
1383
1394
|
|
1384
1395
|
SnapshotAlreadyExistsFault.struct_class = Types::SnapshotAlreadyExistsFault
|
@@ -478,6 +478,10 @@ module Aws::ElastiCache
|
|
478
478
|
# Default: `false`
|
479
479
|
# @return [Boolean]
|
480
480
|
#
|
481
|
+
# @!attribute [rw] arn
|
482
|
+
# The ARN (Amazon Resource Name) of the cache cluster.
|
483
|
+
# @return [String]
|
484
|
+
#
|
481
485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
|
482
486
|
#
|
483
487
|
class CacheCluster < Struct.new(
|
@@ -506,7 +510,8 @@ module Aws::ElastiCache
|
|
506
510
|
:auth_token_enabled,
|
507
511
|
:auth_token_last_modified_date,
|
508
512
|
:transit_encryption_enabled,
|
509
|
-
:at_rest_encryption_enabled
|
513
|
+
:at_rest_encryption_enabled,
|
514
|
+
:arn)
|
510
515
|
include Aws::Structure
|
511
516
|
end
|
512
517
|
|
@@ -875,13 +880,18 @@ module Aws::ElastiCache
|
|
875
880
|
# Datastore
|
876
881
|
# @return [Boolean]
|
877
882
|
#
|
883
|
+
# @!attribute [rw] arn
|
884
|
+
# The ARN (Amazon Resource Name) of the cache parameter group.
|
885
|
+
# @return [String]
|
886
|
+
#
|
878
887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheParameterGroup AWS API Documentation
|
879
888
|
#
|
880
889
|
class CacheParameterGroup < Struct.new(
|
881
890
|
:cache_parameter_group_name,
|
882
891
|
:cache_parameter_group_family,
|
883
892
|
:description,
|
884
|
-
:is_global
|
893
|
+
:is_global,
|
894
|
+
:arn)
|
885
895
|
include Aws::Structure
|
886
896
|
end
|
887
897
|
|
@@ -1016,13 +1026,18 @@ module Aws::ElastiCache
|
|
1016
1026
|
# cache security group.
|
1017
1027
|
# @return [Array<Types::EC2SecurityGroup>]
|
1018
1028
|
#
|
1029
|
+
# @!attribute [rw] arn
|
1030
|
+
# The ARN (Amazon Resource Name) of the cache security group.
|
1031
|
+
# @return [String]
|
1032
|
+
#
|
1019
1033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSecurityGroup AWS API Documentation
|
1020
1034
|
#
|
1021
1035
|
class CacheSecurityGroup < Struct.new(
|
1022
1036
|
:owner_id,
|
1023
1037
|
:cache_security_group_name,
|
1024
1038
|
:description,
|
1025
|
-
:ec2_security_groups
|
1039
|
+
:ec2_security_groups,
|
1040
|
+
:arn)
|
1026
1041
|
include Aws::Structure
|
1027
1042
|
end
|
1028
1043
|
|
@@ -1109,13 +1124,18 @@ module Aws::ElastiCache
|
|
1109
1124
|
# A list of subnets associated with the cache subnet group.
|
1110
1125
|
# @return [Array<Types::Subnet>]
|
1111
1126
|
#
|
1127
|
+
# @!attribute [rw] arn
|
1128
|
+
# The ARN (Amazon Resource Name) of the cache subnet group.
|
1129
|
+
# @return [String]
|
1130
|
+
#
|
1112
1131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSubnetGroup AWS API Documentation
|
1113
1132
|
#
|
1114
1133
|
class CacheSubnetGroup < Struct.new(
|
1115
1134
|
:cache_subnet_group_name,
|
1116
1135
|
:cache_subnet_group_description,
|
1117
1136
|
:vpc_id,
|
1118
|
-
:subnets
|
1137
|
+
:subnets,
|
1138
|
+
:arn)
|
1119
1139
|
include Aws::Structure
|
1120
1140
|
end
|
1121
1141
|
|
@@ -1932,7 +1952,7 @@ module Aws::ElastiCache
|
|
1932
1952
|
# }
|
1933
1953
|
#
|
1934
1954
|
# @!attribute [rw] global_replication_group_id_suffix
|
1935
|
-
# The suffix
|
1955
|
+
# The suffix name of a Global Datastore. The suffix guarantees
|
1936
1956
|
# uniqueness of the Global Datastore name across multiple regions.
|
1937
1957
|
# @return [String]
|
1938
1958
|
#
|
@@ -1960,8 +1980,9 @@ module Aws::ElastiCache
|
|
1960
1980
|
# secondary cluster accepts only reads. The primary cluster
|
1961
1981
|
# automatically replicates updates to the secondary cluster.
|
1962
1982
|
#
|
1963
|
-
# * The **
|
1964
|
-
# Datastore, which is what you use to associate a secondary
|
1983
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
1984
|
+
# Global Datastore, which is what you use to associate a secondary
|
1985
|
+
# cluster.
|
1965
1986
|
#
|
1966
1987
|
# ^
|
1967
1988
|
# @return [Types::GlobalReplicationGroup]
|
@@ -1984,6 +2005,7 @@ module Aws::ElastiCache
|
|
1984
2005
|
# global_replication_group_id: "String",
|
1985
2006
|
# primary_cluster_id: "String",
|
1986
2007
|
# automatic_failover_enabled: false,
|
2008
|
+
# multi_az_enabled: false,
|
1987
2009
|
# num_cache_clusters: 1,
|
1988
2010
|
# preferred_cache_cluster_a_zs: ["String"],
|
1989
2011
|
# num_node_groups: 1,
|
@@ -2078,8 +2100,11 @@ module Aws::ElastiCache
|
|
2078
2100
|
# * Redis (cluster mode enabled): T1 node types.
|
2079
2101
|
# @return [Boolean]
|
2080
2102
|
#
|
2103
|
+
# @!attribute [rw] multi_az_enabled
|
2104
|
+
# @return [Boolean]
|
2105
|
+
#
|
2081
2106
|
# @!attribute [rw] num_cache_clusters
|
2082
|
-
# The number of
|
2107
|
+
# The number of nodes in the cluster.
|
2083
2108
|
#
|
2084
2109
|
# This parameter is not used if there is more than one node group
|
2085
2110
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2137,10 +2162,10 @@ module Aws::ElastiCache
|
|
2137
2162
|
# If you're creating a Redis (cluster mode disabled) or a Redis
|
2138
2163
|
# (cluster mode enabled) replication group, you can use this parameter
|
2139
2164
|
# to individually configure each node group (shard), or you can omit
|
2140
|
-
# this parameter. However, when seeding a Redis
|
2141
|
-
# cluster from a S3 rdb file
|
2142
|
-
# (shard) using this parameter because you
|
2143
|
-
# each node group.
|
2165
|
+
# this parameter. However, it is required when seeding a Redis
|
2166
|
+
# (cluster mode enabled) cluster from a S3 rdb file. You must
|
2167
|
+
# configure each node group (shard) using this parameter because you
|
2168
|
+
# must specify the slots for each node group.
|
2144
2169
|
# @return [Array<Types::NodeGroupConfiguration>]
|
2145
2170
|
#
|
2146
2171
|
# @!attribute [rw] cache_node_type
|
@@ -2463,6 +2488,7 @@ module Aws::ElastiCache
|
|
2463
2488
|
:global_replication_group_id,
|
2464
2489
|
:primary_cluster_id,
|
2465
2490
|
:automatic_failover_enabled,
|
2491
|
+
:multi_az_enabled,
|
2466
2492
|
:num_cache_clusters,
|
2467
2493
|
:preferred_cache_cluster_a_zs,
|
2468
2494
|
:num_node_groups,
|
@@ -2641,8 +2667,9 @@ module Aws::ElastiCache
|
|
2641
2667
|
# secondary cluster accepts only reads. The primary cluster
|
2642
2668
|
# automatically replicates updates to the secondary cluster.
|
2643
2669
|
#
|
2644
|
-
# * The **
|
2645
|
-
# Datastore, which is what you use to associate a secondary
|
2670
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
2671
|
+
# Global Datastore, which is what you use to associate a secondary
|
2672
|
+
# cluster.
|
2646
2673
|
#
|
2647
2674
|
# ^
|
2648
2675
|
# @return [Types::GlobalReplicationGroup]
|
@@ -2860,8 +2887,8 @@ module Aws::ElastiCache
|
|
2860
2887
|
# @return [String]
|
2861
2888
|
#
|
2862
2889
|
# @!attribute [rw] retain_primary_replication_group
|
2863
|
-
#
|
2864
|
-
#
|
2890
|
+
# The primary replication group is retained as a standalone
|
2891
|
+
# replication group.
|
2865
2892
|
# @return [Boolean]
|
2866
2893
|
#
|
2867
2894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteGlobalReplicationGroupMessage AWS API Documentation
|
@@ -2878,8 +2905,9 @@ module Aws::ElastiCache
|
|
2878
2905
|
# secondary cluster accepts only reads. The primary cluster
|
2879
2906
|
# automatically replicates updates to the secondary cluster.
|
2880
2907
|
#
|
2881
|
-
# * The **
|
2882
|
-
# Datastore, which is what you use to associate a secondary
|
2908
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
2909
|
+
# Global Datastore, which is what you use to associate a secondary
|
2910
|
+
# cluster.
|
2883
2911
|
#
|
2884
2912
|
# ^
|
2885
2913
|
# @return [Types::GlobalReplicationGroup]
|
@@ -3981,7 +4009,7 @@ module Aws::ElastiCache
|
|
3981
4009
|
# start_time: Time.now,
|
3982
4010
|
# end_time: Time.now,
|
3983
4011
|
# },
|
3984
|
-
# update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete
|
4012
|
+
# update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete, scheduling, scheduled, not-applicable
|
3985
4013
|
# show_node_level_update_status: false,
|
3986
4014
|
# max_records: 1,
|
3987
4015
|
# marker: "String",
|
@@ -4086,8 +4114,9 @@ module Aws::ElastiCache
|
|
4086
4114
|
# secondary cluster accepts only reads. The primary cluster
|
4087
4115
|
# automatically replicates updates to the secondary cluster.
|
4088
4116
|
#
|
4089
|
-
# * The **
|
4090
|
-
# Datastore, which is what you use to associate a secondary
|
4117
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4118
|
+
# Global Datastore, which is what you use to associate a secondary
|
4119
|
+
# cluster.
|
4091
4120
|
#
|
4092
4121
|
# ^
|
4093
4122
|
# @return [Types::GlobalReplicationGroup]
|
@@ -4265,8 +4294,9 @@ module Aws::ElastiCache
|
|
4265
4294
|
# secondary cluster accepts only reads. The primary cluster
|
4266
4295
|
# automatically replicates updates to the secondary cluster.
|
4267
4296
|
#
|
4268
|
-
# * The **
|
4269
|
-
# Datastore, which is what you use to associate a secondary
|
4297
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4298
|
+
# Global Datastore, which is what you use to associate a secondary
|
4299
|
+
# cluster.
|
4270
4300
|
#
|
4271
4301
|
# ^
|
4272
4302
|
# @return [Types::GlobalReplicationGroup]
|
@@ -4302,8 +4332,9 @@ module Aws::ElastiCache
|
|
4302
4332
|
# secondary cluster accepts only reads. The primary cluster
|
4303
4333
|
# automatically replicates updates to the secondary cluster.
|
4304
4334
|
#
|
4305
|
-
# * The **
|
4306
|
-
# Datastore, which is what you use to associate a secondary
|
4335
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4336
|
+
# Global Datastore, which is what you use to associate a secondary
|
4337
|
+
# cluster.
|
4307
4338
|
#
|
4308
4339
|
# ^
|
4309
4340
|
#
|
@@ -4324,7 +4355,7 @@ module Aws::ElastiCache
|
|
4324
4355
|
# @return [String]
|
4325
4356
|
#
|
4326
4357
|
# @!attribute [rw] engine
|
4327
|
-
# The Elasticache engine. For
|
4358
|
+
# The Elasticache engine. For Redis only.
|
4328
4359
|
# @return [String]
|
4329
4360
|
#
|
4330
4361
|
# @!attribute [rw] engine_version
|
@@ -4373,6 +4404,10 @@ module Aws::ElastiCache
|
|
4373
4404
|
# Amazon VPC using redis version `3.2.6`, `4.x` or later.
|
4374
4405
|
# @return [Boolean]
|
4375
4406
|
#
|
4407
|
+
# @!attribute [rw] arn
|
4408
|
+
# The ARN (Amazon Resource Name) of the global replication group.
|
4409
|
+
# @return [String]
|
4410
|
+
#
|
4376
4411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/GlobalReplicationGroup AWS API Documentation
|
4377
4412
|
#
|
4378
4413
|
class GlobalReplicationGroup < Struct.new(
|
@@ -4387,7 +4422,8 @@ module Aws::ElastiCache
|
|
4387
4422
|
:global_node_groups,
|
4388
4423
|
:auth_token_enabled,
|
4389
4424
|
:transit_encryption_enabled,
|
4390
|
-
:at_rest_encryption_enabled
|
4425
|
+
:at_rest_encryption_enabled,
|
4426
|
+
:arn)
|
4391
4427
|
include Aws::Structure
|
4392
4428
|
end
|
4393
4429
|
|
@@ -4514,8 +4550,9 @@ module Aws::ElastiCache
|
|
4514
4550
|
# secondary cluster accepts only reads. The primary cluster
|
4515
4551
|
# automatically replicates updates to the secondary cluster.
|
4516
4552
|
#
|
4517
|
-
# * The **
|
4518
|
-
# Datastore, which is what you use to associate a secondary
|
4553
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4554
|
+
# Global Datastore, which is what you use to associate a secondary
|
4555
|
+
# cluster.
|
4519
4556
|
#
|
4520
4557
|
# ^
|
4521
4558
|
# @return [Types::GlobalReplicationGroup]
|
@@ -4628,7 +4665,7 @@ module Aws::ElastiCache
|
|
4628
4665
|
#
|
4629
4666
|
class InvalidCacheSecurityGroupStateFault < Aws::EmptyStructure; end
|
4630
4667
|
|
4631
|
-
# The Global Datastore is not available
|
4668
|
+
# The Global Datastore is not available or in primary-only state.
|
4632
4669
|
#
|
4633
4670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/InvalidGlobalReplicationGroupStateFault AWS API Documentation
|
4634
4671
|
#
|
@@ -5252,12 +5289,10 @@ module Aws::ElastiCache
|
|
5252
5289
|
# @return [String]
|
5253
5290
|
#
|
5254
5291
|
# @!attribute [rw] apply_immediately
|
5255
|
-
#
|
5256
|
-
#
|
5257
|
-
#
|
5258
|
-
#
|
5259
|
-
# replication group are applied on the next maintenance reboot, or the
|
5260
|
-
# next failure reboot, whichever occurs first.
|
5292
|
+
# This parameter causes the modifications in this request and any
|
5293
|
+
# pending modifications to be applied, asynchronously and as soon as
|
5294
|
+
# possible. Modifications to Global Replication Groups cannot be
|
5295
|
+
# requested to be applied in PreferredMaintenceWindow.
|
5261
5296
|
# @return [Boolean]
|
5262
5297
|
#
|
5263
5298
|
# @!attribute [rw] cache_node_type
|
@@ -5297,8 +5332,9 @@ module Aws::ElastiCache
|
|
5297
5332
|
# secondary cluster accepts only reads. The primary cluster
|
5298
5333
|
# automatically replicates updates to the secondary cluster.
|
5299
5334
|
#
|
5300
|
-
# * The **
|
5301
|
-
# Datastore, which is what you use to associate a secondary
|
5335
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
5336
|
+
# Global Datastore, which is what you use to associate a secondary
|
5337
|
+
# cluster.
|
5302
5338
|
#
|
5303
5339
|
# ^
|
5304
5340
|
# @return [Types::GlobalReplicationGroup]
|
@@ -5321,6 +5357,7 @@ module Aws::ElastiCache
|
|
5321
5357
|
# primary_cluster_id: "String",
|
5322
5358
|
# snapshotting_cluster_id: "String",
|
5323
5359
|
# automatic_failover_enabled: false,
|
5360
|
+
# multi_az_enabled: false,
|
5324
5361
|
# node_group_id: "String",
|
5325
5362
|
# cache_security_group_names: ["String"],
|
5326
5363
|
# security_group_ids: ["String"],
|
@@ -5376,6 +5413,9 @@ module Aws::ElastiCache
|
|
5376
5413
|
# * Redis (cluster mode enabled): T1 node types.
|
5377
5414
|
# @return [Boolean]
|
5378
5415
|
#
|
5416
|
+
# @!attribute [rw] multi_az_enabled
|
5417
|
+
# @return [Boolean]
|
5418
|
+
#
|
5379
5419
|
# @!attribute [rw] node_group_id
|
5380
5420
|
# Deprecated. This parameter is not used.
|
5381
5421
|
# @return [String]
|
@@ -5555,6 +5595,7 @@ module Aws::ElastiCache
|
|
5555
5595
|
:primary_cluster_id,
|
5556
5596
|
:snapshotting_cluster_id,
|
5557
5597
|
:automatic_failover_enabled,
|
5598
|
+
:multi_az_enabled,
|
5558
5599
|
:node_group_id,
|
5559
5600
|
:cache_security_group_names,
|
5560
5601
|
:security_group_ids,
|
@@ -6236,8 +6277,9 @@ module Aws::ElastiCache
|
|
6236
6277
|
# secondary cluster accepts only reads. The primary cluster
|
6237
6278
|
# automatically replicates updates to the secondary cluster.
|
6238
6279
|
#
|
6239
|
-
# * The **
|
6240
|
-
# Datastore, which is what you use to associate a secondary
|
6280
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
6281
|
+
# Global Datastore, which is what you use to associate a secondary
|
6282
|
+
# cluster.
|
6241
6283
|
#
|
6242
6284
|
# ^
|
6243
6285
|
# @return [Types::GlobalReplicationGroup]
|
@@ -6440,6 +6482,9 @@ module Aws::ElastiCache
|
|
6440
6482
|
# * Redis (cluster mode enabled): T1 node types.
|
6441
6483
|
# @return [String]
|
6442
6484
|
#
|
6485
|
+
# @!attribute [rw] multi_az
|
6486
|
+
# @return [String]
|
6487
|
+
#
|
6443
6488
|
# @!attribute [rw] configuration_endpoint
|
6444
6489
|
# The configuration endpoint for this replication group. Use the
|
6445
6490
|
# configuration endpoint to connect to this replication group.
|
@@ -6525,6 +6570,10 @@ module Aws::ElastiCache
|
|
6525
6570
|
# The ID of the KMS key used to encrypt the disk in the cluster.
|
6526
6571
|
# @return [String]
|
6527
6572
|
#
|
6573
|
+
# @!attribute [rw] arn
|
6574
|
+
# The ARN (Amazon Resource Name) of the replication group.
|
6575
|
+
# @return [String]
|
6576
|
+
#
|
6528
6577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
6529
6578
|
#
|
6530
6579
|
class ReplicationGroup < Struct.new(
|
@@ -6537,6 +6586,7 @@ module Aws::ElastiCache
|
|
6537
6586
|
:node_groups,
|
6538
6587
|
:snapshotting_cluster_id,
|
6539
6588
|
:automatic_failover,
|
6589
|
+
:multi_az,
|
6540
6590
|
:configuration_endpoint,
|
6541
6591
|
:snapshot_retention_limit,
|
6542
6592
|
:snapshot_window,
|
@@ -6546,7 +6596,8 @@ module Aws::ElastiCache
|
|
6546
6596
|
:auth_token_last_modified_date,
|
6547
6597
|
:transit_encryption_enabled,
|
6548
6598
|
:at_rest_encryption_enabled,
|
6549
|
-
:kms_key_id
|
6599
|
+
:kms_key_id,
|
6600
|
+
:arn)
|
6550
6601
|
include Aws::Structure
|
6551
6602
|
end
|
6552
6603
|
|
@@ -7479,6 +7530,10 @@ module Aws::ElastiCache
|
|
7479
7530
|
# The ID of the KMS key used to encrypt the snapshot.
|
7480
7531
|
# @return [String]
|
7481
7532
|
#
|
7533
|
+
# @!attribute [rw] arn
|
7534
|
+
# The ARN (Amazon Resource Name) of the snapshot.
|
7535
|
+
# @return [String]
|
7536
|
+
#
|
7482
7537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
|
7483
7538
|
#
|
7484
7539
|
class Snapshot < Struct.new(
|
@@ -7506,7 +7561,8 @@ module Aws::ElastiCache
|
|
7506
7561
|
:num_node_groups,
|
7507
7562
|
:automatic_failover,
|
7508
7563
|
:node_snapshots,
|
7509
|
-
:kms_key_id
|
7564
|
+
:kms_key_id,
|
7565
|
+
:arn)
|
7510
7566
|
include Aws::Structure
|
7511
7567
|
end
|
7512
7568
|
|
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.37.1
|
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-11 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
|