More iteration on generated docs

This commit is contained in:
Josh Mock
2024-11-19 17:04:50 -06:00
parent 4afd72b173
commit e0372eea89
503 changed files with 11653 additions and 6026 deletions

View File

@ -41,37 +41,47 @@ Creates a new follower index configured to follow the referenced leader index.
----
[discrete]
===== `CcrFollowRequest`
==== CcrFollowRequest
[source,ts]
----
[pass]
++++
<pre>
++++
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_outstanding_read_requests?: number
max_outstanding_write_requests?: number
max_read_request_operation_count?: number
max_read_request_size?: string
max_retry_delay?: <<Duration>>
max_write_buffer_count?: <<long>>
max_write_buffer_count?: number
max_write_buffer_size?: string
max_write_request_operation_count?: <<long>>
max_write_request_operation_count?: number
max_write_request_size?: string
read_poll_timeout?: <<Duration>>
remote_cluster?: string
}
----
[pass]
++++
</pre>
++++
[discrete]
===== `CcrFollowResponse`
==== CcrFollowResponse
[source,ts]
----
[pass]
++++
<pre>
++++
interface CcrFollowResponse {
follow_index_created: boolean
follow_index_shards_acked: boolean
index_following_started: boolean
}
----
[pass]
++++
</pre>
++++