summaryrefslogtreecommitdiffstats
path: root/src/commands/client-kill.json
blob: bd0262d4e9957d11bd60422285c9b5c0a0baf804 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
    "KILL": {
        "summary": "Terminates open connections.",
        "complexity": "O(N) where N is the number of client connections",
        "group": "connection",
        "since": "2.4.0",
        "arity": -3,
        "container": "CLIENT",
        "function": "clientCommand",
        "history": [
            [
                "2.8.12",
                "Added new filter format."
            ],
            [
                "2.8.12",
                "`ID` option."
            ],
            [
                "3.2.0",
                "Added `master` type in for `TYPE` option."
            ],
            [
                "5.0.0",
                "Replaced `slave` `TYPE` with `replica`. `slave` still supported for backward compatibility."
            ],
            [
                "6.2.0",
                "`LADDR` option."
            ]
        ],
        "command_flags": [
            "ADMIN",
            "NOSCRIPT",
            "LOADING",
            "STALE",
            "SENTINEL"
        ],
        "acl_categories": [
            "CONNECTION"
        ],
        "arguments": [
            {
                "name": "filter",
                "type": "oneof",
                "arguments": [
                    {
                        "name": "old-format",
                        "display": "ip:port",
                        "type": "string",
                        "deprecated_since": "2.8.12"
                    },
                    {
                        "name": "new-format",
                        "type": "oneof",
                        "multiple": true,
                        "arguments": [
                            {
                                "token": "ID",
                                "name": "client-id",
                                "type": "integer",
                                "optional": true,
                                "since": "2.8.12"
                            },
                            {
                                "token": "TYPE",
                                "name": "client-type",
                                "type": "oneof",
                                "optional": true,
                                "since": "2.8.12",
                                "arguments": [
                                    {
                                        "name": "normal",
                                        "type": "pure-token",
                                        "token": "normal"
                                    },
                                    {
                                        "name": "master",
                                        "type": "pure-token",
                                        "token": "master",
                                        "since": "3.2.0"
                                    },
                                    {
                                        "name": "slave",
                                        "type": "pure-token",
                                        "token": "slave"
                                    },
                                    {
                                        "name": "replica",
                                        "type": "pure-token",
                                        "token": "replica",
                                        "since": "5.0.0"
                                    },
                                    {
                                        "name": "pubsub",
                                        "type": "pure-token",
                                        "token": "pubsub"
                                    }
                                ]
                            },
                            {
                                "token": "USER",
                                "name": "username",
                                "type": "string",
                                "optional": true
                            },
                            {
                                "token": "ADDR",
                                "name": "addr",
                                "display": "ip:port",
                                "type": "string",
                                "optional": true
                            },
                            {
                                "token": "LADDR",
                                "name": "laddr",
                                "display": "ip:port",
                                "type": "string",
                                "optional": true,
                                "since": "6.2.0"
                            },
                            {
                                "token": "SKIPME",
                                "name": "skipme",
                                "type": "oneof",
                                "optional": true,
                                "arguments": [
                                    {
                                        "name": "yes",
                                        "type": "pure-token",
                                        "token": "YES"
                                    },
                                    {
                                        "name": "no",
                                        "type": "pure-token",
                                        "token": "NO"
                                    }
                                ]
                            }
                        ]
                    }
                ]
            }
        ],
        "reply_schema": {
            "oneOf": [
                {
                    "description": "when called in 3 argument format",
                    "const": "OK"
                },
                {
                    "description": "when called in filter/value format, the number of clients killed",
                    "type": "integer",
                    "minimum": 0
                }
            ]
        }
    }
}