-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathccr.forget_follower.json
38 lines (38 loc) · 1.15 KB
/
ccr.forget_follower.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"ccr.forget_follower": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-forget-follower.html",
"description": "Removes the follower retention leases from the leader."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/{index}/_ccr/forget_follower",
"methods": ["POST"],
"parts": {
"index": {
"type": "string",
"description": "the name of the leader index for which specified follower retention leases should be removed"
}
}
}
]
},
"params": {
"timeout": {
"type": "time",
"description": "Explicit operation timeout"
}
},
"body": {
"description": "the name and UUID of the follower index, the name of the cluster containing the follower index, and the alias from the perspective of that cluster for the remote cluster containing the leader index",
"required": true
}
}
}