-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathconnector.delete.json
39 lines (39 loc) · 1.04 KB
/
connector.delete.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
{
"connector.delete": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-connector-api.html",
"description": "Deletes a connector."
},
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_connector/{connector_id}",
"methods": ["DELETE"],
"parts": {
"connector_id": {
"type": "string",
"description": "The unique identifier of the connector to be deleted."
}
}
}
]
},
"params": {
"hard": {
"type": "boolean",
"default": false,
"description": "If true, the connector doc is deleted. If false, connector doc is marked as deleted (soft-deleted)."
},
"delete_sync_jobs": {
"type": "boolean",
"default": false,
"description": "Determines whether associated sync jobs are also deleted."
}
}
}
}