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,11 +45,11 @@ Removes the follower retention leases from the leader.
[source,ts]
----
interface CcrForgetFollowerRequest extends <<shared-type-request-base, RequestBase>> {
index: <<shared-type-index-name, IndexName>>
interface CcrForgetFollowerRequest extends <<RequestBase>> {
index: <<IndexName>>
follower_cluster?: string
follower_index?: <<shared-type-index-name, IndexName>>
follower_index_uuid?: <<shared-type-uuid, Uuid>>
follower_index?: <<IndexName>>
follower_index_uuid?: <<Uuid>>
leader_remote_cluster?: string
}
----
@ -60,7 +60,7 @@ interface CcrForgetFollowerRequest extends <<shared-type-request-base, RequestBa
[source,ts]
----
interface CcrForgetFollowerResponse {
_shards: <<shared-type-shard-statistics, ShardStatistics>>
_shards: <<ShardStatistics>>
}
----