fog/fog-storm_on_demand

View on GitHub
lib/fog/network/storm_on_demand/requests/list_network_ips.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Network
    class StormOnDemand
      class Real
        def list_network_ips(options = {})
          request(
            :path => "/Network/IP/list",
            :body => Fog::JSON.encode(:params => options)
          )
        end
      end
    end
  end
end