Improvements to get docs to build

This commit is contained in:
Josh Mock
2024-12-04 11:54:14 -06:00
parent bd5c3d98fa
commit 1fde515fcf
581 changed files with 18074 additions and 26998 deletions

View File

@ -24,17 +24,22 @@
|| ||
===========================================================================================================================
////////
++++
<style>
.lang-ts a.xref {
text-decoration: underline !important;
}
</style>
++++
[discrete]
[[client.danglingIndices.listDanglingIndices]]
=== client.danglingIndices.listDanglingIndices
== client.danglingIndices.listDanglingIndices
Get the dangling indices. If Elasticsearch encounters index data that is absent from the current cluster state, those indices are considered to be dangling. For example, this can happen if you delete more than `cluster.indices.tombstones.size` indices while an Elasticsearch node is offline. Use this API to list dangling indices, which you can then import or delete.
{ref}/modules-gateway-dangling-indices.html[{es} documentation]
[discrete]
==== Function signature
== Function signature
[source,ts]
----
@ -42,31 +47,22 @@ Get the dangling indices. If Elasticsearch encounters index data that is absent
----
[discrete]
==== Request
=== Request
[pass]
++++
<pre>
++++
interface DanglingIndicesListDanglingIndicesRequest extends <<RequestBase>> {
}
[source,ts,subs=+macros]
----
interface DanglingIndicesListDanglingIndicesRequest extends <<RequestBase>> {}
----
[pass]
++++
</pre>
++++
[discrete]
==== Response
=== Response
[pass]
++++
<pre>
++++
[source,ts,subs=+macros]
----
interface DanglingIndicesListDanglingIndicesResponse {
dangling_indices: DanglingIndicesListDanglingIndicesDanglingIndex[]
}
[pass]
++++
</pre>
++++
----