-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathconnector.list.json
54 lines (54 loc) · 1.59 KB
/
connector.list.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
{
"connector.list": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/list-connector-api.html",
"description": "Lists all connectors."
},
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_connector",
"methods": ["GET"]
}
]
},
"params": {
"from": {
"type": "int",
"default": 0,
"description": "Starting offset (default: 0)"
},
"size": {
"type": "int",
"default": 100,
"description": "Specifies a max number of results to get (default: 100)"
},
"index_name": {
"type": "list",
"description": "A comma-separated list of connector index names to fetch connector documents for"
},
"connector_name": {
"type": "list",
"description": "A comma-separated list of connector names to fetch connector documents for"
},
"service_type": {
"type": "list",
"description": "A comma-separated list of connector service types to fetch connector documents for"
},
"query": {
"type": "string",
"description": "A search string for querying connectors, filtering results by matching against connector names, descriptions, and index names"
},
"include_deleted": {
"type": "boolean",
"default": false,
"description": "A flag indicating whether to return connectors that have been soft-deleted."
}
}
}
}