All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.databricks.sdk.service.jobs.UpdateJob Maven / Gradle / Ivy

There is a newer version: 0.35.0
Show newest version
// 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.Collection;
import java.util.Objects;

@Generated
public class UpdateJob {
  /**
   * Remove top-level fields in the job settings. Removing nested fields is not supported, except
   * for tasks and job clusters (`tasks/task_1`). This field is optional.
   */
  @JsonProperty("fields_to_remove")
  private Collection fieldsToRemove;

  /** The canonical identifier of the job to update. This field is required. */
  @JsonProperty("job_id")
  private Long jobId;

  /**
   * The new settings for the job.
   *
   * 

Top-level fields specified in `new_settings` are completely replaced, except for arrays * which are merged. That is, new and existing entries are completely replaced based on the * respective key fields, i.e. `task_key` or `job_cluster_key`, while previous entries are kept. * *

Partially updating nested fields is not supported. * *

Changes to the field `JobSettings.timeout_seconds` are applied to active runs. Changes to * other fields are applied to future runs only. */ @JsonProperty("new_settings") private JobSettings newSettings; public UpdateJob setFieldsToRemove(Collection fieldsToRemove) { this.fieldsToRemove = fieldsToRemove; return this; } public Collection getFieldsToRemove() { return fieldsToRemove; } public UpdateJob setJobId(Long jobId) { this.jobId = jobId; return this; } public Long getJobId() { return jobId; } public UpdateJob setNewSettings(JobSettings newSettings) { this.newSettings = newSettings; return this; } public JobSettings getNewSettings() { return newSettings; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; UpdateJob that = (UpdateJob) o; return Objects.equals(fieldsToRemove, that.fieldsToRemove) && Objects.equals(jobId, that.jobId) && Objects.equals(newSettings, that.newSettings); } @Override public int hashCode() { return Objects.hash(fieldsToRemove, jobId, newSettings); } @Override public String toString() { return new ToStringer(UpdateJob.class) .add("fieldsToRemove", fieldsToRemove) .add("jobId", jobId) .add("newSettings", newSettings) .toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy