Class: Fog::Slicehost::Images

Inherits:
Collection show all
Defined in:
lib/fog/slicehost/models/images.rb

Instance Method Summary collapse

Methods inherited from Collection

#_dump, _load, aliases, attribute, attributes, #attributes, #connection, #connection=, #create, #initialize, #inspect, #load, #merge_attributes, #model, model, #new, #reload, #table, #to_json

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



27
28
29
30
# File 'lib/fog/slicehost/models/images.rb', line 27

def all
  data = connection.get_images.body['images']
  load(data)
end

#get(image_id) ⇒ Object



32
33
34
35
36
# File 'lib/fog/slicehost/models/images.rb', line 32

def get(image_id)
  connection.get_image(image_id)
rescue Excon::Errors::Forbidden
  nil
end