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