com.databricks.sdk.service.catalog.RunRefreshRequest 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;
/** Queue a metric refresh for a monitor */
@Generated
public class RunRefreshRequest {
/** Full name of the table. */
@JsonIgnore private String tableName;
public RunRefreshRequest setTableName(String tableName) {
this.tableName = tableName;
return this;
}
public String getTableName() {
return tableName;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RunRefreshRequest that = (RunRefreshRequest) o;
return Objects.equals(tableName, that.tableName);
}
@Override
public int hashCode() {
return Objects.hash(tableName);
}
@Override
public String toString() {
return new ToStringer(RunRefreshRequest.class).add("tableName", tableName).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy