com.amazonaws.services.ec2.model.Subnet Maven / Gradle / Ivy
Show all versions of aws-android-sdk-mobileanalytics Show documentation
/*
* Copyright 2010-2014 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;
/**
*
* Describes a subnet.
*
*/
public class Subnet implements Serializable {
/**
* The ID of the subnet.
*/
private String subnetId;
/**
* The current state of the subnet.
*
* Constraints:
* Allowed Values: pending, available
*/
private String state;
/**
* The ID of the VPC the subnet is in.
*/
private String vpcId;
/**
* The CIDR block assigned to the subnet.
*/
private String cidrBlock;
/**
* The number of unused IP addresses in the subnet. Note that the IP
* addresses for any stopped instances are considered unavailable.
*/
private Integer availableIpAddressCount;
/**
* The Availability Zone of the subnet.
*/
private String availabilityZone;
/**
* Indicates whether this is the default subnet for the Availability
* Zone.
*/
private Boolean defaultForAz;
/**
* Indicates whether instances launched in this subnet receive a public
* IP address.
*/
private Boolean mapPublicIpOnLaunch;
/**
* Any tags assigned to the subnet.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag tags;
/**
* The ID of the subnet.
*
* @return The ID of the subnet.
*/
public String getSubnetId() {
return subnetId;
}
/**
* The ID of the subnet.
*
* @param subnetId The ID of the subnet.
*/
public void setSubnetId(String subnetId) {
this.subnetId = subnetId;
}
/**
* The ID of the subnet.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param subnetId The ID of the subnet.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withSubnetId(String subnetId) {
this.subnetId = subnetId;
return this;
}
/**
* The current state of the subnet.
*
* Constraints:
* Allowed Values: pending, available
*
* @return The current state of the subnet.
*
* @see SubnetState
*/
public String getState() {
return state;
}
/**
* The current state of the subnet.
*
* Constraints:
* Allowed Values: pending, available
*
* @param state The current state of the subnet.
*
* @see SubnetState
*/
public void setState(String state) {
this.state = state;
}
/**
* The current state of the subnet.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: pending, available
*
* @param state The current state of the subnet.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see SubnetState
*/
public Subnet withState(String state) {
this.state = state;
return this;
}
/**
* The current state of the subnet.
*
* Constraints:
* Allowed Values: pending, available
*
* @param state The current state of the subnet.
*
* @see SubnetState
*/
public void setState(SubnetState state) {
this.state = state.toString();
}
/**
* The current state of the subnet.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: pending, available
*
* @param state The current state of the subnet.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see SubnetState
*/
public Subnet withState(SubnetState state) {
this.state = state.toString();
return this;
}
/**
* The ID of the VPC the subnet is in.
*
* @return The ID of the VPC the subnet is in.
*/
public String getVpcId() {
return vpcId;
}
/**
* The ID of the VPC the subnet is in.
*
* @param vpcId The ID of the VPC the subnet is in.
*/
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
/**
* The ID of the VPC the subnet is in.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param vpcId The ID of the VPC the subnet is in.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withVpcId(String vpcId) {
this.vpcId = vpcId;
return this;
}
/**
* The CIDR block assigned to the subnet.
*
* @return The CIDR block assigned to the subnet.
*/
public String getCidrBlock() {
return cidrBlock;
}
/**
* The CIDR block assigned to the subnet.
*
* @param cidrBlock The CIDR block assigned to the subnet.
*/
public void setCidrBlock(String cidrBlock) {
this.cidrBlock = cidrBlock;
}
/**
* The CIDR block assigned to the subnet.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param cidrBlock The CIDR block assigned to the subnet.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withCidrBlock(String cidrBlock) {
this.cidrBlock = cidrBlock;
return this;
}
/**
* The number of unused IP addresses in the subnet. Note that the IP
* addresses for any stopped instances are considered unavailable.
*
* @return The number of unused IP addresses in the subnet. Note that the IP
* addresses for any stopped instances are considered unavailable.
*/
public Integer getAvailableIpAddressCount() {
return availableIpAddressCount;
}
/**
* The number of unused IP addresses in the subnet. Note that the IP
* addresses for any stopped instances are considered unavailable.
*
* @param availableIpAddressCount The number of unused IP addresses in the subnet. Note that the IP
* addresses for any stopped instances are considered unavailable.
*/
public void setAvailableIpAddressCount(Integer availableIpAddressCount) {
this.availableIpAddressCount = availableIpAddressCount;
}
/**
* The number of unused IP addresses in the subnet. Note that the IP
* addresses for any stopped instances are considered unavailable.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param availableIpAddressCount The number of unused IP addresses in the subnet. Note that the IP
* addresses for any stopped instances are considered unavailable.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withAvailableIpAddressCount(Integer availableIpAddressCount) {
this.availableIpAddressCount = availableIpAddressCount;
return this;
}
/**
* The Availability Zone of the subnet.
*
* @return The Availability Zone of the subnet.
*/
public String getAvailabilityZone() {
return availabilityZone;
}
/**
* The Availability Zone of the subnet.
*
* @param availabilityZone The Availability Zone of the subnet.
*/
public void setAvailabilityZone(String availabilityZone) {
this.availabilityZone = availabilityZone;
}
/**
* The Availability Zone of the subnet.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param availabilityZone The Availability Zone of the subnet.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withAvailabilityZone(String availabilityZone) {
this.availabilityZone = availabilityZone;
return this;
}
/**
* Indicates whether this is the default subnet for the Availability
* Zone.
*
* @return Indicates whether this is the default subnet for the Availability
* Zone.
*/
public Boolean isDefaultForAz() {
return defaultForAz;
}
/**
* Indicates whether this is the default subnet for the Availability
* Zone.
*
* @param defaultForAz Indicates whether this is the default subnet for the Availability
* Zone.
*/
public void setDefaultForAz(Boolean defaultForAz) {
this.defaultForAz = defaultForAz;
}
/**
* Indicates whether this is the default subnet for the Availability
* Zone.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param defaultForAz Indicates whether this is the default subnet for the Availability
* Zone.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withDefaultForAz(Boolean defaultForAz) {
this.defaultForAz = defaultForAz;
return this;
}
/**
* Indicates whether this is the default subnet for the Availability
* Zone.
*
* @return Indicates whether this is the default subnet for the Availability
* Zone.
*/
public Boolean getDefaultForAz() {
return defaultForAz;
}
/**
* Indicates whether instances launched in this subnet receive a public
* IP address.
*
* @return Indicates whether instances launched in this subnet receive a public
* IP address.
*/
public Boolean isMapPublicIpOnLaunch() {
return mapPublicIpOnLaunch;
}
/**
* Indicates whether instances launched in this subnet receive a public
* IP address.
*
* @param mapPublicIpOnLaunch Indicates whether instances launched in this subnet receive a public
* IP address.
*/
public void setMapPublicIpOnLaunch(Boolean mapPublicIpOnLaunch) {
this.mapPublicIpOnLaunch = mapPublicIpOnLaunch;
}
/**
* Indicates whether instances launched in this subnet receive a public
* IP address.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param mapPublicIpOnLaunch Indicates whether instances launched in this subnet receive a public
* IP address.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withMapPublicIpOnLaunch(Boolean mapPublicIpOnLaunch) {
this.mapPublicIpOnLaunch = mapPublicIpOnLaunch;
return this;
}
/**
* Indicates whether instances launched in this subnet receive a public
* IP address.
*
* @return Indicates whether instances launched in this subnet receive a public
* IP address.
*/
public Boolean getMapPublicIpOnLaunch() {
return mapPublicIpOnLaunch;
}
/**
* Any tags assigned to the subnet.
*
* @return Any tags assigned to the subnet.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.ListWithAutoConstructFlag();
tags.setAutoConstruct(true);
}
return tags;
}
/**
* Any tags assigned to the subnet.
*
* @param tags Any tags assigned to the subnet.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag tagsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tags.size());
tagsCopy.addAll(tags);
this.tags = tagsCopy;
}
/**
* Any tags assigned to the subnet.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param tags Any tags assigned to the subnet.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withTags(Tag... tags) {
if (getTags() == null) setTags(new java.util.ArrayList(tags.length));
for (Tag value : tags) {
getTags().add(value);
}
return this;
}
/**
* Any tags assigned to the subnet.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param tags Any tags assigned to the subnet.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public Subnet withTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag tagsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tags.size());
tagsCopy.addAll(tags);
this.tags = tagsCopy;
}
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getSubnetId() != null) sb.append("SubnetId: " + getSubnetId() + ",");
if (getState() != null) sb.append("State: " + getState() + ",");
if (getVpcId() != null) sb.append("VpcId: " + getVpcId() + ",");
if (getCidrBlock() != null) sb.append("CidrBlock: " + getCidrBlock() + ",");
if (getAvailableIpAddressCount() != null) sb.append("AvailableIpAddressCount: " + getAvailableIpAddressCount() + ",");
if (getAvailabilityZone() != null) sb.append("AvailabilityZone: " + getAvailabilityZone() + ",");
if (isDefaultForAz() != null) sb.append("DefaultForAz: " + isDefaultForAz() + ",");
if (isMapPublicIpOnLaunch() != null) sb.append("MapPublicIpOnLaunch: " + isMapPublicIpOnLaunch() + ",");
if (getTags() != null) sb.append("Tags: " + getTags() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getSubnetId() == null) ? 0 : getSubnetId().hashCode());
hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode());
hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode());
hashCode = prime * hashCode + ((getCidrBlock() == null) ? 0 : getCidrBlock().hashCode());
hashCode = prime * hashCode + ((getAvailableIpAddressCount() == null) ? 0 : getAvailableIpAddressCount().hashCode());
hashCode = prime * hashCode + ((getAvailabilityZone() == null) ? 0 : getAvailabilityZone().hashCode());
hashCode = prime * hashCode + ((isDefaultForAz() == null) ? 0 : isDefaultForAz().hashCode());
hashCode = prime * hashCode + ((isMapPublicIpOnLaunch() == null) ? 0 : isMapPublicIpOnLaunch().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof Subnet == false) return false;
Subnet other = (Subnet)obj;
if (other.getSubnetId() == null ^ this.getSubnetId() == null) return false;
if (other.getSubnetId() != null && other.getSubnetId().equals(this.getSubnetId()) == 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.getVpcId() == null ^ this.getVpcId() == null) return false;
if (other.getVpcId() != null && other.getVpcId().equals(this.getVpcId()) == false) return false;
if (other.getCidrBlock() == null ^ this.getCidrBlock() == null) return false;
if (other.getCidrBlock() != null && other.getCidrBlock().equals(this.getCidrBlock()) == false) return false;
if (other.getAvailableIpAddressCount() == null ^ this.getAvailableIpAddressCount() == null) return false;
if (other.getAvailableIpAddressCount() != null && other.getAvailableIpAddressCount().equals(this.getAvailableIpAddressCount()) == false) return false;
if (other.getAvailabilityZone() == null ^ this.getAvailabilityZone() == null) return false;
if (other.getAvailabilityZone() != null && other.getAvailabilityZone().equals(this.getAvailabilityZone()) == false) return false;
if (other.isDefaultForAz() == null ^ this.isDefaultForAz() == null) return false;
if (other.isDefaultForAz() != null && other.isDefaultForAz().equals(this.isDefaultForAz()) == false) return false;
if (other.isMapPublicIpOnLaunch() == null ^ this.isMapPublicIpOnLaunch() == null) return false;
if (other.isMapPublicIpOnLaunch() != null && other.isMapPublicIpOnLaunch().equals(this.isMapPublicIpOnLaunch()) == false) return false;
if (other.getTags() == null ^ this.getTags() == null) return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false;
return true;
}
}