summaryrefslogtreecommitdiff
path: root/src/commands/acl-dryrun.json
blob: bee6a6aac5900b4cfa86666ddc8ac76e6d77bc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
    "DRYRUN": {
        "summary": "Simulates the execution of a command by a user, without executing the command.",
        "complexity": "O(1).",
        "group": "server",
        "since": "7.0.0",
        "arity": -4,
        "container": "ACL",
        "function": "aclCommand",
        "history": [],
        "command_flags": [
            "ADMIN",
            "NOSCRIPT",
            "LOADING",
            "STALE",
            "SENTINEL"
        ],
        "reply_schema": {
            "anyOf": [
                {
                    "const": "OK",
                    "description": "The given user may successfully execute the given command."
                },
                {
                    "type": "string",
                    "description": "The description of the problem, in case the user is not allowed to run the given command."
                }
            ]
        },
        "arguments": [
            {
                "name": "username",
                "type": "string"
            },
            {
                "name": "command",
                "type": "string"
            },
            {
                "name": "arg",
                "type": "string",
                "optional": true,
                "multiple": true
            }
        ]
    }
}