
com.amazonaws.services.rds.model.DBSubnetGroup Maven / Gradle / Ivy
Show all versions of aws-java-sdk-rds Show documentation
/*
* Copyright 2011-2016 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:
*
*
* -
*
*
* -
*
*
* -
*
*
* -
*
*
*
*
* This data type is used as a response element in the
* DescribeDBSubnetGroups action.
*
*/
public class DBSubnetGroup implements Serializable, Cloneable {
/**
*
* 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.SdkInternalList subnets;
/**
*
* The Amazon Resource Name (ARN) for the DB subnet group.
*
*/
private String dBSubnetGroupArn;
/**
*
* The name of the DB subnet group.
*
*
* @param dBSubnetGroupName
* The name of the DB subnet group.
*/
public void setDBSubnetGroupName(String dBSubnetGroupName) {
this.dBSubnetGroupName = dBSubnetGroupName;
}
/**
*
* The name of the DB subnet group.
*
*
* @return The name of the DB subnet group.
*/
public String getDBSubnetGroupName() {
return this.dBSubnetGroupName;
}
/**
*
* The name of the DB subnet group.
*
*
* @param dBSubnetGroupName
* The name of the DB subnet group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSubnetGroup withDBSubnetGroupName(String dBSubnetGroupName) {
setDBSubnetGroupName(dBSubnetGroupName);
return this;
}
/**
*
* 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.
*
*
* @return Provides the description of the DB subnet group.
*/
public String getDBSubnetGroupDescription() {
return this.dBSubnetGroupDescription;
}
/**
*
* Provides the description of the DB subnet group.
*
*
* @param dBSubnetGroupDescription
* Provides the description of the DB subnet group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSubnetGroup withDBSubnetGroupDescription(
String dBSubnetGroupDescription) {
setDBSubnetGroupDescription(dBSubnetGroupDescription);
return this;
}
/**
*
* 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.
*
*
* @return Provides the VpcId of the DB subnet group.
*/
public String getVpcId() {
return this.vpcId;
}
/**
*
* Provides the VpcId of the DB subnet group.
*
*
* @param vpcId
* Provides the VpcId of the DB subnet group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSubnetGroup withVpcId(String vpcId) {
setVpcId(vpcId);
return this;
}
/**
*
* 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.
*
*
* @return Provides the status of the DB subnet group.
*/
public String getSubnetGroupStatus() {
return this.subnetGroupStatus;
}
/**
*
* Provides the status of the DB subnet group.
*
*
* @param subnetGroupStatus
* Provides the status of the DB subnet group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSubnetGroup withSubnetGroupStatus(String subnetGroupStatus) {
setSubnetGroupStatus(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.SdkInternalList();
}
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;
}
this.subnets = new com.amazonaws.internal.SdkInternalList(
subnets);
}
/**
*
* Contains a list of Subnet elements.
*
*
* NOTE: This method appends the values to the existing list (if
* any). Use {@link #setSubnets(java.util.Collection)} or
* {@link #withSubnets(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param subnets
* Contains a list of Subnet elements.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSubnetGroup withSubnets(Subnet... subnets) {
if (this.subnets == null) {
setSubnets(new com.amazonaws.internal.SdkInternalList(
subnets.length));
}
for (Subnet ele : subnets) {
this.subnets.add(ele);
}
return this;
}
/**
*
* Contains a list of Subnet elements.
*
*
* @param subnets
* Contains a list of Subnet elements.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSubnetGroup withSubnets(java.util.Collection subnets) {
setSubnets(subnets);
return this;
}
/**
*
* The Amazon Resource Name (ARN) for the DB subnet group.
*
*
* @param dBSubnetGroupArn
* The Amazon Resource Name (ARN) for the DB subnet group.
*/
public void setDBSubnetGroupArn(String dBSubnetGroupArn) {
this.dBSubnetGroupArn = dBSubnetGroupArn;
}
/**
*
* The Amazon Resource Name (ARN) for the DB subnet group.
*
*
* @return The Amazon Resource Name (ARN) for the DB subnet group.
*/
public String getDBSubnetGroupArn() {
return this.dBSubnetGroupArn;
}
/**
*
* The Amazon Resource Name (ARN) for the DB subnet group.
*
*
* @param dBSubnetGroupArn
* The Amazon Resource Name (ARN) for the DB subnet group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSubnetGroup withDBSubnetGroupArn(String dBSubnetGroupArn) {
setDBSubnetGroupArn(dBSubnetGroupArn);
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() + ",");
if (getDBSubnetGroupArn() != null)
sb.append("DBSubnetGroupArn: " + getDBSubnetGroupArn());
sb.append("}");
return sb.toString();
}
@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;
if (other.getDBSubnetGroupArn() == null
^ this.getDBSubnetGroupArn() == null)
return false;
if (other.getDBSubnetGroupArn() != null
&& other.getDBSubnetGroupArn().equals(
this.getDBSubnetGroupArn()) == false)
return false;
return true;
}
@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());
hashCode = prime
* hashCode
+ ((getDBSubnetGroupArn() == null) ? 0 : getDBSubnetGroupArn()
.hashCode());
return hashCode;
}
@Override
public DBSubnetGroup clone() {
try {
return (DBSubnetGroup) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}