We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba52a22 commit cb985aaCopy full SHA for cb985aa
docs/reference/alias.asciidoc
@@ -407,3 +407,24 @@ POST _aliases
407
}
408
----
409
// TEST[s/^/PUT my-index-2099.05.06-000001\n/]
410
+
411
+[discrete]
412
+[[remove-index]]
413
+=== Remove an index
414
415
+To remove an index, use the aliases API's `remove_index` action.
416
417
+[source,console]
418
+----
419
+POST _aliases
420
+{
421
+ "actions": [
422
+ {
423
+ "remove_index": {
424
+ "index": "my-index-2099.05.06-000001"
425
+ }
426
427
+ ]
428
+}
429
430
+// TEST[s/^/PUT my-index-2099.05.06-000001\n/]
0 commit comments