From cd7d50997c4db01637a3b80ffc106b72705e0f10 Mon Sep 17 00:00:00 2001 From: Tanya Singh Date: Thu, 27 Mar 2025 11:37:06 +0800 Subject: [PATCH] OLS-644: Global DNS configuration Signed-off-by: Tanya Singh --- ucentral.schema.full.json | 7 +++++++ ucentral.schema.json | 6 ++++++ ucentral.schema.pretty.json | 7 +++++++ 3 files changed, 20 insertions(+) diff --git a/ucentral.schema.full.json b/ucentral.schema.full.json index 5615e10..58de3ef 100644 --- a/ucentral.schema.full.json +++ b/ucentral.schema.full.json @@ -1803,6 +1803,13 @@ } } } + }, + "dns": { + "description": "Define a list of dns servers", + "type": "array", + "items": { + "type": "string" + } } } }, diff --git a/ucentral.schema.json b/ucentral.schema.json index 934ca32..871cb5c 100644 --- a/ucentral.schema.json +++ b/ucentral.schema.json @@ -1564,6 +1564,12 @@ }, "acl": { "$ref": "#/$defs/switch.acl" + }, + "dns": { + "type": "array", + "items": { + "type": "string" + } } } }, diff --git a/ucentral.schema.pretty.json b/ucentral.schema.pretty.json index 415b146..a73bb84 100644 --- a/ucentral.schema.pretty.json +++ b/ucentral.schema.pretty.json @@ -1848,6 +1848,13 @@ }, "acl": { "$ref": "#/$defs/switch.acl" + }, + "dns": { + "description": "Define a list of dns servers", + "type": "array", + "items": { + "type": "string" + } } } },