Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions proto/spaceone/api/identity/v2/workspace.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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;
}
Loading