(egressCidrBlocks);
}
/**
* The range of IP addresses that are allowed to contribute content or initiate output requests for flows
* communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing
* (CIDR) block; for example, 10.0.0.0/16.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setEgressCidrBlocks(java.util.Collection)} or {@link #withEgressCidrBlocks(java.util.Collection)} if you
* want to override the existing values.
*
*
* @param egressCidrBlocks
* The range of IP addresses that are allowed to contribute content or initiate output requests for flows
* communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain
* Routing (CIDR) block; for example, 10.0.0.0/16.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateGatewayRequest withEgressCidrBlocks(String... egressCidrBlocks) {
if (this.egressCidrBlocks == null) {
setEgressCidrBlocks(new java.util.ArrayList(egressCidrBlocks.length));
}
for (String ele : egressCidrBlocks) {
this.egressCidrBlocks.add(ele);
}
return this;
}
/**
* The range of IP addresses that are allowed to contribute content or initiate output requests for flows
* communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing
* (CIDR) block; for example, 10.0.0.0/16.
*
* @param egressCidrBlocks
* The range of IP addresses that are allowed to contribute content or initiate output requests for flows
* communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain
* Routing (CIDR) block; for example, 10.0.0.0/16.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateGatewayRequest withEgressCidrBlocks(java.util.Collection egressCidrBlocks) {
setEgressCidrBlocks(egressCidrBlocks);
return this;
}
/**
* The name of the gateway. This name can not be modified after the gateway is created.
*
* @param name
* The name of the gateway. This name can not be modified after the gateway is created.
*/
public void setName(String name) {
this.name = name;
}
/**
* The name of the gateway. This name can not be modified after the gateway is created.
*
* @return The name of the gateway. This name can not be modified after the gateway is created.
*/
public String getName() {
return this.name;
}
/**
* The name of the gateway. This name can not be modified after the gateway is created.
*
* @param name
* The name of the gateway. This name can not be modified after the gateway is created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateGatewayRequest withName(String name) {
setName(name);
return this;
}
/**
* The list of networks that you want to add.
*
* @return The list of networks that you want to add.
*/
public java.util.List getNetworks() {
return networks;
}
/**
* The list of networks that you want to add.
*
* @param networks
* The list of networks that you want to add.
*/
public void setNetworks(java.util.Collection networks) {
if (networks == null) {
this.networks = null;
return;
}
this.networks = new java.util.ArrayList(networks);
}
/**
* The list of networks that you want to add.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setNetworks(java.util.Collection)} or {@link #withNetworks(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param networks
* The list of networks that you want to add.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateGatewayRequest withNetworks(GatewayNetwork... networks) {
if (this.networks == null) {
setNetworks(new java.util.ArrayList(networks.length));
}
for (GatewayNetwork ele : networks) {
this.networks.add(ele);
}
return this;
}
/**
* The list of networks that you want to add.
*
* @param networks
* The list of networks that you want to add.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateGatewayRequest withNetworks(java.util.Collection networks) {
setNetworks(networks);
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 (getEgressCidrBlocks() != null)
sb.append("EgressCidrBlocks: ").append(getEgressCidrBlocks()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getNetworks() != null)
sb.append("Networks: ").append(getNetworks());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateGatewayRequest == false)
return false;
CreateGatewayRequest other = (CreateGatewayRequest) obj;
if (other.getEgressCidrBlocks() == null ^ this.getEgressCidrBlocks() == null)
return false;
if (other.getEgressCidrBlocks() != null && other.getEgressCidrBlocks().equals(this.getEgressCidrBlocks()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getNetworks() == null ^ this.getNetworks() == null)
return false;
if (other.getNetworks() != null && other.getNetworks().equals(this.getNetworks()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEgressCidrBlocks() == null) ? 0 : getEgressCidrBlocks().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getNetworks() == null) ? 0 : getNetworks().hashCode());
return hashCode;
}
@Override
public CreateGatewayRequest clone() {
return (CreateGatewayRequest) super.clone();
}
}