com.databricks.sdk.service.jobs.DeleteJob Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.jobs;
import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
@Generated
public class DeleteJob {
/** The canonical identifier of the job to delete. This field is required. */
@JsonProperty("job_id")
private Long jobId;
public DeleteJob setJobId(Long jobId) {
this.jobId = jobId;
return this;
}
public Long getJobId() {
return jobId;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DeleteJob that = (DeleteJob) o;
return Objects.equals(jobId, that.jobId);
}
@Override
public int hashCode() {
return Objects.hash(jobId);
}
@Override
public String toString() {
return new ToStringer(DeleteJob.class).add("jobId", jobId).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy