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