Class: Fog::Identity::OpenStack::Users

Inherits:
Collection
  • Object
show all
Defined in:
lib/rackspace-fog/openstack/models/identity/users.rb

Instance Attribute Summary

Attributes inherited from Collection

#connection

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



12
13
14
15
# File 'lib/rackspace-fog/openstack/models/identity/users.rb', line 12

def all
  tenant_id = tenant.nil? ? nil : tenant.id
  load(connection.list_users(tenant_id).body['users'])
end

#destroy(id) ⇒ Object



23
24
25
26
# File 'lib/rackspace-fog/openstack/models/identity/users.rb', line 23

def destroy(id)
  user = self.find_by_id(id)
  user.destroy
end

#find_by_id(id) ⇒ Object



17
18
19
20
21
# File 'lib/rackspace-fog/openstack/models/identity/users.rb', line 17

def find_by_id(id)
  self.find {|user| user.id == id} ||
    Fog::Identity::OpenStack::User.new(
      connection.get_user_by_id(id).body['user'])
end