Sha256: 37b1e172ae3a2f08f636edc1b08fdd342a924c718187214343b3d831142740e6
Contents?: true
Size: 501 Bytes
Versions: 26
Compression:
Stored size: 501 Bytes
Contents
module Fog module Brightbox class Compute class Real def list_images(options = {}) request( :expects => [200], :method => 'GET', :path => "/1.0/images", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def list_images(options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
26 entries across 26 versions & 3 rubygems