com.databricks.sdk.service.billing.CreateBillingUsageDashboardRequest Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.billing;
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 CreateBillingUsageDashboardRequest {
/**
* Workspace level usage dashboard shows usage data for the specified workspace ID. Global level
* usage dashboard shows usage data for all workspaces in the account.
*/
@JsonProperty("dashboard_type")
private UsageDashboardType dashboardType;
/** The workspace ID of the workspace in which the usage dashboard is created. */
@JsonProperty("workspace_id")
private Long workspaceId;
public CreateBillingUsageDashboardRequest setDashboardType(UsageDashboardType dashboardType) {
this.dashboardType = dashboardType;
return this;
}
public UsageDashboardType getDashboardType() {
return dashboardType;
}
public CreateBillingUsageDashboardRequest setWorkspaceId(Long workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public Long getWorkspaceId() {
return workspaceId;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CreateBillingUsageDashboardRequest that = (CreateBillingUsageDashboardRequest) o;
return Objects.equals(dashboardType, that.dashboardType)
&& Objects.equals(workspaceId, that.workspaceId);
}
@Override
public int hashCode() {
return Objects.hash(dashboardType, workspaceId);
}
@Override
public String toString() {
return new ToStringer(CreateBillingUsageDashboardRequest.class)
.add("dashboardType", dashboardType)
.add("workspaceId", workspaceId)
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy