class Fog::OpenStack::Auth::User

Attributes

password[RW]

Public Instance Methods

identity() click to toggle source
Calls superclass method Fog::OpenStack::Auth::Domain#identity
# File lib/fog/openstack/auth/name.rb, line 56
def identity
  data = super
  raise CredentialsError, "#{self.class}: No password available" if password.nil?
  data.merge!(to_h(:password))
  {:user => data}
end