-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathtransform.put_transform.json
44 lines (44 loc) · 1.13 KB
/
transform.put_transform.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
44
{
"transform.put_transform": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/put-transform.html",
"description": "Instantiates a transform."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_transform/{transform_id}",
"methods": ["PUT"],
"parts": {
"transform_id": {
"type": "string",
"description": "The id of the new transform."
}
}
}
]
},
"params": {
"defer_validation": {
"type": "boolean",
"required": false,
"description": "If validations should be deferred until transform starts, defaults to false."
},
"timeout": {
"type": "time",
"required": false,
"description": "Controls the time to wait for the transform to start"
}
},
"body": {
"description": "The transform definition",
"required": true
}
}
}