fog/fog-storm_on_demand

View on GitHub
lib/fog/storage/storm_on_demand/requests/create_volume.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Storage
    class StormOnDemand
      class Real
        def create_volume(options = {})
          request(
            :path => "/Storage/Block/Volume/create",
            :body => Fog::JSON.encode(:params => options)
          )
        end
      end
    end
  end
end