com.databricks.sdk.service.jobs.JobNotificationSettings 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 JobNotificationSettings {
/**
* If true, do not send notifications to recipients specified in `on_failure` if the run is
* canceled.
*/
@JsonProperty("no_alert_for_canceled_runs")
private Boolean noAlertForCanceledRuns;
/**
* If true, do not send notifications to recipients specified in `on_failure` if the run is
* skipped.
*/
@JsonProperty("no_alert_for_skipped_runs")
private Boolean noAlertForSkippedRuns;
public JobNotificationSettings setNoAlertForCanceledRuns(Boolean noAlertForCanceledRuns) {
this.noAlertForCanceledRuns = noAlertForCanceledRuns;
return this;
}
public Boolean getNoAlertForCanceledRuns() {
return noAlertForCanceledRuns;
}
public JobNotificationSettings setNoAlertForSkippedRuns(Boolean noAlertForSkippedRuns) {
this.noAlertForSkippedRuns = noAlertForSkippedRuns;
return this;
}
public Boolean getNoAlertForSkippedRuns() {
return noAlertForSkippedRuns;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
JobNotificationSettings that = (JobNotificationSettings) o;
return Objects.equals(noAlertForCanceledRuns, that.noAlertForCanceledRuns)
&& Objects.equals(noAlertForSkippedRuns, that.noAlertForSkippedRuns);
}
@Override
public int hashCode() {
return Objects.hash(noAlertForCanceledRuns, noAlertForSkippedRuns);
}
@Override
public String toString() {
return new ToStringer(JobNotificationSettings.class)
.add("noAlertForCanceledRuns", noAlertForCanceledRuns)
.add("noAlertForSkippedRuns", noAlertForSkippedRuns)
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy