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