Class: Fog::Compute::Ecloud::Organizations
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::Organizations
- Defined in:
- lib/fog/ecloud/models/compute/organizations.rb
Instance Method Summary collapse
Methods inherited from Ecloud::Collection
Instance Method Details
#all ⇒ Object
13 14 15 16 |
# File 'lib/fog/ecloud/models/compute/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 |
# File 'lib/fog/ecloud/models/compute/organizations.rb', line 18 def get(uri) if data = service.get_organization(uri) new(data.body) end rescue Fog::Errors::NotFound nil end |
#organization_uri ⇒ Object
26 27 28 |
# File 'lib/fog/ecloud/models/compute/organizations.rb', line 26 def organization_uri @organization_uri ||= service.default_organization_uri end |