Class: Fog::Compute::Voxel::Images

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/voxel/models/compute/images.rb

Instance Method Summary collapse

Instance Method Details

#allObject



12
13
14
15
# File 'lib/fog/voxel/models/compute/images.rb', line 12

def all
  data = service.images_list.body['images']
  load(data)
end

#get(image_id) ⇒ Object



17
18
19
20
21
22
23
24
25
# 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