71 lines
4.4 KiB
Plaintext
71 lines
4.4 KiB
Plaintext
[[reference-ccr-resume_follow]]
|
|
|
|
////////
|
|
===========================================================================================================================
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
|
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
|
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
|
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
|
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
|
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
|
|| ||
|
|
|| ||
|
|
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|
|
|| You should update the script that does the generation, which can be found in: ||
|
|
|| https://github.com/elastic/elastic-client-generator-js ||
|
|
|| ||
|
|
|| You can run the script with the following command: ||
|
|
|| npm run elasticsearch -- --version <version> ||
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
===========================================================================================================================
|
|
////////
|
|
|
|
[discrete]
|
|
=== client.ccr.resumeFollow
|
|
|
|
Resumes a follower index that has been paused
|
|
|
|
{ref}/ccr-post-resume-follow.html[{es} documentation]
|
|
|
|
[discrete]
|
|
==== Function signature
|
|
|
|
[source,ts]
|
|
----
|
|
(CcrResumeFollowRequest, options?): Promise<CcrResumeFollowResponse>
|
|
----
|
|
|
|
[discrete]
|
|
===== `CcrResumeFollowRequest`
|
|
|
|
[source,ts]
|
|
----
|
|
interface CcrResumeFollowRequest extends <<shared-type-request-base, RequestBase>> {
|
|
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>>
|
|
max_read_request_size?: string
|
|
max_retry_delay?: <<shared-type-duration, Duration>>
|
|
max_write_buffer_count?: <<shared-type-long, long>>
|
|
max_write_buffer_size?: string
|
|
max_write_request_operation_count?: <<shared-type-long, long>>
|
|
max_write_request_size?: string
|
|
read_poll_timeout?: <<shared-type-duration, Duration>>
|
|
}
|
|
----
|
|
|
|
[discrete]
|
|
===== `CcrResumeFollowResponse`
|
|
|
|
[source,ts]
|
|
----
|
|
type CcrResumeFollowResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
|
|
----
|
|
|