/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the elasticache-2015-02-02.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.ElastiCache.Model { /// /// Container for the parameters to the ModifyReplicationGroupShardConfiguration operation. /// Modifies a replication group's shards (node groups) by allowing you to add shards, /// remove shards, or rebalance the keyspaces among existing shards. /// public partial class ModifyReplicationGroupShardConfigurationRequest : AmazonElastiCacheRequest { private bool? _applyImmediately; private int? _nodeGroupCount; private List _nodeGroupsToRemove = new List(); private List _nodeGroupsToRetain = new List(); private string _replicationGroupId; private List _reshardingConfiguration = new List(); /// /// Gets and sets the property ApplyImmediately. /// /// Indicates that the shard reconfiguration process begins immediately. At present, the /// only permitted value for this parameter is true. /// /// /// /// Value: true /// /// [AWSProperty(Required=true)] public bool ApplyImmediately { get { return this._applyImmediately.GetValueOrDefault(); } set { this._applyImmediately = value; } } // Check to see if ApplyImmediately property is set internal bool IsSetApplyImmediately() { return this._applyImmediately.HasValue; } /// /// Gets and sets the property NodeGroupCount. /// /// The number of node groups (shards) that results from the modification of the shard /// configuration. /// /// [AWSProperty(Required=true)] public int NodeGroupCount { get { return this._nodeGroupCount.GetValueOrDefault(); } set { this._nodeGroupCount = value; } } // Check to see if NodeGroupCount property is set internal bool IsSetNodeGroupCount() { return this._nodeGroupCount.HasValue; } /// /// Gets and sets the property NodeGroupsToRemove. /// /// If the value of NodeGroupCount is less than the current number of node /// groups (shards), then either NodeGroupsToRemove or NodeGroupsToRetain /// is required. NodeGroupsToRemove is a list of NodeGroupIds /// to remove from the cluster. /// /// /// /// ElastiCache for Redis will attempt to remove all node groups listed by NodeGroupsToRemove /// from the cluster. /// /// public List NodeGroupsToRemove { get { return this._nodeGroupsToRemove; } set { this._nodeGroupsToRemove = value; } } // Check to see if NodeGroupsToRemove property is set internal bool IsSetNodeGroupsToRemove() { return this._nodeGroupsToRemove != null && this._nodeGroupsToRemove.Count > 0; } /// /// Gets and sets the property NodeGroupsToRetain. /// /// If the value of NodeGroupCount is less than the current number of node /// groups (shards), then either NodeGroupsToRemove or NodeGroupsToRetain /// is required. NodeGroupsToRetain is a list of NodeGroupIds /// to retain in the cluster. /// /// /// /// ElastiCache for Redis will attempt to remove all node groups except those listed by /// NodeGroupsToRetain from the cluster. /// /// public List NodeGroupsToRetain { get { return this._nodeGroupsToRetain; } set { this._nodeGroupsToRetain = value; } } // Check to see if NodeGroupsToRetain property is set internal bool IsSetNodeGroupsToRetain() { return this._nodeGroupsToRetain != null && this._nodeGroupsToRetain.Count > 0; } /// /// Gets and sets the property ReplicationGroupId. /// /// The name of the Redis (cluster mode enabled) cluster (replication group) on which /// the shards are to be configured. /// /// [AWSProperty(Required=true)] public string ReplicationGroupId { get { return this._replicationGroupId; } set { this._replicationGroupId = value; } } // Check to see if ReplicationGroupId property is set internal bool IsSetReplicationGroupId() { return this._replicationGroupId != null; } /// /// Gets and sets the property ReshardingConfiguration. /// /// Specifies the preferred availability zones for each node group in the cluster. If /// the value of NodeGroupCount is greater than the current number of node /// groups (shards), you can use this parameter to specify the preferred availability /// zones of the cluster's shards. If you omit this parameter ElastiCache selects availability /// zones for you. /// /// /// /// You can specify this parameter only if the value of NodeGroupCount is /// greater than the current number of node groups (shards). /// /// public List ReshardingConfiguration { get { return this._reshardingConfiguration; } set { this._reshardingConfiguration = value; } } // Check to see if ReshardingConfiguration property is set internal bool IsSetReshardingConfiguration() { return this._reshardingConfiguration != null && this._reshardingConfiguration.Count > 0; } } }