From 6af2fdcd663101c30396535397d640d179a5e6f9 Mon Sep 17 00:00:00 2001 From: marcushines <80116818+marcushines@users.noreply.github.com> Date: Mon, 27 Jan 2025 09:15:38 -0600 Subject: [PATCH] Update bootconfig.proto --- bootconfig/bootconfig.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bootconfig/bootconfig.proto b/bootconfig/bootconfig.proto index df08ce6..944c139 100644 --- a/bootconfig/bootconfig.proto +++ b/bootconfig/bootconfig.proto @@ -50,6 +50,10 @@ message GetBootConfigResponse { bootz.BootConfig boot_config = 1; } +// The presence of a message should define the operation requested. +// If a message is present the contents of that data should be replaced with +// the contents of the message (i.e. an empty submessage should replace the +// current bootconfig datastore). An unset submessage is considered a NOOP. message SetBootConfigRequest { bootz.BootConfig boot_config = 1; bootz.Credentials credentials = 2;