summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/acl-log.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/acl-log.json')
-rw-r--r--examples/redis-unstable/src/commands/acl-log.json90
1 files changed, 0 insertions, 90 deletions
diff --git a/examples/redis-unstable/src/commands/acl-log.json b/examples/redis-unstable/src/commands/acl-log.json
deleted file mode 100644
index de5f029..0000000
--- a/examples/redis-unstable/src/commands/acl-log.json
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "LOG": {
- "summary": "Lists recent security events generated due to ACL rules.",
- "complexity": "O(N) with N being the number of entries shown.",
- "group": "server",
- "since": "6.0.0",
- "arity": -2,
- "container": "ACL",
- "function": "aclCommand",
- "history": [
- [
- "7.2.0",
- "Added entry ID, timestamp created, and timestamp last updated."
- ]
- ],
- "command_flags": [
- "ADMIN",
- "NOSCRIPT",
- "LOADING",
- "STALE",
- "SENTINEL"
- ],
- "reply_schema": {
- "oneOf": [
- {
- "description": "In case `RESET` was not given, a list of recent ACL security events.",
- "type": "array",
- "items": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "count": {
- "type": "integer"
- },
- "reason": {
- "type": "string"
- },
- "context": {
- "type": "string"
- },
- "object": {
- "type": "string"
- },
- "username": {
- "type": "string"
- },
- "age-seconds": {
- "type": "number"
- },
- "client-info": {
- "type": "string"
- },
- "entry-id": {
- "type": "integer"
- },
- "timestamp-created": {
- "type": "integer"
- },
- "timestamp-last-updated": {
- "type": "integer"
- }
- }
- }
- },
- {
- "const": "OK",
- "description": "In case `RESET` was given, OK indicates ACL log was cleared."
- }
- ]
- },
- "arguments": [
- {
- "name": "operation",
- "type": "oneof",
- "optional": true,
- "arguments": [
- {
- "name": "count",
- "type": "integer"
- },
- {
- "name": "reset",
- "type": "pure-token",
- "token": "RESET"
- }
- ]
- }
- ]
- }
-}