| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | --:api: get-index:request: GetIndexRequest:response: GetIndexResponse--[id="{upid}-{api}"][[java-rest-high-get-index]]=== Get Index API[id="{upid}-{api}-request"]==== Get Index RequestA +{request}+ requires one or more `index` arguments:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request]--------------------------------------------------<1> The index whose information we want to retrieve==== Optional argumentsThe following arguments can optionally be provided:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-includeDefaults]--------------------------------------------------<1> If true, defaults will be returned for settings not explicitly set on the index["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-indicesOptions]--------------------------------------------------<1> Setting `IndicesOptions` controls how unavailable indices are resolved andhow wildcard expressions are expandedinclude::../execution.asciidoc[][id="{upid}-{api}-response"]==== Get Index ResponseThe returned +{response}+ allows to retrieve information about theexecuted operation as follows:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-response]--------------------------------------------------<1> Retrieve a Map of different types to `MappingMetadata` for `index`.<2> Retrieve a Map for the properties for document type `doc`.<3> Get the list of aliases for `index`.<4> Get the value for the setting string `index.number_of_shards` for `index`. If the setting was not explicitlyspecified but was part of the default settings (and includeDefault was `true`) then the default setting would beretrieved.<5> Retrieve all settings for `index`.<6> The `Settings` objects gives more flexibility. Here it is used to extract the setting `index.number_of_shards` as aninteger.<7> Get the default setting `index.refresh_interval` (if `includeDefault` was set to `true`). If `includeDefault` was setto `false`, `getIndexResponse.defaultSettings()` will return an empty map.
 |