Class: Fog::Compute::Ecloud::Locations
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::Locations
- Defined in:
- lib/fog/ecloud/models/compute/locations.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/locations.rb', line 13 def all data = service.get_organization(href).body[:Locations][:Location] load(data) end |
#get(uri) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/fog/ecloud/models/compute/locations.rb', line 18 def get(uri) if data = service.get_location(uri) new(data.body) end rescue Fog::Errors::NotFound nil end |