@@ -39,7 +39,7 @@ async def delete_auto_follow_pattern(
39
39
"""
40
40
Deletes auto-follow patterns.
41
41
42
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-delete-auto-follow-pattern.html>`_
42
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-delete-auto-follow-pattern.html>`_
43
43
44
44
:param name: The name of the auto follow pattern.
45
45
"""
@@ -96,7 +96,7 @@ async def follow(
96
96
"""
97
97
Creates a new follower index configured to follow the referenced leader index.
98
98
99
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-put-follow.html>`_
99
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-put-follow.html>`_
100
100
101
101
:param index: The name of the follower index
102
102
:param leader_index:
@@ -180,7 +180,7 @@ async def follow_info(
180
180
Retrieves information about all follower indices, including parameters and status
181
181
for each follower index
182
182
183
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-get-follow-info.html>`_
183
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-get-follow-info.html>`_
184
184
185
185
:param index: A comma-separated list of index patterns; use `_all` to perform
186
186
the operation on all indices
@@ -218,7 +218,7 @@ async def follow_stats(
218
218
Retrieves follower stats. return shard-level stats about the following tasks
219
219
associated with each shard for the specified indices.
220
220
221
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-get-follow-stats.html>`_
221
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-get-follow-stats.html>`_
222
222
223
223
:param index: A comma-separated list of index patterns; use `_all` to perform
224
224
the operation on all indices
@@ -261,7 +261,7 @@ async def forget_follower(
261
261
"""
262
262
Removes the follower retention leases from the leader.
263
263
264
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-post-forget-follower.html>`_
264
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-post-forget-follower.html>`_
265
265
266
266
:param index: the name of the leader index for which specified follower retention
267
267
leases should be removed
@@ -312,7 +312,7 @@ async def get_auto_follow_pattern(
312
312
Gets configured auto-follow patterns. Returns the specified auto-follow pattern
313
313
collection.
314
314
315
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-get-auto-follow-pattern.html>`_
315
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-get-auto-follow-pattern.html>`_
316
316
317
317
:param name: Specifies the auto-follow pattern collection that you want to retrieve.
318
318
If you do not specify a name, the API returns information for all collections.
@@ -350,7 +350,7 @@ async def pause_auto_follow_pattern(
350
350
"""
351
351
Pauses an auto-follow pattern
352
352
353
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-pause-auto-follow-pattern.html>`_
353
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-pause-auto-follow-pattern.html>`_
354
354
355
355
:param name: The name of the auto follow pattern that should pause discovering
356
356
new indices to follow.
@@ -388,7 +388,7 @@ async def pause_follow(
388
388
Pauses a follower index. The follower index will not fetch any additional operations
389
389
from the leader index.
390
390
391
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-post-pause-follow.html>`_
391
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-post-pause-follow.html>`_
392
392
393
393
:param index: The name of the follower index that should pause following its
394
394
leader index.
@@ -452,7 +452,7 @@ async def put_auto_follow_pattern(
452
452
cluster. Newly created indices on the remote cluster matching any of the specified
453
453
patterns will be automatically configured as follower indices.
454
454
455
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-put-auto-follow-pattern.html>`_
455
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-put-auto-follow-pattern.html>`_
456
456
457
457
:param name: The name of the collection of auto-follow patterns.
458
458
:param remote_cluster: The remote cluster containing the leader indices to match
@@ -566,7 +566,7 @@ async def resume_auto_follow_pattern(
566
566
"""
567
567
Resumes an auto-follow pattern that has been paused
568
568
569
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-resume-auto-follow-pattern.html>`_
569
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-resume-auto-follow-pattern.html>`_
570
570
571
571
:param name: The name of the auto follow pattern to resume discovering new indices
572
572
to follow.
@@ -619,7 +619,7 @@ async def resume_follow(
619
619
"""
620
620
Resumes a follower index that has been paused
621
621
622
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-post-resume-follow.html>`_
622
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-post-resume-follow.html>`_
623
623
624
624
:param index: The name of the follow index to resume following.
625
625
:param max_outstanding_read_requests:
@@ -693,7 +693,7 @@ async def stats(
693
693
"""
694
694
Gets all stats related to cross-cluster replication.
695
695
696
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-get-stats.html>`_
696
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-get-stats.html>`_
697
697
"""
698
698
__path = "/_ccr/stats"
699
699
__query : t .Dict [str , t .Any ] = {}
@@ -726,7 +726,7 @@ async def unfollow(
726
726
Stops the following task associated with a follower index and removes index metadata
727
727
and settings associated with cross-cluster replication.
728
728
729
- `<https://www.elastic.co/guide/en/elasticsearch/reference/master /ccr-post-unfollow.html>`_
729
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/8.10 /ccr-post-unfollow.html>`_
730
730
731
731
:param index: The name of the follower index that should be turned into a regular
732
732
index.
0 commit comments