Class: Fog::Compute::ProfitBricks::Regions
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::ProfitBricks::Regions
- Defined in:
- lib/fog/profitbricks/models/compute/regions.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
10 11 12 |
# File 'lib/fog/profitbricks/models/compute/regions.rb', line 10 def all() load (service.get_all_locations.body['getAllLocationsResponse']) end |
#get(id) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/fog/profitbricks/models/compute/regions.rb', line 14 def get(id) region = service.get_location(id).body['getLocationResponse'] Excon::Errors new(region) rescue Excon::Errors::NotFound nil end |