Methods

Class/Module Index [+]

Quicksearch

Fog::Compute::Voxel::Images

Public Instance Methods

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

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

[Validate]

Generated with the Darkfish Rdoc Generator 2.