aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/auth.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/auth.json')
-rw-r--r--examples/redis-unstable/src/commands/auth.json43
1 files changed, 0 insertions, 43 deletions
diff --git a/examples/redis-unstable/src/commands/auth.json b/examples/redis-unstable/src/commands/auth.json
deleted file mode 100644
index 3b1ba35..0000000
--- a/examples/redis-unstable/src/commands/auth.json
+++ /dev/null
@@ -1,43 +0,0 @@
1{
2 "AUTH": {
3 "summary": "Authenticates the connection.",
4 "complexity": "O(N) where N is the number of passwords defined for the user",
5 "group": "connection",
6 "since": "1.0.0",
7 "arity": -2,
8 "function": "authCommand",
9 "history": [
10 [
11 "6.0.0",
12 "Added ACL style (username and password)."
13 ]
14 ],
15 "command_flags": [
16 "NOSCRIPT",
17 "LOADING",
18 "STALE",
19 "FAST",
20 "NO_AUTH",
21 "SENTINEL",
22 "ALLOW_BUSY"
23 ],
24 "acl_categories": [
25 "CONNECTION"
26 ],
27 "reply_schema": {
28 "const": "OK"
29 },
30 "arguments": [
31 {
32 "name": "username",
33 "type": "string",
34 "optional": true,
35 "since": "6.0.0"
36 },
37 {
38 "name": "password",
39 "type": "string"
40 }
41 ]
42 }
43}