com.amazonaws.services.ec2.model.ExportImageResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2017-2022 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;
import com.amazonaws.AmazonWebServiceResult;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ExportImageResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* A description of the image being exported.
*
*/
private String description;
/**
*
* The disk image format for the exported image.
*
*/
private String diskImageFormat;
/**
*
* The ID of the export image task.
*
*/
private String exportImageTaskId;
/**
*
* The ID of the image.
*
*/
private String imageId;
/**
*
* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
*
*/
private String roleName;
/**
*
* The percent complete of the export image task.
*
*/
private String progress;
/**
*
* Information about the destination Amazon S3 bucket.
*
*/
private ExportTaskS3Location s3ExportLocation;
/**
*
* The status of the export image task. The possible values are active
, completed
,
* deleting
, and deleted
.
*
*/
private String status;
/**
*
* The status message for the export image task.
*
*/
private String statusMessage;
/**
*
* Any tags assigned to the export image task.
*
*/
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* A description of the image being exported.
*
*
* @param description
* A description of the image being exported.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* A description of the image being exported.
*
*
* @return A description of the image being exported.
*/
public String getDescription() {
return this.description;
}
/**
*
* A description of the image being exported.
*
*
* @param description
* A description of the image being exported.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The disk image format for the exported image.
*
*
* @param diskImageFormat
* The disk image format for the exported image.
* @see DiskImageFormat
*/
public void setDiskImageFormat(String diskImageFormat) {
this.diskImageFormat = diskImageFormat;
}
/**
*
* The disk image format for the exported image.
*
*
* @return The disk image format for the exported image.
* @see DiskImageFormat
*/
public String getDiskImageFormat() {
return this.diskImageFormat;
}
/**
*
* The disk image format for the exported image.
*
*
* @param diskImageFormat
* The disk image format for the exported image.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DiskImageFormat
*/
public ExportImageResult withDiskImageFormat(String diskImageFormat) {
setDiskImageFormat(diskImageFormat);
return this;
}
/**
*
* The disk image format for the exported image.
*
*
* @param diskImageFormat
* The disk image format for the exported image.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DiskImageFormat
*/
public ExportImageResult withDiskImageFormat(DiskImageFormat diskImageFormat) {
this.diskImageFormat = diskImageFormat.toString();
return this;
}
/**
*
* The ID of the export image task.
*
*
* @param exportImageTaskId
* The ID of the export image task.
*/
public void setExportImageTaskId(String exportImageTaskId) {
this.exportImageTaskId = exportImageTaskId;
}
/**
*
* The ID of the export image task.
*
*
* @return The ID of the export image task.
*/
public String getExportImageTaskId() {
return this.exportImageTaskId;
}
/**
*
* The ID of the export image task.
*
*
* @param exportImageTaskId
* The ID of the export image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withExportImageTaskId(String exportImageTaskId) {
setExportImageTaskId(exportImageTaskId);
return this;
}
/**
*
* The ID of the image.
*
*
* @param imageId
* The ID of the image.
*/
public void setImageId(String imageId) {
this.imageId = imageId;
}
/**
*
* The ID of the image.
*
*
* @return The ID of the image.
*/
public String getImageId() {
return this.imageId;
}
/**
*
* The ID of the image.
*
*
* @param imageId
* The ID of the image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withImageId(String imageId) {
setImageId(imageId);
return this;
}
/**
*
* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
*
*
* @param roleName
* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
*/
public void setRoleName(String roleName) {
this.roleName = roleName;
}
/**
*
* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
*
*
* @return The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
*/
public String getRoleName() {
return this.roleName;
}
/**
*
* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
*
*
* @param roleName
* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withRoleName(String roleName) {
setRoleName(roleName);
return this;
}
/**
*
* The percent complete of the export image task.
*
*
* @param progress
* The percent complete of the export image task.
*/
public void setProgress(String progress) {
this.progress = progress;
}
/**
*
* The percent complete of the export image task.
*
*
* @return The percent complete of the export image task.
*/
public String getProgress() {
return this.progress;
}
/**
*
* The percent complete of the export image task.
*
*
* @param progress
* The percent complete of the export image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withProgress(String progress) {
setProgress(progress);
return this;
}
/**
*
* Information about the destination Amazon S3 bucket.
*
*
* @param s3ExportLocation
* Information about the destination Amazon S3 bucket.
*/
public void setS3ExportLocation(ExportTaskS3Location s3ExportLocation) {
this.s3ExportLocation = s3ExportLocation;
}
/**
*
* Information about the destination Amazon S3 bucket.
*
*
* @return Information about the destination Amazon S3 bucket.
*/
public ExportTaskS3Location getS3ExportLocation() {
return this.s3ExportLocation;
}
/**
*
* Information about the destination Amazon S3 bucket.
*
*
* @param s3ExportLocation
* Information about the destination Amazon S3 bucket.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withS3ExportLocation(ExportTaskS3Location s3ExportLocation) {
setS3ExportLocation(s3ExportLocation);
return this;
}
/**
*
* The status of the export image task. The possible values are active
, completed
,
* deleting
, and deleted
.
*
*
* @param status
* The status of the export image task. The possible values are active
, completed
,
* deleting
, and deleted
.
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The status of the export image task. The possible values are active
, completed
,
* deleting
, and deleted
.
*
*
* @return The status of the export image task. The possible values are active
, completed
,
* deleting
, and deleted
.
*/
public String getStatus() {
return this.status;
}
/**
*
* The status of the export image task. The possible values are active
, completed
,
* deleting
, and deleted
.
*
*
* @param status
* The status of the export image task. The possible values are active
, completed
,
* deleting
, and deleted
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The status message for the export image task.
*
*
* @param statusMessage
* The status message for the export image task.
*/
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
/**
*
* The status message for the export image task.
*
*
* @return The status message for the export image task.
*/
public String getStatusMessage() {
return this.statusMessage;
}
/**
*
* The status message for the export image task.
*
*
* @param statusMessage
* The status message for the export image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withStatusMessage(String statusMessage) {
setStatusMessage(statusMessage);
return this;
}
/**
*
* Any tags assigned to the export image task.
*
*
* @return Any tags assigned to the export image task.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalList();
}
return tags;
}
/**
*
* Any tags assigned to the export image task.
*
*
* @param tags
* Any tags assigned to the export image task.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new com.amazonaws.internal.SdkInternalList(tags);
}
/**
*
* Any tags assigned to the export image task.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* Any tags assigned to the export image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withTags(Tag... tags) {
if (this.tags == null) {
setTags(new com.amazonaws.internal.SdkInternalList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* Any tags assigned to the export image task.
*
*
* @param tags
* Any tags assigned to the export image task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ExportImageResult withTags(java.util.Collection tags) {
setTags(tags);
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 (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getDiskImageFormat() != null)
sb.append("DiskImageFormat: ").append(getDiskImageFormat()).append(",");
if (getExportImageTaskId() != null)
sb.append("ExportImageTaskId: ").append(getExportImageTaskId()).append(",");
if (getImageId() != null)
sb.append("ImageId: ").append(getImageId()).append(",");
if (getRoleName() != null)
sb.append("RoleName: ").append(getRoleName()).append(",");
if (getProgress() != null)
sb.append("Progress: ").append(getProgress()).append(",");
if (getS3ExportLocation() != null)
sb.append("S3ExportLocation: ").append(getS3ExportLocation()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getStatusMessage() != null)
sb.append("StatusMessage: ").append(getStatusMessage()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ExportImageResult == false)
return false;
ExportImageResult other = (ExportImageResult) obj;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getDiskImageFormat() == null ^ this.getDiskImageFormat() == null)
return false;
if (other.getDiskImageFormat() != null && other.getDiskImageFormat().equals(this.getDiskImageFormat()) == false)
return false;
if (other.getExportImageTaskId() == null ^ this.getExportImageTaskId() == null)
return false;
if (other.getExportImageTaskId() != null && other.getExportImageTaskId().equals(this.getExportImageTaskId()) == 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.getRoleName() == null ^ this.getRoleName() == null)
return false;
if (other.getRoleName() != null && other.getRoleName().equals(this.getRoleName()) == 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.getS3ExportLocation() == null ^ this.getS3ExportLocation() == null)
return false;
if (other.getS3ExportLocation() != null && other.getS3ExportLocation().equals(this.getS3ExportLocation()) == 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;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == 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 + ((getDiskImageFormat() == null) ? 0 : getDiskImageFormat().hashCode());
hashCode = prime * hashCode + ((getExportImageTaskId() == null) ? 0 : getExportImageTaskId().hashCode());
hashCode = prime * hashCode + ((getImageId() == null) ? 0 : getImageId().hashCode());
hashCode = prime * hashCode + ((getRoleName() == null) ? 0 : getRoleName().hashCode());
hashCode = prime * hashCode + ((getProgress() == null) ? 0 : getProgress().hashCode());
hashCode = prime * hashCode + ((getS3ExportLocation() == null) ? 0 : getS3ExportLocation().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public ExportImageResult clone() {
try {
return (ExportImageResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}