From 469febbb936034c9a8fd1ae435d47a985a1c421a Mon Sep 17 00:00:00 2001 From: JuHyung-Son Date: Tue, 16 Jul 2024 23:42:08 +0900 Subject: [PATCH] feat: support label_selector Signed-off-by: JuHyung-Son --- protobuf/schema/v1/server-service.proto | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/protobuf/schema/v1/server-service.proto b/protobuf/schema/v1/server-service.proto index 0b0551f..dcbb79a 100644 --- a/protobuf/schema/v1/server-service.proto +++ b/protobuf/schema/v1/server-service.proto @@ -10,14 +10,14 @@ option go_package = "schema/service/v1"; message AnalyzeRequest { string backend = 1; string namespace = 2; - string label_selector = 3; - bool explain = 4; - bool anonymize = 5; - bool nocache = 6; - string language = 7; - int32 max_concurrency = 8; - string output = 9; - repeated string filters = 10; + bool explain = 3; + bool anonymize = 4; + bool nocache = 5; + string language = 6; + int32 max_concurrency = 7; + string output = 8; + repeated string filters = 9; + string label_selector = 10; } message SensitiveData {