org.finra.herd.sdk.model.EmrHadoopJarStep Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
/**
* EmrHadoopJarStep
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class EmrHadoopJarStep {
@JsonProperty("id")
private String id = null;
@JsonProperty("namespace")
private String namespace = null;
@JsonProperty("emrClusterDefinitionName")
private String emrClusterDefinitionName = null;
@JsonProperty("emrClusterName")
private String emrClusterName = null;
@JsonProperty("stepName")
private String stepName = null;
@JsonProperty("jarLocation")
private String jarLocation = null;
@JsonProperty("mainClass")
private String mainClass = null;
@JsonProperty("scriptArguments")
private List scriptArguments = null;
@JsonProperty("continueOnError")
private Boolean continueOnError = null;
@JsonProperty("emrClusterId")
private String emrClusterId = null;
public EmrHadoopJarStep id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@ApiModelProperty(required = true, value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public EmrHadoopJarStep namespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* Get namespace
* @return namespace
**/
@ApiModelProperty(required = true, value = "")
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public EmrHadoopJarStep emrClusterDefinitionName(String emrClusterDefinitionName) {
this.emrClusterDefinitionName = emrClusterDefinitionName;
return this;
}
/**
* Get emrClusterDefinitionName
* @return emrClusterDefinitionName
**/
@ApiModelProperty(required = true, value = "")
public String getEmrClusterDefinitionName() {
return emrClusterDefinitionName;
}
public void setEmrClusterDefinitionName(String emrClusterDefinitionName) {
this.emrClusterDefinitionName = emrClusterDefinitionName;
}
public EmrHadoopJarStep emrClusterName(String emrClusterName) {
this.emrClusterName = emrClusterName;
return this;
}
/**
* Get emrClusterName
* @return emrClusterName
**/
@ApiModelProperty(required = true, value = "")
public String getEmrClusterName() {
return emrClusterName;
}
public void setEmrClusterName(String emrClusterName) {
this.emrClusterName = emrClusterName;
}
public EmrHadoopJarStep stepName(String stepName) {
this.stepName = stepName;
return this;
}
/**
* Get stepName
* @return stepName
**/
@ApiModelProperty(required = true, value = "")
public String getStepName() {
return stepName;
}
public void setStepName(String stepName) {
this.stepName = stepName;
}
public EmrHadoopJarStep jarLocation(String jarLocation) {
this.jarLocation = jarLocation;
return this;
}
/**
* Get jarLocation
* @return jarLocation
**/
@ApiModelProperty(required = true, value = "")
public String getJarLocation() {
return jarLocation;
}
public void setJarLocation(String jarLocation) {
this.jarLocation = jarLocation;
}
public EmrHadoopJarStep mainClass(String mainClass) {
this.mainClass = mainClass;
return this;
}
/**
* Get mainClass
* @return mainClass
**/
@ApiModelProperty(value = "")
public String getMainClass() {
return mainClass;
}
public void setMainClass(String mainClass) {
this.mainClass = mainClass;
}
public EmrHadoopJarStep scriptArguments(List scriptArguments) {
this.scriptArguments = scriptArguments;
return this;
}
public EmrHadoopJarStep addScriptArgumentsItem(String scriptArgumentsItem) {
if (this.scriptArguments == null) {
this.scriptArguments = new ArrayList();
}
this.scriptArguments.add(scriptArgumentsItem);
return this;
}
/**
* Get scriptArguments
* @return scriptArguments
**/
@ApiModelProperty(value = "")
public List getScriptArguments() {
return scriptArguments;
}
public void setScriptArguments(List scriptArguments) {
this.scriptArguments = scriptArguments;
}
public EmrHadoopJarStep continueOnError(Boolean continueOnError) {
this.continueOnError = continueOnError;
return this;
}
/**
* Get continueOnError
* @return continueOnError
**/
@ApiModelProperty(value = "")
public Boolean getContinueOnError() {
return continueOnError;
}
public void setContinueOnError(Boolean continueOnError) {
this.continueOnError = continueOnError;
}
public EmrHadoopJarStep emrClusterId(String emrClusterId) {
this.emrClusterId = emrClusterId;
return this;
}
/**
* Get emrClusterId
* @return emrClusterId
**/
@ApiModelProperty(value = "")
public String getEmrClusterId() {
return emrClusterId;
}
public void setEmrClusterId(String emrClusterId) {
this.emrClusterId = emrClusterId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EmrHadoopJarStep emrHadoopJarStep = (EmrHadoopJarStep) o;
return Objects.equals(this.id, emrHadoopJarStep.id) &&
Objects.equals(this.namespace, emrHadoopJarStep.namespace) &&
Objects.equals(this.emrClusterDefinitionName, emrHadoopJarStep.emrClusterDefinitionName) &&
Objects.equals(this.emrClusterName, emrHadoopJarStep.emrClusterName) &&
Objects.equals(this.stepName, emrHadoopJarStep.stepName) &&
Objects.equals(this.jarLocation, emrHadoopJarStep.jarLocation) &&
Objects.equals(this.mainClass, emrHadoopJarStep.mainClass) &&
Objects.equals(this.scriptArguments, emrHadoopJarStep.scriptArguments) &&
Objects.equals(this.continueOnError, emrHadoopJarStep.continueOnError) &&
Objects.equals(this.emrClusterId, emrHadoopJarStep.emrClusterId);
}
@Override
public int hashCode() {
return Objects.hash(id, namespace, emrClusterDefinitionName, emrClusterName, stepName, jarLocation, mainClass, scriptArguments, continueOnError, emrClusterId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmrHadoopJarStep {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" namespace: ").append(toIndentedString(namespace)).append("\n");
sb.append(" emrClusterDefinitionName: ").append(toIndentedString(emrClusterDefinitionName)).append("\n");
sb.append(" emrClusterName: ").append(toIndentedString(emrClusterName)).append("\n");
sb.append(" stepName: ").append(toIndentedString(stepName)).append("\n");
sb.append(" jarLocation: ").append(toIndentedString(jarLocation)).append("\n");
sb.append(" mainClass: ").append(toIndentedString(mainClass)).append("\n");
sb.append(" scriptArguments: ").append(toIndentedString(scriptArguments)).append("\n");
sb.append(" continueOnError: ").append(toIndentedString(continueOnError)).append("\n");
sb.append(" emrClusterId: ").append(toIndentedString(emrClusterId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}