Name: UserAccount

This class represent the local user supported by Role Based Access Control(RBAC).

Data Structure
{
   "typeId": "com.tintri.api.rest.v310.dto.UserAccount",
   "isDeletable": <Boolean>,
   "isDisabled": <Boolean>,
   "lastUpdatedTime": DateTime,
   "localAlias": <String>,
   "name": <String>,
   "password": <String>,
   "id": <String>,
   "role": Role,
   "roleNames": [<String>],
   "uuid": Uuid,
}

Elements
NameTypeDescription
idxsd:stringThe Tintri UUID for the object.
roleRoleReturn the access control role assigned for the user account.
roleNames (wrapped by roleNames)xsd:list[xsd:string]The list of role names that assigned to this user account.
uuidUuidUnique Tintri UUID for the object

Attributes
NameTypeDescription
isDeletablexsd:boolean'True' indicates the account can be deleted. 'False' indicates the account can not be deleted.
isDisabledxsd:boolean'True' indicates the account is disabled. 'False' indicates the account is enabled.
lastUpdatedTimeDateTimeLast time the entity is updated in the format YYYY-MM-DDThh:mm:ss.ms-/+zz:zz
localAliasxsd:stringAlias used for the entity instance in this Tintri API server. If an alias is not set, then localAlias is not returned.
namexsd:stringThe name of the role.
passwordxsd:stringPassword for this user account. Password field is only used when adding or updating user accounts