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

com.databricks.sdk.service.files.MkDirs 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.files;

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 MkDirs {
  /** The path of the new directory. The path should be the absolute DBFS path. */
  @JsonProperty("path")
  private String path;

  public MkDirs setPath(String path) {
    this.path = path;
    return this;
  }

  public String getPath() {
    return path;
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy