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

com.databricks.sdk.service.jobs.RepairRunResponse 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.Objects;

/** Run repair was initiated. */
@Generated
public class RepairRunResponse {
  /**
   * The ID of the repair. Must be provided in subsequent repairs using the `latest_repair_id` field
   * to ensure sequential repairs.
   */
  @JsonProperty("repair_id")
  private Long repairId;

  public RepairRunResponse setRepairId(Long repairId) {
    this.repairId = repairId;
    return this;
  }

  public Long getRepairId() {
    return repairId;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    RepairRunResponse that = (RepairRunResponse) o;
    return Objects.equals(repairId, that.repairId);
  }

  @Override
  public int hashCode() {
    return Objects.hash(repairId);
  }

  @Override
  public String toString() {
    return new ToStringer(RepairRunResponse.class).add("repairId", repairId).toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy