diff --git a/output/schema/schema.json b/output/schema/schema.json index fca0f8cd9a..577bacd64a 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -19866,6 +19866,34 @@ } ] }, + { + "availability": { + "stack": { + "stability": "stable", + "visibility": "public" + } + }, + "description": "Get security statistics for all nodes", + "docUrl": "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-get-stats", + "name": "security.get_stats", + "request": null, + "requestBodyRequired": false, + "requestMediaType": [ + "application/json" + ], + "response": null, + "responseMediaType": [ + "application/json" + ], + "urls": [ + { + "methods": [ + "GET" + ], + "path": "/_security/stats" + } + ] + }, { "availability": { "serverless": { diff --git a/specification/_json_spec/security.get_stats.json b/specification/_json_spec/security.get_stats.json new file mode 100644 index 0000000000..fa0f6e8b51 --- /dev/null +++ b/specification/_json_spec/security.get_stats.json @@ -0,0 +1,23 @@ +{ + "security.get_stats": { + "documentation": { + "url": "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-get-stats", + "description": "Get security statistics for all nodes" + }, + "stability": "stable", + "visibility": "public", + "headers": { + "accept": ["application/json"], + "content_type": ["application/json"] + }, + "url": { + "paths": [ + { + "path": "/_security/stats", + "methods": ["GET"] + } + ] + }, + "params": {} + } +}