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

com.amazonaws.services.memorydb.model.Shard Maven / Gradle / Ivy

/*
 * Copyright 2017-2022 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.memorydb.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Represents a collection of nodes in a cluster. One node in the node group is the read/write primary node. All the * other nodes are read-only Replica nodes. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Shard implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the shard *

*/ private String name; /** *

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

*/ private String status; /** *

* The keyspace for this shard. *

*/ private String slots; /** *

* A list containing information about individual nodes within the shard *

*/ private java.util.List nodes; /** *

* The number of nodes in the shard *

*/ private Integer numberOfNodes; /** *

* The name of the shard *

* * @param name * The name of the shard */ public void setName(String name) { this.name = name; } /** *

* The name of the shard *

* * @return The name of the shard */ public String getName() { return this.name; } /** *

* The name of the shard *

* * @param name * The name of the shard * @return Returns a reference to this object so that method calls can be chained together. */ public Shard withName(String name) { setName(name); return this; } /** *

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

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

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

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

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

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

* The keyspace for this shard. *

* * @param slots * The keyspace for this shard. */ public void setSlots(String slots) { this.slots = slots; } /** *

* The keyspace for this shard. *

* * @return The keyspace for this shard. */ public String getSlots() { return this.slots; } /** *

* The keyspace for this shard. *

* * @param slots * The keyspace for this shard. * @return Returns a reference to this object so that method calls can be chained together. */ public Shard withSlots(String slots) { setSlots(slots); return this; } /** *

* A list containing information about individual nodes within the shard *

* * @return A list containing information about individual nodes within the shard */ public java.util.List getNodes() { return nodes; } /** *

* A list containing information about individual nodes within the shard *

* * @param nodes * A list containing information about individual nodes within the shard */ public void setNodes(java.util.Collection nodes) { if (nodes == null) { this.nodes = null; return; } this.nodes = new java.util.ArrayList(nodes); } /** *

* A list containing information about individual nodes within the shard *

*

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

* * @param nodes * A list containing information about individual nodes within the shard * @return Returns a reference to this object so that method calls can be chained together. */ public Shard withNodes(Node... nodes) { if (this.nodes == null) { setNodes(new java.util.ArrayList(nodes.length)); } for (Node ele : nodes) { this.nodes.add(ele); } return this; } /** *

* A list containing information about individual nodes within the shard *

* * @param nodes * A list containing information about individual nodes within the shard * @return Returns a reference to this object so that method calls can be chained together. */ public Shard withNodes(java.util.Collection nodes) { setNodes(nodes); return this; } /** *

* The number of nodes in the shard *

* * @param numberOfNodes * The number of nodes in the shard */ public void setNumberOfNodes(Integer numberOfNodes) { this.numberOfNodes = numberOfNodes; } /** *

* The number of nodes in the shard *

* * @return The number of nodes in the shard */ public Integer getNumberOfNodes() { return this.numberOfNodes; } /** *

* The number of nodes in the shard *

* * @param numberOfNodes * The number of nodes in the shard * @return Returns a reference to this object so that method calls can be chained together. */ public Shard withNumberOfNodes(Integer numberOfNodes) { setNumberOfNodes(numberOfNodes); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getSlots() != null) sb.append("Slots: ").append(getSlots()).append(","); if (getNodes() != null) sb.append("Nodes: ").append(getNodes()).append(","); if (getNumberOfNodes() != null) sb.append("NumberOfNodes: ").append(getNumberOfNodes()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Shard == false) return false; Shard other = (Shard) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == 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.getSlots() == null ^ this.getSlots() == null) return false; if (other.getSlots() != null && other.getSlots().equals(this.getSlots()) == false) return false; if (other.getNodes() == null ^ this.getNodes() == null) return false; if (other.getNodes() != null && other.getNodes().equals(this.getNodes()) == false) return false; if (other.getNumberOfNodes() == null ^ this.getNumberOfNodes() == null) return false; if (other.getNumberOfNodes() != null && other.getNumberOfNodes().equals(this.getNumberOfNodes()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getSlots() == null) ? 0 : getSlots().hashCode()); hashCode = prime * hashCode + ((getNodes() == null) ? 0 : getNodes().hashCode()); hashCode = prime * hashCode + ((getNumberOfNodes() == null) ? 0 : getNumberOfNodes().hashCode()); return hashCode; } @Override public Shard clone() { try { return (Shard) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.memorydb.model.transform.ShardMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy