Skip to content

Commit

Permalink
feat: add delete workspace force option
Browse files Browse the repository at this point in the history
Signed-off-by: ImMin5 <[email protected]>
  • Loading branch information
ImMin5 committed Apr 16, 2024
1 parent f332b97 commit 78d9584
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion proto/spaceone/api/identity/v2/workspace.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ service Workspace {
};
}

rpc delete (WorkspaceRequest) returns (google.protobuf.Empty) {
rpc delete (WorkspaceDeleteRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/identity/v2/workspace/delete"
body: "*"
Expand Down Expand Up @@ -84,6 +84,11 @@ message UpdateWorkSpaceRequest {
google.protobuf.Struct tags = 3;
}

message WorkspaceDeleteRequest {
string workspace_id = 1;
bool force = 2;
}

message WorkspaceRequest {
string workspace_id = 1;
}
Expand Down

0 comments on commit 78d9584

Please sign in to comment.