Commit ca3deaf2 authored by Łukasz Nowak's avatar Łukasz Nowak

caddy-frontend: Fix output schemas

Add missing keys and fix types.
parent 40beb08d
...@@ -54,6 +54,10 @@ ...@@ -54,6 +54,10 @@
"description": "Certificate used to serve data on kedifa-csr_id-url.", "description": "Certificate used to serve data on kedifa-csr_id-url.",
"type": "string" "type": "string"
}, },
"kedifa-caucase-url": {
"description": "Url to caucase used by KeDiFa.",
"type": "string"
},
"caddy-frontend-N-csr_id-url": { "caddy-frontend-N-csr_id-url": {
"description": "URL on which frontend node number N publishes its csr_id sent to caucase.", "description": "URL on which frontend node number N publishes its csr_id sent to caucase.",
"type": "string" "type": "string"
...@@ -61,6 +65,14 @@ ...@@ -61,6 +65,14 @@
"caddy-frontend-N-csr_id-certificate": { "caddy-frontend-N-csr_id-certificate": {
"description": "Certificate used to serve data on caddy-frontend-N-csr_id-url.", "description": "Certificate used to serve data on caddy-frontend-N-csr_id-url.",
"type": "string" "type": "string"
},
"warning-slave-dict": {
"description": "Dict of slaves which got warnings. Keys are slave references, values are lists of warnings on slaves.",
"type": "array"
},
"warning-list": {
"description": "List of warning found during the request.",
"type": "array"
} }
}, },
"type": "object" "type": "object"
......
...@@ -8,11 +8,11 @@ ...@@ -8,11 +8,11 @@
}, },
"key-generate-auth-url": { "key-generate-auth-url": {
"description": "URL to GET once auth for key-upload-url", "description": "URL to GET once auth for key-upload-url",
"type": "array" "type": "string"
}, },
"key-upload-url": { "key-upload-url": {
"description": "URL to PUT PEM bundle of certificate and key", "description": "URL to PUT PEM bundle of certificate and key",
"type": "array" "type": "string"
}, },
"log-access-url": { "log-access-url": {
"description": "List of URLs to access logs", "description": "List of URLs to access logs",
...@@ -41,6 +41,10 @@ ...@@ -41,6 +41,10 @@
"request-error-list": { "request-error-list": {
"description": "In case if slave has been rejected by master or has error in the request, the list contains information about each problem", "description": "In case if slave has been rejected by master or has error in the request, the list contains information about each problem",
"type": "array" "type": "array"
},
"warning-list": {
"description": "List of warning found during the request.",
"type": "array"
} }
}, },
"type": "object" "type": "object"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment