mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
36 lines
756 B
Ruby
36 lines
756 B
Ruby
module Fog
|
|
module Slicehost
|
|
class Real
|
|
|
|
require 'fog/slicehost/parsers/get_image'
|
|
|
|
# Get details of an image
|
|
#
|
|
# ==== Parameters
|
|
# * image_id<~Integer> - Id of image to lookup
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Array>:
|
|
# * 'id'<~Integer> - Id of the image
|
|
# * 'name'<~String> - Name of the image
|
|
def get_image(image_id)
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::Slicehost::GetImage.new,
|
|
:path => "images/#{image_id}.xml"
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_image(image_id)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|