-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathtransform.get_transform.json
54 lines (54 loc) · 1.58 KB
/
transform.get_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
45
46
47
48
49
50
51
52
53
54
{
"transform.get_transform": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/get-transform.html",
"description": "Retrieves configuration information for transforms."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_transform/{transform_id}",
"methods": ["GET"],
"parts": {
"transform_id": {
"type": "string",
"description": "The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms"
}
}
},
{
"path": "/_transform",
"methods": ["GET"]
}
]
},
"params": {
"from": {
"type": "int",
"required": false,
"description": "skips a number of transform configs, defaults to 0"
},
"size": {
"type": "int",
"required": false,
"description": "specifies a max number of transforms to get, defaults to 100"
},
"allow_no_match": {
"type": "boolean",
"required": false,
"description": "Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)"
},
"exclude_generated": {
"required": false,
"type": "boolean",
"default": false,
"description": "Omits fields that are illegal to set on transform PUT"
}
}
}
}