Method: Fog::Identity::OpenStack::User#update

Defined in:
lib/fog/openstack/models/identity/user.rb

#update(options = {}) ⇒ Object


31
32
33
34
35
36
# File 'lib/fog/openstack/models/identity/user.rb', line 31

def update(options = {})
  requires :id
  options.merge('id' => id)
  response = connection.update_user(id, options)
  true
end