mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
484 B
Ruby
28 lines
484 B
Ruby
![]() |
require 'fog/core/collection'
|
||
|
require 'fog/ibm/models/compute/image'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class IBM
|
||
|
|
||
|
class Images < Fog::Collection
|
||
|
|
||
|
model Fog::Compute::IBM::Image
|
||
|
|
||
|
def all
|
||
|
load(connection.get_images.body['images'])
|
||
|
end
|
||
|
|
||
|
def get(image_id)
|
||
|
begin
|
||
|
new(connection.get_image(image_id).body)
|
||
|
rescue Fog::Compute::IBM::NotFound
|
||
|
nil
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|