com.amazonaws.services.importexport.model.UpdateJobRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk 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.importexport.model;
import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;
/**
* Container for the parameters to the {@link com.amazonaws.services.importexport.AmazonImportExport#updateJob(UpdateJobRequest) UpdateJob operation}.
*
* You use this operation to change the parameters specified in the
* original manifest file by supplying a new manifest file. The manifest
* file attached to this request replaces the original manifest file. You
* can only use the operation after a CreateJob request but before the
* data transfer starts and you can only use it on jobs you own.
*
*
* @see com.amazonaws.services.importexport.AmazonImportExport#updateJob(UpdateJobRequest)
*/
public class UpdateJobRequest extends AmazonWebServiceRequest implements Serializable {
/**
* A unique identifier which refers to a particular job.
*/
private String jobId;
/**
* The UTF-8 encoded text of the manifest file.
*/
private String manifest;
/**
* Specifies whether the job to initiate is an import or export job.
*
* Constraints:
* Allowed Values: Import, Export
*/
private String jobType;
/**
* Validate the manifest and parameter values in the request but do not
* actually create a job.
*/
private Boolean validateOnly;
/**
* A unique identifier which refers to a particular job.
*
* @return A unique identifier which refers to a particular job.
*/
public String getJobId() {
return jobId;
}
/**
* A unique identifier which refers to a particular job.
*
* @param jobId A unique identifier which refers to a particular job.
*/
public void setJobId(String jobId) {
this.jobId = jobId;
}
/**
* A unique identifier which refers to a particular job.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobId A unique identifier which refers to a particular job.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public UpdateJobRequest withJobId(String jobId) {
this.jobId = jobId;
return this;
}
/**
* The UTF-8 encoded text of the manifest file.
*
* @return The UTF-8 encoded text of the manifest file.
*/
public String getManifest() {
return manifest;
}
/**
* The UTF-8 encoded text of the manifest file.
*
* @param manifest The UTF-8 encoded text of the manifest file.
*/
public void setManifest(String manifest) {
this.manifest = manifest;
}
/**
* The UTF-8 encoded text of the manifest file.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param manifest The UTF-8 encoded text of the manifest file.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public UpdateJobRequest withManifest(String manifest) {
this.manifest = manifest;
return this;
}
/**
* Specifies whether the job to initiate is an import or export job.
*
* Constraints:
* Allowed Values: Import, Export
*
* @return Specifies whether the job to initiate is an import or export job.
*
* @see JobType
*/
public String getJobType() {
return jobType;
}
/**
* Specifies whether the job to initiate is an import or export job.
*
* Constraints:
* Allowed Values: Import, Export
*
* @param jobType Specifies whether the job to initiate is an import or export job.
*
* @see JobType
*/
public void setJobType(String jobType) {
this.jobType = jobType;
}
/**
* Specifies whether the job to initiate is an import or export job.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: Import, Export
*
* @param jobType Specifies whether the job to initiate is an import or export job.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see JobType
*/
public UpdateJobRequest withJobType(String jobType) {
this.jobType = jobType;
return this;
}
/**
* Specifies whether the job to initiate is an import or export job.
*
* Constraints:
* Allowed Values: Import, Export
*
* @param jobType Specifies whether the job to initiate is an import or export job.
*
* @see JobType
*/
public void setJobType(JobType jobType) {
this.jobType = jobType.toString();
}
/**
* Specifies whether the job to initiate is an import or export job.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: Import, Export
*
* @param jobType Specifies whether the job to initiate is an import or export job.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see JobType
*/
public UpdateJobRequest withJobType(JobType jobType) {
this.jobType = jobType.toString();
return this;
}
/**
* Validate the manifest and parameter values in the request but do not
* actually create a job.
*
* @return Validate the manifest and parameter values in the request but do not
* actually create a job.
*/
public Boolean isValidateOnly() {
return validateOnly;
}
/**
* Validate the manifest and parameter values in the request but do not
* actually create a job.
*
* @param validateOnly Validate the manifest and parameter values in the request but do not
* actually create a job.
*/
public void setValidateOnly(Boolean validateOnly) {
this.validateOnly = validateOnly;
}
/**
* Validate the manifest and parameter values in the request but do not
* actually create a job.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param validateOnly Validate the manifest and parameter values in the request but do not
* actually create a job.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public UpdateJobRequest withValidateOnly(Boolean validateOnly) {
this.validateOnly = validateOnly;
return this;
}
/**
* Validate the manifest and parameter values in the request but do not
* actually create a job.
*
* @return Validate the manifest and parameter values in the request but do not
* actually create a job.
*/
public Boolean getValidateOnly() {
return validateOnly;
}
/**
* 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 (getJobId() != null) sb.append("JobId: " + getJobId() + ",");
if (getManifest() != null) sb.append("Manifest: " + getManifest() + ",");
if (getJobType() != null) sb.append("JobType: " + getJobType() + ",");
if (isValidateOnly() != null) sb.append("ValidateOnly: " + isValidateOnly() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getJobId() == null) ? 0 : getJobId().hashCode());
hashCode = prime * hashCode + ((getManifest() == null) ? 0 : getManifest().hashCode());
hashCode = prime * hashCode + ((getJobType() == null) ? 0 : getJobType().hashCode());
hashCode = prime * hashCode + ((isValidateOnly() == null) ? 0 : isValidateOnly().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof UpdateJobRequest == false) return false;
UpdateJobRequest other = (UpdateJobRequest)obj;
if (other.getJobId() == null ^ this.getJobId() == null) return false;
if (other.getJobId() != null && other.getJobId().equals(this.getJobId()) == false) return false;
if (other.getManifest() == null ^ this.getManifest() == null) return false;
if (other.getManifest() != null && other.getManifest().equals(this.getManifest()) == false) return false;
if (other.getJobType() == null ^ this.getJobType() == null) return false;
if (other.getJobType() != null && other.getJobType().equals(this.getJobType()) == false) return false;
if (other.isValidateOnly() == null ^ this.isValidateOnly() == null) return false;
if (other.isValidateOnly() != null && other.isValidateOnly().equals(this.isValidateOnly()) == false) return false;
return true;
}
}