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

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

Instance Method Summary collapse

Instance Method Details

#allObject



7
8
9
10
# File 'lib/fog/compute/voxel/models/images.rb', line 7

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

#get(image_id) ⇒ Object



12
13
14
15
16
17
18
19
20
# File 'lib/fog/compute/voxel/models/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