com.amazonaws.services.ec2.model.DhcpOptions Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2017-2022 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;
import javax.annotation.Generated;
/**
*
* Describes a set of DHCP options.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DhcpOptions implements Serializable, Cloneable {
/**
*
* One or more DHCP options in the set.
*
*/
private com.amazonaws.internal.SdkInternalList dhcpConfigurations;
/**
*
* The ID of the set of DHCP options.
*
*/
private String dhcpOptionsId;
/**
*
* The ID of the Amazon Web Services account that owns the DHCP options set.
*
*/
private String ownerId;
/**
*
* Any tags assigned to the DHCP options set.
*
*/
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* One or more DHCP options in the set.
*
*
* @return One or more DHCP options in the set.
*/
public java.util.List getDhcpConfigurations() {
if (dhcpConfigurations == null) {
dhcpConfigurations = new com.amazonaws.internal.SdkInternalList();
}
return dhcpConfigurations;
}
/**
*
* One or more DHCP options in the set.
*
*
* @param dhcpConfigurations
* One or more DHCP options in the set.
*/
public void setDhcpConfigurations(java.util.Collection dhcpConfigurations) {
if (dhcpConfigurations == null) {
this.dhcpConfigurations = null;
return;
}
this.dhcpConfigurations = new com.amazonaws.internal.SdkInternalList(dhcpConfigurations);
}
/**
*
* One or more DHCP options in the set.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setDhcpConfigurations(java.util.Collection)} or {@link #withDhcpConfigurations(java.util.Collection)} if
* you want to override the existing values.
*
*
* @param dhcpConfigurations
* One or more DHCP options in the set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DhcpOptions withDhcpConfigurations(DhcpConfiguration... dhcpConfigurations) {
if (this.dhcpConfigurations == null) {
setDhcpConfigurations(new com.amazonaws.internal.SdkInternalList(dhcpConfigurations.length));
}
for (DhcpConfiguration ele : dhcpConfigurations) {
this.dhcpConfigurations.add(ele);
}
return this;
}
/**
*
* One or more DHCP options in the set.
*
*
* @param dhcpConfigurations
* One or more DHCP options in the set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DhcpOptions withDhcpConfigurations(java.util.Collection dhcpConfigurations) {
setDhcpConfigurations(dhcpConfigurations);
return this;
}
/**
*
* The ID of the set of DHCP options.
*
*
* @param dhcpOptionsId
* The ID of the set of DHCP options.
*/
public void setDhcpOptionsId(String dhcpOptionsId) {
this.dhcpOptionsId = dhcpOptionsId;
}
/**
*
* The ID of the set of DHCP options.
*
*
* @return The ID of the set of DHCP options.
*/
public String getDhcpOptionsId() {
return this.dhcpOptionsId;
}
/**
*
* The ID of the set of DHCP options.
*
*
* @param dhcpOptionsId
* The ID of the set of DHCP options.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DhcpOptions withDhcpOptionsId(String dhcpOptionsId) {
setDhcpOptionsId(dhcpOptionsId);
return this;
}
/**
*
* The ID of the Amazon Web Services account that owns the DHCP options set.
*
*
* @param ownerId
* The ID of the Amazon Web Services account that owns the DHCP options set.
*/
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
/**
*
* The ID of the Amazon Web Services account that owns the DHCP options set.
*
*
* @return The ID of the Amazon Web Services account that owns the DHCP options set.
*/
public String getOwnerId() {
return this.ownerId;
}
/**
*
* The ID of the Amazon Web Services account that owns the DHCP options set.
*
*
* @param ownerId
* The ID of the Amazon Web Services account that owns the DHCP options set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DhcpOptions withOwnerId(String ownerId) {
setOwnerId(ownerId);
return this;
}
/**
*
* Any tags assigned to the DHCP options set.
*
*
* @return Any tags assigned to the DHCP options set.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalList();
}
return tags;
}
/**
*
* Any tags assigned to the DHCP options set.
*
*
* @param tags
* Any tags assigned to the DHCP options set.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new com.amazonaws.internal.SdkInternalList(tags);
}
/**
*
* Any tags assigned to the DHCP options set.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* Any tags assigned to the DHCP options set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DhcpOptions withTags(Tag... tags) {
if (this.tags == null) {
setTags(new com.amazonaws.internal.SdkInternalList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* Any tags assigned to the DHCP options set.
*
*
* @param tags
* Any tags assigned to the DHCP options set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DhcpOptions withTags(java.util.Collection tags) {
setTags(tags);
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 (getDhcpConfigurations() != null)
sb.append("DhcpConfigurations: ").append(getDhcpConfigurations()).append(",");
if (getDhcpOptionsId() != null)
sb.append("DhcpOptionsId: ").append(getDhcpOptionsId()).append(",");
if (getOwnerId() != null)
sb.append("OwnerId: ").append(getOwnerId()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DhcpOptions == false)
return false;
DhcpOptions other = (DhcpOptions) obj;
if (other.getDhcpConfigurations() == null ^ this.getDhcpConfigurations() == null)
return false;
if (other.getDhcpConfigurations() != null && other.getDhcpConfigurations().equals(this.getDhcpConfigurations()) == 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.getOwnerId() == null ^ this.getOwnerId() == null)
return false;
if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == 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;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDhcpConfigurations() == null) ? 0 : getDhcpConfigurations().hashCode());
hashCode = prime * hashCode + ((getDhcpOptionsId() == null) ? 0 : getDhcpOptionsId().hashCode());
hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public DhcpOptions clone() {
try {
return (DhcpOptions) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}