-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathccr.follow.json
43 lines (43 loc) · 1.35 KB
/
ccr.follow.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
39
40
41
42
43
{
"ccr.follow": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-follow.html",
"description": "Creates a new follower index configured to follow the referenced leader index."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/{index}/_ccr/follow",
"methods": ["PUT"],
"parts": {
"index": {
"type": "string",
"description": "The name of the follower index"
}
}
}
]
},
"params": {
"wait_for_active_shards": {
"type": "string",
"description": "Sets the number of shard copies that must be active before returning. Defaults to 0. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)",
"default": "0"
},
"master_timeout": {
"type": "time",
"description": "Explicit operation timeout for connection to master node"
}
},
"body": {
"description": "The name of the leader index and other optional ccr related parameters",
"required": true
}
}
}