Class: Fog::Compute::IBM::Images
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::IBM::Images
- Defined in:
- lib/fog/ibm/models/compute/images.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
10 11 12 |
# File 'lib/fog/ibm/models/compute/images.rb', line 10 def all load(service.list_images.body['images']) end |
#get(image_id) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/fog/ibm/models/compute/images.rb', line 14 def get(image_id) begin new(service.get_image(image_id).body) rescue Fog::Compute::IBM::NotFound nil end end |