Sha256: 946ee97d7b54ceb1e6623adde514679329e50cddb4acf5355d71f84b8aaa50bb
Contents?: true
Size: 492 Bytes
Versions: 19
Compression:
Stored size: 492 Bytes
Contents
require 'fog/core/collection' require 'fog/compute/models/brightbox/image' module Fog module Brightbox class Compute class Images < Fog::Collection model Fog::Brightbox::Compute::Image def all data = connection.list_images load(data) end def get(identifier) data = connection.get_image(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
19 entries across 19 versions & 3 rubygems