diff options
Diffstat (limited to 'src/commands/sentinel-myid.json')
-rw-r--r-- | src/commands/sentinel-myid.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/commands/sentinel-myid.json b/src/commands/sentinel-myid.json new file mode 100644 index 0000000..4d366eb --- /dev/null +++ b/src/commands/sentinel-myid.json @@ -0,0 +1,20 @@ +{ + "MYID": { + "summary": "Returns the Redis Sentinel instance ID.", + "complexity": "O(1)", + "group": "sentinel", + "since": "6.2.0", + "arity": 2, + "container": "SENTINEL", + "function": "sentinelCommand", + "command_flags": [ + "ADMIN", + "SENTINEL", + "ONLY_SENTINEL" + ], + "reply_schema": { + "description": "Node ID of the sentinel instance.", + "type": "string" + } + } +} |