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,13 +45,13 @@ Splits an existing index into a new index with more primary shards.
[source,ts]
----
interface IndicesSplitRequest extends <<shared-type-request-base, RequestBase>> {
index: <<shared-type-index-name, IndexName>>
target: <<shared-type-index-name, IndexName>>
master_timeout?: <<shared-type-duration, Duration>>
timeout?: <<shared-type-duration, Duration>>
wait_for_active_shards?: <<shared-type-wait-for-active-shards, WaitForActiveShards>>
aliases?: Record<<<shared-type-index-name, IndexName>>, IndicesAlias>
interface IndicesSplitRequest extends <<RequestBase>> {
index: <<IndexName>>
target: <<IndexName>>
master_timeout?: <<Duration>>
timeout?: <<Duration>>
wait_for_active_shards?: <<WaitForActiveShards>>
aliases?: Record<<<IndexName>>, IndicesAlias>
settings?: Record<string, any>
}
----
@ -64,7 +64,7 @@ interface IndicesSplitRequest extends <<shared-type-request-base, RequestBase>>
interface IndicesSplitResponse {
acknowledged: boolean
shards_acknowledged: boolean
index: <<shared-type-index-name, IndexName>>
index: <<IndexName>>
}
----