The gss-tsig-get Command
~~~~~~~~~~~~~~~~~~~~~~~~
+.. _command-gss-tsig-list:
+
+The gss-tsig-list Command
+~~~~~~~~~~~~~~~~~~~~~~~~~
+
.. _command-gss-tsig-key-get:
The gss-tsig-key-get Command
The gss-tsig-key-del Command
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. _command-gss-tsig-purge-all:
+
+The gss-tsig-purge-all Command
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. _command-gss-tsig-purge:
+
+The gss-tsig-purge Command
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+
api_files += $(top_srcdir)/src/share/api/gss-tsig-key-del.json
api_files += $(top_srcdir)/src/share/api/gss-tsig-key-expire.json
api_files += $(top_srcdir)/src/share/api/gss-tsig-key-get.json
+api_files += $(top_srcdir)/src/share/api/gss-tsig-list.json
+api_files += $(top_srcdir)/src/share/api/gss-tsig-purge-all.json
+api_files += $(top_srcdir)/src/share/api/gss-tsig-purge.json
api_files += $(top_srcdir)/src/share/api/ha-continue.json
api_files += $(top_srcdir)/src/share/api/ha-heartbeat.json
api_files += $(top_srcdir)/src/share/api/ha-maintenance-cancel.json
{
"access": "read",
"avail": "2.0.0",
- "brief": [ "This command lists GSS-TSIG servers." ],
+ "brief": [ "This command lists GSS-TSIG servers and keys." ],
"cmd-syntax": [
"{",
" \"command\": \"gss-tsig-get-all\"",
--- /dev/null
+{
+ "access": "read",
+ "avail": "2.0.0",
+ "brief": [ "This command lists GSS-TSIG server IDs and key names." ],
+ "cmd-syntax": [
+ "{",
+ " \"command\": \"gss-tsig-list\"",
+ "}"
+ ],
+ "description": [ "See <xref linkend=\"command-gss-tsig-list\"/>" ],
+ "hook": "gss_tsig",
+ "name": "gss-tsig-list",
+ "support": [ "kea-dhcp-ddns" ],
+ "resp-syntax": [
+ "{",
+ " \"result\": 0,",
+ " \"text\": \"2 GSS-TSIG servers and 3 keys\",",
+ " \"arguments\": {",
+ " \"gss-tsig-servers\": [",
+ " \"foo\",",
+ " \"bar\"",
+ " ],",
+ " \"gss-tsig-keys\": [",
+ " \"1234.example.com.\",",
+ " \"5678.example.com.\",",
+ " \"43888.example.org.\"",
+ " ]",
+ " }",
+ "}"
+ ]
+}
--- /dev/null
+{
+ "access": "write",
+ "avail": "2.0.0",
+ "brief": [ "This command removes not usable GSS-TSIG keys." ],
+ "cmd-syntax": [
+ "{",
+ " \"command\": \"gss-tsig-purge-all\"",
+ "}"
+ ],
+ "description": [ "See <xref linkend=\"command-gss-tsig--purge-all\"/>" ],
+ "hook": "gss_tsig",
+ "name": "gss-tsig-purge-all",
+ "support": [ "kea-dhcp-ddns" ],
+ "resp-syntax": [
+ "{",
+ " \"result\": 0,",
+ " \"text\": \"2 purged GSS-TSIG keys\"",
+ "}"
+ ]
+}
--- /dev/null
+{
+ "access": "write",
+ "avail": "2.0.0",
+ "brief": [ "This command removes not usable GSS-TSIG keys for the specified server."
+ ],
+ "cmd-syntax": [
+ "{",
+ " \"command\": \"gss-tsig-purge\",",
+ " \"arguments\": {",
+ " \"id\": \"foo\"",
+ " }",
+ "}"
+ ],
+ "description": [ "See <xref linkend=\"command-gss-tsig-purge\"/>" ],
+ "hook": "gss_tsig",
+ "name": "gss-tsig-purge",
+ "support": [ "kea-dhcp-ddns" ],
+ "resp-syntax": [
+ "{",
+ " \"result\": 0,",
+ " \"text\": \"2 purged keys for GSS-TSIG server[foo]\"",
+ "}"
+ ]
+}