From dcacc00e3750300617ba6e16eb346713f91a783a Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 22:52:54 +0100 Subject: Remove testing data --- examples/redis-unstable/src/commands/acl-log.json | 90 ----------------------- 1 file changed, 90 deletions(-) delete mode 100644 examples/redis-unstable/src/commands/acl-log.json (limited to 'examples/redis-unstable/src/commands/acl-log.json') 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" - } - ] - } - ] - } -} -- cgit v1.2.3