fog/fog-storm_on_demand

View on GitHub
lib/fog/account/storm_on_demand/requests/create_token.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Account
    class StormOnDemand
      class Real
        def create_token(options = {})
          request(
            :path => "/Account/Auth/token",
            :body => Fog::JSON.encode(:params => options)
          )
        end
      end
    end
  end
end