com.amazonaws.services.elasticache.model.NodeGroupMember Maven / Gradle / Ivy
Show all versions of aws-java-sdk-elasticache Show documentation
/*
* Copyright 2019-2024 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;
import javax.annotation.Generated;
/**
*
* Represents a single node within a node group (shard).
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class NodeGroupMember implements Serializable, Cloneable {
/**
*
* The ID of the cluster to which the node belongs.
*
*/
private String cacheClusterId;
/**
*
* The ID of the node within its cluster. A node ID is a numeric identifier (0001, 0002, etc.).
*
*/
private String cacheNodeId;
/**
*
* The information required for client programs to connect to a node for read operations. The read endpoint is only
* applicable on Redis OSS (cluster mode disabled) clusters.
*
*/
private Endpoint readEndpoint;
/**
*
* The name of the Availability Zone in which the node is located.
*
*/
private String preferredAvailabilityZone;
/**
*
* The outpost ARN of the node group member.
*
*/
private String preferredOutpostArn;
/**
*
* The role that is currently assigned to the node - primary
or replica
. This member is
* only applicable for Redis OSS (cluster mode disabled) replication groups.
*
*/
private String currentRole;
/**
*
* The ID of the cluster to which the node belongs.
*
*
* @param cacheClusterId
* The ID of the cluster to which the node belongs.
*/
public void setCacheClusterId(String cacheClusterId) {
this.cacheClusterId = cacheClusterId;
}
/**
*
* The ID of the cluster to which the node belongs.
*
*
* @return The ID of the cluster to which the node belongs.
*/
public String getCacheClusterId() {
return this.cacheClusterId;
}
/**
*
* The ID of the cluster to which the node belongs.
*
*
* @param cacheClusterId
* The ID of the cluster to which the node belongs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NodeGroupMember withCacheClusterId(String cacheClusterId) {
setCacheClusterId(cacheClusterId);
return this;
}
/**
*
* The ID of the node within its cluster. A node ID is a numeric identifier (0001, 0002, etc.).
*
*
* @param cacheNodeId
* The ID of the node within its cluster. A node ID is a numeric identifier (0001, 0002, etc.).
*/
public void setCacheNodeId(String cacheNodeId) {
this.cacheNodeId = cacheNodeId;
}
/**
*
* The ID of the node within its cluster. A node ID is a numeric identifier (0001, 0002, etc.).
*
*
* @return The ID of the node within its cluster. A node ID is a numeric identifier (0001, 0002, etc.).
*/
public String getCacheNodeId() {
return this.cacheNodeId;
}
/**
*
* The ID of the node within its cluster. A node ID is a numeric identifier (0001, 0002, etc.).
*
*
* @param cacheNodeId
* The ID of the node within its cluster. A node ID is a numeric identifier (0001, 0002, etc.).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NodeGroupMember withCacheNodeId(String cacheNodeId) {
setCacheNodeId(cacheNodeId);
return this;
}
/**
*
* The information required for client programs to connect to a node for read operations. The read endpoint is only
* applicable on Redis OSS (cluster mode disabled) clusters.
*
*
* @param readEndpoint
* The information required for client programs to connect to a node for read operations. The read endpoint
* is only applicable on Redis OSS (cluster mode disabled) clusters.
*/
public void setReadEndpoint(Endpoint readEndpoint) {
this.readEndpoint = readEndpoint;
}
/**
*
* The information required for client programs to connect to a node for read operations. The read endpoint is only
* applicable on Redis OSS (cluster mode disabled) clusters.
*
*
* @return The information required for client programs to connect to a node for read operations. The read endpoint
* is only applicable on Redis OSS (cluster mode disabled) clusters.
*/
public Endpoint getReadEndpoint() {
return this.readEndpoint;
}
/**
*
* The information required for client programs to connect to a node for read operations. The read endpoint is only
* applicable on Redis OSS (cluster mode disabled) clusters.
*
*
* @param readEndpoint
* The information required for client programs to connect to a node for read operations. The read endpoint
* is only applicable on Redis OSS (cluster mode disabled) clusters.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NodeGroupMember withReadEndpoint(Endpoint readEndpoint) {
setReadEndpoint(readEndpoint);
return this;
}
/**
*
* The name of the Availability Zone in which the node is located.
*
*
* @param preferredAvailabilityZone
* The name of the Availability Zone in which the node is located.
*/
public void setPreferredAvailabilityZone(String preferredAvailabilityZone) {
this.preferredAvailabilityZone = preferredAvailabilityZone;
}
/**
*
* The name of the Availability Zone in which the node is located.
*
*
* @return The name of the Availability Zone in which the node is located.
*/
public String getPreferredAvailabilityZone() {
return this.preferredAvailabilityZone;
}
/**
*
* The name of the Availability Zone in which the node is located.
*
*
* @param preferredAvailabilityZone
* The name of the Availability Zone in which the node is located.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NodeGroupMember withPreferredAvailabilityZone(String preferredAvailabilityZone) {
setPreferredAvailabilityZone(preferredAvailabilityZone);
return this;
}
/**
*
* The outpost ARN of the node group member.
*
*
* @param preferredOutpostArn
* The outpost ARN of the node group member.
*/
public void setPreferredOutpostArn(String preferredOutpostArn) {
this.preferredOutpostArn = preferredOutpostArn;
}
/**
*
* The outpost ARN of the node group member.
*
*
* @return The outpost ARN of the node group member.
*/
public String getPreferredOutpostArn() {
return this.preferredOutpostArn;
}
/**
*
* The outpost ARN of the node group member.
*
*
* @param preferredOutpostArn
* The outpost ARN of the node group member.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NodeGroupMember withPreferredOutpostArn(String preferredOutpostArn) {
setPreferredOutpostArn(preferredOutpostArn);
return this;
}
/**
*
* The role that is currently assigned to the node - primary
or replica
. This member is
* only applicable for Redis OSS (cluster mode disabled) replication groups.
*
*
* @param currentRole
* The role that is currently assigned to the node - primary
or replica
. This
* member is only applicable for Redis OSS (cluster mode disabled) replication groups.
*/
public void setCurrentRole(String currentRole) {
this.currentRole = currentRole;
}
/**
*
* The role that is currently assigned to the node - primary
or replica
. This member is
* only applicable for Redis OSS (cluster mode disabled) replication groups.
*
*
* @return The role that is currently assigned to the node - primary
or replica
. This
* member is only applicable for Redis OSS (cluster mode disabled) replication groups.
*/
public String getCurrentRole() {
return this.currentRole;
}
/**
*
* The role that is currently assigned to the node - primary
or replica
. This member is
* only applicable for Redis OSS (cluster mode disabled) replication groups.
*
*
* @param currentRole
* The role that is currently assigned to the node - primary
or replica
. This
* member is only applicable for Redis OSS (cluster mode disabled) replication groups.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NodeGroupMember withCurrentRole(String currentRole) {
setCurrentRole(currentRole);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getCacheClusterId() != null)
sb.append("CacheClusterId: ").append(getCacheClusterId()).append(",");
if (getCacheNodeId() != null)
sb.append("CacheNodeId: ").append(getCacheNodeId()).append(",");
if (getReadEndpoint() != null)
sb.append("ReadEndpoint: ").append(getReadEndpoint()).append(",");
if (getPreferredAvailabilityZone() != null)
sb.append("PreferredAvailabilityZone: ").append(getPreferredAvailabilityZone()).append(",");
if (getPreferredOutpostArn() != null)
sb.append("PreferredOutpostArn: ").append(getPreferredOutpostArn()).append(",");
if (getCurrentRole() != null)
sb.append("CurrentRole: ").append(getCurrentRole());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof NodeGroupMember == false)
return false;
NodeGroupMember other = (NodeGroupMember) obj;
if (other.getCacheClusterId() == null ^ this.getCacheClusterId() == null)
return false;
if (other.getCacheClusterId() != null && other.getCacheClusterId().equals(this.getCacheClusterId()) == false)
return false;
if (other.getCacheNodeId() == null ^ this.getCacheNodeId() == null)
return false;
if (other.getCacheNodeId() != null && other.getCacheNodeId().equals(this.getCacheNodeId()) == false)
return false;
if (other.getReadEndpoint() == null ^ this.getReadEndpoint() == null)
return false;
if (other.getReadEndpoint() != null && other.getReadEndpoint().equals(this.getReadEndpoint()) == false)
return false;
if (other.getPreferredAvailabilityZone() == null ^ this.getPreferredAvailabilityZone() == null)
return false;
if (other.getPreferredAvailabilityZone() != null && other.getPreferredAvailabilityZone().equals(this.getPreferredAvailabilityZone()) == false)
return false;
if (other.getPreferredOutpostArn() == null ^ this.getPreferredOutpostArn() == null)
return false;
if (other.getPreferredOutpostArn() != null && other.getPreferredOutpostArn().equals(this.getPreferredOutpostArn()) == false)
return false;
if (other.getCurrentRole() == null ^ this.getCurrentRole() == null)
return false;
if (other.getCurrentRole() != null && other.getCurrentRole().equals(this.getCurrentRole()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCacheClusterId() == null) ? 0 : getCacheClusterId().hashCode());
hashCode = prime * hashCode + ((getCacheNodeId() == null) ? 0 : getCacheNodeId().hashCode());
hashCode = prime * hashCode + ((getReadEndpoint() == null) ? 0 : getReadEndpoint().hashCode());
hashCode = prime * hashCode + ((getPreferredAvailabilityZone() == null) ? 0 : getPreferredAvailabilityZone().hashCode());
hashCode = prime * hashCode + ((getPreferredOutpostArn() == null) ? 0 : getPreferredOutpostArn().hashCode());
hashCode = prime * hashCode + ((getCurrentRole() == null) ? 0 : getCurrentRole().hashCode());
return hashCode;
}
@Override
public NodeGroupMember clone() {
try {
return (NodeGroupMember) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}