Class: Fog::Compute::Ecloud::Organizations
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::Organizations
- Defined in:
- lib/fog/compute/ecloud/models/organizations.rb
Instance Method Summary collapse
Methods inherited from Ecloud::Collection
Instance Method Details
#all ⇒ Object
13 14 15 16 |
# File 'lib/fog/compute/ecloud/models/organizations.rb', line 13 def all data = service.get_organizations(organization_uri).body load(data[:Organization]) end |
#get(uri) ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/fog/compute/ecloud/models/organizations.rb', line 18 def get(uri) if data = service.get_organization(uri) new(data.body) end rescue ServiceError => e raise e unless e.status_code == 404 nil end |
#organization_uri ⇒ Object
27 28 29 |
# File 'lib/fog/compute/ecloud/models/organizations.rb', line 27 def organization_uri @organization_uri ||= service.default_organization_uri end |