com.databricks.sdk.service.sql.GetDbsqlPermissionRequest 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.JsonIgnore;
import java.util.Objects;
/** Get object ACL */
@Generated
public class GetDbsqlPermissionRequest {
/** Object ID. An ACL is returned for the object with this UUID. */
@JsonIgnore private String objectId;
/** The type of object permissions to check. */
@JsonIgnore private ObjectTypePlural objectType;
public GetDbsqlPermissionRequest setObjectId(String objectId) {
this.objectId = objectId;
return this;
}
public String getObjectId() {
return objectId;
}
public GetDbsqlPermissionRequest setObjectType(ObjectTypePlural objectType) {
this.objectType = objectType;
return this;
}
public ObjectTypePlural getObjectType() {
return objectType;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GetDbsqlPermissionRequest that = (GetDbsqlPermissionRequest) o;
return Objects.equals(objectId, that.objectId) && Objects.equals(objectType, that.objectType);
}
@Override
public int hashCode() {
return Objects.hash(objectId, objectType);
}
@Override
public String toString() {
return new ToStringer(GetDbsqlPermissionRequest.class)
.add("objectId", objectId)
.add("objectType", objectType)
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy