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,14 +45,14 @@ Roll over to a new index. Creates a new index for a data stream or index alias.
[source,ts]
----
interface IndicesRolloverRequest extends <<shared-type-request-base, RequestBase>> {
alias: <<shared-type-index-alias, IndexAlias>>
new_index?: <<shared-type-index-name, IndexName>>
interface IndicesRolloverRequest extends <<RequestBase>> {
alias: <<IndexAlias>>
new_index?: <<IndexName>>
dry_run?: boolean
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>
master_timeout?: <<Duration>>
timeout?: <<Duration>>
wait_for_active_shards?: <<WaitForActiveShards>>
aliases?: Record<<<IndexName>>, IndicesAlias>
conditions?: IndicesRolloverRolloverConditions
mappings?: MappingTypeMapping
settings?: Record<string, any>