Closed
Description
Elastic.Clients.Elasticsearch version: 8.18.0
Elasticsearch version: 8.18.1
.NET runtime version: 8
Description of the problem including expected versus actual behavior:
The property OnRequestDataCreated is missing from the class ElasticsearchClientSettings, but should be available according to the documentation: https://www.elastic.co/docs/reference/elasticsearch/clients/dotnet/_options_on_elasticsearchclientsettings
Steps to reproduce:
This following code should compile, but does not because OnRequestDataCreated does not exist
new ElasticsearchClientSettings().OnRequestDataCreated(request =>
{
// Do something with the request
});