com.amazonaws.services.ec2.model.ImportInstanceRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi 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.ImportInstanceRequestMarshaller;
/**
 * 
 * Contains the parameters for ImportInstance.
 * 
 */
public class ImportInstanceRequest extends AmazonWebServiceRequest implements
        Serializable, Cloneable, DryRunSupportedRequest {
    /**
     * 
     * A description for the instance being imported.
     * 
     */
    private String description;
    /**
     * 
     * The launch specification.
     * 
     */
    private ImportInstanceLaunchSpecification launchSpecification;
    /**
     * 
     * The disk image.
     * 
     */
    private com.amazonaws.internal.SdkInternalList diskImages;
    /**
     * 
     * The instance operating system.
     * 
     */
    private String platform;
    /**
     * 
     * A description for the instance being imported.
     * 
     * 
     * @param description
     *        A description for the instance being imported.
     */
    public void setDescription(String description) {
        this.description = description;
    }
    /**
     * 
     * A description for the instance being imported.
     * 
     * 
     * @return A description for the instance being imported.
     */
    public String getDescription() {
        return this.description;
    }
    /**
     * 
     * A description for the instance being imported.
     * 
     * 
     * @param description
     *        A description for the instance being imported.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public ImportInstanceRequest withDescription(String description) {
        setDescription(description);
        return this;
    }
    /**
     * 
     * The launch specification.
     * 
     * 
     * @param launchSpecification
     *        The launch specification.
     */
    public void setLaunchSpecification(
            ImportInstanceLaunchSpecification launchSpecification) {
        this.launchSpecification = launchSpecification;
    }
    /**
     * 
     * The launch specification.
     * 
     * 
     * @return The launch specification.
     */
    public ImportInstanceLaunchSpecification getLaunchSpecification() {
        return this.launchSpecification;
    }
    /**
     * 
     * The launch specification.
     * 
     * 
     * @param launchSpecification
     *        The launch specification.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public ImportInstanceRequest withLaunchSpecification(
            ImportInstanceLaunchSpecification launchSpecification) {
        setLaunchSpecification(launchSpecification);
        return this;
    }
    /**
     * 
     * The disk image.
     * 
     * 
     * @return The disk image.
     */
    public java.util.List getDiskImages() {
        if (diskImages == null) {
            diskImages = new com.amazonaws.internal.SdkInternalList();
        }
        return diskImages;
    }
    /**
     * 
     * The disk image.
     * 
     * 
     * @param diskImages
     *        The disk image.
     */
    public void setDiskImages(java.util.Collection diskImages) {
        if (diskImages == null) {
            this.diskImages = null;
            return;
        }
        this.diskImages = new com.amazonaws.internal.SdkInternalList(
                diskImages);
    }
    /**
     * 
     * The disk image.
     * 
     * 
     * NOTE: This method appends the values to the existing list (if
     * any). Use {@link #setDiskImages(java.util.Collection)} or
     * {@link #withDiskImages(java.util.Collection)} if you want to override the
     * existing values.
     * 
     * 
     * @param diskImages
     *        The disk image.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public ImportInstanceRequest withDiskImages(DiskImage... diskImages) {
        if (this.diskImages == null) {
            setDiskImages(new com.amazonaws.internal.SdkInternalList(
                    diskImages.length));
        }
        for (DiskImage ele : diskImages) {
            this.diskImages.add(ele);
        }
        return this;
    }
    /**
     * 
     * The disk image.
     * 
     * 
     * @param diskImages
     *        The disk image.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public ImportInstanceRequest withDiskImages(
            java.util.Collection diskImages) {
        setDiskImages(diskImages);
        return this;
    }
    /**
     * 
     * The instance operating system.
     * 
     * 
     * @param platform
     *        The instance operating system.
     * @see PlatformValues
     */
    public void setPlatform(String platform) {
        this.platform = platform;
    }
    /**
     * 
     * The instance operating system.
     * 
     * 
     * @return The instance operating system.
     * @see PlatformValues
     */
    public String getPlatform() {
        return this.platform;
    }
    /**
     * 
     * The instance operating system.
     * 
     * 
     * @param platform
     *        The instance operating system.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     * @see PlatformValues
     */
    public ImportInstanceRequest withPlatform(String platform) {
        setPlatform(platform);
        return this;
    }
    /**
     * 
     * The instance operating system.
     * 
     * 
     * @param platform
     *        The instance operating system.
     * @see PlatformValues
     */
    public void setPlatform(PlatformValues platform) {
        this.platform = platform.toString();
    }
    /**
     * 
     * The instance operating system.
     * 
     * 
     * @param platform
     *        The instance operating system.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     * @see PlatformValues
     */
    public ImportInstanceRequest withPlatform(PlatformValues platform) {
        setPlatform(platform);
        return this;
    }
    /**
     * 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 ImportInstanceRequestMarshaller()
                .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 (getDescription() != null)
            sb.append("Description: " + getDescription() + ",");
        if (getLaunchSpecification() != null)
            sb.append("LaunchSpecification: " + getLaunchSpecification() + ",");
        if (getDiskImages() != null)
            sb.append("DiskImages: " + getDiskImages() + ",");
        if (getPlatform() != null)
            sb.append("Platform: " + getPlatform());
        sb.append("}");
        return sb.toString();
    }
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (obj instanceof ImportInstanceRequest == false)
            return false;
        ImportInstanceRequest other = (ImportInstanceRequest) obj;
        if (other.getDescription() == null ^ this.getDescription() == null)
            return false;
        if (other.getDescription() != null
                && other.getDescription().equals(this.getDescription()) == false)
            return false;
        if (other.getLaunchSpecification() == null
                ^ this.getLaunchSpecification() == null)
            return false;
        if (other.getLaunchSpecification() != null
                && other.getLaunchSpecification().equals(
                        this.getLaunchSpecification()) == false)
            return false;
        if (other.getDiskImages() == null ^ this.getDiskImages() == null)
            return false;
        if (other.getDiskImages() != null
                && other.getDiskImages().equals(this.getDiskImages()) == false)
            return false;
        if (other.getPlatform() == null ^ this.getPlatform() == null)
            return false;
        if (other.getPlatform() != null
                && other.getPlatform().equals(this.getPlatform()) == false)
            return false;
        return true;
    }
    @Override
    public int hashCode() {
        final int prime = 31;
        int hashCode = 1;
        hashCode = prime
                * hashCode
                + ((getDescription() == null) ? 0 : getDescription().hashCode());
        hashCode = prime
                * hashCode
                + ((getLaunchSpecification() == null) ? 0
                        : getLaunchSpecification().hashCode());
        hashCode = prime * hashCode
                + ((getDiskImages() == null) ? 0 : getDiskImages().hashCode());
        hashCode = prime * hashCode
                + ((getPlatform() == null) ? 0 : getPlatform().hashCode());
        return hashCode;
    }
    @Override
    public ImportInstanceRequest clone() {
        return (ImportInstanceRequest) super.clone();
    }
}