Skip to content

Commit ba8f107

Browse files
committed
Add _connector API definition
1 parent de45840 commit ba8f107

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+8364
-1043
lines changed

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 2848 additions & 1043 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 3679 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 319 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"connector.check_in": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/enterprise-search/current/connectors.html",
5+
"description": "Updates the last_seen timestamp in the connector document."
6+
},
7+
"stability": "experimental",
8+
"visibility": "public",
9+
"headers": {
10+
"accept": ["application/json"]
11+
},
12+
"url": {
13+
"paths": [
14+
{
15+
"path": "/_connector/{connector_id}/_check_in",
16+
"methods": ["PUT"],
17+
"parts": {
18+
"connector_id": {
19+
"type": "string",
20+
"description": "The unique identifier of the connector to be updated."
21+
}
22+
}
23+
}
24+
]
25+
}
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"connector.delete": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/enterprise-search/current/connectors.html",
5+
"description": "Deletes a connector."
6+
},
7+
"stability": "experimental",
8+
"visibility": "public",
9+
"headers": {
10+
"accept": ["application/json"]
11+
},
12+
"url": {
13+
"paths": [
14+
{
15+
"path": "/_connector/{connector_id}",
16+
"methods": ["DELETE"],
17+
"parts": {
18+
"connector_id": {
19+
"type": "string",
20+
"description": "The unique identifier of the connector to be deleted."
21+
}
22+
}
23+
}
24+
]
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)