1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/brightbox/models/compute/images.rb

28 lines
492 B
Ruby

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 = 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