com.amazonaws.services.lakeformation.model.PrincipalResourcePermissions Maven / Gradle / Ivy
Show all versions of aws-java-sdk-lakeformation Show documentation
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.lakeformation.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The permissions granted or revoked on a resource.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class PrincipalResourcePermissions implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Data Lake principal to be granted or revoked permissions.
*
*/
private DataLakePrincipal principal;
/**
*
* The resource where permissions are to be granted or revoked.
*
*/
private Resource resource;
/**
*
* The permissions to be granted or revoked on the resource.
*
*/
private java.util.List permissions;
/**
*
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
*
*/
private java.util.List permissionsWithGrantOption;
/**
*
* This attribute can be used to return any additional details of PrincipalResourcePermissions
.
* Currently returns only as a RAM resource share ARN.
*
*/
private DetailsMap additionalDetails;
/**
*
* The date and time when the resource was last updated.
*
*/
private java.util.Date lastUpdated;
/**
*
* The user who updated the record.
*
*/
private String lastUpdatedBy;
/**
*
* The Data Lake principal to be granted or revoked permissions.
*
*
* @param principal
* The Data Lake principal to be granted or revoked permissions.
*/
public void setPrincipal(DataLakePrincipal principal) {
this.principal = principal;
}
/**
*
* The Data Lake principal to be granted or revoked permissions.
*
*
* @return The Data Lake principal to be granted or revoked permissions.
*/
public DataLakePrincipal getPrincipal() {
return this.principal;
}
/**
*
* The Data Lake principal to be granted or revoked permissions.
*
*
* @param principal
* The Data Lake principal to be granted or revoked permissions.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PrincipalResourcePermissions withPrincipal(DataLakePrincipal principal) {
setPrincipal(principal);
return this;
}
/**
*
* The resource where permissions are to be granted or revoked.
*
*
* @param resource
* The resource where permissions are to be granted or revoked.
*/
public void setResource(Resource resource) {
this.resource = resource;
}
/**
*
* The resource where permissions are to be granted or revoked.
*
*
* @return The resource where permissions are to be granted or revoked.
*/
public Resource getResource() {
return this.resource;
}
/**
*
* The resource where permissions are to be granted or revoked.
*
*
* @param resource
* The resource where permissions are to be granted or revoked.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PrincipalResourcePermissions withResource(Resource resource) {
setResource(resource);
return this;
}
/**
*
* The permissions to be granted or revoked on the resource.
*
*
* @return The permissions to be granted or revoked on the resource.
* @see Permission
*/
public java.util.List getPermissions() {
return permissions;
}
/**
*
* The permissions to be granted or revoked on the resource.
*
*
* @param permissions
* The permissions to be granted or revoked on the resource.
* @see Permission
*/
public void setPermissions(java.util.Collection permissions) {
if (permissions == null) {
this.permissions = null;
return;
}
this.permissions = new java.util.ArrayList(permissions);
}
/**
*
* The permissions to be granted or revoked on the resource.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPermissions(java.util.Collection)} or {@link #withPermissions(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param permissions
* The permissions to be granted or revoked on the resource.
* @return Returns a reference to this object so that method calls can be chained together.
* @see Permission
*/
public PrincipalResourcePermissions withPermissions(String... permissions) {
if (this.permissions == null) {
setPermissions(new java.util.ArrayList(permissions.length));
}
for (String ele : permissions) {
this.permissions.add(ele);
}
return this;
}
/**
*
* The permissions to be granted or revoked on the resource.
*
*
* @param permissions
* The permissions to be granted or revoked on the resource.
* @return Returns a reference to this object so that method calls can be chained together.
* @see Permission
*/
public PrincipalResourcePermissions withPermissions(java.util.Collection permissions) {
setPermissions(permissions);
return this;
}
/**
*
* The permissions to be granted or revoked on the resource.
*
*
* @param permissions
* The permissions to be granted or revoked on the resource.
* @return Returns a reference to this object so that method calls can be chained together.
* @see Permission
*/
public PrincipalResourcePermissions withPermissions(Permission... permissions) {
java.util.ArrayList permissionsCopy = new java.util.ArrayList(permissions.length);
for (Permission value : permissions) {
permissionsCopy.add(value.toString());
}
if (getPermissions() == null) {
setPermissions(permissionsCopy);
} else {
getPermissions().addAll(permissionsCopy);
}
return this;
}
/**
*
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
*
*
* @return Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
* @see Permission
*/
public java.util.List getPermissionsWithGrantOption() {
return permissionsWithGrantOption;
}
/**
*
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
*
*
* @param permissionsWithGrantOption
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
* @see Permission
*/
public void setPermissionsWithGrantOption(java.util.Collection permissionsWithGrantOption) {
if (permissionsWithGrantOption == null) {
this.permissionsWithGrantOption = null;
return;
}
this.permissionsWithGrantOption = new java.util.ArrayList(permissionsWithGrantOption);
}
/**
*
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPermissionsWithGrantOption(java.util.Collection)} or
* {@link #withPermissionsWithGrantOption(java.util.Collection)} if you want to override the existing values.
*
*
* @param permissionsWithGrantOption
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
* @return Returns a reference to this object so that method calls can be chained together.
* @see Permission
*/
public PrincipalResourcePermissions withPermissionsWithGrantOption(String... permissionsWithGrantOption) {
if (this.permissionsWithGrantOption == null) {
setPermissionsWithGrantOption(new java.util.ArrayList(permissionsWithGrantOption.length));
}
for (String ele : permissionsWithGrantOption) {
this.permissionsWithGrantOption.add(ele);
}
return this;
}
/**
*
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
*
*
* @param permissionsWithGrantOption
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
* @return Returns a reference to this object so that method calls can be chained together.
* @see Permission
*/
public PrincipalResourcePermissions withPermissionsWithGrantOption(java.util.Collection permissionsWithGrantOption) {
setPermissionsWithGrantOption(permissionsWithGrantOption);
return this;
}
/**
*
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
*
*
* @param permissionsWithGrantOption
* Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).
* @return Returns a reference to this object so that method calls can be chained together.
* @see Permission
*/
public PrincipalResourcePermissions withPermissionsWithGrantOption(Permission... permissionsWithGrantOption) {
java.util.ArrayList permissionsWithGrantOptionCopy = new java.util.ArrayList(permissionsWithGrantOption.length);
for (Permission value : permissionsWithGrantOption) {
permissionsWithGrantOptionCopy.add(value.toString());
}
if (getPermissionsWithGrantOption() == null) {
setPermissionsWithGrantOption(permissionsWithGrantOptionCopy);
} else {
getPermissionsWithGrantOption().addAll(permissionsWithGrantOptionCopy);
}
return this;
}
/**
*
* This attribute can be used to return any additional details of PrincipalResourcePermissions
.
* Currently returns only as a RAM resource share ARN.
*
*
* @param additionalDetails
* This attribute can be used to return any additional details of PrincipalResourcePermissions
.
* Currently returns only as a RAM resource share ARN.
*/
public void setAdditionalDetails(DetailsMap additionalDetails) {
this.additionalDetails = additionalDetails;
}
/**
*
* This attribute can be used to return any additional details of PrincipalResourcePermissions
.
* Currently returns only as a RAM resource share ARN.
*
*
* @return This attribute can be used to return any additional details of PrincipalResourcePermissions
.
* Currently returns only as a RAM resource share ARN.
*/
public DetailsMap getAdditionalDetails() {
return this.additionalDetails;
}
/**
*
* This attribute can be used to return any additional details of PrincipalResourcePermissions
.
* Currently returns only as a RAM resource share ARN.
*
*
* @param additionalDetails
* This attribute can be used to return any additional details of PrincipalResourcePermissions
.
* Currently returns only as a RAM resource share ARN.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PrincipalResourcePermissions withAdditionalDetails(DetailsMap additionalDetails) {
setAdditionalDetails(additionalDetails);
return this;
}
/**
*
* The date and time when the resource was last updated.
*
*
* @param lastUpdated
* The date and time when the resource was last updated.
*/
public void setLastUpdated(java.util.Date lastUpdated) {
this.lastUpdated = lastUpdated;
}
/**
*
* The date and time when the resource was last updated.
*
*
* @return The date and time when the resource was last updated.
*/
public java.util.Date getLastUpdated() {
return this.lastUpdated;
}
/**
*
* The date and time when the resource was last updated.
*
*
* @param lastUpdated
* The date and time when the resource was last updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PrincipalResourcePermissions withLastUpdated(java.util.Date lastUpdated) {
setLastUpdated(lastUpdated);
return this;
}
/**
*
* The user who updated the record.
*
*
* @param lastUpdatedBy
* The user who updated the record.
*/
public void setLastUpdatedBy(String lastUpdatedBy) {
this.lastUpdatedBy = lastUpdatedBy;
}
/**
*
* The user who updated the record.
*
*
* @return The user who updated the record.
*/
public String getLastUpdatedBy() {
return this.lastUpdatedBy;
}
/**
*
* The user who updated the record.
*
*
* @param lastUpdatedBy
* The user who updated the record.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PrincipalResourcePermissions withLastUpdatedBy(String lastUpdatedBy) {
setLastUpdatedBy(lastUpdatedBy);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getPrincipal() != null)
sb.append("Principal: ").append(getPrincipal()).append(",");
if (getResource() != null)
sb.append("Resource: ").append(getResource()).append(",");
if (getPermissions() != null)
sb.append("Permissions: ").append(getPermissions()).append(",");
if (getPermissionsWithGrantOption() != null)
sb.append("PermissionsWithGrantOption: ").append(getPermissionsWithGrantOption()).append(",");
if (getAdditionalDetails() != null)
sb.append("AdditionalDetails: ").append(getAdditionalDetails()).append(",");
if (getLastUpdated() != null)
sb.append("LastUpdated: ").append(getLastUpdated()).append(",");
if (getLastUpdatedBy() != null)
sb.append("LastUpdatedBy: ").append(getLastUpdatedBy());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof PrincipalResourcePermissions == false)
return false;
PrincipalResourcePermissions other = (PrincipalResourcePermissions) obj;
if (other.getPrincipal() == null ^ this.getPrincipal() == null)
return false;
if (other.getPrincipal() != null && other.getPrincipal().equals(this.getPrincipal()) == false)
return false;
if (other.getResource() == null ^ this.getResource() == null)
return false;
if (other.getResource() != null && other.getResource().equals(this.getResource()) == false)
return false;
if (other.getPermissions() == null ^ this.getPermissions() == null)
return false;
if (other.getPermissions() != null && other.getPermissions().equals(this.getPermissions()) == false)
return false;
if (other.getPermissionsWithGrantOption() == null ^ this.getPermissionsWithGrantOption() == null)
return false;
if (other.getPermissionsWithGrantOption() != null && other.getPermissionsWithGrantOption().equals(this.getPermissionsWithGrantOption()) == false)
return false;
if (other.getAdditionalDetails() == null ^ this.getAdditionalDetails() == null)
return false;
if (other.getAdditionalDetails() != null && other.getAdditionalDetails().equals(this.getAdditionalDetails()) == false)
return false;
if (other.getLastUpdated() == null ^ this.getLastUpdated() == null)
return false;
if (other.getLastUpdated() != null && other.getLastUpdated().equals(this.getLastUpdated()) == false)
return false;
if (other.getLastUpdatedBy() == null ^ this.getLastUpdatedBy() == null)
return false;
if (other.getLastUpdatedBy() != null && other.getLastUpdatedBy().equals(this.getLastUpdatedBy()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPrincipal() == null) ? 0 : getPrincipal().hashCode());
hashCode = prime * hashCode + ((getResource() == null) ? 0 : getResource().hashCode());
hashCode = prime * hashCode + ((getPermissions() == null) ? 0 : getPermissions().hashCode());
hashCode = prime * hashCode + ((getPermissionsWithGrantOption() == null) ? 0 : getPermissionsWithGrantOption().hashCode());
hashCode = prime * hashCode + ((getAdditionalDetails() == null) ? 0 : getAdditionalDetails().hashCode());
hashCode = prime * hashCode + ((getLastUpdated() == null) ? 0 : getLastUpdated().hashCode());
hashCode = prime * hashCode + ((getLastUpdatedBy() == null) ? 0 : getLastUpdatedBy().hashCode());
return hashCode;
}
@Override
public PrincipalResourcePermissions clone() {
try {
return (PrincipalResourcePermissions) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.lakeformation.model.transform.PrincipalResourcePermissionsMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}