Sha256: 178aaad7191b14e61fe6072960285ce31ba4a8399d487e9b1e5df7ba45982542
Contents?: true
Size: 741 Bytes
Versions: 9
Compression:
Stored size: 741 Bytes
Contents
module Fog module Slicehost class Compute class Real require 'fog/compute/parsers/slicehost/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::Compute::GetImage.new, :path => "images/#{image_id}.xml" ) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems