Sha256: c0cb1a40405a311e9dc8a3c763d6602424ef935953e564e960586e059dd4f050
Contents?: true
Size: 664 Bytes
Versions: 7
Compression:
Stored size: 664 Bytes
Contents
require 'fog/core/collection' require 'fog/compute/models/go_grid/image' module Fog module Compute class GoGrid class Images < Fog::Collection model Fog::Compute::GoGrid::Image attribute :server def all data = connection.grid_image_list.body['list'] load(data) if server self.replace(self.select {|image| image.server_id == server.id}) end end def get(image_id) response = connection.grid_image_get.body['list'][image_id] new(data) rescue Fog::Compute::GoGrid::NotFound nil end end end end end
Version data entries
7 entries across 7 versions & 3 rubygems