Sha256: 053d0db6d7f9bdca8645154a805b6fd777cf787939e38e08fab8de7a10b4af70
Contents?: true
Size: 680 Bytes
Versions: 36
Compression:
Stored size: 680 Bytes
Contents
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
Version data entries
36 entries across 36 versions & 13 rubygems