com.amazonaws.services.ec2.model.CoipPool Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* 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.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Describes a customer-owned address pool.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CoipPool implements Serializable, Cloneable {
/**
*
* The ID of the address pool.
*
*/
private String poolId;
/**
*
* The address ranges of the address pool.
*
*/
private com.amazonaws.internal.SdkInternalList poolCidrs;
/**
*
* The ID of the local gateway route table.
*
*/
private String localGatewayRouteTableId;
/**
*
* The tags.
*
*/
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* The ARN of the address pool.
*
*/
private String poolArn;
/**
*
* The ID of the address pool.
*
*
* @param poolId
* The ID of the address pool.
*/
public void setPoolId(String poolId) {
this.poolId = poolId;
}
/**
*
* The ID of the address pool.
*
*
* @return The ID of the address pool.
*/
public String getPoolId() {
return this.poolId;
}
/**
*
* The ID of the address pool.
*
*
* @param poolId
* The ID of the address pool.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CoipPool withPoolId(String poolId) {
setPoolId(poolId);
return this;
}
/**
*
* The address ranges of the address pool.
*
*
* @return The address ranges of the address pool.
*/
public java.util.List getPoolCidrs() {
if (poolCidrs == null) {
poolCidrs = new com.amazonaws.internal.SdkInternalList();
}
return poolCidrs;
}
/**
*
* The address ranges of the address pool.
*
*
* @param poolCidrs
* The address ranges of the address pool.
*/
public void setPoolCidrs(java.util.Collection poolCidrs) {
if (poolCidrs == null) {
this.poolCidrs = null;
return;
}
this.poolCidrs = new com.amazonaws.internal.SdkInternalList(poolCidrs);
}
/**
*
* The address ranges of the address pool.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPoolCidrs(java.util.Collection)} or {@link #withPoolCidrs(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param poolCidrs
* The address ranges of the address pool.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CoipPool withPoolCidrs(String... poolCidrs) {
if (this.poolCidrs == null) {
setPoolCidrs(new com.amazonaws.internal.SdkInternalList(poolCidrs.length));
}
for (String ele : poolCidrs) {
this.poolCidrs.add(ele);
}
return this;
}
/**
*
* The address ranges of the address pool.
*
*
* @param poolCidrs
* The address ranges of the address pool.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CoipPool withPoolCidrs(java.util.Collection poolCidrs) {
setPoolCidrs(poolCidrs);
return this;
}
/**
*
* The ID of the local gateway route table.
*
*
* @param localGatewayRouteTableId
* The ID of the local gateway route table.
*/
public void setLocalGatewayRouteTableId(String localGatewayRouteTableId) {
this.localGatewayRouteTableId = localGatewayRouteTableId;
}
/**
*
* The ID of the local gateway route table.
*
*
* @return The ID of the local gateway route table.
*/
public String getLocalGatewayRouteTableId() {
return this.localGatewayRouteTableId;
}
/**
*
* The ID of the local gateway route table.
*
*
* @param localGatewayRouteTableId
* The ID of the local gateway route table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CoipPool withLocalGatewayRouteTableId(String localGatewayRouteTableId) {
setLocalGatewayRouteTableId(localGatewayRouteTableId);
return this;
}
/**
*
* The tags.
*
*
* @return The tags.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalList();
}
return tags;
}
/**
*
* The tags.
*
*
* @param tags
* The tags.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new com.amazonaws.internal.SdkInternalList(tags);
}
/**
*
* The tags.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* The tags.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CoipPool withTags(Tag... tags) {
if (this.tags == null) {
setTags(new com.amazonaws.internal.SdkInternalList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* The tags.
*
*
* @param tags
* The tags.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CoipPool withTags(java.util.Collection tags) {
setTags(tags);
return this;
}
/**
*
* The ARN of the address pool.
*
*
* @param poolArn
* The ARN of the address pool.
*/
public void setPoolArn(String poolArn) {
this.poolArn = poolArn;
}
/**
*
* The ARN of the address pool.
*
*
* @return The ARN of the address pool.
*/
public String getPoolArn() {
return this.poolArn;
}
/**
*
* The ARN of the address pool.
*
*
* @param poolArn
* The ARN of the address pool.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CoipPool withPoolArn(String poolArn) {
setPoolArn(poolArn);
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 (getPoolId() != null)
sb.append("PoolId: ").append(getPoolId()).append(",");
if (getPoolCidrs() != null)
sb.append("PoolCidrs: ").append(getPoolCidrs()).append(",");
if (getLocalGatewayRouteTableId() != null)
sb.append("LocalGatewayRouteTableId: ").append(getLocalGatewayRouteTableId()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).append(",");
if (getPoolArn() != null)
sb.append("PoolArn: ").append(getPoolArn());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CoipPool == false)
return false;
CoipPool other = (CoipPool) obj;
if (other.getPoolId() == null ^ this.getPoolId() == null)
return false;
if (other.getPoolId() != null && other.getPoolId().equals(this.getPoolId()) == false)
return false;
if (other.getPoolCidrs() == null ^ this.getPoolCidrs() == null)
return false;
if (other.getPoolCidrs() != null && other.getPoolCidrs().equals(this.getPoolCidrs()) == false)
return false;
if (other.getLocalGatewayRouteTableId() == null ^ this.getLocalGatewayRouteTableId() == null)
return false;
if (other.getLocalGatewayRouteTableId() != null && other.getLocalGatewayRouteTableId().equals(this.getLocalGatewayRouteTableId()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
if (other.getPoolArn() == null ^ this.getPoolArn() == null)
return false;
if (other.getPoolArn() != null && other.getPoolArn().equals(this.getPoolArn()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPoolId() == null) ? 0 : getPoolId().hashCode());
hashCode = prime * hashCode + ((getPoolCidrs() == null) ? 0 : getPoolCidrs().hashCode());
hashCode = prime * hashCode + ((getLocalGatewayRouteTableId() == null) ? 0 : getLocalGatewayRouteTableId().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
hashCode = prime * hashCode + ((getPoolArn() == null) ? 0 : getPoolArn().hashCode());
return hashCode;
}
@Override
public CoipPool clone() {
try {
return (CoipPool) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}