Skip to content

Commit 4086ea1

Browse files
Update rest-api-spec
1 parent 3c092a8 commit 4086ea1

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

output/schema/schema.json

Lines changed: 24 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.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"security.update_api_key": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-update-api-key.html",
5+
"description": "Updates attributes of an existing API key."
6+
},
7+
"stability": "stable",
8+
"visibility": "public",
9+
"headers": {
10+
"accept": ["application/json"],
11+
"content_type": ["application/json"]
12+
},
13+
"url": {
14+
"paths": [
15+
{
16+
"path": "/_security/api_key/{id}",
17+
"methods": ["PUT"],
18+
"parts": {
19+
"id": {
20+
"type": "string",
21+
"description": "The ID of the API key to update"
22+
}
23+
}
24+
}
25+
]
26+
},
27+
"body": {
28+
"description": "The API key request to update attributes of an API key.",
29+
"required": false
30+
}
31+
}
32+
}

0 commit comments

Comments
 (0)