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

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

Instance Attribute Summary

Attributes inherited from Collection

#service

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 Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

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

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



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

def all
  load(service.list_users(tenant_id).body['users'])
end

#destroy(id) ⇒ Object



25
26
27
28
# File 'lib/fog/openstack/models/identity/users.rb', line 25

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

#find_by_id(id) ⇒ Object



16
17
18
19
20
21
22
23
# File 'lib/fog/openstack/models/identity/users.rb', line 16

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