fog/fog-storm_on_demand

View on GitHub
lib/fog/compute/storm_on_demand/requests/create_server.rb

Summary

Maintainability
A
0 mins
Test Coverage
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