Class: IControl::Management::UserManagement::PasswordInfo

Inherits:
Base::Struct
  • Object
show all
Defined in:
lib/icontrol/management/user_management.rb,
lib/icontrol/management/user_management.rb

Overview

The user’s password.

Instance Attribute Summary collapse

Instance Attribute Details

#is_encryptedObject

The flag indicating whether the password is encrypted or not.

Returns:

  • (Object)

    the current value of is_encrypted



466
467
468
# File 'lib/icontrol/management/user_management.rb', line 466

def is_encrypted
  @is_encrypted
end

#passwordString

The user’s password. If “is_encrypted” is true, this password should be encrypted using crypt(3).

Returns:

  • (String)

    the current value of password



466
467
468
# File 'lib/icontrol/management/user_management.rb', line 466

def password
  @password
end