com.databricks.sdk.service.compute.ListClustersResponse Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.compute;
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 ListClustersResponse {
/** */
@JsonProperty("clusters")
private Collection clusters;
public ListClustersResponse setClusters(Collection clusters) {
this.clusters = clusters;
return this;
}
public Collection getClusters() {
return clusters;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ListClustersResponse that = (ListClustersResponse) o;
return Objects.equals(clusters, that.clusters);
}
@Override
public int hashCode() {
return Objects.hash(clusters);
}
@Override
public String toString() {
return new ToStringer(ListClustersResponse.class).add("clusters", clusters).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy