With ES8 java client to get index
client.indices().get(c -> c.index(name).features(...))
I didn't find the method corresponding to the following param:
features
(Optional, string) Return information about specific index features. Supports comma- separated values. Valid values are aliases , mappings , and settings . Defaults to aliases,mappings,settings .
Ref: Get index API | Elasticsearch Guide [8.2] | Elastic
Maybe I miss sth? Please advice.
Thank you !