Config¶
Leafs
-
class
System.Aaa.Authentication.Users.User.
Config
¶ Bases:
Entity
Class Hierarchy:
System
Aaa
Authentication
Users
User
Config
This class represents configuration data.
Configuration data for local users
-
username
¶ Assigned username for this user
type: str
-
password
¶ The user password, supplied as cleartext. The system must hash the value and only store the hashed value
type: str
-
password_hashed
¶ The user password, supplied as a hashed value using the notation described in the definition of the crypt-password-type
type: str
-
ssh_key
¶ SSH public key for the user (RSA or DSA)
type: str
-
role
¶ Role assigned to the user. The role may be supplied as a string or a role defined by the SYSTEM_DEFINED_ROLES identity
type: union of the below types:
type: str
type:
SYSTEMDEFINEDROLES
-