org.finra.herd.sdk.model.RunOozieWorkflowRequest 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;
import org.finra.herd.sdk.model.Parameter;
/**
* RunOozieWorkflowRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class RunOozieWorkflowRequest {
@JsonProperty("namespace")
private String namespace = null;
@JsonProperty("emrClusterDefinitionName")
private String emrClusterDefinitionName = null;
@JsonProperty("emrClusterName")
private String emrClusterName = null;
@JsonProperty("workflowLocation")
private String workflowLocation = null;
@JsonProperty("parameters")
private List parameters = null;
@JsonProperty("emrClusterId")
private String emrClusterId = null;
@JsonProperty("accountId")
private String accountId = null;
public RunOozieWorkflowRequest 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 RunOozieWorkflowRequest 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 RunOozieWorkflowRequest 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 RunOozieWorkflowRequest workflowLocation(String workflowLocation) {
this.workflowLocation = workflowLocation;
return this;
}
/**
* Get workflowLocation
* @return workflowLocation
**/
@ApiModelProperty(required = true, value = "")
public String getWorkflowLocation() {
return workflowLocation;
}
public void setWorkflowLocation(String workflowLocation) {
this.workflowLocation = workflowLocation;
}
public RunOozieWorkflowRequest parameters(List parameters) {
this.parameters = parameters;
return this;
}
public RunOozieWorkflowRequest addParametersItem(Parameter parametersItem) {
if (this.parameters == null) {
this.parameters = new ArrayList();
}
this.parameters.add(parametersItem);
return this;
}
/**
* Get parameters
* @return parameters
**/
@ApiModelProperty(value = "")
public List getParameters() {
return parameters;
}
public void setParameters(List parameters) {
this.parameters = parameters;
}
public RunOozieWorkflowRequest 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;
}
public RunOozieWorkflowRequest accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* Get accountId
* @return accountId
**/
@ApiModelProperty(value = "")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RunOozieWorkflowRequest runOozieWorkflowRequest = (RunOozieWorkflowRequest) o;
return Objects.equals(this.namespace, runOozieWorkflowRequest.namespace) &&
Objects.equals(this.emrClusterDefinitionName, runOozieWorkflowRequest.emrClusterDefinitionName) &&
Objects.equals(this.emrClusterName, runOozieWorkflowRequest.emrClusterName) &&
Objects.equals(this.workflowLocation, runOozieWorkflowRequest.workflowLocation) &&
Objects.equals(this.parameters, runOozieWorkflowRequest.parameters) &&
Objects.equals(this.emrClusterId, runOozieWorkflowRequest.emrClusterId) &&
Objects.equals(this.accountId, runOozieWorkflowRequest.accountId);
}
@Override
public int hashCode() {
return Objects.hash(namespace, emrClusterDefinitionName, emrClusterName, workflowLocation, parameters, emrClusterId, accountId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RunOozieWorkflowRequest {\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(" workflowLocation: ").append(toIndentedString(workflowLocation)).append("\n");
sb.append(" parameters: ").append(toIndentedString(parameters)).append("\n");
sb.append(" emrClusterId: ").append(toIndentedString(emrClusterId)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).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 ");
}
}