
com.amazonaws.services.ec2.model.AssignPrivateIpAddressesRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2010-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.ec2.model;
import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.AssignPrivateIpAddressesRequestMarshaller;
/**
*
* Contains the parameters for AssignPrivateIpAddresses.
*
*/
public class AssignPrivateIpAddressesRequest extends AmazonWebServiceRequest
implements Serializable, Cloneable,
DryRunSupportedRequest {
/**
*
* The ID of the network interface.
*
*/
private String networkInterfaceId;
/**
*
* One or more IP addresses to be assigned as a secondary private IP address
* to the network interface. You can't specify this parameter when also
* specifying a number of secondary IP addresses.
*
*
* If you don't specify an IP address, Amazon EC2 automatically selects an
* IP address within the subnet range.
*
*/
private com.amazonaws.internal.SdkInternalList privateIpAddresses;
/**
*
* The number of secondary IP addresses to assign to the network interface.
* You can't specify this parameter when also specifying private IP
* addresses.
*
*/
private Integer secondaryPrivateIpAddressCount;
/**
*
* Indicates whether to allow an IP address that is already assigned to
* another network interface or instance to be reassigned to the specified
* network interface.
*
*/
private Boolean allowReassignment;
/**
*
* The ID of the network interface.
*
*
* @param networkInterfaceId
* The ID of the network interface.
*/
public void setNetworkInterfaceId(String networkInterfaceId) {
this.networkInterfaceId = networkInterfaceId;
}
/**
*
* The ID of the network interface.
*
*
* @return The ID of the network interface.
*/
public String getNetworkInterfaceId() {
return this.networkInterfaceId;
}
/**
*
* The ID of the network interface.
*
*
* @param networkInterfaceId
* The ID of the network interface.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public AssignPrivateIpAddressesRequest withNetworkInterfaceId(
String networkInterfaceId) {
setNetworkInterfaceId(networkInterfaceId);
return this;
}
/**
*
* One or more IP addresses to be assigned as a secondary private IP address
* to the network interface. You can't specify this parameter when also
* specifying a number of secondary IP addresses.
*
*
* If you don't specify an IP address, Amazon EC2 automatically selects an
* IP address within the subnet range.
*
*
* @return One or more IP addresses to be assigned as a secondary private IP
* address to the network interface. You can't specify this
* parameter when also specifying a number of secondary IP
* addresses.
*
* If you don't specify an IP address, Amazon EC2 automatically
* selects an IP address within the subnet range.
*/
public java.util.List getPrivateIpAddresses() {
if (privateIpAddresses == null) {
privateIpAddresses = new com.amazonaws.internal.SdkInternalList();
}
return privateIpAddresses;
}
/**
*
* One or more IP addresses to be assigned as a secondary private IP address
* to the network interface. You can't specify this parameter when also
* specifying a number of secondary IP addresses.
*
*
* If you don't specify an IP address, Amazon EC2 automatically selects an
* IP address within the subnet range.
*
*
* @param privateIpAddresses
* One or more IP addresses to be assigned as a secondary private IP
* address to the network interface. You can't specify this parameter
* when also specifying a number of secondary IP addresses.
*
* If you don't specify an IP address, Amazon EC2 automatically
* selects an IP address within the subnet range.
*/
public void setPrivateIpAddresses(
java.util.Collection privateIpAddresses) {
if (privateIpAddresses == null) {
this.privateIpAddresses = null;
return;
}
this.privateIpAddresses = new com.amazonaws.internal.SdkInternalList(
privateIpAddresses);
}
/**
*
* One or more IP addresses to be assigned as a secondary private IP address
* to the network interface. You can't specify this parameter when also
* specifying a number of secondary IP addresses.
*
*
* If you don't specify an IP address, Amazon EC2 automatically selects an
* IP address within the subnet range.
*
*
* NOTE: This method appends the values to the existing list (if
* any). Use {@link #setPrivateIpAddresses(java.util.Collection)} or
* {@link #withPrivateIpAddresses(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param privateIpAddresses
* One or more IP addresses to be assigned as a secondary private IP
* address to the network interface. You can't specify this parameter
* when also specifying a number of secondary IP addresses.
*
* If you don't specify an IP address, Amazon EC2 automatically
* selects an IP address within the subnet range.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public AssignPrivateIpAddressesRequest withPrivateIpAddresses(
String... privateIpAddresses) {
if (this.privateIpAddresses == null) {
setPrivateIpAddresses(new com.amazonaws.internal.SdkInternalList(
privateIpAddresses.length));
}
for (String ele : privateIpAddresses) {
this.privateIpAddresses.add(ele);
}
return this;
}
/**
*
* One or more IP addresses to be assigned as a secondary private IP address
* to the network interface. You can't specify this parameter when also
* specifying a number of secondary IP addresses.
*
*
* If you don't specify an IP address, Amazon EC2 automatically selects an
* IP address within the subnet range.
*
*
* @param privateIpAddresses
* One or more IP addresses to be assigned as a secondary private IP
* address to the network interface. You can't specify this parameter
* when also specifying a number of secondary IP addresses.
*
* If you don't specify an IP address, Amazon EC2 automatically
* selects an IP address within the subnet range.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public AssignPrivateIpAddressesRequest withPrivateIpAddresses(
java.util.Collection privateIpAddresses) {
setPrivateIpAddresses(privateIpAddresses);
return this;
}
/**
*
* The number of secondary IP addresses to assign to the network interface.
* You can't specify this parameter when also specifying private IP
* addresses.
*
*
* @param secondaryPrivateIpAddressCount
* The number of secondary IP addresses to assign to the network
* interface. You can't specify this parameter when also specifying
* private IP addresses.
*/
public void setSecondaryPrivateIpAddressCount(
Integer secondaryPrivateIpAddressCount) {
this.secondaryPrivateIpAddressCount = secondaryPrivateIpAddressCount;
}
/**
*
* The number of secondary IP addresses to assign to the network interface.
* You can't specify this parameter when also specifying private IP
* addresses.
*
*
* @return The number of secondary IP addresses to assign to the network
* interface. You can't specify this parameter when also specifying
* private IP addresses.
*/
public Integer getSecondaryPrivateIpAddressCount() {
return this.secondaryPrivateIpAddressCount;
}
/**
*
* The number of secondary IP addresses to assign to the network interface.
* You can't specify this parameter when also specifying private IP
* addresses.
*
*
* @param secondaryPrivateIpAddressCount
* The number of secondary IP addresses to assign to the network
* interface. You can't specify this parameter when also specifying
* private IP addresses.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public AssignPrivateIpAddressesRequest withSecondaryPrivateIpAddressCount(
Integer secondaryPrivateIpAddressCount) {
setSecondaryPrivateIpAddressCount(secondaryPrivateIpAddressCount);
return this;
}
/**
*
* Indicates whether to allow an IP address that is already assigned to
* another network interface or instance to be reassigned to the specified
* network interface.
*
*
* @param allowReassignment
* Indicates whether to allow an IP address that is already assigned
* to another network interface or instance to be reassigned to the
* specified network interface.
*/
public void setAllowReassignment(Boolean allowReassignment) {
this.allowReassignment = allowReassignment;
}
/**
*
* Indicates whether to allow an IP address that is already assigned to
* another network interface or instance to be reassigned to the specified
* network interface.
*
*
* @return Indicates whether to allow an IP address that is already assigned
* to another network interface or instance to be reassigned to the
* specified network interface.
*/
public Boolean getAllowReassignment() {
return this.allowReassignment;
}
/**
*
* Indicates whether to allow an IP address that is already assigned to
* another network interface or instance to be reassigned to the specified
* network interface.
*
*
* @param allowReassignment
* Indicates whether to allow an IP address that is already assigned
* to another network interface or instance to be reassigned to the
* specified network interface.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public AssignPrivateIpAddressesRequest withAllowReassignment(
Boolean allowReassignment) {
setAllowReassignment(allowReassignment);
return this;
}
/**
*
* Indicates whether to allow an IP address that is already assigned to
* another network interface or instance to be reassigned to the specified
* network interface.
*
*
* @return Indicates whether to allow an IP address that is already assigned
* to another network interface or instance to be reassigned to the
* specified network interface.
*/
public Boolean isAllowReassignment() {
return this.allowReassignment;
}
/**
* This method is intended for internal use only. Returns the marshaled
* request configured with additional parameters to enable operation
* dry-run.
*/
@Override
public Request getDryRunRequest() {
Request request = new AssignPrivateIpAddressesRequestMarshaller()
.marshall(this);
request.addParameter("DryRun", Boolean.toString(true));
return request;
}
/**
* 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 (getNetworkInterfaceId() != null)
sb.append("NetworkInterfaceId: " + getNetworkInterfaceId() + ",");
if (getPrivateIpAddresses() != null)
sb.append("PrivateIpAddresses: " + getPrivateIpAddresses() + ",");
if (getSecondaryPrivateIpAddressCount() != null)
sb.append("SecondaryPrivateIpAddressCount: "
+ getSecondaryPrivateIpAddressCount() + ",");
if (getAllowReassignment() != null)
sb.append("AllowReassignment: " + getAllowReassignment());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AssignPrivateIpAddressesRequest == false)
return false;
AssignPrivateIpAddressesRequest other = (AssignPrivateIpAddressesRequest) obj;
if (other.getNetworkInterfaceId() == null
^ this.getNetworkInterfaceId() == null)
return false;
if (other.getNetworkInterfaceId() != null
&& other.getNetworkInterfaceId().equals(
this.getNetworkInterfaceId()) == false)
return false;
if (other.getPrivateIpAddresses() == null
^ this.getPrivateIpAddresses() == null)
return false;
if (other.getPrivateIpAddresses() != null
&& other.getPrivateIpAddresses().equals(
this.getPrivateIpAddresses()) == false)
return false;
if (other.getSecondaryPrivateIpAddressCount() == null
^ this.getSecondaryPrivateIpAddressCount() == null)
return false;
if (other.getSecondaryPrivateIpAddressCount() != null
&& other.getSecondaryPrivateIpAddressCount().equals(
this.getSecondaryPrivateIpAddressCount()) == false)
return false;
if (other.getAllowReassignment() == null
^ this.getAllowReassignment() == null)
return false;
if (other.getAllowReassignment() != null
&& other.getAllowReassignment().equals(
this.getAllowReassignment()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime
* hashCode
+ ((getNetworkInterfaceId() == null) ? 0
: getNetworkInterfaceId().hashCode());
hashCode = prime
* hashCode
+ ((getPrivateIpAddresses() == null) ? 0
: getPrivateIpAddresses().hashCode());
hashCode = prime
* hashCode
+ ((getSecondaryPrivateIpAddressCount() == null) ? 0
: getSecondaryPrivateIpAddressCount().hashCode());
hashCode = prime
* hashCode
+ ((getAllowReassignment() == null) ? 0
: getAllowReassignment().hashCode());
return hashCode;
}
@Override
public AssignPrivateIpAddressesRequest clone() {
return (AssignPrivateIpAddressesRequest) super.clone();
}
}