aws-sdk-elasticache 1.28.0 → 1.29.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 +110 -15
- data/lib/aws-sdk-elasticache/client_api.rb +11 -1
- data/lib/aws-sdk-elasticache/types.rb +114 -19
- 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: 0efc8af705f4620c4c4c77cd10840ac16e033361
|
|
4
|
+
data.tar.gz: 7844475771cf354b702957c0155cee84d6219970
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e72c5b27b460e2df623ab73218fe0a23244a497bb9836e32f6fa1d86ad5d0f41d080de28c869635ff0caab4dfbe9d4a79e87e572b9ebeeaa12bdaf8987712649
|
|
7
|
+
data.tar.gz: 02de19cfed60dbb22965c29d7e5297e78cbebe4b2b6df3c8bacea5f0c938f44cf651bc71305d7780b6536af1c0fdbdb77a09c579e175aa3d96718205940575be
|
data/lib/aws-sdk-elasticache.rb
CHANGED
|
@@ -551,6 +551,7 @@ module Aws::ElastiCache
|
|
|
551
551
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
552
552
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
553
553
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
554
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
554
555
|
# resp.replication_group.member_clusters #=> Array
|
|
555
556
|
# resp.replication_group.member_clusters[0] #=> String
|
|
556
557
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -577,6 +578,7 @@ module Aws::ElastiCache
|
|
|
577
578
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
578
579
|
# resp.replication_group.cache_node_type #=> String
|
|
579
580
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
581
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
580
582
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
581
583
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
582
584
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -1117,8 +1119,9 @@ module Aws::ElastiCache
|
|
|
1117
1119
|
# * Must be at least 16 characters and no more than 128 characters in
|
|
1118
1120
|
# length.
|
|
1119
1121
|
#
|
|
1120
|
-
# *
|
|
1121
|
-
#
|
|
1122
|
+
# * The only permitted printable special characters are !, &, #, $,
|
|
1123
|
+
# ^, <, >, and -. Other printable special characters cannot be
|
|
1124
|
+
# used in the AUTH token.
|
|
1122
1125
|
#
|
|
1123
1126
|
# For more information, see [AUTH password][1] at
|
|
1124
1127
|
# http://redis.io/commands/AUTH.
|
|
@@ -1272,6 +1275,7 @@ module Aws::ElastiCache
|
|
|
1272
1275
|
# resp.cache_cluster.pending_modified_values.cache_node_ids_to_remove[0] #=> String
|
|
1273
1276
|
# resp.cache_cluster.pending_modified_values.engine_version #=> String
|
|
1274
1277
|
# resp.cache_cluster.pending_modified_values.cache_node_type #=> String
|
|
1278
|
+
# resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
1275
1279
|
# resp.cache_cluster.notification_configuration.topic_arn #=> String
|
|
1276
1280
|
# resp.cache_cluster.notification_configuration.topic_status #=> String
|
|
1277
1281
|
# resp.cache_cluster.cache_security_groups #=> Array
|
|
@@ -1299,6 +1303,7 @@ module Aws::ElastiCache
|
|
|
1299
1303
|
# resp.cache_cluster.snapshot_retention_limit #=> Integer
|
|
1300
1304
|
# resp.cache_cluster.snapshot_window #=> String
|
|
1301
1305
|
# resp.cache_cluster.auth_token_enabled #=> Boolean
|
|
1306
|
+
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
|
1302
1307
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
|
1303
1308
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
|
1304
1309
|
#
|
|
@@ -1922,8 +1927,9 @@ module Aws::ElastiCache
|
|
|
1922
1927
|
# * Must be at least 16 characters and no more than 128 characters in
|
|
1923
1928
|
# length.
|
|
1924
1929
|
#
|
|
1925
|
-
# *
|
|
1926
|
-
#
|
|
1930
|
+
# * The only permitted printable special characters are !, &, #, $,
|
|
1931
|
+
# ^, <, >, and -. Other printable special characters cannot be
|
|
1932
|
+
# used in the AUTH token.
|
|
1927
1933
|
#
|
|
1928
1934
|
# For more information, see [AUTH password][1] at
|
|
1929
1935
|
# http://redis.io/commands/AUTH.
|
|
@@ -2121,6 +2127,7 @@ module Aws::ElastiCache
|
|
|
2121
2127
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
2122
2128
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
2123
2129
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
2130
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
2124
2131
|
# resp.replication_group.member_clusters #=> Array
|
|
2125
2132
|
# resp.replication_group.member_clusters[0] #=> String
|
|
2126
2133
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -2147,6 +2154,7 @@ module Aws::ElastiCache
|
|
|
2147
2154
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
2148
2155
|
# resp.replication_group.cache_node_type #=> String
|
|
2149
2156
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
2157
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
2150
2158
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
2151
2159
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
2152
2160
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -2438,6 +2446,7 @@ module Aws::ElastiCache
|
|
|
2438
2446
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
2439
2447
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
2440
2448
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
2449
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
2441
2450
|
# resp.replication_group.member_clusters #=> Array
|
|
2442
2451
|
# resp.replication_group.member_clusters[0] #=> String
|
|
2443
2452
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -2464,6 +2473,7 @@ module Aws::ElastiCache
|
|
|
2464
2473
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
2465
2474
|
# resp.replication_group.cache_node_type #=> String
|
|
2466
2475
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
2476
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
2467
2477
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
2468
2478
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
2469
2479
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -2575,6 +2585,7 @@ module Aws::ElastiCache
|
|
|
2575
2585
|
# resp.cache_cluster.pending_modified_values.cache_node_ids_to_remove[0] #=> String
|
|
2576
2586
|
# resp.cache_cluster.pending_modified_values.engine_version #=> String
|
|
2577
2587
|
# resp.cache_cluster.pending_modified_values.cache_node_type #=> String
|
|
2588
|
+
# resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
2578
2589
|
# resp.cache_cluster.notification_configuration.topic_arn #=> String
|
|
2579
2590
|
# resp.cache_cluster.notification_configuration.topic_status #=> String
|
|
2580
2591
|
# resp.cache_cluster.cache_security_groups #=> Array
|
|
@@ -2602,6 +2613,7 @@ module Aws::ElastiCache
|
|
|
2602
2613
|
# resp.cache_cluster.snapshot_retention_limit #=> Integer
|
|
2603
2614
|
# resp.cache_cluster.snapshot_window #=> String
|
|
2604
2615
|
# resp.cache_cluster.auth_token_enabled #=> Boolean
|
|
2616
|
+
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
|
2605
2617
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
|
2606
2618
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
|
2607
2619
|
#
|
|
@@ -2801,6 +2813,7 @@ module Aws::ElastiCache
|
|
|
2801
2813
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
2802
2814
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
2803
2815
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
2816
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
2804
2817
|
# resp.replication_group.member_clusters #=> Array
|
|
2805
2818
|
# resp.replication_group.member_clusters[0] #=> String
|
|
2806
2819
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -2827,6 +2840,7 @@ module Aws::ElastiCache
|
|
|
2827
2840
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
2828
2841
|
# resp.replication_group.cache_node_type #=> String
|
|
2829
2842
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
2843
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
2830
2844
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
2831
2845
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
2832
2846
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -3152,6 +3166,7 @@ module Aws::ElastiCache
|
|
|
3152
3166
|
# resp.cache_clusters[0].pending_modified_values.cache_node_ids_to_remove[0] #=> String
|
|
3153
3167
|
# resp.cache_clusters[0].pending_modified_values.engine_version #=> String
|
|
3154
3168
|
# resp.cache_clusters[0].pending_modified_values.cache_node_type #=> String
|
|
3169
|
+
# resp.cache_clusters[0].pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
3155
3170
|
# resp.cache_clusters[0].notification_configuration.topic_arn #=> String
|
|
3156
3171
|
# resp.cache_clusters[0].notification_configuration.topic_status #=> String
|
|
3157
3172
|
# resp.cache_clusters[0].cache_security_groups #=> Array
|
|
@@ -3179,6 +3194,7 @@ module Aws::ElastiCache
|
|
|
3179
3194
|
# resp.cache_clusters[0].snapshot_retention_limit #=> Integer
|
|
3180
3195
|
# resp.cache_clusters[0].snapshot_window #=> String
|
|
3181
3196
|
# resp.cache_clusters[0].auth_token_enabled #=> Boolean
|
|
3197
|
+
# resp.cache_clusters[0].auth_token_last_modified_date #=> Time
|
|
3182
3198
|
# resp.cache_clusters[0].transit_encryption_enabled #=> Boolean
|
|
3183
3199
|
# resp.cache_clusters[0].at_rest_encryption_enabled #=> Boolean
|
|
3184
3200
|
#
|
|
@@ -5149,6 +5165,7 @@ module Aws::ElastiCache
|
|
|
5149
5165
|
# resp.replication_groups[0].pending_modified_values.primary_cluster_id #=> String
|
|
5150
5166
|
# resp.replication_groups[0].pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
5151
5167
|
# resp.replication_groups[0].pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
5168
|
+
# resp.replication_groups[0].pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
5152
5169
|
# resp.replication_groups[0].member_clusters #=> Array
|
|
5153
5170
|
# resp.replication_groups[0].member_clusters[0] #=> String
|
|
5154
5171
|
# resp.replication_groups[0].node_groups #=> Array
|
|
@@ -5175,6 +5192,7 @@ module Aws::ElastiCache
|
|
|
5175
5192
|
# resp.replication_groups[0].cluster_enabled #=> Boolean
|
|
5176
5193
|
# resp.replication_groups[0].cache_node_type #=> String
|
|
5177
5194
|
# resp.replication_groups[0].auth_token_enabled #=> Boolean
|
|
5195
|
+
# resp.replication_groups[0].auth_token_last_modified_date #=> Time
|
|
5178
5196
|
# resp.replication_groups[0].transit_encryption_enabled #=> Boolean
|
|
5179
5197
|
# resp.replication_groups[0].at_rest_encryption_enabled #=> Boolean
|
|
5180
5198
|
# resp.replication_groups[0].kms_key_id #=> String
|
|
@@ -6219,6 +6237,7 @@ module Aws::ElastiCache
|
|
|
6219
6237
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
6220
6238
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
6221
6239
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
6240
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
6222
6241
|
# resp.replication_group.member_clusters #=> Array
|
|
6223
6242
|
# resp.replication_group.member_clusters[0] #=> String
|
|
6224
6243
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -6245,6 +6264,7 @@ module Aws::ElastiCache
|
|
|
6245
6264
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
6246
6265
|
# resp.replication_group.cache_node_type #=> String
|
|
6247
6266
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
6267
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
6248
6268
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
6249
6269
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
6250
6270
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -6500,16 +6520,9 @@ module Aws::ElastiCache
|
|
|
6500
6520
|
# Availability Zone.
|
|
6501
6521
|
#
|
|
6502
6522
|
# Only newly created nodes are located in different Availability Zones.
|
|
6503
|
-
# For instructions on how to move existing Memcached nodes to different
|
|
6504
|
-
# Availability Zones, see the **Availability Zone Considerations**
|
|
6505
|
-
# section of [Cache Node Considerations for Memcached][1].
|
|
6506
6523
|
#
|
|
6507
6524
|
# </note>
|
|
6508
6525
|
#
|
|
6509
|
-
#
|
|
6510
|
-
#
|
|
6511
|
-
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/CacheNodes.SupportedTypes.html
|
|
6512
|
-
#
|
|
6513
6526
|
# @option params [Array<String>] :new_availability_zones
|
|
6514
6527
|
# The list of Availability Zones where the new Memcached cache nodes are
|
|
6515
6528
|
# created.
|
|
@@ -6703,6 +6716,39 @@ module Aws::ElastiCache
|
|
|
6703
6716
|
# @option params [String] :cache_node_type
|
|
6704
6717
|
# A valid cache node type that you want to scale this cluster up to.
|
|
6705
6718
|
#
|
|
6719
|
+
# @option params [String] :auth_token
|
|
6720
|
+
# Reserved parameter. The password used to access a password protected
|
|
6721
|
+
# server. This parameter must be specified with the `auth-token-update`
|
|
6722
|
+
# parameter. Password constraints:
|
|
6723
|
+
#
|
|
6724
|
+
# * Must be only printable ASCII characters
|
|
6725
|
+
#
|
|
6726
|
+
# * Must be at least 16 characters and no more than 128 characters in
|
|
6727
|
+
# length
|
|
6728
|
+
#
|
|
6729
|
+
# * Cannot contain any of the following characters: '/', '"', or
|
|
6730
|
+
# '@', '%'
|
|
6731
|
+
#
|
|
6732
|
+
# For more information, see AUTH password at [AUTH][1].
|
|
6733
|
+
#
|
|
6734
|
+
#
|
|
6735
|
+
#
|
|
6736
|
+
# [1]: http://redis.io/commands/AUTH
|
|
6737
|
+
#
|
|
6738
|
+
# @option params [String] :auth_token_update_strategy
|
|
6739
|
+
# Specifies the strategy to use to update the AUTH token. This parameter
|
|
6740
|
+
# must be specified with the `auth-token` parameter. Possible values:
|
|
6741
|
+
#
|
|
6742
|
+
# * Rotate
|
|
6743
|
+
#
|
|
6744
|
+
# * Set
|
|
6745
|
+
#
|
|
6746
|
+
# For more information, see [Authenticating Users with Redis AUTH][1]
|
|
6747
|
+
#
|
|
6748
|
+
#
|
|
6749
|
+
#
|
|
6750
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
|
|
6751
|
+
#
|
|
6706
6752
|
# @return [Types::ModifyCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6707
6753
|
#
|
|
6708
6754
|
# * {Types::ModifyCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
|
|
@@ -6768,6 +6814,8 @@ module Aws::ElastiCache
|
|
|
6768
6814
|
# snapshot_retention_limit: 1,
|
|
6769
6815
|
# snapshot_window: "String",
|
|
6770
6816
|
# cache_node_type: "String",
|
|
6817
|
+
# auth_token: "String",
|
|
6818
|
+
# auth_token_update_strategy: "SET", # accepts SET, ROTATE
|
|
6771
6819
|
# })
|
|
6772
6820
|
#
|
|
6773
6821
|
# @example Response structure
|
|
@@ -6789,6 +6837,7 @@ module Aws::ElastiCache
|
|
|
6789
6837
|
# resp.cache_cluster.pending_modified_values.cache_node_ids_to_remove[0] #=> String
|
|
6790
6838
|
# resp.cache_cluster.pending_modified_values.engine_version #=> String
|
|
6791
6839
|
# resp.cache_cluster.pending_modified_values.cache_node_type #=> String
|
|
6840
|
+
# resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
6792
6841
|
# resp.cache_cluster.notification_configuration.topic_arn #=> String
|
|
6793
6842
|
# resp.cache_cluster.notification_configuration.topic_status #=> String
|
|
6794
6843
|
# resp.cache_cluster.cache_security_groups #=> Array
|
|
@@ -6816,6 +6865,7 @@ module Aws::ElastiCache
|
|
|
6816
6865
|
# resp.cache_cluster.snapshot_retention_limit #=> Integer
|
|
6817
6866
|
# resp.cache_cluster.snapshot_window #=> String
|
|
6818
6867
|
# resp.cache_cluster.auth_token_enabled #=> Boolean
|
|
6868
|
+
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
|
6819
6869
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
|
6820
6870
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
|
6821
6871
|
#
|
|
@@ -7048,6 +7098,9 @@ module Aws::ElastiCache
|
|
|
7048
7098
|
#
|
|
7049
7099
|
# * Redis (cluster mode enabled): T1 node types.
|
|
7050
7100
|
#
|
|
7101
|
+
# @option params [String] :node_group_id
|
|
7102
|
+
# Deprecated. This parameter is not used.
|
|
7103
|
+
#
|
|
7051
7104
|
# @option params [Array<String>] :cache_security_group_names
|
|
7052
7105
|
# A list of cache security group names to authorize for the clusters in
|
|
7053
7106
|
# this replication group. This change is asynchronously applied as soon
|
|
@@ -7166,8 +7219,38 @@ module Aws::ElastiCache
|
|
|
7166
7219
|
# A valid cache node type that you want to scale this replication group
|
|
7167
7220
|
# to.
|
|
7168
7221
|
#
|
|
7169
|
-
# @option params [String] :
|
|
7170
|
-
#
|
|
7222
|
+
# @option params [String] :auth_token
|
|
7223
|
+
# Reserved parameter. The password used to access a password protected
|
|
7224
|
+
# server. This parameter must be specified with the
|
|
7225
|
+
# `auth-token-update-strategy ` parameter. Password constraints:
|
|
7226
|
+
#
|
|
7227
|
+
# * Must be only printable ASCII characters
|
|
7228
|
+
#
|
|
7229
|
+
# * Must be at least 16 characters and no more than 128 characters in
|
|
7230
|
+
# length
|
|
7231
|
+
#
|
|
7232
|
+
# * Cannot contain any of the following characters: '/', '"', or
|
|
7233
|
+
# '@', '%'
|
|
7234
|
+
#
|
|
7235
|
+
# For more information, see AUTH password at [AUTH][1].
|
|
7236
|
+
#
|
|
7237
|
+
#
|
|
7238
|
+
#
|
|
7239
|
+
# [1]: http://redis.io/commands/AUTH
|
|
7240
|
+
#
|
|
7241
|
+
# @option params [String] :auth_token_update_strategy
|
|
7242
|
+
# Specifies the strategy to use to update the AUTH token. This parameter
|
|
7243
|
+
# must be specified with the `auth-token` parameter. Possible values:
|
|
7244
|
+
#
|
|
7245
|
+
# * Rotate
|
|
7246
|
+
#
|
|
7247
|
+
# * Set
|
|
7248
|
+
#
|
|
7249
|
+
# For more information, see [Authenticating Users with Redis AUTH][1]
|
|
7250
|
+
#
|
|
7251
|
+
#
|
|
7252
|
+
#
|
|
7253
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
|
|
7171
7254
|
#
|
|
7172
7255
|
# @return [Types::ModifyReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7173
7256
|
#
|
|
@@ -7252,6 +7335,7 @@ module Aws::ElastiCache
|
|
|
7252
7335
|
# primary_cluster_id: "String",
|
|
7253
7336
|
# snapshotting_cluster_id: "String",
|
|
7254
7337
|
# automatic_failover_enabled: false,
|
|
7338
|
+
# node_group_id: "String",
|
|
7255
7339
|
# cache_security_group_names: ["String"],
|
|
7256
7340
|
# security_group_ids: ["String"],
|
|
7257
7341
|
# preferred_maintenance_window: "String",
|
|
@@ -7264,7 +7348,8 @@ module Aws::ElastiCache
|
|
|
7264
7348
|
# snapshot_retention_limit: 1,
|
|
7265
7349
|
# snapshot_window: "String",
|
|
7266
7350
|
# cache_node_type: "String",
|
|
7267
|
-
#
|
|
7351
|
+
# auth_token: "String",
|
|
7352
|
+
# auth_token_update_strategy: "SET", # accepts SET, ROTATE
|
|
7268
7353
|
# })
|
|
7269
7354
|
#
|
|
7270
7355
|
# @example Response structure
|
|
@@ -7275,6 +7360,7 @@ module Aws::ElastiCache
|
|
|
7275
7360
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
7276
7361
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
7277
7362
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
7363
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
7278
7364
|
# resp.replication_group.member_clusters #=> Array
|
|
7279
7365
|
# resp.replication_group.member_clusters[0] #=> String
|
|
7280
7366
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -7301,6 +7387,7 @@ module Aws::ElastiCache
|
|
|
7301
7387
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
7302
7388
|
# resp.replication_group.cache_node_type #=> String
|
|
7303
7389
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
7390
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
7304
7391
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
7305
7392
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
7306
7393
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -7388,6 +7475,7 @@ module Aws::ElastiCache
|
|
|
7388
7475
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
7389
7476
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
7390
7477
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
7478
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
7391
7479
|
# resp.replication_group.member_clusters #=> Array
|
|
7392
7480
|
# resp.replication_group.member_clusters[0] #=> String
|
|
7393
7481
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -7414,6 +7502,7 @@ module Aws::ElastiCache
|
|
|
7414
7502
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
7415
7503
|
# resp.replication_group.cache_node_type #=> String
|
|
7416
7504
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
7505
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
7417
7506
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
7418
7507
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
7419
7508
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -7605,6 +7694,7 @@ module Aws::ElastiCache
|
|
|
7605
7694
|
# resp.cache_cluster.pending_modified_values.cache_node_ids_to_remove[0] #=> String
|
|
7606
7695
|
# resp.cache_cluster.pending_modified_values.engine_version #=> String
|
|
7607
7696
|
# resp.cache_cluster.pending_modified_values.cache_node_type #=> String
|
|
7697
|
+
# resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
7608
7698
|
# resp.cache_cluster.notification_configuration.topic_arn #=> String
|
|
7609
7699
|
# resp.cache_cluster.notification_configuration.topic_status #=> String
|
|
7610
7700
|
# resp.cache_cluster.cache_security_groups #=> Array
|
|
@@ -7632,6 +7722,7 @@ module Aws::ElastiCache
|
|
|
7632
7722
|
# resp.cache_cluster.snapshot_retention_limit #=> Integer
|
|
7633
7723
|
# resp.cache_cluster.snapshot_window #=> String
|
|
7634
7724
|
# resp.cache_cluster.auth_token_enabled #=> Boolean
|
|
7725
|
+
# resp.cache_cluster.auth_token_last_modified_date #=> Time
|
|
7635
7726
|
# resp.cache_cluster.transit_encryption_enabled #=> Boolean
|
|
7636
7727
|
# resp.cache_cluster.at_rest_encryption_enabled #=> Boolean
|
|
7637
7728
|
#
|
|
@@ -7888,6 +7979,7 @@ module Aws::ElastiCache
|
|
|
7888
7979
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
7889
7980
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
7890
7981
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
7982
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
7891
7983
|
# resp.replication_group.member_clusters #=> Array
|
|
7892
7984
|
# resp.replication_group.member_clusters[0] #=> String
|
|
7893
7985
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -7914,6 +8006,7 @@ module Aws::ElastiCache
|
|
|
7914
8006
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
7915
8007
|
# resp.replication_group.cache_node_type #=> String
|
|
7916
8008
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
8009
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
7917
8010
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
7918
8011
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
7919
8012
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -8010,6 +8103,7 @@ module Aws::ElastiCache
|
|
|
8010
8103
|
# resp.replication_group.pending_modified_values.primary_cluster_id #=> String
|
|
8011
8104
|
# resp.replication_group.pending_modified_values.automatic_failover_status #=> String, one of "enabled", "disabled"
|
|
8012
8105
|
# resp.replication_group.pending_modified_values.resharding.slot_migration.progress_percentage #=> Float
|
|
8106
|
+
# resp.replication_group.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
|
|
8013
8107
|
# resp.replication_group.member_clusters #=> Array
|
|
8014
8108
|
# resp.replication_group.member_clusters[0] #=> String
|
|
8015
8109
|
# resp.replication_group.node_groups #=> Array
|
|
@@ -8036,6 +8130,7 @@ module Aws::ElastiCache
|
|
|
8036
8130
|
# resp.replication_group.cluster_enabled #=> Boolean
|
|
8037
8131
|
# resp.replication_group.cache_node_type #=> String
|
|
8038
8132
|
# resp.replication_group.auth_token_enabled #=> Boolean
|
|
8133
|
+
# resp.replication_group.auth_token_last_modified_date #=> Time
|
|
8039
8134
|
# resp.replication_group.transit_encryption_enabled #=> Boolean
|
|
8040
8135
|
# resp.replication_group.at_rest_encryption_enabled #=> Boolean
|
|
8041
8136
|
# resp.replication_group.kms_key_id #=> String
|
|
@@ -8062,7 +8157,7 @@ module Aws::ElastiCache
|
|
|
8062
8157
|
params: params,
|
|
8063
8158
|
config: config)
|
|
8064
8159
|
context[:gem_name] = 'aws-sdk-elasticache'
|
|
8065
|
-
context[:gem_version] = '1.
|
|
8160
|
+
context[:gem_version] = '1.29.0'
|
|
8066
8161
|
Seahorse::Client::Request.new(handlers, context)
|
|
8067
8162
|
end
|
|
8068
8163
|
|
|
@@ -16,6 +16,8 @@ module Aws::ElastiCache
|
|
|
16
16
|
AddTagsToResourceMessage = Shapes::StructureShape.new(name: 'AddTagsToResourceMessage')
|
|
17
17
|
AllowedNodeGroupId = Shapes::StringShape.new(name: 'AllowedNodeGroupId')
|
|
18
18
|
AllowedNodeTypeModificationsMessage = Shapes::StructureShape.new(name: 'AllowedNodeTypeModificationsMessage')
|
|
19
|
+
AuthTokenUpdateStatus = Shapes::StringShape.new(name: 'AuthTokenUpdateStatus')
|
|
20
|
+
AuthTokenUpdateStrategyType = Shapes::StringShape.new(name: 'AuthTokenUpdateStrategyType')
|
|
19
21
|
AuthorizationAlreadyExistsFault = Shapes::StructureShape.new(name: 'AuthorizationAlreadyExistsFault')
|
|
20
22
|
AuthorizationNotFoundFault = Shapes::StructureShape.new(name: 'AuthorizationNotFoundFault')
|
|
21
23
|
AuthorizeCacheSecurityGroupIngressMessage = Shapes::StructureShape.new(name: 'AuthorizeCacheSecurityGroupIngressMessage')
|
|
@@ -325,6 +327,7 @@ module Aws::ElastiCache
|
|
|
325
327
|
CacheCluster.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
|
326
328
|
CacheCluster.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
|
327
329
|
CacheCluster.add_member(:auth_token_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AuthTokenEnabled"))
|
|
330
|
+
CacheCluster.add_member(:auth_token_last_modified_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "AuthTokenLastModifiedDate"))
|
|
328
331
|
CacheCluster.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
|
329
332
|
CacheCluster.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
|
330
333
|
CacheCluster.struct_class = Types::CacheCluster
|
|
@@ -791,6 +794,8 @@ module Aws::ElastiCache
|
|
|
791
794
|
ModifyCacheClusterMessage.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
|
792
795
|
ModifyCacheClusterMessage.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
|
793
796
|
ModifyCacheClusterMessage.add_member(:cache_node_type, Shapes::ShapeRef.new(shape: String, location_name: "CacheNodeType"))
|
|
797
|
+
ModifyCacheClusterMessage.add_member(:auth_token, Shapes::ShapeRef.new(shape: String, location_name: "AuthToken"))
|
|
798
|
+
ModifyCacheClusterMessage.add_member(:auth_token_update_strategy, Shapes::ShapeRef.new(shape: AuthTokenUpdateStrategyType, location_name: "AuthTokenUpdateStrategy"))
|
|
794
799
|
ModifyCacheClusterMessage.struct_class = Types::ModifyCacheClusterMessage
|
|
795
800
|
|
|
796
801
|
ModifyCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
|
|
@@ -813,6 +818,7 @@ module Aws::ElastiCache
|
|
|
813
818
|
ModifyReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
|
814
819
|
ModifyReplicationGroupMessage.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
|
815
820
|
ModifyReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
|
821
|
+
ModifyReplicationGroupMessage.add_member(:node_group_id, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "NodeGroupId"))
|
|
816
822
|
ModifyReplicationGroupMessage.add_member(:cache_security_group_names, Shapes::ShapeRef.new(shape: CacheSecurityGroupNameList, location_name: "CacheSecurityGroupNames"))
|
|
817
823
|
ModifyReplicationGroupMessage.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdsList, location_name: "SecurityGroupIds"))
|
|
818
824
|
ModifyReplicationGroupMessage.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
|
|
@@ -825,7 +831,8 @@ module Aws::ElastiCache
|
|
|
825
831
|
ModifyReplicationGroupMessage.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
|
826
832
|
ModifyReplicationGroupMessage.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
|
827
833
|
ModifyReplicationGroupMessage.add_member(:cache_node_type, Shapes::ShapeRef.new(shape: String, location_name: "CacheNodeType"))
|
|
828
|
-
ModifyReplicationGroupMessage.add_member(:
|
|
834
|
+
ModifyReplicationGroupMessage.add_member(:auth_token, Shapes::ShapeRef.new(shape: String, location_name: "AuthToken"))
|
|
835
|
+
ModifyReplicationGroupMessage.add_member(:auth_token_update_strategy, Shapes::ShapeRef.new(shape: AuthTokenUpdateStrategyType, location_name: "AuthTokenUpdateStrategy"))
|
|
829
836
|
ModifyReplicationGroupMessage.struct_class = Types::ModifyReplicationGroupMessage
|
|
830
837
|
|
|
831
838
|
ModifyReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
|
|
@@ -933,6 +940,7 @@ module Aws::ElastiCache
|
|
|
933
940
|
PendingModifiedValues.add_member(:cache_node_ids_to_remove, Shapes::ShapeRef.new(shape: CacheNodeIdsList, location_name: "CacheNodeIdsToRemove"))
|
|
934
941
|
PendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
|
935
942
|
PendingModifiedValues.add_member(:cache_node_type, Shapes::ShapeRef.new(shape: String, location_name: "CacheNodeType"))
|
|
943
|
+
PendingModifiedValues.add_member(:auth_token_status, Shapes::ShapeRef.new(shape: AuthTokenUpdateStatus, location_name: "AuthTokenStatus"))
|
|
936
944
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
|
937
945
|
|
|
938
946
|
PreferredAvailabilityZoneList.member = Shapes::ShapeRef.new(shape: String, location_name: "PreferredAvailabilityZone")
|
|
@@ -988,6 +996,7 @@ module Aws::ElastiCache
|
|
|
988
996
|
ReplicationGroup.add_member(:cluster_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ClusterEnabled"))
|
|
989
997
|
ReplicationGroup.add_member(:cache_node_type, Shapes::ShapeRef.new(shape: String, location_name: "CacheNodeType"))
|
|
990
998
|
ReplicationGroup.add_member(:auth_token_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AuthTokenEnabled"))
|
|
999
|
+
ReplicationGroup.add_member(:auth_token_last_modified_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "AuthTokenLastModifiedDate"))
|
|
991
1000
|
ReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
|
992
1001
|
ReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
|
993
1002
|
ReplicationGroup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
@@ -1004,6 +1013,7 @@ module Aws::ElastiCache
|
|
|
1004
1013
|
ReplicationGroupPendingModifiedValues.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
|
1005
1014
|
ReplicationGroupPendingModifiedValues.add_member(:automatic_failover_status, Shapes::ShapeRef.new(shape: PendingAutomaticFailoverStatus, location_name: "AutomaticFailoverStatus"))
|
|
1006
1015
|
ReplicationGroupPendingModifiedValues.add_member(:resharding, Shapes::ShapeRef.new(shape: ReshardingStatus, location_name: "Resharding"))
|
|
1016
|
+
ReplicationGroupPendingModifiedValues.add_member(:auth_token_status, Shapes::ShapeRef.new(shape: AuthTokenUpdateStatus, location_name: "AuthTokenStatus"))
|
|
1007
1017
|
ReplicationGroupPendingModifiedValues.struct_class = Types::ReplicationGroupPendingModifiedValues
|
|
1008
1018
|
|
|
1009
1019
|
ReservedCacheNode.add_member(:reserved_cache_node_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedCacheNodeId"))
|
|
@@ -424,6 +424,10 @@ module Aws::ElastiCache
|
|
|
424
424
|
# Default: `false`
|
|
425
425
|
# @return [Boolean]
|
|
426
426
|
#
|
|
427
|
+
# @!attribute [rw] auth_token_last_modified_date
|
|
428
|
+
# The date the auth token was last modified
|
|
429
|
+
# @return [Time]
|
|
430
|
+
#
|
|
427
431
|
# @!attribute [rw] transit_encryption_enabled
|
|
428
432
|
# A flag that enables in-transit encryption when set to `true`.
|
|
429
433
|
#
|
|
@@ -478,6 +482,7 @@ module Aws::ElastiCache
|
|
|
478
482
|
:snapshot_retention_limit,
|
|
479
483
|
:snapshot_window,
|
|
480
484
|
:auth_token_enabled,
|
|
485
|
+
:auth_token_last_modified_date,
|
|
481
486
|
:transit_encryption_enabled,
|
|
482
487
|
:at_rest_encryption_enabled)
|
|
483
488
|
include Aws::Structure
|
|
@@ -1588,8 +1593,9 @@ module Aws::ElastiCache
|
|
|
1588
1593
|
# * Must be at least 16 characters and no more than 128 characters in
|
|
1589
1594
|
# length.
|
|
1590
1595
|
#
|
|
1591
|
-
# *
|
|
1592
|
-
#
|
|
1596
|
+
# * The only permitted printable special characters are !, &, #,
|
|
1597
|
+
# $, ^, <, >, and -. Other printable special characters cannot
|
|
1598
|
+
# be used in the AUTH token.
|
|
1593
1599
|
#
|
|
1594
1600
|
# For more information, see [AUTH password][1] at
|
|
1595
1601
|
# http://redis.io/commands/AUTH.
|
|
@@ -2208,8 +2214,9 @@ module Aws::ElastiCache
|
|
|
2208
2214
|
# * Must be at least 16 characters and no more than 128 characters in
|
|
2209
2215
|
# length.
|
|
2210
2216
|
#
|
|
2211
|
-
# *
|
|
2212
|
-
#
|
|
2217
|
+
# * The only permitted printable special characters are !, &, #,
|
|
2218
|
+
# $, ^, <, >, and -. Other printable special characters cannot
|
|
2219
|
+
# be used in the AUTH token.
|
|
2213
2220
|
#
|
|
2214
2221
|
# For more information, see [AUTH password][1] at
|
|
2215
2222
|
# http://redis.io/commands/AUTH.
|
|
@@ -3980,6 +3987,8 @@ module Aws::ElastiCache
|
|
|
3980
3987
|
# snapshot_retention_limit: 1,
|
|
3981
3988
|
# snapshot_window: "String",
|
|
3982
3989
|
# cache_node_type: "String",
|
|
3990
|
+
# auth_token: "String",
|
|
3991
|
+
# auth_token_update_strategy: "SET", # accepts SET, ROTATE
|
|
3983
3992
|
# }
|
|
3984
3993
|
#
|
|
3985
3994
|
# @!attribute [rw] cache_cluster_id
|
|
@@ -4056,16 +4065,9 @@ module Aws::ElastiCache
|
|
|
4056
4065
|
# Availability Zone.
|
|
4057
4066
|
#
|
|
4058
4067
|
# Only newly created nodes are located in different Availability
|
|
4059
|
-
# Zones.
|
|
4060
|
-
# different Availability Zones, see the **Availability Zone
|
|
4061
|
-
# Considerations** section of [Cache Node Considerations for
|
|
4062
|
-
# Memcached][1].
|
|
4068
|
+
# Zones.
|
|
4063
4069
|
#
|
|
4064
4070
|
# </note>
|
|
4065
|
-
#
|
|
4066
|
-
#
|
|
4067
|
-
#
|
|
4068
|
-
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/CacheNodes.SupportedTypes.html
|
|
4069
4071
|
# @return [String]
|
|
4070
4072
|
#
|
|
4071
4073
|
# @!attribute [rw] new_availability_zones
|
|
@@ -4277,6 +4279,42 @@ module Aws::ElastiCache
|
|
|
4277
4279
|
# A valid cache node type that you want to scale this cluster up to.
|
|
4278
4280
|
# @return [String]
|
|
4279
4281
|
#
|
|
4282
|
+
# @!attribute [rw] auth_token
|
|
4283
|
+
# Reserved parameter. The password used to access a password protected
|
|
4284
|
+
# server. This parameter must be specified with the
|
|
4285
|
+
# `auth-token-update` parameter. Password constraints:
|
|
4286
|
+
#
|
|
4287
|
+
# * Must be only printable ASCII characters
|
|
4288
|
+
#
|
|
4289
|
+
# * Must be at least 16 characters and no more than 128 characters in
|
|
4290
|
+
# length
|
|
4291
|
+
#
|
|
4292
|
+
# * Cannot contain any of the following characters: '/', '"', or
|
|
4293
|
+
# '@', '%'
|
|
4294
|
+
#
|
|
4295
|
+
# For more information, see AUTH password at [AUTH][1].
|
|
4296
|
+
#
|
|
4297
|
+
#
|
|
4298
|
+
#
|
|
4299
|
+
# [1]: http://redis.io/commands/AUTH
|
|
4300
|
+
# @return [String]
|
|
4301
|
+
#
|
|
4302
|
+
# @!attribute [rw] auth_token_update_strategy
|
|
4303
|
+
# Specifies the strategy to use to update the AUTH token. This
|
|
4304
|
+
# parameter must be specified with the `auth-token` parameter.
|
|
4305
|
+
# Possible values:
|
|
4306
|
+
#
|
|
4307
|
+
# * Rotate
|
|
4308
|
+
#
|
|
4309
|
+
# * Set
|
|
4310
|
+
#
|
|
4311
|
+
# For more information, see [Authenticating Users with Redis AUTH][1]
|
|
4312
|
+
#
|
|
4313
|
+
#
|
|
4314
|
+
#
|
|
4315
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
|
|
4316
|
+
# @return [String]
|
|
4317
|
+
#
|
|
4280
4318
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheClusterMessage AWS API Documentation
|
|
4281
4319
|
#
|
|
4282
4320
|
class ModifyCacheClusterMessage < Struct.new(
|
|
@@ -4296,7 +4334,9 @@ module Aws::ElastiCache
|
|
|
4296
4334
|
:auto_minor_version_upgrade,
|
|
4297
4335
|
:snapshot_retention_limit,
|
|
4298
4336
|
:snapshot_window,
|
|
4299
|
-
:cache_node_type
|
|
4337
|
+
:cache_node_type,
|
|
4338
|
+
:auth_token,
|
|
4339
|
+
:auth_token_update_strategy)
|
|
4300
4340
|
include Aws::Structure
|
|
4301
4341
|
end
|
|
4302
4342
|
|
|
@@ -4409,6 +4449,7 @@ module Aws::ElastiCache
|
|
|
4409
4449
|
# primary_cluster_id: "String",
|
|
4410
4450
|
# snapshotting_cluster_id: "String",
|
|
4411
4451
|
# automatic_failover_enabled: false,
|
|
4452
|
+
# node_group_id: "String",
|
|
4412
4453
|
# cache_security_group_names: ["String"],
|
|
4413
4454
|
# security_group_ids: ["String"],
|
|
4414
4455
|
# preferred_maintenance_window: "String",
|
|
@@ -4421,7 +4462,8 @@ module Aws::ElastiCache
|
|
|
4421
4462
|
# snapshot_retention_limit: 1,
|
|
4422
4463
|
# snapshot_window: "String",
|
|
4423
4464
|
# cache_node_type: "String",
|
|
4424
|
-
#
|
|
4465
|
+
# auth_token: "String",
|
|
4466
|
+
# auth_token_update_strategy: "SET", # accepts SET, ROTATE
|
|
4425
4467
|
# }
|
|
4426
4468
|
#
|
|
4427
4469
|
# @!attribute [rw] replication_group_id
|
|
@@ -4462,6 +4504,10 @@ module Aws::ElastiCache
|
|
|
4462
4504
|
# * Redis (cluster mode enabled): T1 node types.
|
|
4463
4505
|
# @return [Boolean]
|
|
4464
4506
|
#
|
|
4507
|
+
# @!attribute [rw] node_group_id
|
|
4508
|
+
# Deprecated. This parameter is not used.
|
|
4509
|
+
# @return [String]
|
|
4510
|
+
#
|
|
4465
4511
|
# @!attribute [rw] cache_security_group_names
|
|
4466
4512
|
# A list of cache security group names to authorize for the clusters
|
|
4467
4513
|
# in this replication group. This change is asynchronously applied as
|
|
@@ -4593,8 +4639,40 @@ module Aws::ElastiCache
|
|
|
4593
4639
|
# group to.
|
|
4594
4640
|
# @return [String]
|
|
4595
4641
|
#
|
|
4596
|
-
# @!attribute [rw]
|
|
4597
|
-
#
|
|
4642
|
+
# @!attribute [rw] auth_token
|
|
4643
|
+
# Reserved parameter. The password used to access a password protected
|
|
4644
|
+
# server. This parameter must be specified with the
|
|
4645
|
+
# `auth-token-update-strategy ` parameter. Password constraints:
|
|
4646
|
+
#
|
|
4647
|
+
# * Must be only printable ASCII characters
|
|
4648
|
+
#
|
|
4649
|
+
# * Must be at least 16 characters and no more than 128 characters in
|
|
4650
|
+
# length
|
|
4651
|
+
#
|
|
4652
|
+
# * Cannot contain any of the following characters: '/', '"', or
|
|
4653
|
+
# '@', '%'
|
|
4654
|
+
#
|
|
4655
|
+
# For more information, see AUTH password at [AUTH][1].
|
|
4656
|
+
#
|
|
4657
|
+
#
|
|
4658
|
+
#
|
|
4659
|
+
# [1]: http://redis.io/commands/AUTH
|
|
4660
|
+
# @return [String]
|
|
4661
|
+
#
|
|
4662
|
+
# @!attribute [rw] auth_token_update_strategy
|
|
4663
|
+
# Specifies the strategy to use to update the AUTH token. This
|
|
4664
|
+
# parameter must be specified with the `auth-token` parameter.
|
|
4665
|
+
# Possible values:
|
|
4666
|
+
#
|
|
4667
|
+
# * Rotate
|
|
4668
|
+
#
|
|
4669
|
+
# * Set
|
|
4670
|
+
#
|
|
4671
|
+
# For more information, see [Authenticating Users with Redis AUTH][1]
|
|
4672
|
+
#
|
|
4673
|
+
#
|
|
4674
|
+
#
|
|
4675
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
|
|
4598
4676
|
# @return [String]
|
|
4599
4677
|
#
|
|
4600
4678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
|
|
@@ -4605,6 +4683,7 @@ module Aws::ElastiCache
|
|
|
4605
4683
|
:primary_cluster_id,
|
|
4606
4684
|
:snapshotting_cluster_id,
|
|
4607
4685
|
:automatic_failover_enabled,
|
|
4686
|
+
:node_group_id,
|
|
4608
4687
|
:cache_security_group_names,
|
|
4609
4688
|
:security_group_ids,
|
|
4610
4689
|
:preferred_maintenance_window,
|
|
@@ -4617,7 +4696,8 @@ module Aws::ElastiCache
|
|
|
4617
4696
|
:snapshot_retention_limit,
|
|
4618
4697
|
:snapshot_window,
|
|
4619
4698
|
:cache_node_type,
|
|
4620
|
-
:
|
|
4699
|
+
:auth_token,
|
|
4700
|
+
:auth_token_update_strategy)
|
|
4621
4701
|
include Aws::Structure
|
|
4622
4702
|
end
|
|
4623
4703
|
|
|
@@ -5116,13 +5196,18 @@ module Aws::ElastiCache
|
|
|
5116
5196
|
# to.
|
|
5117
5197
|
# @return [String]
|
|
5118
5198
|
#
|
|
5199
|
+
# @!attribute [rw] auth_token_status
|
|
5200
|
+
# The auth token status
|
|
5201
|
+
# @return [String]
|
|
5202
|
+
#
|
|
5119
5203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/PendingModifiedValues AWS API Documentation
|
|
5120
5204
|
#
|
|
5121
5205
|
class PendingModifiedValues < Struct.new(
|
|
5122
5206
|
:num_cache_nodes,
|
|
5123
5207
|
:cache_node_ids_to_remove,
|
|
5124
5208
|
:engine_version,
|
|
5125
|
-
:cache_node_type
|
|
5209
|
+
:cache_node_type,
|
|
5210
|
+
:auth_token_status)
|
|
5126
5211
|
include Aws::Structure
|
|
5127
5212
|
end
|
|
5128
5213
|
|
|
@@ -5410,6 +5495,10 @@ module Aws::ElastiCache
|
|
|
5410
5495
|
# Default: `false`
|
|
5411
5496
|
# @return [Boolean]
|
|
5412
5497
|
#
|
|
5498
|
+
# @!attribute [rw] auth_token_last_modified_date
|
|
5499
|
+
# The date the auth token was last modified
|
|
5500
|
+
# @return [Time]
|
|
5501
|
+
#
|
|
5413
5502
|
# @!attribute [rw] transit_encryption_enabled
|
|
5414
5503
|
# A flag that enables in-transit encryption when set to `true`.
|
|
5415
5504
|
#
|
|
@@ -5459,6 +5548,7 @@ module Aws::ElastiCache
|
|
|
5459
5548
|
:cluster_enabled,
|
|
5460
5549
|
:cache_node_type,
|
|
5461
5550
|
:auth_token_enabled,
|
|
5551
|
+
:auth_token_last_modified_date,
|
|
5462
5552
|
:transit_encryption_enabled,
|
|
5463
5553
|
:at_rest_encryption_enabled,
|
|
5464
5554
|
:kms_key_id)
|
|
@@ -5511,12 +5601,17 @@ module Aws::ElastiCache
|
|
|
5511
5601
|
# The status of an online resharding operation.
|
|
5512
5602
|
# @return [Types::ReshardingStatus]
|
|
5513
5603
|
#
|
|
5604
|
+
# @!attribute [rw] auth_token_status
|
|
5605
|
+
# The auth token status
|
|
5606
|
+
# @return [String]
|
|
5607
|
+
#
|
|
5514
5608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroupPendingModifiedValues AWS API Documentation
|
|
5515
5609
|
#
|
|
5516
5610
|
class ReplicationGroupPendingModifiedValues < Struct.new(
|
|
5517
5611
|
:primary_cluster_id,
|
|
5518
5612
|
:automatic_failover_status,
|
|
5519
|
-
:resharding
|
|
5613
|
+
:resharding,
|
|
5614
|
+
:auth_token_status)
|
|
5520
5615
|
include Aws::Structure
|
|
5521
5616
|
end
|
|
5522
5617
|
|
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.29.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
11
|
+
date: 2019-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|