diff options
author | John Estabrook <jestabro@vyos.io> | 2024-09-25 08:43:41 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-09-29 22:21:21 -0500 |
commit | 8183e2cc8178f5da67a918ee37c21797a05c142d (patch) | |
tree | f1918615053c243c7da6695d6455726d89040ffc /interface-definitions | |
parent | 9f7767c8022f5e6ad70253ef1c94fc22dbd04f1e (diff) | |
download | vyos-1x-8183e2cc8178f5da67a918ee37c21797a05c142d.tar.gz vyos-1x-8183e2cc8178f5da67a918ee37c21797a05c142d.zip |
http-api: T6736: add distinct XML path for REST API
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/service_https.xml.in | 53 |
1 files changed, 30 insertions, 23 deletions
diff --git a/interface-definitions/service_https.xml.in b/interface-definitions/service_https.xml.in index afe430c0c..7bb63fa5a 100644 --- a/interface-definitions/service_https.xml.in +++ b/interface-definitions/service_https.xml.in @@ -32,22 +32,29 @@ </tagNode> </children> </node> - <leafNode name="strict"> + <node name="rest"> <properties> - <help>Enforce strict path checking</help> - <valueless/> + <help>REST API</help> </properties> - </leafNode> - <leafNode name="debug"> - <properties> - <help>Debug</help> - <valueless/> - <hidden/> - </properties> - </leafNode> + <children> + <leafNode name="strict"> + <properties> + <help>Enforce strict path checking</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="debug"> + <properties> + <help>Debug</help> + <valueless/> + <hidden/> + </properties> + </leafNode> + </children> + </node> <node name="graphql"> <properties> - <help>GraphQL support</help> + <help>GraphQL API</help> </properties> <children> <leafNode name="introspection"> @@ -109,19 +116,19 @@ </leafNode> </children> </node> - </children> - </node> - <node name="cors"> - <properties> - <help>Set CORS options</help> - </properties> - <children> - <leafNode name="allow-origin"> + <node name="cors"> <properties> - <help>Allow resource request from origin</help> - <multi/> + <help>Set CORS options</help> </properties> - </leafNode> + <children> + <leafNode name="allow-origin"> + <properties> + <help>Allow resource request from origin</help> + <multi/> + </properties> + </leafNode> + </children> + </node> </children> </node> </children> |