Class: Fog::Compute::Voxel::Images
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Voxel::Images
- Defined in:
- lib/fog/voxel/models/compute/images.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
10 11 12 13 |
# File 'lib/fog/voxel/models/compute/images.rb', line 10 def all data = service.images_list.body['images'] load(data) end |
#get(image_id) ⇒ Object
15 16 17 18 19 20 21 22 23 |
# File 'lib/fog/voxel/models/compute/images.rb', line 15 def get(image_id) data = service.images_list(image_id).body['images'] if data.empty? nil else new(data.first) end end |