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

com.amazonaws.services.ec2.model.Vpc Maven / Gradle / Ivy

/*
 * Copyright 2010-2013 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;

/**
 * 

* The Vpc data type. *

*/ public class Vpc implements Serializable { /** * Specifies the ID of the VPC. */ private String vpcId; /** * Describes the current state of the VPC. The state of the subnet may be * either pending or available. */ private String state; /** * Specifies the CIDR block the VPC covers. */ private String cidrBlock; /** * Specifies the ID of the set of DHCP options associated with the VPC. * Contains a value of default if the default options are * associated with the VPC. */ private String dhcpOptionsId; /** * A list of tags for the VPC. */ private java.util.List tags; /** * The allowed tenancy of instances launched into the VPC. */ private String instanceTenancy; /** * */ private Boolean isDefault; /** * Specifies the ID of the VPC. * * @return Specifies the ID of the VPC. */ public String getVpcId() { return vpcId; } /** * Specifies the ID of the VPC. * * @param vpcId Specifies the ID of the VPC. */ public void setVpcId(String vpcId) { this.vpcId = vpcId; } /** * Specifies the ID of the VPC. *

* Returns a reference to this object so that method calls can be chained together. * * @param vpcId Specifies the ID of the VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withVpcId(String vpcId) { this.vpcId = vpcId; return this; } /** * Describes the current state of the VPC. The state of the subnet may be * either pending or available. * * @return Describes the current state of the VPC. The state of the subnet may be * either pending or available. */ public String getState() { return state; } /** * Describes the current state of the VPC. The state of the subnet may be * either pending or available. * * @param state Describes the current state of the VPC. The state of the subnet may be * either pending or available. */ public void setState(String state) { this.state = state; } /** * Describes the current state of the VPC. The state of the subnet may be * either pending or available. *

* Returns a reference to this object so that method calls can be chained together. * * @param state Describes the current state of the VPC. The state of the subnet may be * either pending or available. * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withState(String state) { this.state = state; return this; } /** * Specifies the CIDR block the VPC covers. * * @return Specifies the CIDR block the VPC covers. */ public String getCidrBlock() { return cidrBlock; } /** * Specifies the CIDR block the VPC covers. * * @param cidrBlock Specifies the CIDR block the VPC covers. */ public void setCidrBlock(String cidrBlock) { this.cidrBlock = cidrBlock; } /** * Specifies the CIDR block the VPC covers. *

* Returns a reference to this object so that method calls can be chained together. * * @param cidrBlock Specifies the CIDR block the VPC covers. * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withCidrBlock(String cidrBlock) { this.cidrBlock = cidrBlock; return this; } /** * Specifies the ID of the set of DHCP options associated with the VPC. * Contains a value of default if the default options are * associated with the VPC. * * @return Specifies the ID of the set of DHCP options associated with the VPC. * Contains a value of default if the default options are * associated with the VPC. */ public String getDhcpOptionsId() { return dhcpOptionsId; } /** * Specifies the ID of the set of DHCP options associated with the VPC. * Contains a value of default if the default options are * associated with the VPC. * * @param dhcpOptionsId Specifies the ID of the set of DHCP options associated with the VPC. * Contains a value of default if the default options are * associated with the VPC. */ public void setDhcpOptionsId(String dhcpOptionsId) { this.dhcpOptionsId = dhcpOptionsId; } /** * Specifies the ID of the set of DHCP options associated with the VPC. * Contains a value of default if the default options are * associated with the VPC. *

* Returns a reference to this object so that method calls can be chained together. * * @param dhcpOptionsId Specifies the ID of the set of DHCP options associated with the VPC. * Contains a value of default if the default options are * associated with the VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withDhcpOptionsId(String dhcpOptionsId) { this.dhcpOptionsId = dhcpOptionsId; return this; } /** * A list of tags for the VPC. * * @return A list of tags for the VPC. */ public java.util.List getTags() { if (tags == null) { tags = new java.util.ArrayList(); } return tags; } /** * A list of tags for the VPC. * * @param tags A list of tags for the VPC. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } java.util.List tagsCopy = new java.util.ArrayList(tags.size()); tagsCopy.addAll(tags); this.tags = tagsCopy; } /** * A list of tags for the VPC. *

* Returns a reference to this object so that method calls can be chained together. * * @param tags A list of tags for the VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withTags(Tag... tags) { if (getTags() == null) setTags(new java.util.ArrayList(tags.length)); for (Tag value : tags) { getTags().add(value); } return this; } /** * A list of tags for the VPC. *

* Returns a reference to this object so that method calls can be chained together. * * @param tags A list of tags for the VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withTags(java.util.Collection tags) { if (tags == null) { this.tags = null; } else { java.util.List tagsCopy = new java.util.ArrayList(tags.size()); tagsCopy.addAll(tags); this.tags = tagsCopy; } return this; } /** * The allowed tenancy of instances launched into the VPC. * * @return The allowed tenancy of instances launched into the VPC. */ public String getInstanceTenancy() { return instanceTenancy; } /** * The allowed tenancy of instances launched into the VPC. * * @param instanceTenancy The allowed tenancy of instances launched into the VPC. */ public void setInstanceTenancy(String instanceTenancy) { this.instanceTenancy = instanceTenancy; } /** * The allowed tenancy of instances launched into the VPC. *

* Returns a reference to this object so that method calls can be chained together. * * @param instanceTenancy The allowed tenancy of instances launched into the VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withInstanceTenancy(String instanceTenancy) { this.instanceTenancy = instanceTenancy; return this; } /** * * * @return */ public Boolean isDefault() { return isDefault; } /** * * * @param isDefault */ public void setIsDefault(Boolean isDefault) { this.isDefault = isDefault; } /** * *

* Returns a reference to this object so that method calls can be chained together. * * @param isDefault * * @return A reference to this updated object so that method calls can be chained * together. */ public Vpc withIsDefault(Boolean isDefault) { this.isDefault = isDefault; return this; } /** * * * @return */ public Boolean getIsDefault() { return isDefault; } /** * 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 (getVpcId() != null) sb.append("VpcId: " + getVpcId() + ","); if (getState() != null) sb.append("State: " + getState() + ","); if (getCidrBlock() != null) sb.append("CidrBlock: " + getCidrBlock() + ","); if (getDhcpOptionsId() != null) sb.append("DhcpOptionsId: " + getDhcpOptionsId() + ","); if (getTags() != null) sb.append("Tags: " + getTags() + ","); if (getInstanceTenancy() != null) sb.append("InstanceTenancy: " + getInstanceTenancy() + ","); if (isDefault() != null) sb.append("IsDefault: " + isDefault() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getCidrBlock() == null) ? 0 : getCidrBlock().hashCode()); hashCode = prime * hashCode + ((getDhcpOptionsId() == null) ? 0 : getDhcpOptionsId().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getInstanceTenancy() == null) ? 0 : getInstanceTenancy().hashCode()); hashCode = prime * hashCode + ((isDefault() == null) ? 0 : isDefault().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Vpc == false) return false; Vpc other = (Vpc)obj; if (other.getVpcId() == null ^ this.getVpcId() == null) return false; if (other.getVpcId() != null && other.getVpcId().equals(this.getVpcId()) == 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.getCidrBlock() == null ^ this.getCidrBlock() == null) return false; if (other.getCidrBlock() != null && other.getCidrBlock().equals(this.getCidrBlock()) == false) return false; if (other.getDhcpOptionsId() == null ^ this.getDhcpOptionsId() == null) return false; if (other.getDhcpOptionsId() != null && other.getDhcpOptionsId().equals(this.getDhcpOptionsId()) == 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.getInstanceTenancy() == null ^ this.getInstanceTenancy() == null) return false; if (other.getInstanceTenancy() != null && other.getInstanceTenancy().equals(this.getInstanceTenancy()) == false) return false; if (other.isDefault() == null ^ this.isDefault() == null) return false; if (other.isDefault() != null && other.isDefault().equals(this.isDefault()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy