All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.elasticache.model.ReplicationGroup Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon ElastiCache module holds the client classes that are used for communicating with Amazon ElastiCache Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2011-2016 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.
 */
package com.amazonaws.services.elasticache.model;

import java.io.Serializable;

/**
 * 

* Contains all of the attributes of a specific replication group. *

*/ public class ReplicationGroup implements Serializable, Cloneable { /** *

* The identifier for the replication group. *

*/ private String replicationGroupId; /** *

* The description of the replication group. *

*/ private String description; /** *

* The current state of this replication group - creating, * available, etc. *

*/ private String status; /** *

* A group of settings to be applied to the replication group, either * immediately or during the next maintenance window. *

*/ private ReplicationGroupPendingModifiedValues pendingModifiedValues; /** *

* The names of all the cache clusters that are part of this replication * group. *

*/ private com.amazonaws.internal.SdkInternalList memberClusters; /** *

* A single element list with information about the nodes in the replication * group. *

*/ private com.amazonaws.internal.SdkInternalList nodeGroups; /** *

* The cache cluster ID that is used as the daily snapshot source for the * replication group. *

*/ private String snapshottingClusterId; /** *

* Indicates the status of Multi-AZ for this replication group. *

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
*
*/ private String automaticFailover; /** *

* The identifier for the replication group. *

* * @param replicationGroupId * The identifier for the replication group. */ public void setReplicationGroupId(String replicationGroupId) { this.replicationGroupId = replicationGroupId; } /** *

* The identifier for the replication group. *

* * @return The identifier for the replication group. */ public String getReplicationGroupId() { return this.replicationGroupId; } /** *

* The identifier for the replication group. *

* * @param replicationGroupId * The identifier for the replication group. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withReplicationGroupId(String replicationGroupId) { setReplicationGroupId(replicationGroupId); return this; } /** *

* The description of the replication group. *

* * @param description * The description of the replication group. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the replication group. *

* * @return The description of the replication group. */ public String getDescription() { return this.description; } /** *

* The description of the replication group. *

* * @param description * The description of the replication group. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withDescription(String description) { setDescription(description); return this; } /** *

* The current state of this replication group - creating, * available, etc. *

* * @param status * The current state of this replication group - creating, * available, etc. */ public void setStatus(String status) { this.status = status; } /** *

* The current state of this replication group - creating, * available, etc. *

* * @return The current state of this replication group - creating, * available, etc. */ public String getStatus() { return this.status; } /** *

* The current state of this replication group - creating, * available, etc. *

* * @param status * The current state of this replication group - creating, * available, etc. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withStatus(String status) { setStatus(status); return this; } /** *

* A group of settings to be applied to the replication group, either * immediately or during the next maintenance window. *

* * @param pendingModifiedValues * A group of settings to be applied to the replication group, either * immediately or during the next maintenance window. */ public void setPendingModifiedValues( ReplicationGroupPendingModifiedValues pendingModifiedValues) { this.pendingModifiedValues = pendingModifiedValues; } /** *

* A group of settings to be applied to the replication group, either * immediately or during the next maintenance window. *

* * @return A group of settings to be applied to the replication group, * either immediately or during the next maintenance window. */ public ReplicationGroupPendingModifiedValues getPendingModifiedValues() { return this.pendingModifiedValues; } /** *

* A group of settings to be applied to the replication group, either * immediately or during the next maintenance window. *

* * @param pendingModifiedValues * A group of settings to be applied to the replication group, either * immediately or during the next maintenance window. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withPendingModifiedValues( ReplicationGroupPendingModifiedValues pendingModifiedValues) { setPendingModifiedValues(pendingModifiedValues); return this; } /** *

* The names of all the cache clusters that are part of this replication * group. *

* * @return The names of all the cache clusters that are part of this * replication group. */ public java.util.List getMemberClusters() { if (memberClusters == null) { memberClusters = new com.amazonaws.internal.SdkInternalList(); } return memberClusters; } /** *

* The names of all the cache clusters that are part of this replication * group. *

* * @param memberClusters * The names of all the cache clusters that are part of this * replication group. */ public void setMemberClusters(java.util.Collection memberClusters) { if (memberClusters == null) { this.memberClusters = null; return; } this.memberClusters = new com.amazonaws.internal.SdkInternalList( memberClusters); } /** *

* The names of all the cache clusters that are part of this replication * group. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setMemberClusters(java.util.Collection)} or * {@link #withMemberClusters(java.util.Collection)} if you want to override * the existing values. *

* * @param memberClusters * The names of all the cache clusters that are part of this * replication group. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withMemberClusters(String... memberClusters) { if (this.memberClusters == null) { setMemberClusters(new com.amazonaws.internal.SdkInternalList( memberClusters.length)); } for (String ele : memberClusters) { this.memberClusters.add(ele); } return this; } /** *

* The names of all the cache clusters that are part of this replication * group. *

* * @param memberClusters * The names of all the cache clusters that are part of this * replication group. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withMemberClusters( java.util.Collection memberClusters) { setMemberClusters(memberClusters); return this; } /** *

* A single element list with information about the nodes in the replication * group. *

* * @return A single element list with information about the nodes in the * replication group. */ public java.util.List getNodeGroups() { if (nodeGroups == null) { nodeGroups = new com.amazonaws.internal.SdkInternalList(); } return nodeGroups; } /** *

* A single element list with information about the nodes in the replication * group. *

* * @param nodeGroups * A single element list with information about the nodes in the * replication group. */ public void setNodeGroups(java.util.Collection nodeGroups) { if (nodeGroups == null) { this.nodeGroups = null; return; } this.nodeGroups = new com.amazonaws.internal.SdkInternalList( nodeGroups); } /** *

* A single element list with information about the nodes in the replication * group. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setNodeGroups(java.util.Collection)} or * {@link #withNodeGroups(java.util.Collection)} if you want to override the * existing values. *

* * @param nodeGroups * A single element list with information about the nodes in the * replication group. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withNodeGroups(NodeGroup... nodeGroups) { if (this.nodeGroups == null) { setNodeGroups(new com.amazonaws.internal.SdkInternalList( nodeGroups.length)); } for (NodeGroup ele : nodeGroups) { this.nodeGroups.add(ele); } return this; } /** *

* A single element list with information about the nodes in the replication * group. *

* * @param nodeGroups * A single element list with information about the nodes in the * replication group. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withNodeGroups( java.util.Collection nodeGroups) { setNodeGroups(nodeGroups); return this; } /** *

* The cache cluster ID that is used as the daily snapshot source for the * replication group. *

* * @param snapshottingClusterId * The cache cluster ID that is used as the daily snapshot source for * the replication group. */ public void setSnapshottingClusterId(String snapshottingClusterId) { this.snapshottingClusterId = snapshottingClusterId; } /** *

* The cache cluster ID that is used as the daily snapshot source for the * replication group. *

* * @return The cache cluster ID that is used as the daily snapshot source * for the replication group. */ public String getSnapshottingClusterId() { return this.snapshottingClusterId; } /** *

* The cache cluster ID that is used as the daily snapshot source for the * replication group. *

* * @param snapshottingClusterId * The cache cluster ID that is used as the daily snapshot source for * the replication group. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReplicationGroup withSnapshottingClusterId( String snapshottingClusterId) { setSnapshottingClusterId(snapshottingClusterId); return this; } /** *

* Indicates the status of Multi-AZ for this replication group. *

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
*
* * @param automaticFailover * Indicates the status of Multi-AZ for this replication group.

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
* @see AutomaticFailoverStatus */ public void setAutomaticFailover(String automaticFailover) { this.automaticFailover = automaticFailover; } /** *

* Indicates the status of Multi-AZ for this replication group. *

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
*
* * @return Indicates the status of Multi-AZ for this replication group.

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
* @see AutomaticFailoverStatus */ public String getAutomaticFailover() { return this.automaticFailover; } /** *

* Indicates the status of Multi-AZ for this replication group. *

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
*
* * @param automaticFailover * Indicates the status of Multi-AZ for this replication group.

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
* @return Returns a reference to this object so that method calls can be * chained together. * @see AutomaticFailoverStatus */ public ReplicationGroup withAutomaticFailover(String automaticFailover) { setAutomaticFailover(automaticFailover); return this; } /** *

* Indicates the status of Multi-AZ for this replication group. *

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
*
* * @param automaticFailover * Indicates the status of Multi-AZ for this replication group.

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
* @see AutomaticFailoverStatus */ public void setAutomaticFailover(AutomaticFailoverStatus automaticFailover) { this.automaticFailover = automaticFailover.toString(); } /** *

* Indicates the status of Multi-AZ for this replication group. *

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
*
* * @param automaticFailover * Indicates the status of Multi-AZ for this replication group.

* *

* ElastiCache Multi-AZ replication groups are not supported on: *

*
    *
  • *

    * Redis versions earlier than 2.8.6. *

    *
  • *
  • *

    * T1 and T2 cache node types. *

    *
  • *
* @return Returns a reference to this object so that method calls can be * chained together. * @see AutomaticFailoverStatus */ public ReplicationGroup withAutomaticFailover( AutomaticFailoverStatus automaticFailover) { setAutomaticFailover(automaticFailover); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getReplicationGroupId() != null) sb.append("ReplicationGroupId: " + getReplicationGroupId() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getStatus() != null) sb.append("Status: " + getStatus() + ","); if (getPendingModifiedValues() != null) sb.append("PendingModifiedValues: " + getPendingModifiedValues() + ","); if (getMemberClusters() != null) sb.append("MemberClusters: " + getMemberClusters() + ","); if (getNodeGroups() != null) sb.append("NodeGroups: " + getNodeGroups() + ","); if (getSnapshottingClusterId() != null) sb.append("SnapshottingClusterId: " + getSnapshottingClusterId() + ","); if (getAutomaticFailover() != null) sb.append("AutomaticFailover: " + getAutomaticFailover()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ReplicationGroup == false) return false; ReplicationGroup other = (ReplicationGroup) obj; if (other.getReplicationGroupId() == null ^ this.getReplicationGroupId() == null) return false; if (other.getReplicationGroupId() != null && other.getReplicationGroupId().equals( this.getReplicationGroupId()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getPendingModifiedValues() == null ^ this.getPendingModifiedValues() == null) return false; if (other.getPendingModifiedValues() != null && other.getPendingModifiedValues().equals( this.getPendingModifiedValues()) == false) return false; if (other.getMemberClusters() == null ^ this.getMemberClusters() == null) return false; if (other.getMemberClusters() != null && other.getMemberClusters().equals(this.getMemberClusters()) == false) return false; if (other.getNodeGroups() == null ^ this.getNodeGroups() == null) return false; if (other.getNodeGroups() != null && other.getNodeGroups().equals(this.getNodeGroups()) == false) return false; if (other.getSnapshottingClusterId() == null ^ this.getSnapshottingClusterId() == null) return false; if (other.getSnapshottingClusterId() != null && other.getSnapshottingClusterId().equals( this.getSnapshottingClusterId()) == false) return false; if (other.getAutomaticFailover() == null ^ this.getAutomaticFailover() == null) return false; if (other.getAutomaticFailover() != null && other.getAutomaticFailover().equals( this.getAutomaticFailover()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReplicationGroupId() == null) ? 0 : getReplicationGroupId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getPendingModifiedValues() == null) ? 0 : getPendingModifiedValues().hashCode()); hashCode = prime * hashCode + ((getMemberClusters() == null) ? 0 : getMemberClusters() .hashCode()); hashCode = prime * hashCode + ((getNodeGroups() == null) ? 0 : getNodeGroups().hashCode()); hashCode = prime * hashCode + ((getSnapshottingClusterId() == null) ? 0 : getSnapshottingClusterId().hashCode()); hashCode = prime * hashCode + ((getAutomaticFailover() == null) ? 0 : getAutomaticFailover().hashCode()); return hashCode; } @Override public ReplicationGroup clone() { try { return (ReplicationGroup) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy