diff options
author | John Estabrook <jestabro@vyos.io> | 2024-10-23 18:50:46 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-10-27 21:47:33 -0500 |
commit | bd17726d30991619eca09bfe478659915bc12fe4 (patch) | |
tree | ea957c5f2b154e4661c88baf50074f17488a9c58 /data/vyconf.proto | |
parent | 75441a50c50f65f580d6919ed6c4f282fd842e49 (diff) | |
download | vyconf-bd17726d30991619eca09bfe478659915bc12fe4.tar.gz vyconf-bd17726d30991619eca09bfe478659915bc12fe4.zip |
T6718: add independent validate field and methods
Diffstat (limited to 'data/vyconf.proto')
-rw-r--r-- | data/vyconf.proto | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index 6bd2796..f2245aa 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -17,6 +17,11 @@ message Request { optional int32 OnBehalfOf = 2; } + message Validate { + repeated string Path = 1; + optional OutputFormat output_format = 2; + } + message Set { repeated string Path = 1; optional bool Ephemeral = 3; @@ -129,8 +134,9 @@ message Request { Confirm confirm = 18; EnterConfigurationMode configure = 19; ExitConfigurationMode exit_configure = 20; - string teardown = 21; - } + Validate validate = 21; + string teardown = 22; + } } message RequestEnvelope { |