com.amazonaws.services.ec2.model.IpamPoolCidr 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;
/**
*
* A CIDR provisioned to an IPAM pool.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class IpamPoolCidr implements Serializable, Cloneable {
/**
*
* The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated network
* mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23
. An
* IPv6 CIDR example is 2001:DB8::/32
.
*
*/
private String cidr;
/**
*
* The state of the CIDR.
*
*/
private String state;
/**
*
* Details related to why an IPAM pool CIDR failed to be provisioned.
*
*/
private IpamPoolCidrFailureReason failureReason;
/**
*
* The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated network
* mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23
. An
* IPv6 CIDR example is 2001:DB8::/32
.
*
*
* @param cidr
* The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated
* network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is
* 10.24.34.0/23
. An IPv6 CIDR example is 2001:DB8::/32
.
*/
public void setCidr(String cidr) {
this.cidr = cidr;
}
/**
*
* The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated network
* mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23
. An
* IPv6 CIDR example is 2001:DB8::/32
.
*
*
* @return The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated
* network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is
* 10.24.34.0/23
. An IPv6 CIDR example is 2001:DB8::/32
.
*/
public String getCidr() {
return this.cidr;
}
/**
*
* The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated network
* mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23
. An
* IPv6 CIDR example is 2001:DB8::/32
.
*
*
* @param cidr
* The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated
* network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is
* 10.24.34.0/23
. An IPv6 CIDR example is 2001:DB8::/32
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public IpamPoolCidr withCidr(String cidr) {
setCidr(cidr);
return this;
}
/**
*
* The state of the CIDR.
*
*
* @param state
* The state of the CIDR.
* @see IpamPoolCidrState
*/
public void setState(String state) {
this.state = state;
}
/**
*
* The state of the CIDR.
*
*
* @return The state of the CIDR.
* @see IpamPoolCidrState
*/
public String getState() {
return this.state;
}
/**
*
* The state of the CIDR.
*
*
* @param state
* The state of the CIDR.
* @return Returns a reference to this object so that method calls can be chained together.
* @see IpamPoolCidrState
*/
public IpamPoolCidr withState(String state) {
setState(state);
return this;
}
/**
*
* The state of the CIDR.
*
*
* @param state
* The state of the CIDR.
* @return Returns a reference to this object so that method calls can be chained together.
* @see IpamPoolCidrState
*/
public IpamPoolCidr withState(IpamPoolCidrState state) {
this.state = state.toString();
return this;
}
/**
*
* Details related to why an IPAM pool CIDR failed to be provisioned.
*
*
* @param failureReason
* Details related to why an IPAM pool CIDR failed to be provisioned.
*/
public void setFailureReason(IpamPoolCidrFailureReason failureReason) {
this.failureReason = failureReason;
}
/**
*
* Details related to why an IPAM pool CIDR failed to be provisioned.
*
*
* @return Details related to why an IPAM pool CIDR failed to be provisioned.
*/
public IpamPoolCidrFailureReason getFailureReason() {
return this.failureReason;
}
/**
*
* Details related to why an IPAM pool CIDR failed to be provisioned.
*
*
* @param failureReason
* Details related to why an IPAM pool CIDR failed to be provisioned.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public IpamPoolCidr withFailureReason(IpamPoolCidrFailureReason failureReason) {
setFailureReason(failureReason);
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 (getCidr() != null)
sb.append("Cidr: ").append(getCidr()).append(",");
if (getState() != null)
sb.append("State: ").append(getState()).append(",");
if (getFailureReason() != null)
sb.append("FailureReason: ").append(getFailureReason());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof IpamPoolCidr == false)
return false;
IpamPoolCidr other = (IpamPoolCidr) obj;
if (other.getCidr() == null ^ this.getCidr() == null)
return false;
if (other.getCidr() != null && other.getCidr().equals(this.getCidr()) == false)
return false;
if (other.getState() == null ^ this.getState() == null)
return false;
if (other.getState() != null && other.getState().equals(this.getState()) == false)
return false;
if (other.getFailureReason() == null ^ this.getFailureReason() == null)
return false;
if (other.getFailureReason() != null && other.getFailureReason().equals(this.getFailureReason()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCidr() == null) ? 0 : getCidr().hashCode());
hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode());
hashCode = prime * hashCode + ((getFailureReason() == null) ? 0 : getFailureReason().hashCode());
return hashCode;
}
@Override
public IpamPoolCidr clone() {
try {
return (IpamPoolCidr) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}