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,20 +45,20 @@ Creates a new follower index configured to follow the referenced leader index.
[source,ts]
----
interface CcrFollowRequest extends <<shared-type-request-base, RequestBase>> {
index: <<shared-type-index-name, IndexName>>
wait_for_active_shards?: <<shared-type-wait-for-active-shards, WaitForActiveShards>>
leader_index?: <<shared-type-index-name, IndexName>>
max_outstanding_read_requests?: <<shared-type-long, long>>
max_outstanding_write_requests?: <<shared-type-long, long>>
max_read_request_operation_count?: <<shared-type-long, long>>
interface CcrFollowRequest extends <<RequestBase>> {
index: <<IndexName>>
wait_for_active_shards?: <<WaitForActiveShards>>
leader_index?: <<IndexName>>
max_outstanding_read_requests?: <<long>>
max_outstanding_write_requests?: <<long>>
max_read_request_operation_count?: <<long>>
max_read_request_size?: string
max_retry_delay?: <<shared-type-duration, Duration>>
max_write_buffer_count?: <<shared-type-long, long>>
max_retry_delay?: <<Duration>>
max_write_buffer_count?: <<long>>
max_write_buffer_size?: string
max_write_request_operation_count?: <<shared-type-long, long>>
max_write_request_operation_count?: <<long>>
max_write_request_size?: string
read_poll_timeout?: <<shared-type-duration, Duration>>
read_poll_timeout?: <<Duration>>
remote_cluster?: string
}
----