class Fog::Compute::Brightbox::Images

Public Instance Methods

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