Skip to content

Commit

Permalink
Merge pull request #392 from yjinjo/master
Browse files Browse the repository at this point in the history
Modify workspace group user request
  • Loading branch information
yjinjo authored Aug 21, 2024
2 parents 0fcea7a + fa6c941 commit 14f96f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proto/spaceone/api/identity/v2/workspace_group.proto
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ message WorkspaceGroupFindRequest {

message AddUsersWorkspaceGroupRequest {
string workspace_group_id = 1;
repeated google.protobuf.Struct users = 2;
repeated WorkspaceGroupUser users = 2;
}

message RemoveUsersWorkspaceGroupRequest {
Expand All @@ -138,7 +138,7 @@ message WorkspaceGroupRequest {
string workspace_group_id = 1;
}

message WorkspaceGroupUserInfo {
message WorkspaceGroupUser {
string user_id = 1;
string role_id = 2;
string role_type = 3;
Expand All @@ -148,7 +148,7 @@ message WorkspaceGroupInfo {
string workspace_group_id = 1;
string name = 2;
repeated string workspaces = 3;
repeated WorkspaceGroupUserInfo users = 4;
repeated string users = 4;
google.protobuf.Struct tags = 5;
string created_by = 6;
string updated_by = 7;
Expand Down

0 comments on commit 14f96f4

Please sign in to comment.