module Fog module Compute class StormOnDemand class Real def create_server(options = {}) request( :path => "/Storm/Server/create", :body => Fog::JSON.encode({:params => options}) ) end end end end end