com.amazonaws.services.rds.model.DBSubnetGroup Maven / Gradle / Ivy
Show all versions of aws-java-sdk 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.rds.model;
import java.io.Serializable;
/**
*
* Contains the result of a successful invocation of the following
* actions:
*
*
*
* - CreateDBSubnetGroup
* - ModifyDBSubnetGroup
* - DescribeDBSubnetGroups
* - DeleteDBSubnetGroup
*
*
*
* This data type is used as a response element in the
* DescribeDBSubnetGroups action.
*
*/
public class DBSubnetGroup implements Serializable {
/**
* Specifies the name of the DB subnet group.
*/
private String dBSubnetGroupName;
/**
* Provides the description of the DB subnet group.
*/
private String dBSubnetGroupDescription;
/**
* Provides the VpcId of the DB subnet group.
*/
private String vpcId;
/**
* Provides the status of the DB subnet group.
*/
private String subnetGroupStatus;
/**
* Contains a list of Subnet elements.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag subnets;
/**
* Specifies the name of the DB subnet group.
*
* @return Specifies the name of the DB subnet group.
*/
public String getDBSubnetGroupName() {
return dBSubnetGroupName;
}
/**
* Specifies the name of the DB subnet group.
*
* @param dBSubnetGroupName Specifies the name of the DB subnet group.
*/
public void setDBSubnetGroupName(String dBSubnetGroupName) {
this.dBSubnetGroupName = dBSubnetGroupName;
}
/**
* Specifies the name of the DB subnet group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param dBSubnetGroupName Specifies the name of the DB subnet group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DBSubnetGroup withDBSubnetGroupName(String dBSubnetGroupName) {
this.dBSubnetGroupName = dBSubnetGroupName;
return this;
}
/**
* Provides the description of the DB subnet group.
*
* @return Provides the description of the DB subnet group.
*/
public String getDBSubnetGroupDescription() {
return dBSubnetGroupDescription;
}
/**
* Provides the description of the DB subnet group.
*
* @param dBSubnetGroupDescription Provides the description of the DB subnet group.
*/
public void setDBSubnetGroupDescription(String dBSubnetGroupDescription) {
this.dBSubnetGroupDescription = dBSubnetGroupDescription;
}
/**
* Provides the description of the DB subnet group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param dBSubnetGroupDescription Provides the description of the DB subnet group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DBSubnetGroup withDBSubnetGroupDescription(String dBSubnetGroupDescription) {
this.dBSubnetGroupDescription = dBSubnetGroupDescription;
return this;
}
/**
* Provides the VpcId of the DB subnet group.
*
* @return Provides the VpcId of the DB subnet group.
*/
public String getVpcId() {
return vpcId;
}
/**
* Provides the VpcId of the DB subnet group.
*
* @param vpcId Provides the VpcId of the DB subnet group.
*/
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
/**
* Provides the VpcId of the DB subnet group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param vpcId Provides the VpcId of the DB subnet group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DBSubnetGroup withVpcId(String vpcId) {
this.vpcId = vpcId;
return this;
}
/**
* Provides the status of the DB subnet group.
*
* @return Provides the status of the DB subnet group.
*/
public String getSubnetGroupStatus() {
return subnetGroupStatus;
}
/**
* Provides the status of the DB subnet group.
*
* @param subnetGroupStatus Provides the status of the DB subnet group.
*/
public void setSubnetGroupStatus(String subnetGroupStatus) {
this.subnetGroupStatus = subnetGroupStatus;
}
/**
* Provides the status of the DB subnet group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param subnetGroupStatus Provides the status of the DB subnet group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DBSubnetGroup withSubnetGroupStatus(String subnetGroupStatus) {
this.subnetGroupStatus = subnetGroupStatus;
return this;
}
/**
* Contains a list of Subnet elements.
*
* @return Contains a list of Subnet elements.
*/
public java.util.List getSubnets() {
if (subnets == null) {
subnets = new com.amazonaws.internal.ListWithAutoConstructFlag();
subnets.setAutoConstruct(true);
}
return subnets;
}
/**
* Contains a list of Subnet elements.
*
* @param subnets Contains a list of Subnet elements.
*/
public void setSubnets(java.util.Collection subnets) {
if (subnets == null) {
this.subnets = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag subnetsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(subnets.size());
subnetsCopy.addAll(subnets);
this.subnets = subnetsCopy;
}
/**
* Contains a list of Subnet elements.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param subnets Contains a list of Subnet elements.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DBSubnetGroup withSubnets(Subnet... subnets) {
if (getSubnets() == null) setSubnets(new java.util.ArrayList(subnets.length));
for (Subnet value : subnets) {
getSubnets().add(value);
}
return this;
}
/**
* Contains a list of Subnet elements.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param subnets Contains a list of Subnet elements.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DBSubnetGroup withSubnets(java.util.Collection subnets) {
if (subnets == null) {
this.subnets = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag subnetsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(subnets.size());
subnetsCopy.addAll(subnets);
this.subnets = subnetsCopy;
}
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 (getDBSubnetGroupName() != null) sb.append("DBSubnetGroupName: " + getDBSubnetGroupName() + ",");
if (getDBSubnetGroupDescription() != null) sb.append("DBSubnetGroupDescription: " + getDBSubnetGroupDescription() + ",");
if (getVpcId() != null) sb.append("VpcId: " + getVpcId() + ",");
if (getSubnetGroupStatus() != null) sb.append("SubnetGroupStatus: " + getSubnetGroupStatus() + ",");
if (getSubnets() != null) sb.append("Subnets: " + getSubnets() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDBSubnetGroupName() == null) ? 0 : getDBSubnetGroupName().hashCode());
hashCode = prime * hashCode + ((getDBSubnetGroupDescription() == null) ? 0 : getDBSubnetGroupDescription().hashCode());
hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode());
hashCode = prime * hashCode + ((getSubnetGroupStatus() == null) ? 0 : getSubnetGroupStatus().hashCode());
hashCode = prime * hashCode + ((getSubnets() == null) ? 0 : getSubnets().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof DBSubnetGroup == false) return false;
DBSubnetGroup other = (DBSubnetGroup)obj;
if (other.getDBSubnetGroupName() == null ^ this.getDBSubnetGroupName() == null) return false;
if (other.getDBSubnetGroupName() != null && other.getDBSubnetGroupName().equals(this.getDBSubnetGroupName()) == false) return false;
if (other.getDBSubnetGroupDescription() == null ^ this.getDBSubnetGroupDescription() == null) return false;
if (other.getDBSubnetGroupDescription() != null && other.getDBSubnetGroupDescription().equals(this.getDBSubnetGroupDescription()) == 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.getSubnetGroupStatus() == null ^ this.getSubnetGroupStatus() == null) return false;
if (other.getSubnetGroupStatus() != null && other.getSubnetGroupStatus().equals(this.getSubnetGroupStatus()) == false) return false;
if (other.getSubnets() == null ^ this.getSubnets() == null) return false;
if (other.getSubnets() != null && other.getSubnets().equals(this.getSubnets()) == false) return false;
return true;
}
}