mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
680 B
Ruby
34 lines
680 B
Ruby
|
require 'fog/core/collection'
|
||
|
require 'fog/openstack/models/compute/image'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class OpenStack
|
||
|
|
||
|
class Images < Fog::Collection
|
||
|
|
||
|
model Fog::Compute::OpenStack::Image
|
||
|
|
||
|
attribute :server
|
||
|
|
||
|
def all
|
||
|
data = connection.list_images_detail.body['images']
|
||
|
load(data)
|
||
|
if server
|
||
|
self.replace(self.select {|image| image.server_id == server.id})
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def get(image_id)
|
||
|
data = connection.get_image_details(image_id).body['image']
|
||
|
new(data)
|
||
|
rescue Fog::Compute::OpenStack::NotFound
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|