com.databricks.sdk.service.settings.PartitionId Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.settings;
import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/** Partition by workspace or account */
@Generated
public class PartitionId {
/** The ID of the workspace. */
@JsonProperty("workspaceId")
private Long workspaceId;
public PartitionId 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;
PartitionId that = (PartitionId) o;
return Objects.equals(workspaceId, that.workspaceId);
}
@Override
public int hashCode() {
return Objects.hash(workspaceId);
}
@Override
public String toString() {
return new ToStringer(PartitionId.class).add("workspaceId", workspaceId).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy