# File lib/fog/network/openstack/requests/create_lb_pool.rb, line 5
        def create_lb_pool(subnet_id, protocol, lb_method, options = {})
          data = {
            'pool' => {
              'subnet_id' => subnet_id,
              'protocol'  => protocol,
              'lb_method' => lb_method
            }
          }

          vanilla_options = [:name, :description, :admin_state_up, :tenant_id]
          vanilla_options.reject { |o| options[o].nil? }.each do |key|
            data['pool'][key] = options[key]
          end

          request(
            :body    => Fog::JSON.encode(data),
            :expects => [201],
            :method  => 'POST',
            :path    => 'lb/pools'
          )
        end