Class: Fog::Compute::CloudSigma::Volumes
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::CloudSigma::Volumes
- Defined in:
- lib/fog/cloudsigma/models/volumes.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
10 11 12 13 14 |
# File 'lib/fog/cloudsigma/models/volumes.rb', line 10 def all resp = service.list_volumes data = resp.body['objects'] load(data) end |
#get(vol_id) ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/fog/cloudsigma/models/volumes.rb', line 16 def get(vol_id) resp = service.get_volume(vol_id) data = resp.body new(data) rescue Fog::CloudSigma::Errors::NotFound return nil end |