You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Get Mappings API will return the mapping details about your indexes. Depending on the mappings that you wish to retrieve, you can specify one of more indexes:
226
+
=== GET Mappings API
227
+
228
+
The GET Mappings API returns the mapping details about your indices. Depending
229
+
on the mappings that you wish to retrieve, you can specify one of more indices:
There are a number of other APIs in the indices namespace that allow you to manage your elasticsearch indexes (add/remove templates, flush segments, close indexes, etc).
234
248
235
-
If you use an IDE with autocompletion, you should be able to easily explore the indices namespace by typing:
249
+
=== Other APIs in the indices namespace
250
+
251
+
There are a number of other APIs in the indices namespace that allow you to
252
+
manage your {es} indices (add/remove templates, flush segments, close indices,
253
+
etc).
254
+
255
+
If you use an IDE with autocompletion, you should be able to easily explore the
256
+
indices namespace by typing:
236
257
237
258
[source,php]
238
259
----
239
260
$client->indices()->
240
261
----
241
-
And perusing the list of available methods. Alternatively, browsing the `\Elasticsearch\Namespaces\Indices.php` file will show you the full list of available method calls (as well as parameter lists in the comments for each method).
262
+
263
+
And perusing the list of available methods. Alternatively, browsing the
264
+
`\Elasticsearch\Namespaces\Indices.php` file shows you the full list of
265
+
available method calls (as well as parameter lists in the comments for each
0 commit comments