Class: Fog::Compute::Ecloud::Users
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::Users
- Defined in:
- lib/fog/compute/ecloud/models/users.rb
Instance Method Summary collapse
Methods inherited from Ecloud::Collection
Instance Method Details
#all ⇒ Object
11 12 13 14 |
# File 'lib/fog/compute/ecloud/models/users.rb', line 11 def all data = service.get_users(href).body[:User] load(data) end |
#get(uri) ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/fog/compute/ecloud/models/users.rb', line 16 def get(uri) if data = service.get_user(uri) new(data.body) end rescue ServiceError => e raise e unless e.status_code == 404 nil end |