com.finbourne.scheduler.model.StartScheduleResponse Maven / Gradle / Ivy
/*
* FINBOURNE Scheduler API
* ### Introduction # Error Codes | Code|Name|Description | | ---|---|--- | | -1|Unknown error|An unexpected error was encountered on our side. | | 144|Duplicate In Parameter Set| | | 151|Invalid Parameter Value| | | 152|Action Execution Failure| | | 157|Invalid Request| | | 186|Access Denied| | | 187|Invalid Identity Token| | | 689|The supplied pagination token is invalid| | | 692|This endpoint does not support impersonation| | | 704|Cannot Delete Job| | | 731|Unable to process images associated with request.| | | 756|Image Scan Failure| | | 871|The specified impersonated user does not exist| |
*
* The version of the OpenAPI document: 0.0.932
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.finbourne.scheduler.model;
import java.util.Objects;
import java.util.Arrays;
import com.finbourne.scheduler.model.ResourceId;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Response from a manual run of a schedule
*/
@ApiModel(description = "Response from a manual run of a schedule")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class StartScheduleResponse {
public static final String SERIALIZED_NAME_SCHEDULE_ID = "scheduleId";
@SerializedName(SERIALIZED_NAME_SCHEDULE_ID)
private ResourceId scheduleId;
public static final String SERIALIZED_NAME_JOB_ID = "jobId";
@SerializedName(SERIALIZED_NAME_JOB_ID)
private ResourceId jobId;
public static final String SERIALIZED_NAME_RUN_ID = "runId";
@SerializedName(SERIALIZED_NAME_RUN_ID)
private String runId;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private String status;
public static final String SERIALIZED_NAME_RESULT = "result";
@SerializedName(SERIALIZED_NAME_RESULT)
private String result;
public StartScheduleResponse scheduleId(ResourceId scheduleId) {
this.scheduleId = scheduleId;
return this;
}
/**
* Get scheduleId
* @return scheduleId
**/
@ApiModelProperty(value = "")
public ResourceId getScheduleId() {
return scheduleId;
}
public void setScheduleId(ResourceId scheduleId) {
this.scheduleId = scheduleId;
}
public StartScheduleResponse jobId(ResourceId jobId) {
this.jobId = jobId;
return this;
}
/**
* Get jobId
* @return jobId
**/
@ApiModelProperty(value = "")
public ResourceId getJobId() {
return jobId;
}
public void setJobId(ResourceId jobId) {
this.jobId = jobId;
}
public StartScheduleResponse runId(String runId) {
this.runId = runId;
return this;
}
/**
* Unique RunId of the started schedule
* @return runId
**/
@ApiModelProperty(value = "Unique RunId of the started schedule")
public String getRunId() {
return runId;
}
public void setRunId(String runId) {
this.runId = runId;
}
public StartScheduleResponse status(String status) {
this.status = status;
return this;
}
/**
* Status of the started schedule
* @return status
**/
@ApiModelProperty(value = "Status of the started schedule")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public StartScheduleResponse result(String result) {
this.result = result;
return this;
}
/**
* Link to the result of the job run when completed
* @return result
**/
@ApiModelProperty(value = "Link to the result of the job run when completed")
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
return true;
}
@Override
public int hashCode() {
return super.hashCode();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StartScheduleResponse {\n");
sb.append(" scheduleId: ").append(toIndentedString(scheduleId)).append("\n");
sb.append(" jobId: ").append(toIndentedString(jobId)).append("\n");
sb.append(" runId: ").append(toIndentedString(runId)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" result: ").append(toIndentedString(result)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}