com.amazonaws.services.ec2.model.Reservation Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2014-2019 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 reservation.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Reservation implements Serializable, Cloneable {
/**
*
* [EC2-Classic only] The security groups.
*
*/
private com.amazonaws.internal.SdkInternalList groups;
/**
*
* The instances.
*
*/
private com.amazonaws.internal.SdkInternalList instances;
/**
*
* The ID of the AWS account that owns the reservation.
*
*/
private String ownerId;
/**
*
* The ID of the requester that launched the instances on your behalf (for example, AWS Management Console or Auto
* Scaling).
*
*/
private String requesterId;
/**
*
* The ID of the reservation.
*
*/
private String reservationId;
/**
*
* One or more security group names.
*
*/
private com.amazonaws.internal.SdkInternalList groupNames;
/**
*
* [EC2-Classic only] The security groups.
*
*
* @return [EC2-Classic only] The security groups.
*/
public java.util.List getGroups() {
if (groups == null) {
groups = new com.amazonaws.internal.SdkInternalList();
}
return groups;
}
/**
*
* [EC2-Classic only] The security groups.
*
*
* @param groups
* [EC2-Classic only] The security groups.
*/
public void setGroups(java.util.Collection groups) {
if (groups == null) {
this.groups = null;
return;
}
this.groups = new com.amazonaws.internal.SdkInternalList(groups);
}
/**
*
* [EC2-Classic only] The security groups.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setGroups(java.util.Collection)} or {@link #withGroups(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param groups
* [EC2-Classic only] The security groups.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withGroups(GroupIdentifier... groups) {
if (this.groups == null) {
setGroups(new com.amazonaws.internal.SdkInternalList(groups.length));
}
for (GroupIdentifier ele : groups) {
this.groups.add(ele);
}
return this;
}
/**
*
* [EC2-Classic only] The security groups.
*
*
* @param groups
* [EC2-Classic only] The security groups.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withGroups(java.util.Collection groups) {
setGroups(groups);
return this;
}
/**
*
* The instances.
*
*
* @return The instances.
*/
public java.util.List getInstances() {
if (instances == null) {
instances = new com.amazonaws.internal.SdkInternalList();
}
return instances;
}
/**
*
* The instances.
*
*
* @param instances
* The instances.
*/
public void setInstances(java.util.Collection instances) {
if (instances == null) {
this.instances = null;
return;
}
this.instances = new com.amazonaws.internal.SdkInternalList(instances);
}
/**
*
* The instances.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setInstances(java.util.Collection)} or {@link #withInstances(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param instances
* The instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withInstances(Instance... instances) {
if (this.instances == null) {
setInstances(new com.amazonaws.internal.SdkInternalList(instances.length));
}
for (Instance ele : instances) {
this.instances.add(ele);
}
return this;
}
/**
*
* The instances.
*
*
* @param instances
* The instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withInstances(java.util.Collection instances) {
setInstances(instances);
return this;
}
/**
*
* The ID of the AWS account that owns the reservation.
*
*
* @param ownerId
* The ID of the AWS account that owns the reservation.
*/
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
/**
*
* The ID of the AWS account that owns the reservation.
*
*
* @return The ID of the AWS account that owns the reservation.
*/
public String getOwnerId() {
return this.ownerId;
}
/**
*
* The ID of the AWS account that owns the reservation.
*
*
* @param ownerId
* The ID of the AWS account that owns the reservation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withOwnerId(String ownerId) {
setOwnerId(ownerId);
return this;
}
/**
*
* The ID of the requester that launched the instances on your behalf (for example, AWS Management Console or Auto
* Scaling).
*
*
* @param requesterId
* The ID of the requester that launched the instances on your behalf (for example, AWS Management Console or
* Auto Scaling).
*/
public void setRequesterId(String requesterId) {
this.requesterId = requesterId;
}
/**
*
* The ID of the requester that launched the instances on your behalf (for example, AWS Management Console or Auto
* Scaling).
*
*
* @return The ID of the requester that launched the instances on your behalf (for example, AWS Management Console
* or Auto Scaling).
*/
public String getRequesterId() {
return this.requesterId;
}
/**
*
* The ID of the requester that launched the instances on your behalf (for example, AWS Management Console or Auto
* Scaling).
*
*
* @param requesterId
* The ID of the requester that launched the instances on your behalf (for example, AWS Management Console or
* Auto Scaling).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withRequesterId(String requesterId) {
setRequesterId(requesterId);
return this;
}
/**
*
* The ID of the reservation.
*
*
* @param reservationId
* The ID of the reservation.
*/
public void setReservationId(String reservationId) {
this.reservationId = reservationId;
}
/**
*
* The ID of the reservation.
*
*
* @return The ID of the reservation.
*/
public String getReservationId() {
return this.reservationId;
}
/**
*
* The ID of the reservation.
*
*
* @param reservationId
* The ID of the reservation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withReservationId(String reservationId) {
setReservationId(reservationId);
return this;
}
/**
*
* One or more security group names.
*
*
* @return One or more security group names.
*/
public java.util.List getGroupNames() {
if (groupNames == null) {
groupNames = new com.amazonaws.internal.SdkInternalList();
}
return groupNames;
}
/**
*
* One or more security group names.
*
*
* @param groupNames
* One or more security group names.
*/
public void setGroupNames(java.util.Collection groupNames) {
if (groupNames == null) {
this.groupNames = null;
return;
}
this.groupNames = new com.amazonaws.internal.SdkInternalList(groupNames);
}
/**
*
* One or more security group names.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setGroupNames(java.util.Collection)} or {@link #withGroupNames(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param groupNames
* One or more security group names.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withGroupNames(String... groupNames) {
if (this.groupNames == null) {
setGroupNames(new com.amazonaws.internal.SdkInternalList(groupNames.length));
}
for (String ele : groupNames) {
this.groupNames.add(ele);
}
return this;
}
/**
*
* One or more security group names.
*
*
* @param groupNames
* One or more security group names.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Reservation withGroupNames(java.util.Collection groupNames) {
setGroupNames(groupNames);
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 (getGroups() != null)
sb.append("Groups: ").append(getGroups()).append(",");
if (getInstances() != null)
sb.append("Instances: ").append(getInstances()).append(",");
if (getOwnerId() != null)
sb.append("OwnerId: ").append(getOwnerId()).append(",");
if (getRequesterId() != null)
sb.append("RequesterId: ").append(getRequesterId()).append(",");
if (getReservationId() != null)
sb.append("ReservationId: ").append(getReservationId()).append(",");
if (getGroupNames() != null)
sb.append("GroupNames: ").append(getGroupNames());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Reservation == false)
return false;
Reservation other = (Reservation) obj;
if (other.getGroups() == null ^ this.getGroups() == null)
return false;
if (other.getGroups() != null && other.getGroups().equals(this.getGroups()) == false)
return false;
if (other.getInstances() == null ^ this.getInstances() == null)
return false;
if (other.getInstances() != null && other.getInstances().equals(this.getInstances()) == 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.getRequesterId() == null ^ this.getRequesterId() == null)
return false;
if (other.getRequesterId() != null && other.getRequesterId().equals(this.getRequesterId()) == false)
return false;
if (other.getReservationId() == null ^ this.getReservationId() == null)
return false;
if (other.getReservationId() != null && other.getReservationId().equals(this.getReservationId()) == false)
return false;
if (other.getGroupNames() == null ^ this.getGroupNames() == null)
return false;
if (other.getGroupNames() != null && other.getGroupNames().equals(this.getGroupNames()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getGroups() == null) ? 0 : getGroups().hashCode());
hashCode = prime * hashCode + ((getInstances() == null) ? 0 : getInstances().hashCode());
hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode());
hashCode = prime * hashCode + ((getRequesterId() == null) ? 0 : getRequesterId().hashCode());
hashCode = prime * hashCode + ((getReservationId() == null) ? 0 : getReservationId().hashCode());
hashCode = prime * hashCode + ((getGroupNames() == null) ? 0 : getGroupNames().hashCode());
return hashCode;
}
@Override
public Reservation clone() {
try {
return (Reservation) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}