From 61f37939b08a22db245a8d2b9a1ab4ab4a4f0fe2 Mon Sep 17 00:00:00 2001 From: Youngjin Jo Date: Tue, 10 Sep 2024 18:43:11 +0900 Subject: [PATCH] feat: add workspace_count field to workspace_group Signed-off-by: Youngjin Jo --- proto/spaceone/api/identity/v2/workspace_group.proto | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/proto/spaceone/api/identity/v2/workspace_group.proto b/proto/spaceone/api/identity/v2/workspace_group.proto index 085c97c7d..5b2a95f58 100644 --- a/proto/spaceone/api/identity/v2/workspace_group.proto +++ b/proto/spaceone/api/identity/v2/workspace_group.proto @@ -119,10 +119,11 @@ message WorkspaceGroupRequest { message WorkspaceGroupInfo { string workspace_group_id = 1; string name = 2; - repeated UserWorkspaceGroup users = 3; - google.protobuf.Struct tags = 4; - string created_by = 5; - string updated_by = 6; + int32 workspace_count = 3; + repeated UserWorkspaceGroup users = 4; + google.protobuf.Struct tags = 5; + string created_by = 6; + string updated_by = 7; string domain_id = 21; string created_at = 31; string updated_at = 32;