Class: Fog::Identity::OpenStack::Users
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Identity::OpenStack::Users
- Defined in:
- lib/fog/openstack/models/identity/users.rb
Instance Attribute Summary
Attributes inherited from Collection
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
#all ⇒ Object
12 13 14 |
# File 'lib/fog/openstack/models/identity/users.rb', line 12 def all load(connection.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 |