class Conjur::User
Public Instance Methods
uidnumber()
click to toggle source
Get the user’s uidnumber, which can be used by LDAP and SSH login, among other things.
@return [Fixnum] the uidnumber @raise [RestClient::Forbidden] if you don’t have permission to ‘show` the user.
# File lib/conjur/user.rb, line 30 def uidnumber parser_for(:user_uidnumber, user_attributes) end
Private Instance Methods
user_attributes()
click to toggle source
# File lib/conjur/user.rb, line 36 def user_attributes @user_attributes ||= url_for(:user_attributes, credentials, self, id) end