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

com.databricks.sdk.service.pipelines.GetUpdateResponse Maven / Gradle / Ivy

There is a newer version: 0.38.0
Show newest version
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.pipelines;

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 GetUpdateResponse {
  /** The current update info. */
  @JsonProperty("update")
  private UpdateInfo update;

  public GetUpdateResponse setUpdate(UpdateInfo update) {
    this.update = update;
    return this;
  }

  public UpdateInfo getUpdate() {
    return update;
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy