-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathccr.put_auto_follow_pattern.json
38 lines (38 loc) · 1.15 KB
/
ccr.put_auto_follow_pattern.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.put_auto_follow_pattern": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-auto-follow-pattern.html",
"description": "Creates a new named collection of auto-follow patterns against a specified remote cluster. Newly created indices on the remote cluster matching any of the specified patterns will be automatically configured as follower indices."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_ccr/auto_follow/{name}",
"methods": ["PUT"],
"parts": {
"name": {
"type": "string",
"description": "The name of the auto follow pattern."
}
}
}
]
},
"params": {
"master_timeout": {
"type": "time",
"description": "Explicit operation timeout for connection to master node"
}
},
"body": {
"description": "The specification of the auto follow pattern",
"required": true
}
}
}