class Fog::Compute::Voxel::Images

Public Instance Methods

all() click to toggle source
# File lib/fog/compute/voxel/images.rb, line 7
def all
  data = service.images_list.body['images']
  load(data)
end
get(image_id) click to toggle source
# File lib/fog/compute/voxel/images.rb, line 12
def get(image_id)
  data = service.images_list(image_id).body['images']

  if data.empty?
    nil
  else
    new(data.first)
  end
end