Skip to content

Commit

Permalink
Add missing ES|QL, data stream, inference, and PKI security specifica…
Browse files Browse the repository at this point in the history
…tions (#119472)
  • Loading branch information
lcawl authored Jan 3, 2025
1 parent c62ee88 commit 1329a9a
Show file tree
Hide file tree
Showing 4 changed files with 119 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"esql.async_query_delete": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/esql-async-query-delete-api.html",
"description": "Delete an async query request given its ID."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_query/async/{id}",
"methods": ["DELETE"],
"parts": {
"id": {
"type": "string",
"description": "The async query ID"
}
}
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"indices.get_data_lifecycle_stats": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams-get-lifecycle-stats.html",
"description": "Get data stream lifecycle statistics."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_lifecycle/stats",
"methods": ["GET"]
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"inference.update": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/update-inference-api.html",
"description": "Update inference"
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_inference/{inference_id}/_update",
"methods": ["POST"],
"parts": {
"inference_id": {
"type": "string",
"description": "The inference Id"
}
}
},
{
"path": "/_inference/{task_type}/{inference_id}/_update",
"methods": ["POST"],
"parts": {
"task_type": {
"type": "string",
"description": "The task type"
},
"inference_id": {
"type": "string",
"description": "The inference Id"
}
}
}
]
},
"body": {
"description": "The inference endpoint's task and service settings"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"security.delegate_pki": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/security-api-delegate-pki-authentication.html",
"description": "Delegate PKI authentication."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_security/delegate_pki",
"methods": ["POST"]
}
]
},
"params": {},
"body": {
"description":"The X509Certificate chain.",
"required":true
}
}
}

0 comments on commit 1329a9a

Please sign in to comment.