Class: Fog::Compute::Ecloud::Locations

Inherits:
Ecloud::Collection show all
Defined in:
lib/fog/compute/ecloud/models/locations.rb

Instance Method Summary collapse

Methods inherited from Ecloud::Collection

#check_href!, #load

Instance Method Details

#allObject



13
14
15
16
# File 'lib/fog/compute/ecloud/models/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/compute/ecloud/models/locations.rb', line 18

def get(uri)
  if data = service.get_location(uri)
    new(data.body)
  end
rescue Fog::Errors::NotFound
  nil
end