aws-sdk-elasticache 1.17.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-elasticache.rb +1 -1
- data/lib/aws-sdk-elasticache/client.rb +404 -176
- data/lib/aws-sdk-elasticache/client_api.rb +198 -0
- data/lib/aws-sdk-elasticache/types.rb +798 -321
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d1d2cadc522307752eaecfcce550b3bd6cdf65b
|
4
|
+
data.tar.gz: 74c97183617f1c6fa9bd070a2cdd2262d7f542ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48f7e9be82fc09f95806e84d43ee1ad4fc593f59798d8020e522fc25f365526db8ffb002c941411898f7ed83c6c94a7557678204d6d1b7772413a02ed078e4ff
|
7
|
+
data.tar.gz: 055c5108b923757a7634a0caef116e982017ba2fe52554615c9e0fb39e6886f2bc9764b86cadb8e10fcab41057af304899b40b1ea28c750d02a323c56d70c011
|
data/lib/aws-sdk-elasticache.rb
CHANGED
@@ -265,7 +265,7 @@ module Aws::ElastiCache
|
|
265
265
|
#
|
266
266
|
#
|
267
267
|
#
|
268
|
-
# [1]:
|
268
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Tagging.html
|
269
269
|
#
|
270
270
|
# @option params [required, String] :resource_name
|
271
271
|
# The Amazon Resource Name (ARN) of the resource to which the tags are
|
@@ -279,7 +279,7 @@ module Aws::ElastiCache
|
|
279
279
|
#
|
280
280
|
#
|
281
281
|
#
|
282
|
-
# [1]:
|
282
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
283
283
|
#
|
284
284
|
# @option params [required, Array<Types::Tag>] :tags
|
285
285
|
# A list of cost allocation tags to be added to this resource. A tag is
|
@@ -413,6 +413,98 @@ module Aws::ElastiCache
|
|
413
413
|
req.send_request(options)
|
414
414
|
end
|
415
415
|
|
416
|
+
# Apply the service update. For more information on service updates and
|
417
|
+
# applying them, see [Applying Service Updates][1].
|
418
|
+
#
|
419
|
+
#
|
420
|
+
#
|
421
|
+
# [1]: https://docs.aws.amazon.com/http:/docs.aws.amazon.com/Amazon/red-ug/applying-updates.html
|
422
|
+
#
|
423
|
+
# @option params [required, Array<String>] :replication_group_ids
|
424
|
+
# The replication group IDs
|
425
|
+
#
|
426
|
+
# @option params [required, String] :service_update_name
|
427
|
+
# The unique ID of the service update
|
428
|
+
#
|
429
|
+
# @return [Types::UpdateActionResultsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
430
|
+
#
|
431
|
+
# * {Types::UpdateActionResultsMessage#processed_update_actions #processed_update_actions} => Array<Types::ProcessedUpdateAction>
|
432
|
+
# * {Types::UpdateActionResultsMessage#unprocessed_update_actions #unprocessed_update_actions} => Array<Types::UnprocessedUpdateAction>
|
433
|
+
#
|
434
|
+
# @example Request syntax with placeholder values
|
435
|
+
#
|
436
|
+
# resp = client.batch_apply_update_action({
|
437
|
+
# replication_group_ids: ["String"], # required
|
438
|
+
# service_update_name: "String", # required
|
439
|
+
# })
|
440
|
+
#
|
441
|
+
# @example Response structure
|
442
|
+
#
|
443
|
+
# resp.processed_update_actions #=> Array
|
444
|
+
# resp.processed_update_actions[0].replication_group_id #=> String
|
445
|
+
# resp.processed_update_actions[0].service_update_name #=> String
|
446
|
+
# resp.processed_update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete"
|
447
|
+
# resp.unprocessed_update_actions #=> Array
|
448
|
+
# resp.unprocessed_update_actions[0].replication_group_id #=> String
|
449
|
+
# resp.unprocessed_update_actions[0].service_update_name #=> String
|
450
|
+
# resp.unprocessed_update_actions[0].error_type #=> String
|
451
|
+
# resp.unprocessed_update_actions[0].error_message #=> String
|
452
|
+
#
|
453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/BatchApplyUpdateAction AWS API Documentation
|
454
|
+
#
|
455
|
+
# @overload batch_apply_update_action(params = {})
|
456
|
+
# @param [Hash] params ({})
|
457
|
+
def batch_apply_update_action(params = {}, options = {})
|
458
|
+
req = build_request(:batch_apply_update_action, params)
|
459
|
+
req.send_request(options)
|
460
|
+
end
|
461
|
+
|
462
|
+
# Stop the service update. For more information on service updates and
|
463
|
+
# stopping them, see [Stopping Service Updates][1].
|
464
|
+
#
|
465
|
+
#
|
466
|
+
#
|
467
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/stopping-self-service-updates.html
|
468
|
+
#
|
469
|
+
# @option params [required, Array<String>] :replication_group_ids
|
470
|
+
# The replication group IDs
|
471
|
+
#
|
472
|
+
# @option params [required, String] :service_update_name
|
473
|
+
# The unique ID of the service update
|
474
|
+
#
|
475
|
+
# @return [Types::UpdateActionResultsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
476
|
+
#
|
477
|
+
# * {Types::UpdateActionResultsMessage#processed_update_actions #processed_update_actions} => Array<Types::ProcessedUpdateAction>
|
478
|
+
# * {Types::UpdateActionResultsMessage#unprocessed_update_actions #unprocessed_update_actions} => Array<Types::UnprocessedUpdateAction>
|
479
|
+
#
|
480
|
+
# @example Request syntax with placeholder values
|
481
|
+
#
|
482
|
+
# resp = client.batch_stop_update_action({
|
483
|
+
# replication_group_ids: ["String"], # required
|
484
|
+
# service_update_name: "String", # required
|
485
|
+
# })
|
486
|
+
#
|
487
|
+
# @example Response structure
|
488
|
+
#
|
489
|
+
# resp.processed_update_actions #=> Array
|
490
|
+
# resp.processed_update_actions[0].replication_group_id #=> String
|
491
|
+
# resp.processed_update_actions[0].service_update_name #=> String
|
492
|
+
# resp.processed_update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete"
|
493
|
+
# resp.unprocessed_update_actions #=> Array
|
494
|
+
# resp.unprocessed_update_actions[0].replication_group_id #=> String
|
495
|
+
# resp.unprocessed_update_actions[0].service_update_name #=> String
|
496
|
+
# resp.unprocessed_update_actions[0].error_type #=> String
|
497
|
+
# resp.unprocessed_update_actions[0].error_message #=> String
|
498
|
+
#
|
499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/BatchStopUpdateAction AWS API Documentation
|
500
|
+
#
|
501
|
+
# @overload batch_stop_update_action(params = {})
|
502
|
+
# @param [Hash] params ({})
|
503
|
+
def batch_stop_update_action(params = {}, options = {})
|
504
|
+
req = build_request(:batch_stop_update_action, params)
|
505
|
+
req.send_request(options)
|
506
|
+
end
|
507
|
+
|
416
508
|
# Makes a copy of an existing snapshot.
|
417
509
|
#
|
418
510
|
# <note markdown="1"> This operation is valid for Redis only.
|
@@ -486,10 +578,10 @@ module Aws::ElastiCache
|
|
486
578
|
#
|
487
579
|
#
|
488
580
|
#
|
489
|
-
# [1]:
|
490
|
-
# [2]:
|
491
|
-
# [3]:
|
492
|
-
# [4]:
|
581
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html
|
582
|
+
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/IAM.html
|
583
|
+
# [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-create-s3-bucket
|
584
|
+
# [4]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-grant-access.html
|
493
585
|
#
|
494
586
|
# @option params [required, String] :source_snapshot_name
|
495
587
|
# The name of an existing snapshot from which to make a copy.
|
@@ -513,8 +605,8 @@ module Aws::ElastiCache
|
|
513
605
|
#
|
514
606
|
#
|
515
607
|
#
|
516
|
-
# [1]:
|
517
|
-
# [2]:
|
608
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-grant-access
|
609
|
+
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Snapshots.Exporting.html
|
518
610
|
#
|
519
611
|
# @return [Types::CopySnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
520
612
|
#
|
@@ -719,15 +811,16 @@ module Aws::ElastiCache
|
|
719
811
|
#
|
720
812
|
# * Current generation:
|
721
813
|
#
|
722
|
-
# **
|
723
|
-
# `cache.
|
724
|
-
#
|
725
|
-
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
726
|
-
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
814
|
+
# **M5 node types:** `cache.m5.large`, `cache.m5.xlarge`,
|
815
|
+
# `cache.m5.2xlarge`, `cache.m5.4xlarge`, `cache.m5.12xlarge`,
|
816
|
+
# `cache.m5.24xlarge`
|
727
817
|
#
|
728
818
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
729
819
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
730
820
|
#
|
821
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
822
|
+
# `cache.t2.medium`
|
823
|
+
#
|
731
824
|
# * Previous generation: (not recommended)
|
732
825
|
#
|
733
826
|
# **T1 node types:** `cache.t1.micro`
|
@@ -735,6 +828,9 @@ module Aws::ElastiCache
|
|
735
828
|
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
736
829
|
# `cache.m1.large`, `cache.m1.xlarge`
|
737
830
|
#
|
831
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
832
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
833
|
+
#
|
738
834
|
# * Compute optimized:
|
739
835
|
#
|
740
836
|
# * Previous generation: (not recommended)
|
@@ -745,10 +841,11 @@ module Aws::ElastiCache
|
|
745
841
|
#
|
746
842
|
# * Current generation:
|
747
843
|
#
|
748
|
-
# **
|
749
|
-
# `cache.
|
844
|
+
# **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
|
845
|
+
# `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
|
846
|
+
# `cache.r5.24xlarge`
|
750
847
|
#
|
751
|
-
# **R4 node types
|
848
|
+
# **R4 node types:** `cache.r4.large`, `cache.r4.xlarge`,
|
752
849
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
753
850
|
# `cache.r4.16xlarge`
|
754
851
|
#
|
@@ -757,33 +854,22 @@ module Aws::ElastiCache
|
|
757
854
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
758
855
|
# `cache.m2.4xlarge`
|
759
856
|
#
|
760
|
-
#
|
857
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
858
|
+
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
761
859
|
#
|
762
|
-
#
|
763
|
-
# (Amazon VPC).
|
860
|
+
# **Additional node type info**
|
764
861
|
#
|
765
|
-
# *
|
766
|
-
#
|
862
|
+
# * All current generation instance types are created in Amazon VPC by
|
863
|
+
# default.
|
767
864
|
#
|
768
|
-
# * Redis
|
865
|
+
# * Redis append-only files (AOF) are not supported for T1 or T2
|
769
866
|
# instances.
|
770
867
|
#
|
771
|
-
# * Redis
|
772
|
-
#
|
773
|
-
#
|
774
|
-
# For a complete listing of node types and specifications, see:
|
775
|
-
#
|
776
|
-
# * [Amazon ElastiCache Product Features and Details][1]
|
777
|
-
#
|
778
|
-
# * [Cache Node Type-Specific Parameters for Memcached][2]
|
779
|
-
#
|
780
|
-
# * [Cache Node Type-Specific Parameters for Redis][3]
|
781
|
-
#
|
782
|
-
#
|
868
|
+
# * Redis Multi-AZ with automatic failover is not supported on T1
|
869
|
+
# instances.
|
783
870
|
#
|
784
|
-
#
|
785
|
-
#
|
786
|
-
# [3]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.Redis.html#ParameterGroups.Redis.NodeSpecific
|
871
|
+
# * Redis configuration variables `appendonly` and `appendfsync` are not
|
872
|
+
# supported on Redis version 2.8.22 and later.
|
787
873
|
#
|
788
874
|
# @option params [String] :engine
|
789
875
|
# The name of the cache engine to be used for this cluster.
|
@@ -803,7 +889,7 @@ module Aws::ElastiCache
|
|
803
889
|
#
|
804
890
|
#
|
805
891
|
#
|
806
|
-
# [1]:
|
892
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
807
893
|
#
|
808
894
|
# @option params [String] :cache_parameter_group_name
|
809
895
|
# The name of the parameter group to associate with this cluster. If
|
@@ -823,7 +909,7 @@ module Aws::ElastiCache
|
|
823
909
|
#
|
824
910
|
#
|
825
911
|
#
|
826
|
-
# [1]:
|
912
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.html
|
827
913
|
#
|
828
914
|
# @option params [Array<String>] :cache_security_group_names
|
829
915
|
# A list of security group names to associate with this cluster.
|
@@ -1151,8 +1237,8 @@ module Aws::ElastiCache
|
|
1151
1237
|
#
|
1152
1238
|
#
|
1153
1239
|
#
|
1154
|
-
# [1]:
|
1155
|
-
# [2]:
|
1240
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_ModifyCacheParameterGroup.html
|
1241
|
+
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.html
|
1156
1242
|
#
|
1157
1243
|
# @option params [required, String] :cache_parameter_group_name
|
1158
1244
|
# A user-specified name for the cache parameter group.
|
@@ -1161,8 +1247,8 @@ module Aws::ElastiCache
|
|
1161
1247
|
# The name of the cache parameter group family that the cache parameter
|
1162
1248
|
# group can be used with.
|
1163
1249
|
#
|
1164
|
-
# Valid values are: `memcached1.4` \| `
|
1165
|
-
# `redis3.2` \| `redis4.0`
|
1250
|
+
# Valid values are: `memcached1.4` \| `memcached1.5` \| `redis2.6` \|
|
1251
|
+
# `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0` \|
|
1166
1252
|
#
|
1167
1253
|
# @option params [required, String] :description
|
1168
1254
|
# A user-specified description for the cache parameter group.
|
@@ -1224,7 +1310,7 @@ module Aws::ElastiCache
|
|
1224
1310
|
#
|
1225
1311
|
#
|
1226
1312
|
#
|
1227
|
-
# [1]:
|
1313
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_CreateCacheSubnetGroup.html
|
1228
1314
|
#
|
1229
1315
|
# @option params [required, String] :cache_security_group_name
|
1230
1316
|
# A name for the cache security group. This value is stored as a
|
@@ -1402,7 +1488,7 @@ module Aws::ElastiCache
|
|
1402
1488
|
#
|
1403
1489
|
#
|
1404
1490
|
#
|
1405
|
-
# [1]:
|
1491
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-restoring.html
|
1406
1492
|
#
|
1407
1493
|
# @option params [required, String] :replication_group_id
|
1408
1494
|
# The replication group identifier. This parameter is stored as a
|
@@ -1444,7 +1530,7 @@ module Aws::ElastiCache
|
|
1444
1530
|
#
|
1445
1531
|
# * Redis versions earlier than 2.8.6.
|
1446
1532
|
#
|
1447
|
-
# * Redis (cluster mode disabled): T1
|
1533
|
+
# * Redis (cluster mode disabled): T1 node types.
|
1448
1534
|
#
|
1449
1535
|
# * Redis (cluster mode enabled): T1 node types.
|
1450
1536
|
#
|
@@ -1521,15 +1607,16 @@ module Aws::ElastiCache
|
|
1521
1607
|
#
|
1522
1608
|
# * Current generation:
|
1523
1609
|
#
|
1524
|
-
# **
|
1525
|
-
# `cache.
|
1526
|
-
#
|
1527
|
-
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
1528
|
-
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
1610
|
+
# **M5 node types:** `cache.m5.large`, `cache.m5.xlarge`,
|
1611
|
+
# `cache.m5.2xlarge`, `cache.m5.4xlarge`, `cache.m5.12xlarge`,
|
1612
|
+
# `cache.m5.24xlarge`
|
1529
1613
|
#
|
1530
1614
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
1531
1615
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
1532
1616
|
#
|
1617
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
1618
|
+
# `cache.t2.medium`
|
1619
|
+
#
|
1533
1620
|
# * Previous generation: (not recommended)
|
1534
1621
|
#
|
1535
1622
|
# **T1 node types:** `cache.t1.micro`
|
@@ -1537,6 +1624,9 @@ module Aws::ElastiCache
|
|
1537
1624
|
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
1538
1625
|
# `cache.m1.large`, `cache.m1.xlarge`
|
1539
1626
|
#
|
1627
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
1628
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
1629
|
+
#
|
1540
1630
|
# * Compute optimized:
|
1541
1631
|
#
|
1542
1632
|
# * Previous generation: (not recommended)
|
@@ -1547,10 +1637,11 @@ module Aws::ElastiCache
|
|
1547
1637
|
#
|
1548
1638
|
# * Current generation:
|
1549
1639
|
#
|
1550
|
-
# **
|
1551
|
-
# `cache.
|
1640
|
+
# **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
|
1641
|
+
# `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
|
1642
|
+
# `cache.r5.24xlarge`
|
1552
1643
|
#
|
1553
|
-
# **R4 node types
|
1644
|
+
# **R4 node types:** `cache.r4.large`, `cache.r4.xlarge`,
|
1554
1645
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
1555
1646
|
# `cache.r4.16xlarge`
|
1556
1647
|
#
|
@@ -1559,33 +1650,22 @@ module Aws::ElastiCache
|
|
1559
1650
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
1560
1651
|
# `cache.m2.4xlarge`
|
1561
1652
|
#
|
1562
|
-
#
|
1653
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
1654
|
+
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
1563
1655
|
#
|
1564
|
-
#
|
1565
|
-
# (Amazon VPC).
|
1656
|
+
# **Additional node type info**
|
1566
1657
|
#
|
1567
|
-
# *
|
1568
|
-
#
|
1658
|
+
# * All current generation instance types are created in Amazon VPC by
|
1659
|
+
# default.
|
1569
1660
|
#
|
1570
|
-
# * Redis
|
1661
|
+
# * Redis append-only files (AOF) are not supported for T1 or T2
|
1571
1662
|
# instances.
|
1572
1663
|
#
|
1573
|
-
# * Redis
|
1574
|
-
#
|
1575
|
-
#
|
1576
|
-
# For a complete listing of node types and specifications, see:
|
1577
|
-
#
|
1578
|
-
# * [Amazon ElastiCache Product Features and Details][1]
|
1579
|
-
#
|
1580
|
-
# * [Cache Node Type-Specific Parameters for Memcached][2]
|
1581
|
-
#
|
1582
|
-
# * [Cache Node Type-Specific Parameters for Redis][3]
|
1583
|
-
#
|
1584
|
-
#
|
1664
|
+
# * Redis Multi-AZ with automatic failover is not supported on T1
|
1665
|
+
# instances.
|
1585
1666
|
#
|
1586
|
-
#
|
1587
|
-
#
|
1588
|
-
# [3]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.Redis.html#ParameterGroups.Redis.NodeSpecific
|
1667
|
+
# * Redis configuration variables `appendonly` and `appendfsync` are not
|
1668
|
+
# supported on Redis version 2.8.22 and later.
|
1589
1669
|
#
|
1590
1670
|
# @option params [String] :engine
|
1591
1671
|
# The name of the cache engine to be used for the clusters in this
|
@@ -1605,13 +1685,19 @@ module Aws::ElastiCache
|
|
1605
1685
|
#
|
1606
1686
|
#
|
1607
1687
|
#
|
1608
|
-
# [1]:
|
1688
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
1609
1689
|
#
|
1610
1690
|
# @option params [String] :cache_parameter_group_name
|
1611
1691
|
# The name of the parameter group to associate with this replication
|
1612
1692
|
# group. If this argument is omitted, the default cache parameter group
|
1613
1693
|
# for the specified engine is used.
|
1614
1694
|
#
|
1695
|
+
# <note markdown="1"> If you are restoring to an engine version that is different than the
|
1696
|
+
# original, you must specify the default version of that version. For
|
1697
|
+
# example, `CacheParameterGroupName=default.redis4.0`.
|
1698
|
+
#
|
1699
|
+
# </note>
|
1700
|
+
#
|
1615
1701
|
# If you are running Redis version 3.2.4 or later, only one node group
|
1616
1702
|
# (shard), and want to use a default parameter group, we recommend that
|
1617
1703
|
# you specify the parameter group by name.
|
@@ -1632,7 +1718,7 @@ module Aws::ElastiCache
|
|
1632
1718
|
#
|
1633
1719
|
#
|
1634
1720
|
#
|
1635
|
-
# [1]:
|
1721
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.html
|
1636
1722
|
#
|
1637
1723
|
# @option params [Array<String>] :cache_security_group_names
|
1638
1724
|
# A list of cache security group names to associate with this
|
@@ -1646,8 +1732,10 @@ module Aws::ElastiCache
|
|
1646
1732
|
# an Amazon Virtual Private Cloud (Amazon VPC).
|
1647
1733
|
#
|
1648
1734
|
# @option params [Array<Types::Tag>] :tags
|
1649
|
-
# A list of cost allocation tags to be added to this resource.
|
1650
|
-
#
|
1735
|
+
# A list of cost allocation tags to be added to this resource. Tags are
|
1736
|
+
# comma-separated key,value pairs (e.g. Key=`myKey`, Value=`myKeyValue`.
|
1737
|
+
# You can include multiple tags as shown following: Key=`myKey`,
|
1738
|
+
# Value=`myKeyValue` Key=`mySecondKey`, Value=`mySecondKeyValue`.
|
1651
1739
|
#
|
1652
1740
|
# @option params [Array<String>] :snapshot_arns
|
1653
1741
|
# A list of Amazon Resource Names (ARN) that uniquely identify the Redis
|
@@ -2217,9 +2305,8 @@ module Aws::ElastiCache
|
|
2217
2305
|
# group (shard).
|
2218
2306
|
#
|
2219
2307
|
# @option params [required, Boolean] :apply_immediately
|
2220
|
-
# If `True`, the number of replica nodes is decreased immediately.
|
2221
|
-
# `False
|
2222
|
-
# maintenance window.
|
2308
|
+
# If `True`, the number of replica nodes is decreased immediately.
|
2309
|
+
# `ApplyImmediately=False` is not currently supported.
|
2223
2310
|
#
|
2224
2311
|
# @return [Types::DecreaseReplicaCountResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2225
2312
|
#
|
@@ -2291,12 +2378,17 @@ module Aws::ElastiCache
|
|
2291
2378
|
# ElastiCache immediately begins deleting the cluster; you cannot cancel
|
2292
2379
|
# or revert this operation.
|
2293
2380
|
#
|
2294
|
-
# This operation
|
2295
|
-
#
|
2296
|
-
#
|
2297
|
-
#
|
2381
|
+
# This operation is not valid for:
|
2382
|
+
#
|
2383
|
+
# * Redis (cluster mode enabled) clusters
|
2384
|
+
#
|
2385
|
+
# * A cluster that is the last read replica of a replication group
|
2386
|
+
#
|
2387
|
+
# * A node group (shard) that has Multi-AZ mode enabled
|
2388
|
+
#
|
2389
|
+
# * A cluster from a Redis (cluster mode enabled) replication group
|
2298
2390
|
#
|
2299
|
-
#
|
2391
|
+
# * A cluster that is not in the `available` state
|
2300
2392
|
#
|
2301
2393
|
# @option params [required, String] :cache_cluster_id
|
2302
2394
|
# The cluster identifier for the cluster to be deleted. This parameter
|
@@ -3004,8 +3096,8 @@ module Aws::ElastiCache
|
|
3004
3096
|
# The name of a specific cache parameter group family to return details
|
3005
3097
|
# for.
|
3006
3098
|
#
|
3007
|
-
# Valid values are: `memcached1.4` \| `
|
3008
|
-
# `redis3.2` \| `redis4.0`
|
3099
|
+
# Valid values are: `memcached1.4` \| `memcached1.5` \| `redis2.6` \|
|
3100
|
+
# `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0` \|
|
3009
3101
|
#
|
3010
3102
|
# Constraints:
|
3011
3103
|
#
|
@@ -3795,7 +3887,8 @@ module Aws::ElastiCache
|
|
3795
3887
|
|
3796
3888
|
# Returns a list of cache security group descriptions. If a cache
|
3797
3889
|
# security group name is specified, the list contains only the
|
3798
|
-
# description of that group.
|
3890
|
+
# description of that group. This applicable only when you have
|
3891
|
+
# ElastiCache in Classic setup
|
3799
3892
|
#
|
3800
3893
|
# @option params [String] :cache_security_group_name
|
3801
3894
|
# The name of the cache security group to return details for.
|
@@ -3862,7 +3955,8 @@ module Aws::ElastiCache
|
|
3862
3955
|
|
3863
3956
|
# Returns a list of cache subnet group descriptions. If a subnet group
|
3864
3957
|
# name is specified, the list contains only the description of that
|
3865
|
-
# group.
|
3958
|
+
# group. This is applicable only when you have ElastiCache in VPC setup.
|
3959
|
+
# All ElastiCache clusters now launch in VPC by default.
|
3866
3960
|
#
|
3867
3961
|
# @option params [String] :cache_subnet_group_name
|
3868
3962
|
# The name of the cache subnet group to return details for.
|
@@ -3969,8 +4063,8 @@ module Aws::ElastiCache
|
|
3969
4063
|
# @option params [required, String] :cache_parameter_group_family
|
3970
4064
|
# The name of the cache parameter group family.
|
3971
4065
|
#
|
3972
|
-
# Valid values are: `memcached1.4` \| `
|
3973
|
-
# `redis3.2` \| `redis4.0`
|
4066
|
+
# Valid values are: `memcached1.4` \| `memcached1.5` \| `redis2.6` \|
|
4067
|
+
# `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0` \|
|
3974
4068
|
#
|
3975
4069
|
# @option params [Integer] :max_records
|
3976
4070
|
# The maximum number of records to include in the response. If more
|
@@ -5006,15 +5100,16 @@ module Aws::ElastiCache
|
|
5006
5100
|
#
|
5007
5101
|
# * Current generation:
|
5008
5102
|
#
|
5009
|
-
# **
|
5010
|
-
# `cache.
|
5011
|
-
#
|
5012
|
-
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
5013
|
-
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
5103
|
+
# **M5 node types:** `cache.m5.large`, `cache.m5.xlarge`,
|
5104
|
+
# `cache.m5.2xlarge`, `cache.m5.4xlarge`, `cache.m5.12xlarge`,
|
5105
|
+
# `cache.m5.24xlarge`
|
5014
5106
|
#
|
5015
5107
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
5016
5108
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
5017
5109
|
#
|
5110
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
5111
|
+
# `cache.t2.medium`
|
5112
|
+
#
|
5018
5113
|
# * Previous generation: (not recommended)
|
5019
5114
|
#
|
5020
5115
|
# **T1 node types:** `cache.t1.micro`
|
@@ -5022,6 +5117,9 @@ module Aws::ElastiCache
|
|
5022
5117
|
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
5023
5118
|
# `cache.m1.large`, `cache.m1.xlarge`
|
5024
5119
|
#
|
5120
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
5121
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
5122
|
+
#
|
5025
5123
|
# * Compute optimized:
|
5026
5124
|
#
|
5027
5125
|
# * Previous generation: (not recommended)
|
@@ -5032,10 +5130,11 @@ module Aws::ElastiCache
|
|
5032
5130
|
#
|
5033
5131
|
# * Current generation:
|
5034
5132
|
#
|
5035
|
-
# **
|
5036
|
-
# `cache.
|
5133
|
+
# **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
|
5134
|
+
# `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
|
5135
|
+
# `cache.r5.24xlarge`
|
5037
5136
|
#
|
5038
|
-
# **R4 node types
|
5137
|
+
# **R4 node types:** `cache.r4.large`, `cache.r4.xlarge`,
|
5039
5138
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
5040
5139
|
# `cache.r4.16xlarge`
|
5041
5140
|
#
|
@@ -5044,33 +5143,22 @@ module Aws::ElastiCache
|
|
5044
5143
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
5045
5144
|
# `cache.m2.4xlarge`
|
5046
5145
|
#
|
5047
|
-
#
|
5146
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
5147
|
+
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
5048
5148
|
#
|
5049
|
-
#
|
5050
|
-
# (Amazon VPC).
|
5149
|
+
# **Additional node type info**
|
5051
5150
|
#
|
5052
|
-
# *
|
5053
|
-
#
|
5151
|
+
# * All current generation instance types are created in Amazon VPC by
|
5152
|
+
# default.
|
5054
5153
|
#
|
5055
|
-
# * Redis
|
5154
|
+
# * Redis append-only files (AOF) are not supported for T1 or T2
|
5056
5155
|
# instances.
|
5057
5156
|
#
|
5058
|
-
# * Redis
|
5059
|
-
#
|
5060
|
-
#
|
5061
|
-
# For a complete listing of node types and specifications, see:
|
5062
|
-
#
|
5063
|
-
# * [Amazon ElastiCache Product Features and Details][1]
|
5064
|
-
#
|
5065
|
-
# * [Cache Node Type-Specific Parameters for Memcached][2]
|
5066
|
-
#
|
5067
|
-
# * [Cache Node Type-Specific Parameters for Redis][3]
|
5068
|
-
#
|
5069
|
-
#
|
5157
|
+
# * Redis Multi-AZ with automatic failover is not supported on T1
|
5158
|
+
# instances.
|
5070
5159
|
#
|
5071
|
-
#
|
5072
|
-
#
|
5073
|
-
# [3]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.Redis.html#ParameterGroups.Redis.NodeSpecific
|
5160
|
+
# * Redis configuration variables `appendonly` and `appendfsync` are not
|
5161
|
+
# supported on Redis version 2.8.22 and later.
|
5074
5162
|
#
|
5075
5163
|
# @option params [String] :duration
|
5076
5164
|
# The duration filter value, specified in years or seconds. Use this
|
@@ -5184,15 +5272,16 @@ module Aws::ElastiCache
|
|
5184
5272
|
#
|
5185
5273
|
# * Current generation:
|
5186
5274
|
#
|
5187
|
-
# **
|
5188
|
-
# `cache.
|
5189
|
-
#
|
5190
|
-
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
5191
|
-
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
5275
|
+
# **M5 node types:** `cache.m5.large`, `cache.m5.xlarge`,
|
5276
|
+
# `cache.m5.2xlarge`, `cache.m5.4xlarge`, `cache.m5.12xlarge`,
|
5277
|
+
# `cache.m5.24xlarge`
|
5192
5278
|
#
|
5193
5279
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
5194
5280
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
5195
5281
|
#
|
5282
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
5283
|
+
# `cache.t2.medium`
|
5284
|
+
#
|
5196
5285
|
# * Previous generation: (not recommended)
|
5197
5286
|
#
|
5198
5287
|
# **T1 node types:** `cache.t1.micro`
|
@@ -5200,6 +5289,9 @@ module Aws::ElastiCache
|
|
5200
5289
|
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
5201
5290
|
# `cache.m1.large`, `cache.m1.xlarge`
|
5202
5291
|
#
|
5292
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
5293
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
5294
|
+
#
|
5203
5295
|
# * Compute optimized:
|
5204
5296
|
#
|
5205
5297
|
# * Previous generation: (not recommended)
|
@@ -5210,10 +5302,11 @@ module Aws::ElastiCache
|
|
5210
5302
|
#
|
5211
5303
|
# * Current generation:
|
5212
5304
|
#
|
5213
|
-
# **
|
5214
|
-
# `cache.
|
5305
|
+
# **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
|
5306
|
+
# `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
|
5307
|
+
# `cache.r5.24xlarge`
|
5215
5308
|
#
|
5216
|
-
# **R4 node types
|
5309
|
+
# **R4 node types:** `cache.r4.large`, `cache.r4.xlarge`,
|
5217
5310
|
# `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
|
5218
5311
|
# `cache.r4.16xlarge`
|
5219
5312
|
#
|
@@ -5222,33 +5315,22 @@ module Aws::ElastiCache
|
|
5222
5315
|
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
5223
5316
|
# `cache.m2.4xlarge`
|
5224
5317
|
#
|
5225
|
-
#
|
5318
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
5319
|
+
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
5226
5320
|
#
|
5227
|
-
#
|
5228
|
-
# (Amazon VPC).
|
5321
|
+
# **Additional node type info**
|
5229
5322
|
#
|
5230
|
-
# *
|
5231
|
-
#
|
5323
|
+
# * All current generation instance types are created in Amazon VPC by
|
5324
|
+
# default.
|
5232
5325
|
#
|
5233
|
-
# * Redis
|
5326
|
+
# * Redis append-only files (AOF) are not supported for T1 or T2
|
5234
5327
|
# instances.
|
5235
5328
|
#
|
5236
|
-
# * Redis
|
5237
|
-
#
|
5238
|
-
#
|
5239
|
-
# For a complete listing of node types and specifications, see:
|
5240
|
-
#
|
5241
|
-
# * [Amazon ElastiCache Product Features and Details][1]
|
5242
|
-
#
|
5243
|
-
# * [Cache Node Type-Specific Parameters for Memcached][2]
|
5244
|
-
#
|
5245
|
-
# * [Cache Node Type-Specific Parameters for Redis][3]
|
5246
|
-
#
|
5247
|
-
#
|
5329
|
+
# * Redis Multi-AZ with automatic failover is not supported on T1
|
5330
|
+
# instances.
|
5248
5331
|
#
|
5249
|
-
#
|
5250
|
-
#
|
5251
|
-
# [3]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.Redis.html#ParameterGroups.Redis.NodeSpecific
|
5332
|
+
# * Redis configuration variables `appendonly` and `appendfsync` are not
|
5333
|
+
# supported on Redis version 2.8.22 and later.
|
5252
5334
|
#
|
5253
5335
|
# @option params [String] :duration
|
5254
5336
|
# Duration filter value, specified in years or seconds. Use this
|
@@ -5644,6 +5726,63 @@ module Aws::ElastiCache
|
|
5644
5726
|
req.send_request(options)
|
5645
5727
|
end
|
5646
5728
|
|
5729
|
+
# Returns details of the service updates
|
5730
|
+
#
|
5731
|
+
# @option params [String] :service_update_name
|
5732
|
+
# The unique ID of the service update
|
5733
|
+
#
|
5734
|
+
# @option params [Array<String>] :service_update_status
|
5735
|
+
# The status of the service update
|
5736
|
+
#
|
5737
|
+
# @option params [Integer] :max_records
|
5738
|
+
# The maximum number of records to include in the response
|
5739
|
+
#
|
5740
|
+
# @option params [String] :marker
|
5741
|
+
# An optional marker returned from a prior request. Use this marker for
|
5742
|
+
# pagination of results from this operation. If this parameter is
|
5743
|
+
# specified, the response includes only records beyond the marker, up to
|
5744
|
+
# the value specified by `MaxRecords`.
|
5745
|
+
#
|
5746
|
+
# @return [Types::ServiceUpdatesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5747
|
+
#
|
5748
|
+
# * {Types::ServiceUpdatesMessage#marker #marker} => String
|
5749
|
+
# * {Types::ServiceUpdatesMessage#service_updates #service_updates} => Array<Types::ServiceUpdate>
|
5750
|
+
#
|
5751
|
+
# @example Request syntax with placeholder values
|
5752
|
+
#
|
5753
|
+
# resp = client.describe_service_updates({
|
5754
|
+
# service_update_name: "String",
|
5755
|
+
# service_update_status: ["available"], # accepts available, cancelled, expired
|
5756
|
+
# max_records: 1,
|
5757
|
+
# marker: "String",
|
5758
|
+
# })
|
5759
|
+
#
|
5760
|
+
# @example Response structure
|
5761
|
+
#
|
5762
|
+
# resp.marker #=> String
|
5763
|
+
# resp.service_updates #=> Array
|
5764
|
+
# resp.service_updates[0].service_update_name #=> String
|
5765
|
+
# resp.service_updates[0].service_update_release_date #=> Time
|
5766
|
+
# resp.service_updates[0].service_update_end_date #=> Time
|
5767
|
+
# resp.service_updates[0].service_update_severity #=> String, one of "critical", "important", "medium", "low"
|
5768
|
+
# resp.service_updates[0].service_update_recommended_apply_by_date #=> Time
|
5769
|
+
# resp.service_updates[0].service_update_status #=> String, one of "available", "cancelled", "expired"
|
5770
|
+
# resp.service_updates[0].service_update_description #=> String
|
5771
|
+
# resp.service_updates[0].service_update_type #=> String, one of "security-update"
|
5772
|
+
# resp.service_updates[0].engine #=> String
|
5773
|
+
# resp.service_updates[0].engine_version #=> String
|
5774
|
+
# resp.service_updates[0].auto_update_after_recommended_apply_by_date #=> Boolean
|
5775
|
+
# resp.service_updates[0].estimated_update_time #=> String
|
5776
|
+
#
|
5777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeServiceUpdates AWS API Documentation
|
5778
|
+
#
|
5779
|
+
# @overload describe_service_updates(params = {})
|
5780
|
+
# @param [Hash] params ({})
|
5781
|
+
def describe_service_updates(params = {}, options = {})
|
5782
|
+
req = build_request(:describe_service_updates, params)
|
5783
|
+
req.send_request(options)
|
5784
|
+
end
|
5785
|
+
|
5647
5786
|
# Returns information about cluster or replication group snapshots. By
|
5648
5787
|
# default, `DescribeSnapshots` lists all of your snapshots; it can
|
5649
5788
|
# optionally describe a single snapshot, or just the snapshots
|
@@ -5803,6 +5942,96 @@ module Aws::ElastiCache
|
|
5803
5942
|
req.send_request(options)
|
5804
5943
|
end
|
5805
5944
|
|
5945
|
+
# Returns details of the update actions
|
5946
|
+
#
|
5947
|
+
# @option params [String] :service_update_name
|
5948
|
+
# The unique ID of the service update
|
5949
|
+
#
|
5950
|
+
# @option params [Array<String>] :replication_group_ids
|
5951
|
+
# The replication group IDs
|
5952
|
+
#
|
5953
|
+
# @option params [Array<String>] :service_update_status
|
5954
|
+
# The status of the service update
|
5955
|
+
#
|
5956
|
+
# @option params [Types::TimeRangeFilter] :service_update_time_range
|
5957
|
+
# The range of time specified to search for service updates that are in
|
5958
|
+
# available status
|
5959
|
+
#
|
5960
|
+
# @option params [Array<String>] :update_action_status
|
5961
|
+
# The status of the update action.
|
5962
|
+
#
|
5963
|
+
# @option params [Boolean] :show_node_level_update_status
|
5964
|
+
# Dictates whether to include node level update status in the response
|
5965
|
+
#
|
5966
|
+
# @option params [Integer] :max_records
|
5967
|
+
# The maximum number of records to include in the response
|
5968
|
+
#
|
5969
|
+
# @option params [String] :marker
|
5970
|
+
# An optional marker returned from a prior request. Use this marker for
|
5971
|
+
# pagination of results from this operation. If this parameter is
|
5972
|
+
# specified, the response includes only records beyond the marker, up to
|
5973
|
+
# the value specified by `MaxRecords`.
|
5974
|
+
#
|
5975
|
+
# @return [Types::UpdateActionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5976
|
+
#
|
5977
|
+
# * {Types::UpdateActionsMessage#marker #marker} => String
|
5978
|
+
# * {Types::UpdateActionsMessage#update_actions #update_actions} => Array<Types::UpdateAction>
|
5979
|
+
#
|
5980
|
+
# @example Request syntax with placeholder values
|
5981
|
+
#
|
5982
|
+
# resp = client.describe_update_actions({
|
5983
|
+
# service_update_name: "String",
|
5984
|
+
# replication_group_ids: ["String"],
|
5985
|
+
# service_update_status: ["available"], # accepts available, cancelled, expired
|
5986
|
+
# service_update_time_range: {
|
5987
|
+
# start_time: Time.now,
|
5988
|
+
# end_time: Time.now,
|
5989
|
+
# },
|
5990
|
+
# update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete
|
5991
|
+
# show_node_level_update_status: false,
|
5992
|
+
# max_records: 1,
|
5993
|
+
# marker: "String",
|
5994
|
+
# })
|
5995
|
+
#
|
5996
|
+
# @example Response structure
|
5997
|
+
#
|
5998
|
+
# resp.marker #=> String
|
5999
|
+
# resp.update_actions #=> Array
|
6000
|
+
# resp.update_actions[0].replication_group_id #=> String
|
6001
|
+
# resp.update_actions[0].service_update_name #=> String
|
6002
|
+
# resp.update_actions[0].service_update_release_date #=> Time
|
6003
|
+
# resp.update_actions[0].service_update_severity #=> String, one of "critical", "important", "medium", "low"
|
6004
|
+
# resp.update_actions[0].service_update_status #=> String, one of "available", "cancelled", "expired"
|
6005
|
+
# resp.update_actions[0].service_update_recommended_apply_by_date #=> Time
|
6006
|
+
# resp.update_actions[0].service_update_type #=> String, one of "security-update"
|
6007
|
+
# resp.update_actions[0].update_action_available_date #=> Time
|
6008
|
+
# resp.update_actions[0].update_action_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete"
|
6009
|
+
# resp.update_actions[0].nodes_updated #=> String
|
6010
|
+
# resp.update_actions[0].update_action_status_modified_date #=> Time
|
6011
|
+
# resp.update_actions[0].sla_met #=> String, one of "yes", "no", "n/a"
|
6012
|
+
# resp.update_actions[0].node_group_update_status #=> Array
|
6013
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_id #=> String
|
6014
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status #=> Array
|
6015
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].cache_cluster_id #=> String
|
6016
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].cache_node_id #=> String
|
6017
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].node_update_status #=> String, one of "not-applied", "waiting-to-start", "in-progress", "stopping", "stopped", "complete"
|
6018
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].node_deletion_date #=> Time
|
6019
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].node_update_start_date #=> Time
|
6020
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].node_update_end_date #=> Time
|
6021
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].node_update_initiated_by #=> String, one of "system", "customer"
|
6022
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].node_update_initiated_date #=> Time
|
6023
|
+
# resp.update_actions[0].node_group_update_status[0].node_group_member_update_status[0].node_update_status_modified_date #=> Time
|
6024
|
+
# resp.update_actions[0].estimated_update_time #=> String
|
6025
|
+
#
|
6026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeUpdateActions AWS API Documentation
|
6027
|
+
#
|
6028
|
+
# @overload describe_update_actions(params = {})
|
6029
|
+
# @param [Hash] params ({})
|
6030
|
+
def describe_update_actions(params = {}, options = {})
|
6031
|
+
req = build_request(:describe_update_actions, params)
|
6032
|
+
req.send_request(options)
|
6033
|
+
end
|
6034
|
+
|
5806
6035
|
# Dynamically increases the number of replics in a Redis (cluster mode
|
5807
6036
|
# disabled) replication group or the number of replica nodes in one or
|
5808
6037
|
# more node groups (shards) of a Redis (cluster mode enabled)
|
@@ -5827,9 +6056,8 @@ module Aws::ElastiCache
|
|
5827
6056
|
# and `PreferredAvailabilityZones`.
|
5828
6057
|
#
|
5829
6058
|
# @option params [required, Boolean] :apply_immediately
|
5830
|
-
# If `True`, the number of replica nodes is increased immediately.
|
5831
|
-
# `False
|
5832
|
-
# maintenance window.
|
6059
|
+
# If `True`, the number of replica nodes is increased immediately.
|
6060
|
+
# `ApplyImmediately=False` is not currently supported.
|
5833
6061
|
#
|
5834
6062
|
# @return [Types::IncreaseReplicaCountResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5835
6063
|
#
|
@@ -5995,7 +6223,7 @@ module Aws::ElastiCache
|
|
5995
6223
|
#
|
5996
6224
|
#
|
5997
6225
|
#
|
5998
|
-
# [1]:
|
6226
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Tagging.html
|
5999
6227
|
#
|
6000
6228
|
# @option params [required, String] :resource_name
|
6001
6229
|
# The Amazon Resource Name (ARN) of the resource for which you want the
|
@@ -6008,7 +6236,7 @@ module Aws::ElastiCache
|
|
6008
6236
|
#
|
6009
6237
|
#
|
6010
6238
|
#
|
6011
|
-
# [1]:
|
6239
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
6012
6240
|
#
|
6013
6241
|
# @return [Types::TagListMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6014
6242
|
#
|
@@ -6141,7 +6369,7 @@ module Aws::ElastiCache
|
|
6141
6369
|
#
|
6142
6370
|
#
|
6143
6371
|
#
|
6144
|
-
# [1]:
|
6372
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/CacheNode.Memcached.html
|
6145
6373
|
#
|
6146
6374
|
# @option params [Array<String>] :new_availability_zones
|
6147
6375
|
# The list of Availability Zones where the new Memcached cache nodes are
|
@@ -6223,7 +6451,7 @@ module Aws::ElastiCache
|
|
6223
6451
|
#
|
6224
6452
|
#
|
6225
6453
|
#
|
6226
|
-
# [1]:
|
6454
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/CacheNode.Memcached.html
|
6227
6455
|
#
|
6228
6456
|
# @option params [Array<String>] :cache_security_group_names
|
6229
6457
|
# A list of cache security group names to authorize on this cluster.
|
@@ -6313,7 +6541,7 @@ module Aws::ElastiCache
|
|
6313
6541
|
#
|
6314
6542
|
#
|
6315
6543
|
#
|
6316
|
-
# [1]:
|
6544
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
6317
6545
|
#
|
6318
6546
|
# @option params [Boolean] :auto_minor_version_upgrade
|
6319
6547
|
# This parameter is currently disabled.
|
@@ -6633,8 +6861,8 @@ module Aws::ElastiCache
|
|
6633
6861
|
# used to change a cluster's node type or engine version. For more
|
6634
6862
|
# information, see:
|
6635
6863
|
#
|
6636
|
-
# * [Scaling for Amazon ElastiCache for Redis
|
6637
|
-
#
|
6864
|
+
# * [Scaling for Amazon ElastiCache for Redis (cluster mode enabled)][1]
|
6865
|
+
# in the ElastiCache User Guide
|
6638
6866
|
#
|
6639
6867
|
# * [ModifyReplicationGroupShardConfiguration][2] in the ElastiCache API
|
6640
6868
|
# Reference
|
@@ -6645,8 +6873,8 @@ module Aws::ElastiCache
|
|
6645
6873
|
#
|
6646
6874
|
#
|
6647
6875
|
#
|
6648
|
-
# [1]:
|
6649
|
-
# [2]:
|
6876
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/scaling-redis-cluster-mode-enabled.html
|
6877
|
+
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_ModifyReplicationGroupShardConfiguration.html
|
6650
6878
|
#
|
6651
6879
|
# @option params [required, String] :replication_group_id
|
6652
6880
|
# The identifier of the replication group to modify.
|
@@ -6677,7 +6905,7 @@ module Aws::ElastiCache
|
|
6677
6905
|
#
|
6678
6906
|
# * Redis versions earlier than 2.8.6.
|
6679
6907
|
#
|
6680
|
-
# * Redis (cluster mode disabled): T1
|
6908
|
+
# * Redis (cluster mode disabled): T1 node types.
|
6681
6909
|
#
|
6682
6910
|
# * Redis (cluster mode enabled): T1 node types.
|
6683
6911
|
#
|
@@ -6771,7 +6999,7 @@ module Aws::ElastiCache
|
|
6771
6999
|
#
|
6772
7000
|
#
|
6773
7001
|
#
|
6774
|
-
# [1]:
|
7002
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
6775
7003
|
#
|
6776
7004
|
# @option params [Boolean] :auto_minor_version_upgrade
|
6777
7005
|
# This parameter is currently disabled.
|
@@ -6974,18 +7202,18 @@ module Aws::ElastiCache
|
|
6974
7202
|
#
|
6975
7203
|
# @option params [Array<String>] :node_groups_to_remove
|
6976
7204
|
# If the value of `NodeGroupCount` is less than the current number of
|
6977
|
-
# node groups (shards),
|
6978
|
-
# is
|
6979
|
-
# cluster.
|
7205
|
+
# node groups (shards), then either `NodeGroupsToRemove` or
|
7206
|
+
# `NodeGroupsToRetain` is required. `NodeGroupsToRemove` is a list of
|
7207
|
+
# `NodeGroupId`s to remove from the cluster.
|
6980
7208
|
#
|
6981
7209
|
# ElastiCache for Redis will attempt to remove all node groups listed by
|
6982
7210
|
# `NodeGroupsToRemove` from the cluster.
|
6983
7211
|
#
|
6984
7212
|
# @option params [Array<String>] :node_groups_to_retain
|
6985
7213
|
# If the value of `NodeGroupCount` is less than the current number of
|
6986
|
-
# node groups (shards),
|
6987
|
-
# is
|
6988
|
-
# cluster.
|
7214
|
+
# node groups (shards), then either `NodeGroupsToRemove` or
|
7215
|
+
# `NodeGroupsToRetain` is required. `NodeGroupsToRetain` is a list of
|
7216
|
+
# `NodeGroupId`s to retain in the cluster.
|
6989
7217
|
#
|
6990
7218
|
# ElastiCache for Redis will attempt to remove all node groups except
|
6991
7219
|
# those listed by `NodeGroupsToRetain` from the cluster.
|
@@ -7285,7 +7513,7 @@ module Aws::ElastiCache
|
|
7285
7513
|
#
|
7286
7514
|
#
|
7287
7515
|
#
|
7288
|
-
# [1]:
|
7516
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
7289
7517
|
#
|
7290
7518
|
# @option params [required, Array<String>] :tag_keys
|
7291
7519
|
# A list of `TagKeys` identifying the tags you want removed from the
|
@@ -7532,9 +7760,9 @@ module Aws::ElastiCache
|
|
7532
7760
|
#
|
7533
7761
|
#
|
7534
7762
|
#
|
7535
|
-
# [1]:
|
7536
|
-
# [2]:
|
7537
|
-
# [3]:
|
7763
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ECEvents.Viewing.html
|
7764
|
+
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_DescribeEvents.html
|
7765
|
+
# [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html#auto-failover-test
|
7538
7766
|
#
|
7539
7767
|
# @option params [required, String] :replication_group_id
|
7540
7768
|
# The name of the replication group (console: cluster) whose automatic
|
@@ -7614,7 +7842,7 @@ module Aws::ElastiCache
|
|
7614
7842
|
params: params,
|
7615
7843
|
config: config)
|
7616
7844
|
context[:gem_name] = 'aws-sdk-elasticache'
|
7617
|
-
context[:gem_version] = '1.
|
7845
|
+
context[:gem_version] = '1.18.0'
|
7618
7846
|
Seahorse::Client::Request.new(handlers, context)
|
7619
7847
|
end
|
7620
7848
|
|