From c173cedd3ea9e2342f61d1b302ddd4e7c36d7d19 Mon Sep 17 00:00:00 2001 From: jcj Date: Tue, 22 Jul 2025 14:55:28 +0900 Subject: [PATCH] feat: add identity workspace analyze. Signed-off-by: jcj --- proto/spaceone/api/identity/v2/workspace.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/proto/spaceone/api/identity/v2/workspace.proto b/proto/spaceone/api/identity/v2/workspace.proto index b05a62562..4024fdd17 100644 --- a/proto/spaceone/api/identity/v2/workspace.proto +++ b/proto/spaceone/api/identity/v2/workspace.proto @@ -83,6 +83,13 @@ service Workspace { }; } + rpc analyze (WorkspaceAnalyzeQuery) returns (google.protobuf.Struct) { + option (google.api.http) = { + post: "/identity/v2/workspace/analyze" + body: "*" + }; + } + rpc stat (WorkspaceStatQuery) returns (google.protobuf.Struct) { option (google.api.http) = { post: "/identity/v2/workspace/stat" @@ -267,6 +274,10 @@ message WorkspacesInfo { int32 total_count = 2; } +message WorkspaceAnalyzeQuery { + spaceone.api.core.v2.AnalyzeQuery query = 1; +} + message WorkspaceStatQuery { spaceone.api.core.v2.StatisticsQuery query = 1; }