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

com.databricks.sdk.service.compute.CloneCluster 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.compute;

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 CloneCluster {
  /** The cluster that is being cloned. */
  @JsonProperty("source_cluster_id")
  private String sourceClusterId;

  public CloneCluster setSourceClusterId(String sourceClusterId) {
    this.sourceClusterId = sourceClusterId;
    return this;
  }

  public String getSourceClusterId() {
    return sourceClusterId;
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy