mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
441 B
Ruby
26 lines
441 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/serverlove/models/compute/image'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Serverlove
|
|
|
|
class Images < Fog::Collection
|
|
|
|
model Fog::Compute::Serverlove::Image
|
|
|
|
def all
|
|
data = service.get_images.body
|
|
load(data)
|
|
end
|
|
|
|
def get(image_id)
|
|
data = service.get_image(image_id).body
|
|
new(data)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|