# File lib/fog/baremetal/openstack/requests/get_driver_properties.rb, line 5
        def get_driver_properties(driver_name)
          data = {:driver_name => driver_name}
          request(
            :body    => Fog::JSON.encode(data),
            :expects => [200, 204],
            :method  => 'GET',
            :path    => "drivers/properties"
          )
        end