From adbe2e11784d80c929974ff2ed51b33d8b002162 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Fri, 19 Dec 2025 13:26:32 -0800 Subject: [PATCH] feat(control): implement control api access over idm --- protect/control/v1/common.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/protect/control/v1/common.proto b/protect/control/v1/common.proto index 7d5db29..b413916 100644 --- a/protect/control/v1/common.proto +++ b/protect/control/v1/common.proto @@ -25,6 +25,16 @@ message ZoneSpec { ZoneVirtualizationOptionsSpec virtualization_options = 9; ZoneScratchDiskSpec scratch_disk = 10; repeated OciImageSpec addons = 11; + ZoneControlApiSpec control_api = 12; +} + +enum ZoneControlApiAccess { + ZONE_CONTROL_API_ACCESS_DENY = 0; + ZONE_CONTROL_API_ACCESS_ALLOW = 1; +} + +message ZoneControlApiSpec { + ZoneControlApiAccess access = 1; } enum ZoneResourceAdjustmentPolicy {