Package com.cloudera.cdp.iam.model
Class UpdateUserRequest
- java.lang.Object
-
- com.cloudera.cdp.iam.model.UpdateUserRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:54.066-07:00") public class UpdateUserRequest extends Object
Request object to update a user.
-
-
Constructor Summary
Constructors Constructor Description UpdateUserRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getActive()
Getter for active.String
getUser()
Getter for user.int
hashCode()
void
setActive(Boolean active)
Setter for active.void
setUser(String user)
Setter for user.String
toString()
-
-
-
Method Detail
-
getUser
public String getUser()
Getter for user. The CRN or userId of the user to be updated.
-
setUser
public void setUser(String user)
Setter for user. The CRN or userId of the user to be updated.
-
getActive
public Boolean getActive()
Getter for active. The active state to which to set the user. When it is 'true', the user will be activated. When it is 'false' the user will be deactivated.
-
setActive
public void setActive(Boolean active)
Setter for active. The active state to which to set the user. When it is 'true', the user will be activated. When it is 'false' the user will be deactivated.
-
-