com.amazonaws.services.ec2.model.ImportImageTask Maven / Gradle / Ivy
/*
* Copyright 2013-2018 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 an import image task.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ImportImageTask implements Serializable, Cloneable {
/**
*
* The architecture of the virtual machine.
*
*
* Valid values: i386
| x86_64
*
*/
private String architecture;
/**
*
* A description of the import task.
*
*/
private String description;
/**
*
* The target hypervisor for the import task.
*
*
* Valid values: xen
*
*/
private String hypervisor;
/**
*
* The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
*
*/
private String imageId;
/**
*
* The ID of the import image task.
*
*/
private String importTaskId;
/**
*
* The license type of the virtual machine.
*
*/
private String licenseType;
/**
*
* The description string for the import image task.
*
*/
private String platform;
/**
*
* The percentage of progress of the import image task.
*
*/
private String progress;
/**
*
* Information about the snapshots.
*
*/
private com.amazonaws.internal.SdkInternalList snapshotDetails;
/**
*
* A brief status for the import image task.
*
*/
private String status;
/**
*
* A descriptive status message for the import image task.
*
*/
private String statusMessage;
/**
*
* The architecture of the virtual machine.
*
*
* Valid values: i386
| x86_64
*
*
* @param architecture
* The architecture of the virtual machine.
*
* Valid values: i386
| x86_64
*/
public void setArchitecture(String architecture) {
this.architecture = architecture;
}
/**
*
* The architecture of the virtual machine.
*
*
* Valid values: i386
| x86_64
*
*
* @return The architecture of the virtual machine.
*
* Valid values: i386
| x86_64
*/
public String getArchitecture() {
return this.architecture;
}
/**
*
* The architecture of the virtual machine.
*
*
* Valid values: i386
| x86_64
*
*
* @param architecture
* The architecture of the virtual machine.
*
* Valid values: i386
| x86_64
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withArchitecture(String architecture) {
setArchitecture(architecture);
return this;
}
/**
*
* A description of the import task.
*
*
* @param description
* A description of the import task.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* A description of the import task.
*
*
* @return A description of the import task.
*/
public String getDescription() {
return this.description;
}
/**
*
* A description of the import task.
*
*
* @param description
* A description of the import task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The target hypervisor for the import task.
*
*
* Valid values: xen
*
*
* @param hypervisor
* The target hypervisor for the import task.
*
* Valid values: xen
*/
public void setHypervisor(String hypervisor) {
this.hypervisor = hypervisor;
}
/**
*
* The target hypervisor for the import task.
*
*
* Valid values: xen
*
*
* @return The target hypervisor for the import task.
*
* Valid values: xen
*/
public String getHypervisor() {
return this.hypervisor;
}
/**
*
* The target hypervisor for the import task.
*
*
* Valid values: xen
*
*
* @param hypervisor
* The target hypervisor for the import task.
*
* Valid values: xen
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withHypervisor(String hypervisor) {
setHypervisor(hypervisor);
return this;
}
/**
*
* The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
*
*
* @param imageId
* The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
*/
public void setImageId(String imageId) {
this.imageId = imageId;
}
/**
*
* The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
*
*
* @return The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
*/
public String getImageId() {
return this.imageId;
}
/**
*
* The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
*
*
* @param imageId
* The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withImageId(String imageId) {
setImageId(imageId);
return this;
}
/**
*
* The ID of the import image task.
*
*
* @param importTaskId
* The ID of the import image task.
*/
public void setImportTaskId(String importTaskId) {
this.importTaskId = importTaskId;
}
/**
*
* The ID of the import image task.
*
*
* @return The ID of the import image task.
*/
public String getImportTaskId() {
return this.importTaskId;
}
/**
*
* The ID of the import image task.
*
*
* @param importTaskId
* The ID of the import image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withImportTaskId(String importTaskId) {
setImportTaskId(importTaskId);
return this;
}
/**
*
* The license type of the virtual machine.
*
*
* @param licenseType
* The license type of the virtual machine.
*/
public void setLicenseType(String licenseType) {
this.licenseType = licenseType;
}
/**
*
* The license type of the virtual machine.
*
*
* @return The license type of the virtual machine.
*/
public String getLicenseType() {
return this.licenseType;
}
/**
*
* The license type of the virtual machine.
*
*
* @param licenseType
* The license type of the virtual machine.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withLicenseType(String licenseType) {
setLicenseType(licenseType);
return this;
}
/**
*
* The description string for the import image task.
*
*
* @param platform
* The description string for the import image task.
*/
public void setPlatform(String platform) {
this.platform = platform;
}
/**
*
* The description string for the import image task.
*
*
* @return The description string for the import image task.
*/
public String getPlatform() {
return this.platform;
}
/**
*
* The description string for the import image task.
*
*
* @param platform
* The description string for the import image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withPlatform(String platform) {
setPlatform(platform);
return this;
}
/**
*
* The percentage of progress of the import image task.
*
*
* @param progress
* The percentage of progress of the import image task.
*/
public void setProgress(String progress) {
this.progress = progress;
}
/**
*
* The percentage of progress of the import image task.
*
*
* @return The percentage of progress of the import image task.
*/
public String getProgress() {
return this.progress;
}
/**
*
* The percentage of progress of the import image task.
*
*
* @param progress
* The percentage of progress of the import image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withProgress(String progress) {
setProgress(progress);
return this;
}
/**
*
* Information about the snapshots.
*
*
* @return Information about the snapshots.
*/
public java.util.List getSnapshotDetails() {
if (snapshotDetails == null) {
snapshotDetails = new com.amazonaws.internal.SdkInternalList();
}
return snapshotDetails;
}
/**
*
* Information about the snapshots.
*
*
* @param snapshotDetails
* Information about the snapshots.
*/
public void setSnapshotDetails(java.util.Collection snapshotDetails) {
if (snapshotDetails == null) {
this.snapshotDetails = null;
return;
}
this.snapshotDetails = new com.amazonaws.internal.SdkInternalList(snapshotDetails);
}
/**
*
* Information about the snapshots.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSnapshotDetails(java.util.Collection)} or {@link #withSnapshotDetails(java.util.Collection)} if you
* want to override the existing values.
*
*
* @param snapshotDetails
* Information about the snapshots.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withSnapshotDetails(SnapshotDetail... snapshotDetails) {
if (this.snapshotDetails == null) {
setSnapshotDetails(new com.amazonaws.internal.SdkInternalList(snapshotDetails.length));
}
for (SnapshotDetail ele : snapshotDetails) {
this.snapshotDetails.add(ele);
}
return this;
}
/**
*
* Information about the snapshots.
*
*
* @param snapshotDetails
* Information about the snapshots.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withSnapshotDetails(java.util.Collection snapshotDetails) {
setSnapshotDetails(snapshotDetails);
return this;
}
/**
*
* A brief status for the import image task.
*
*
* @param status
* A brief status for the import image task.
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* A brief status for the import image task.
*
*
* @return A brief status for the import image task.
*/
public String getStatus() {
return this.status;
}
/**
*
* A brief status for the import image task.
*
*
* @param status
* A brief status for the import image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* A descriptive status message for the import image task.
*
*
* @param statusMessage
* A descriptive status message for the import image task.
*/
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
/**
*
* A descriptive status message for the import image task.
*
*
* @return A descriptive status message for the import image task.
*/
public String getStatusMessage() {
return this.statusMessage;
}
/**
*
* A descriptive status message for the import image task.
*
*
* @param statusMessage
* A descriptive status message for the import image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportImageTask withStatusMessage(String statusMessage) {
setStatusMessage(statusMessage);
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 (getArchitecture() != null)
sb.append("Architecture: ").append(getArchitecture()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getHypervisor() != null)
sb.append("Hypervisor: ").append(getHypervisor()).append(",");
if (getImageId() != null)
sb.append("ImageId: ").append(getImageId()).append(",");
if (getImportTaskId() != null)
sb.append("ImportTaskId: ").append(getImportTaskId()).append(",");
if (getLicenseType() != null)
sb.append("LicenseType: ").append(getLicenseType()).append(",");
if (getPlatform() != null)
sb.append("Platform: ").append(getPlatform()).append(",");
if (getProgress() != null)
sb.append("Progress: ").append(getProgress()).append(",");
if (getSnapshotDetails() != null)
sb.append("SnapshotDetails: ").append(getSnapshotDetails()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getStatusMessage() != null)
sb.append("StatusMessage: ").append(getStatusMessage());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ImportImageTask == false)
return false;
ImportImageTask other = (ImportImageTask) obj;
if (other.getArchitecture() == null ^ this.getArchitecture() == null)
return false;
if (other.getArchitecture() != null && other.getArchitecture().equals(this.getArchitecture()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getHypervisor() == null ^ this.getHypervisor() == null)
return false;
if (other.getHypervisor() != null && other.getHypervisor().equals(this.getHypervisor()) == false)
return false;
if (other.getImageId() == null ^ this.getImageId() == null)
return false;
if (other.getImageId() != null && other.getImageId().equals(this.getImageId()) == false)
return false;
if (other.getImportTaskId() == null ^ this.getImportTaskId() == null)
return false;
if (other.getImportTaskId() != null && other.getImportTaskId().equals(this.getImportTaskId()) == false)
return false;
if (other.getLicenseType() == null ^ this.getLicenseType() == null)
return false;
if (other.getLicenseType() != null && other.getLicenseType().equals(this.getLicenseType()) == false)
return false;
if (other.getPlatform() == null ^ this.getPlatform() == null)
return false;
if (other.getPlatform() != null && other.getPlatform().equals(this.getPlatform()) == false)
return false;
if (other.getProgress() == null ^ this.getProgress() == null)
return false;
if (other.getProgress() != null && other.getProgress().equals(this.getProgress()) == false)
return false;
if (other.getSnapshotDetails() == null ^ this.getSnapshotDetails() == null)
return false;
if (other.getSnapshotDetails() != null && other.getSnapshotDetails().equals(this.getSnapshotDetails()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getStatusMessage() == null ^ this.getStatusMessage() == null)
return false;
if (other.getStatusMessage() != null && other.getStatusMessage().equals(this.getStatusMessage()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getArchitecture() == null) ? 0 : getArchitecture().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getHypervisor() == null) ? 0 : getHypervisor().hashCode());
hashCode = prime * hashCode + ((getImageId() == null) ? 0 : getImageId().hashCode());
hashCode = prime * hashCode + ((getImportTaskId() == null) ? 0 : getImportTaskId().hashCode());
hashCode = prime * hashCode + ((getLicenseType() == null) ? 0 : getLicenseType().hashCode());
hashCode = prime * hashCode + ((getPlatform() == null) ? 0 : getPlatform().hashCode());
hashCode = prime * hashCode + ((getProgress() == null) ? 0 : getProgress().hashCode());
hashCode = prime * hashCode + ((getSnapshotDetails() == null) ? 0 : getSnapshotDetails().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode());
return hashCode;
}
@Override
public ImportImageTask clone() {
try {
return (ImportImageTask) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}