
com.databricks.sdk.service.sql.CreateDashboardRequest Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.sql;
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;
/** Create a dashboard object */
@Generated
public class CreateDashboardRequest {
/**
* Indicates whether this query object should appear in the current user's favorites list. The
* application uses this flag to determine whether or not the "favorite star " should selected.
*/
@JsonProperty("is_favorite")
private Boolean isFavorite;
/**
* The title of this dashboard that appears in list views and at the top of the dashboard page.
*/
@JsonProperty("name")
private String name;
/** The identifier of the workspace folder containing the object. */
@JsonProperty("parent")
private String parent;
/** */
@JsonProperty("tags")
private Collection tags;
public CreateDashboardRequest setIsFavorite(Boolean isFavorite) {
this.isFavorite = isFavorite;
return this;
}
public Boolean getIsFavorite() {
return isFavorite;
}
public CreateDashboardRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return name;
}
public CreateDashboardRequest setParent(String parent) {
this.parent = parent;
return this;
}
public String getParent() {
return parent;
}
public CreateDashboardRequest setTags(Collection tags) {
this.tags = tags;
return this;
}
public Collection getTags() {
return tags;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CreateDashboardRequest that = (CreateDashboardRequest) o;
return Objects.equals(isFavorite, that.isFavorite)
&& Objects.equals(name, that.name)
&& Objects.equals(parent, that.parent)
&& Objects.equals(tags, that.tags);
}
@Override
public int hashCode() {
return Objects.hash(isFavorite, name, parent, tags);
}
@Override
public String toString() {
return new ToStringer(CreateDashboardRequest.class)
.add("isFavorite", isFavorite)
.add("name", name)
.add("parent", parent)
.add("tags", tags)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy