All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.Reservation Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * 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.ec2.model;

import java.io.Serializable;

/**
 * 

* Describes a reservation. *

*/ public class Reservation implements Serializable, Cloneable { /** *

* The ID of the reservation. *

*/ private String reservationId; /** *

* 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; /** *

* [EC2-Classic only] One or more security groups. *

*/ private com.amazonaws.internal.SdkInternalList groups; /** *

* One or more instances. *

*/ private com.amazonaws.internal.SdkInternalList instances; /** *

* One or more security group names. *

*/ private com.amazonaws.internal.SdkInternalList groupNames; /** *

* 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; } /** *

* 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; } /** *

* [EC2-Classic only] One or more security groups. *

* * @return [EC2-Classic only] One or more security groups. */ public java.util.List getGroups() { if (groups == null) { groups = new com.amazonaws.internal.SdkInternalList(); } return groups; } /** *

* [EC2-Classic only] One or more security groups. *

* * @param groups * [EC2-Classic only] One or more 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] One or more 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] One or more 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] One or more security groups. *

* * @param groups * [EC2-Classic only] One or more 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; } /** *

* One or more instances. *

* * @return One or more instances. */ public java.util.List getInstances() { if (instances == null) { instances = new com.amazonaws.internal.SdkInternalList(); } return instances; } /** *

* One or more instances. *

* * @param instances * One or more instances. */ public void setInstances(java.util.Collection instances) { if (instances == null) { this.instances = null; return; } this.instances = new com.amazonaws.internal.SdkInternalList( instances); } /** *

* One or more 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 * One or more 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; } /** *

* One or more instances. *

* * @param instances * One or more 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; } /** *

* 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; 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 (getReservationId() != null) sb.append("ReservationId: " + getReservationId() + ","); if (getOwnerId() != null) sb.append("OwnerId: " + getOwnerId() + ","); if (getRequesterId() != null) sb.append("RequesterId: " + getRequesterId() + ","); if (getGroups() != null) sb.append("Groups: " + getGroups() + ","); if (getInstances() != null) sb.append("Instances: " + getInstances() + ","); if (getGroupNames() != null) sb.append("GroupNames: " + 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.getReservationId() == null ^ this.getReservationId() == null) return false; if (other.getReservationId() != null && other.getReservationId().equals(this.getReservationId()) == 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.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.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 + ((getReservationId() == null) ? 0 : getReservationId() .hashCode()); hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); hashCode = prime * hashCode + ((getRequesterId() == null) ? 0 : getRequesterId().hashCode()); hashCode = prime * hashCode + ((getGroups() == null) ? 0 : getGroups().hashCode()); hashCode = prime * hashCode + ((getInstances() == null) ? 0 : getInstances().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); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy