Use section headers for shared types

This commit is contained in:
Josh Mock
2024-11-19 12:23:01 -06:00
parent 6151aab208
commit ab21735b57
469 changed files with 2639 additions and 2850 deletions

View File

@ -45,12 +45,12 @@ Retrieves information about the indexs current lifecycle state, such as the c
[source,ts]
----
interface IlmExplainLifecycleRequest extends <<shared-type-request-base, RequestBase>> {
index: <<shared-type-index-name, IndexName>>
interface IlmExplainLifecycleRequest extends <<RequestBase>> {
index: <<IndexName>>
only_errors?: boolean
only_managed?: boolean
master_timeout?: <<shared-type-duration, Duration>>
timeout?: <<shared-type-duration, Duration>>
master_timeout?: <<Duration>>
timeout?: <<Duration>>
}
----
@ -60,7 +60,7 @@ interface IlmExplainLifecycleRequest extends <<shared-type-request-base, Request
[source,ts]
----
interface IlmExplainLifecycleResponse {
indices: Record<<<shared-type-index-name, IndexName>>, IlmExplainLifecycleLifecycleExplain>
indices: Record<<<IndexName>>, IlmExplainLifecycleLifecycleExplain>
}
----