Sha256: 2a692dd12928ab2c217f5fc5e63d0c9427404d53fd55ce6920bc8c1df0bbd426
Contents?: true
Size: 626 Bytes
Versions: 9
Compression:
Stored size: 626 Bytes
Contents
module Fog module Slicehost class Compute class Real require 'fog/compute/parsers/slicehost/get_images' # Get list of images # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'id'<~Integer> - Id of the image # * 'name'<~String> - Name of the image def get_images request( :expects => 200, :method => 'GET', :parser => Fog::Parsers::Slicehost::Compute::GetImages.new, :path => 'images.xml' ) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems