Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 34 additions & 7 deletions content/operate/rs/references/rest-api/api-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -874,13 +874,6 @@
"pattern": "^[a-zA-Z0-9_ \\[\\]()@,.;#-]+$",
"type": "string"
},
"permissions": {
"description": "Explicit permissions for this role. If not specified, permissions are inherited from the management role.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources that restrict this role's access to specific resources.",
"items": {
Expand Down Expand Up @@ -1907,6 +1900,40 @@
"x-stability-level": "stable"
}
},
"/v1/ocsp/test": {
"post": {
"description": "Manually query the OCSP responder and return the parsed status",
"operationId": "cluster_test_ocsp_status",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OcspStatus"
}
}
},
"description": "OCSP status"
},
"500": {
"$ref": "#/components/responses/cluster_InternalServerError"
}
},
"security": [
{
"Auth": [
"test_ocsp_status"
]
}
],
"summary": "Test OCSP status",
"tags": [
"Cluster"
],
"x-publish-docs": true,
"x-stability-level": "stable"
}
},
"/v1/redis_acls": {
"get": {
"description": "Get all Redis ACLs in the cluster",
Expand Down