aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/sentinel-debug.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/sentinel-debug.json')
-rw-r--r--examples/redis-unstable/src/commands/sentinel-debug.json49
1 files changed, 0 insertions, 49 deletions
diff --git a/examples/redis-unstable/src/commands/sentinel-debug.json b/examples/redis-unstable/src/commands/sentinel-debug.json
deleted file mode 100644
index c671ec5..0000000
--- a/examples/redis-unstable/src/commands/sentinel-debug.json
+++ /dev/null
@@ -1,49 +0,0 @@
1{
2 "DEBUG": {
3 "summary": "Lists or updates the current configurable parameters of Redis Sentinel.",
4 "complexity": "O(N) where N is the number of configurable parameters",
5 "group": "sentinel",
6 "since": "7.0.0",
7 "arity": -2,
8 "container": "SENTINEL",
9 "function": "sentinelCommand",
10 "command_flags": [
11 "ADMIN",
12 "SENTINEL",
13 "ONLY_SENTINEL"
14 ],
15 "reply_schema": {
16 "oneOf": [
17 {
18 "description": "The configuration update was successful.",
19 "const": "OK"
20 },
21 {
22 "description": "List of configurable time parameters and their values (milliseconds).",
23 "type": "object",
24 "additionalProperties": {
25 "type": "string"
26 }
27 }
28 ]
29 },
30 "arguments": [
31 {
32 "name": "data",
33 "type": "block",
34 "optional": true,
35 "multiple": true,
36 "arguments": [
37 {
38 "name": "parameter",
39 "type": "string"
40 },
41 {
42 "name": "value",
43 "type": "string"
44 }
45 ]
46 }
47 ]
48 }
49}