Class: IControl::Management::UserManagement::UserInfo
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::Management::UserManagement::UserInfo
- Defined in:
- lib/icontrol/management/user_management.rb,
lib/icontrol/management/user_management.rb
Overview
Note: this type is deprecated; please use UserInfo3 and associated methods. (home directory, user id, and group id are now computed by the system) UserInfo is used to store user information.
Instance Attribute Summary (collapse)
-
- (Numeric) group_id
The user's group ID.
-
- (String) home_directory
The user's default home directory.
-
- (String) login_shell
The user's login shell.
-
- (String) password
The user's clear-text password.
-
- (IControl::Management::UserManagement::UserRole) role
The user's role.
-
- (IControl::Management::UserManagement::UserID) user
The user's account information, i.e.
-
- (Numeric) user_id
The user's user ID.
Method Summary
Methods inherited from Base::Struct
from_soap, icontrol_attribute, #to_soap
Instance Attribute Details
- (Numeric) group_id
The user's group ID.
491 492 493 |
# File 'lib/icontrol/management/user_management.rb', line 491 def group_id @group_id end |
- (String) home_directory
The user's default home directory.
491 492 493 |
# File 'lib/icontrol/management/user_management.rb', line 491 def home_directory @home_directory end |
- (String) login_shell
The user's login shell.
491 492 493 |
# File 'lib/icontrol/management/user_management.rb', line 491 def login_shell @login_shell end |
- (String) password
The user's clear-text password.
491 492 493 |
# File 'lib/icontrol/management/user_management.rb', line 491 def password @password end |
- (IControl::Management::UserManagement::UserRole) role
The user's role.
491 492 493 |
# File 'lib/icontrol/management/user_management.rb', line 491 def role @role end |
- (IControl::Management::UserManagement::UserID) user
The user's account information, i.e. name, full name.
491 492 493 |
# File 'lib/icontrol/management/user_management.rb', line 491 def user @user end |
- (Numeric) user_id
The user's user ID.
491 492 493 |
# File 'lib/icontrol/management/user_management.rb', line 491 def user_id @user_id end |