summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/sentinel-replicas.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/sentinel-replicas.json')
-rw-r--r--examples/redis-unstable/src/commands/sentinel-replicas.json32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/redis-unstable/src/commands/sentinel-replicas.json b/examples/redis-unstable/src/commands/sentinel-replicas.json
deleted file mode 100644
index 09d88f2..0000000
--- a/examples/redis-unstable/src/commands/sentinel-replicas.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "REPLICAS": {
- "summary": "Returns a list of the monitored Redis replicas.",
- "complexity": "O(N) where N is the number of replicas",
- "group": "sentinel",
- "since": "5.0.0",
- "arity": 3,
- "container": "SENTINEL",
- "function": "sentinelCommand",
- "command_flags": [
- "ADMIN",
- "SENTINEL",
- "ONLY_SENTINEL"
- ],
- "reply_schema": {
- "type": "array",
- "description": "List of replicas for this master, and their state.",
- "items": {
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- }
- },
- "arguments": [
- {
- "name": "master-name",
- "type": "string"
- }
- ]
- }
-}