Package com.cloudera.cdp.iam.model
Class UnassignUserRoleRequest
- java.lang.Object
-
- com.cloudera.cdp.iam.model.UnassignUserRoleRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:42.174-08:00") public class UnassignUserRoleRequest extends Object
Request object for an unassign user role request.
-
-
Constructor Summary
Constructors Constructor Description UnassignUserRoleRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getRole()
Getter for role.String
getUser()
Getter for user.int
hashCode()
void
setRole(String role)
Setter for role.void
setUser(String user)
Setter for user.String
toString()
-
-
-
Method Detail
-
getUser
public String getUser()
Getter for user. The user to unassigned the roles from. Can be the user CRN or id.
-
setUser
public void setUser(String user)
Setter for user. The user to unassigned the roles from. Can be the user CRN or id.
-
getRole
public String getRole()
Getter for role. The role to unassigned from the user. Can be the role's CRN or name.
-
setRole
public void setRole(String role)
Setter for role. The role to unassigned from the user. Can be the role's CRN or name.
-
-