valkey/src/commands/acl-list.json

31 lines
758 B
JSON

{
"LIST": {
"summary": "Dumps the effective rules in ACL file format.",
"complexity": "O(N). Where N is the number of configured users.",
"group": "server",
"since": "6.0.0",
"arity": 2,
"container": "ACL",
"function": "aclCommand",
"command_flags": [
"ADMIN",
"NOSCRIPT",
"LOADING",
"STALE",
"SENTINEL"
],
"reply_schema": {
"type": "array",
"description": "A list of currently active ACL rules.",
"items": {
"type": "string"
}
},
"acl_categories": [
"ADMIN",
"DANGEROUS",
"SLOW"
]
}
}