# File lib/fog/brightbox/models/compute/images.rb, line 12 def all data = service.list_images load(data) end
# File lib/fog/brightbox/models/compute/images.rb, line 17 def get(identifier) data = service.get_image(identifier) new(data) rescue Excon::Errors::NotFound nil end