aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/function-delete.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/function-delete.json')
-rw-r--r--examples/redis-unstable/src/commands/function-delete.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/redis-unstable/src/commands/function-delete.json b/examples/redis-unstable/src/commands/function-delete.json
new file mode 100644
index 0000000..0895457
--- /dev/null
+++ b/examples/redis-unstable/src/commands/function-delete.json
@@ -0,0 +1,31 @@
1{
2 "DELETE": {
3 "summary": "Deletes a library and its functions.",
4 "complexity": "O(1)",
5 "group": "scripting",
6 "since": "7.0.0",
7 "arity": 3,
8 "container": "FUNCTION",
9 "function": "functionDeleteCommand",
10 "command_flags": [
11 "NOSCRIPT",
12 "WRITE"
13 ],
14 "acl_categories": [
15 "SCRIPTING"
16 ],
17 "command_tips": [
18 "REQUEST_POLICY:ALL_SHARDS",
19 "RESPONSE_POLICY:ALL_SUCCEEDED"
20 ],
21 "arguments": [
22 {
23 "name": "library-name",
24 "type": "string"
25 }
26 ],
27 "reply_schema": {
28 "const": "OK"
29 }
30 }
31}