I am using org.elasticsearch.client:elasticsearch-rest-high-level-client:7.13.2 as elasticsearch dependency as all the previous versions are quarantined in my organization.
However, am now facing deployment issues due to sonarlint failure on the deprecated methods like
org.elasticsearch.action.delete.DeleteRequest
org.elasticsearch.action.index.IndexRequest
org.elasticsearch.action.update.UpdateRequest
Is there an alternative for the above functions to create/update/delete documents in ES. I did search for this topic but could not find a solution.
TIA