com.databricks.sdk.service.catalog.DeleteTableRequest Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.catalog;
import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.Objects;
/** Delete a table */
@Generated
public class DeleteTableRequest {
/** Full name of the table. */
@JsonIgnore private String fullName;
public DeleteTableRequest setFullName(String fullName) {
this.fullName = fullName;
return this;
}
public String getFullName() {
return fullName;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DeleteTableRequest that = (DeleteTableRequest) o;
return Objects.equals(fullName, that.fullName);
}
@Override
public int hashCode() {
return Objects.hash(fullName);
}
@Override
public String toString() {
return new ToStringer(DeleteTableRequest.class).add("fullName", fullName).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy