2013-05-06 17:57:15 -04:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/hp/models/compute_v2/image'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class HPV2
|
|
|
|
|
|
|
|
class Images < Fog::Collection
|
|
|
|
|
2013-05-30 13:56:24 -04:00
|
|
|
attribute :filters
|
|
|
|
|
2013-05-06 17:57:15 -04:00
|
|
|
model Fog::Compute::HPV2::Image
|
|
|
|
|
2013-05-30 13:56:24 -04:00
|
|
|
def initialize(attributes)
|
|
|
|
self.filters ||= {}
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def all(filters = filters)
|
|
|
|
details = filters.delete(:details)
|
|
|
|
self.filters = filters
|
|
|
|
non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters)
|
|
|
|
if details
|
|
|
|
data = service.list_images_detail(non_aliased_filters).body['images']
|
|
|
|
else
|
|
|
|
data = service.list_images(non_aliased_filters).body['images']
|
|
|
|
end
|
2013-05-06 17:57:15 -04:00
|
|
|
load(data)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(image_id)
|
|
|
|
data = service.get_image_details(image_id).body['image']
|
|
|
|
new(data)
|
|
|
|
rescue Fog::Compute::HPV2::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|