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

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

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 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.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.ExportImageRequestMarshaller;

/**
 * 
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ExportImageRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest {

    /**
     * 

* Token to enable idempotency for export image requests. *

*/ private String clientToken; /** *

* A description of the image being exported. The maximum length is 255 characters. *

*/ private String description; /** *

* The disk image format. *

*/ private String diskImageFormat; /** *

* The ID of the image. *

*/ private String imageId; /** *

* The Amazon S3 bucket for the destination image. The destination bucket must exist. *

*/ private ExportTaskS3LocationRequest s3ExportLocation; /** *

* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If this * parameter is not specified, the default role is named 'vmimport'. *

*/ private String roleName; /** *

* The tags to apply to the export image task during creation. *

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

* Token to enable idempotency for export image requests. *

* * @param clientToken * Token to enable idempotency for export image requests. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* Token to enable idempotency for export image requests. *

* * @return Token to enable idempotency for export image requests. */ public String getClientToken() { return this.clientToken; } /** *

* Token to enable idempotency for export image requests. *

* * @param clientToken * Token to enable idempotency for export image requests. * @return Returns a reference to this object so that method calls can be chained together. */ public ExportImageRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* A description of the image being exported. The maximum length is 255 characters. *

* * @param description * A description of the image being exported. The maximum length is 255 characters. */ public void setDescription(String description) { this.description = description; } /** *

* A description of the image being exported. The maximum length is 255 characters. *

* * @return A description of the image being exported. The maximum length is 255 characters. */ public String getDescription() { return this.description; } /** *

* A description of the image being exported. The maximum length is 255 characters. *

* * @param description * A description of the image being exported. The maximum length is 255 characters. * @return Returns a reference to this object so that method calls can be chained together. */ public ExportImageRequest withDescription(String description) { setDescription(description); return this; } /** *

* The disk image format. *

* * @param diskImageFormat * The disk image format. * @see DiskImageFormat */ public void setDiskImageFormat(String diskImageFormat) { this.diskImageFormat = diskImageFormat; } /** *

* The disk image format. *

* * @return The disk image format. * @see DiskImageFormat */ public String getDiskImageFormat() { return this.diskImageFormat; } /** *

* The disk image format. *

* * @param diskImageFormat * The disk image format. * @return Returns a reference to this object so that method calls can be chained together. * @see DiskImageFormat */ public ExportImageRequest withDiskImageFormat(String diskImageFormat) { setDiskImageFormat(diskImageFormat); return this; } /** *

* The disk image format. *

* * @param diskImageFormat * The disk image format. * @return Returns a reference to this object so that method calls can be chained together. * @see DiskImageFormat */ public ExportImageRequest withDiskImageFormat(DiskImageFormat diskImageFormat) { this.diskImageFormat = diskImageFormat.toString(); 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 ExportImageRequest withImageId(String imageId) { setImageId(imageId); return this; } /** *

* The Amazon S3 bucket for the destination image. The destination bucket must exist. *

* * @param s3ExportLocation * The Amazon S3 bucket for the destination image. The destination bucket must exist. */ public void setS3ExportLocation(ExportTaskS3LocationRequest s3ExportLocation) { this.s3ExportLocation = s3ExportLocation; } /** *

* The Amazon S3 bucket for the destination image. The destination bucket must exist. *

* * @return The Amazon S3 bucket for the destination image. The destination bucket must exist. */ public ExportTaskS3LocationRequest getS3ExportLocation() { return this.s3ExportLocation; } /** *

* The Amazon S3 bucket for the destination image. The destination bucket must exist. *

* * @param s3ExportLocation * The Amazon S3 bucket for the destination image. The destination bucket must exist. * @return Returns a reference to this object so that method calls can be chained together. */ public ExportImageRequest withS3ExportLocation(ExportTaskS3LocationRequest s3ExportLocation) { setS3ExportLocation(s3ExportLocation); return this; } /** *

* The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If this * parameter is not specified, the default role is named 'vmimport'. *

* * @param roleName * The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If * this parameter is not specified, the default role is named 'vmimport'. */ 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. If this * parameter is not specified, the default role is named 'vmimport'. *

* * @return The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. * If this parameter is not specified, the default role is named 'vmimport'. */ 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. If this * parameter is not specified, the default role is named 'vmimport'. *

* * @param roleName * The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If * this parameter is not specified, the default role is named 'vmimport'. * @return Returns a reference to this object so that method calls can be chained together. */ public ExportImageRequest withRoleName(String roleName) { setRoleName(roleName); return this; } /** *

* The tags to apply to the export image task during creation. *

* * @return The tags to apply to the export image task during creation. */ public java.util.List getTagSpecifications() { if (tagSpecifications == null) { tagSpecifications = new com.amazonaws.internal.SdkInternalList(); } return tagSpecifications; } /** *

* The tags to apply to the export image task during creation. *

* * @param tagSpecifications * The tags to apply to the export image task during creation. */ public void setTagSpecifications(java.util.Collection tagSpecifications) { if (tagSpecifications == null) { this.tagSpecifications = null; return; } this.tagSpecifications = new com.amazonaws.internal.SdkInternalList(tagSpecifications); } /** *

* The tags to apply to the export image task during creation. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTagSpecifications(java.util.Collection)} or {@link #withTagSpecifications(java.util.Collection)} if * you want to override the existing values. *

* * @param tagSpecifications * The tags to apply to the export image task during creation. * @return Returns a reference to this object so that method calls can be chained together. */ public ExportImageRequest withTagSpecifications(TagSpecification... tagSpecifications) { if (this.tagSpecifications == null) { setTagSpecifications(new com.amazonaws.internal.SdkInternalList(tagSpecifications.length)); } for (TagSpecification ele : tagSpecifications) { this.tagSpecifications.add(ele); } return this; } /** *

* The tags to apply to the export image task during creation. *

* * @param tagSpecifications * The tags to apply to the export image task during creation. * @return Returns a reference to this object so that method calls can be chained together. */ public ExportImageRequest withTagSpecifications(java.util.Collection tagSpecifications) { setTagSpecifications(tagSpecifications); 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 ExportImageRequestMarshaller().marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } /** * 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 (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getDiskImageFormat() != null) sb.append("DiskImageFormat: ").append(getDiskImageFormat()).append(","); if (getImageId() != null) sb.append("ImageId: ").append(getImageId()).append(","); if (getS3ExportLocation() != null) sb.append("S3ExportLocation: ").append(getS3ExportLocation()).append(","); if (getRoleName() != null) sb.append("RoleName: ").append(getRoleName()).append(","); if (getTagSpecifications() != null) sb.append("TagSpecifications: ").append(getTagSpecifications()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ExportImageRequest == false) return false; ExportImageRequest other = (ExportImageRequest) obj; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == 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.getDiskImageFormat() == null ^ this.getDiskImageFormat() == null) return false; if (other.getDiskImageFormat() != null && other.getDiskImageFormat().equals(this.getDiskImageFormat()) == 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.getS3ExportLocation() == null ^ this.getS3ExportLocation() == null) return false; if (other.getS3ExportLocation() != null && other.getS3ExportLocation().equals(this.getS3ExportLocation()) == 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.getTagSpecifications() == null ^ this.getTagSpecifications() == null) return false; if (other.getTagSpecifications() != null && other.getTagSpecifications().equals(this.getTagSpecifications()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getDiskImageFormat() == null) ? 0 : getDiskImageFormat().hashCode()); hashCode = prime * hashCode + ((getImageId() == null) ? 0 : getImageId().hashCode()); hashCode = prime * hashCode + ((getS3ExportLocation() == null) ? 0 : getS3ExportLocation().hashCode()); hashCode = prime * hashCode + ((getRoleName() == null) ? 0 : getRoleName().hashCode()); hashCode = prime * hashCode + ((getTagSpecifications() == null) ? 0 : getTagSpecifications().hashCode()); return hashCode; } @Override public ExportImageRequest clone() { return (ExportImageRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy