
com.amazonaws.services.ec2.model.DescribeDhcpOptionsRequest Maven / Gradle / Ivy
/*
* Copyright 2010-2011 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 com.amazonaws.AmazonWebServiceRequest;
/**
* Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#describeDhcpOptions(DescribeDhcpOptionsRequest) DescribeDhcpOptions operation}.
*
* Gives you information about one or more sets of DHCP options. You can
* specify one or more DHCP options set IDs, or no IDs (to describe all
* your sets of DHCP options). The returned information consists of:
*
*
*
* - The DHCP options set ID
* - The options
*
*
*
* @see com.amazonaws.services.ec2.AmazonEC2#describeDhcpOptions(DescribeDhcpOptionsRequest)
*/
public class DescribeDhcpOptionsRequest extends AmazonWebServiceRequest {
private java.util.List dhcpOptionsIds;
/**
* A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*/
private java.util.List filters;
/**
* Returns the value of the DhcpOptionsIds property for this object.
*
* @return The value of the DhcpOptionsIds property for this object.
*/
public java.util.List getDhcpOptionsIds() {
if (dhcpOptionsIds == null) {
dhcpOptionsIds = new java.util.ArrayList();
}
return dhcpOptionsIds;
}
/**
* Sets the value of the DhcpOptionsIds property for this object.
*
* @param dhcpOptionsIds The new value for the DhcpOptionsIds property for this object.
*/
public void setDhcpOptionsIds(java.util.Collection dhcpOptionsIds) {
java.util.List dhcpOptionsIdsCopy = new java.util.ArrayList();
if (dhcpOptionsIds != null) {
dhcpOptionsIdsCopy.addAll(dhcpOptionsIds);
}
this.dhcpOptionsIds = dhcpOptionsIdsCopy;
}
/**
* Sets the value of the DhcpOptionsIds property for this object.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param dhcpOptionsIds The new value for the DhcpOptionsIds property for this object.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeDhcpOptionsRequest withDhcpOptionsIds(String... dhcpOptionsIds) {
for (String value : dhcpOptionsIds) {
getDhcpOptionsIds().add(value);
}
return this;
}
/**
* Sets the value of the DhcpOptionsIds property for this object.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param dhcpOptionsIds The new value for the DhcpOptionsIds property for this object.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeDhcpOptionsRequest withDhcpOptionsIds(java.util.Collection dhcpOptionsIds) {
java.util.List dhcpOptionsIdsCopy = new java.util.ArrayList();
if (dhcpOptionsIds != null) {
dhcpOptionsIdsCopy.addAll(dhcpOptionsIds);
}
this.dhcpOptionsIds = dhcpOptionsIdsCopy;
return this;
}
/**
* A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @return A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*/
public java.util.List getFilters() {
if (filters == null) {
filters = new java.util.ArrayList();
}
return filters;
}
/**
* A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @param filters A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*/
public void setFilters(java.util.Collection filters) {
java.util.List filtersCopy = new java.util.ArrayList();
if (filters != null) {
filtersCopy.addAll(filters);
}
this.filters = filtersCopy;
}
/**
* A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param filters A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeDhcpOptionsRequest withFilters(Filter... filters) {
for (Filter value : filters) {
getFilters().add(value);
}
return this;
}
/**
* A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param filters A list of filters used to match properties for DhcpOptions. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeDhcpOptionsRequest withFilters(java.util.Collection filters) {
java.util.List filtersCopy = new java.util.ArrayList();
if (filters != null) {
filtersCopy.addAll(filters);
}
this.filters = filtersCopy;
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("{");
sb.append("DhcpOptionsIds: " + dhcpOptionsIds + ", ");
sb.append("Filters: " + filters + ", ");
sb.append("}");
return sb.toString();
}
}