com.amazonaws.services.ec2.model.ImportInstanceRequest Maven / Gradle / Ivy
Show all versions of aws-android-sdk-mobileanalytics Show documentation
/*
* Copyright 2010-2014 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;
/**
* Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#importInstance(ImportInstanceRequest) ImportInstance operation}.
*
* Creates an import instance task using metadata from the specified disk
* image. After importing the image, you then upload it using the
* ec2-import-volume command in the EC2 command line tools. For more
* information, see Using the Command Line Tools to Import Your Virtual
* Machine to Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
*
*
* @see com.amazonaws.services.ec2.AmazonEC2#importInstance(ImportInstanceRequest)
*/
public class ImportInstanceRequest extends AmazonWebServiceRequest implements Serializable, DryRunSupportedRequest {
/**
* A description for the instance being imported.
*/
private String description;
/**
*
*/
private ImportInstanceLaunchSpecification launchSpecification;
/**
*
*/
private com.amazonaws.internal.ListWithAutoConstructFlag diskImages;
/**
* The instance operating system.
*
* Constraints:
* Allowed Values: Windows
*/
private String platform;
/**
* A description for the instance being imported.
*
* @return A description for the instance being imported.
*/
public String getDescription() {
return description;
}
/**
* 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.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param description A description for the instance being imported.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ImportInstanceRequest withDescription(String description) {
this.description = description;
return this;
}
/**
*
*
* @return
*/
public ImportInstanceLaunchSpecification getLaunchSpecification() {
return launchSpecification;
}
/**
*
*
* @param launchSpecification
*/
public void setLaunchSpecification(ImportInstanceLaunchSpecification launchSpecification) {
this.launchSpecification = launchSpecification;
}
/**
*
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param launchSpecification
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ImportInstanceRequest withLaunchSpecification(ImportInstanceLaunchSpecification launchSpecification) {
this.launchSpecification = launchSpecification;
return this;
}
/**
*
*
* @return
*/
public java.util.List getDiskImages() {
if (diskImages == null) {
diskImages = new com.amazonaws.internal.ListWithAutoConstructFlag();
diskImages.setAutoConstruct(true);
}
return diskImages;
}
/**
*
*
* @param diskImages
*/
public void setDiskImages(java.util.Collection diskImages) {
if (diskImages == null) {
this.diskImages = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag diskImagesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(diskImages.size());
diskImagesCopy.addAll(diskImages);
this.diskImages = diskImagesCopy;
}
/**
*
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param diskImages
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ImportInstanceRequest withDiskImages(DiskImage... diskImages) {
if (getDiskImages() == null) setDiskImages(new java.util.ArrayList(diskImages.length));
for (DiskImage value : diskImages) {
getDiskImages().add(value);
}
return this;
}
/**
*
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param diskImages
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ImportInstanceRequest withDiskImages(java.util.Collection diskImages) {
if (diskImages == null) {
this.diskImages = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag diskImagesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(diskImages.size());
diskImagesCopy.addAll(diskImages);
this.diskImages = diskImagesCopy;
}
return this;
}
/**
* The instance operating system.
*
* Constraints:
* Allowed Values: Windows
*
* @return The instance operating system.
*
* @see PlatformValues
*/
public String getPlatform() {
return platform;
}
/**
* The instance operating system.
*
* Constraints:
* Allowed Values: Windows
*
* @param platform The instance operating system.
*
* @see PlatformValues
*/
public void setPlatform(String platform) {
this.platform = platform;
}
/**
* The instance operating system.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: Windows
*
* @param platform The instance operating system.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see PlatformValues
*/
public ImportInstanceRequest withPlatform(String platform) {
this.platform = platform;
return this;
}
/**
* The instance operating system.
*
* Constraints:
* Allowed Values: Windows
*
* @param platform The instance operating system.
*
* @see PlatformValues
*/
public void setPlatform(PlatformValues platform) {
this.platform = platform.toString();
}
/**
* The instance operating system.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: Windows
*
* @param platform The instance operating system.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see PlatformValues
*/
public ImportInstanceRequest withPlatform(PlatformValues platform) {
this.platform = platform.toString();
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 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 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;
}
}