File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,7 @@ message SyncAccountInfo {
167
167
message UserInAccount {
168
168
string user_id = 1 ;
169
169
bool blocked = 2 ;
170
+ optional bool deleted = 3 ;
170
171
}
171
172
string account_name = 1 ;
172
173
repeated UserInAccount users = 2 ;
@@ -177,6 +178,7 @@ message SyncAccountInfo {
177
178
// if blocked_in_cluster is false, only unblock in specified paritions
178
179
repeated string unblocked_partitions = 6 ;
179
180
optional bool use_full_partitions = 7 ;
181
+ optional bool deleted = 8 ;
180
182
}
181
183
182
184
message SyncAccountUserInfoRequest {
@@ -195,11 +197,14 @@ message SyncAccountUserInfoResponse {
195
197
ADD_USER_TO_ACCOUNT = 4 ;
196
198
BLOCK_USER_IN_ACCOUNT = 5 ;
197
199
REMOVE_USER_FROM_ACCOUNT = 6 ;
200
+ UNBLOCK_USER_IN_ACCOUNT = 7 ;
201
+ DELETE_ACCOUNT = 8 ;
202
+ DELETE_USER = 9 ;s
198
203
}
199
204
message FailureInfo {
200
205
SyncOperation sync_operation = 1 ;
201
206
string failed_account_name = 2 ;
202
- // only exsits in users' failed operation of ADD_USER_TO_ACCOUNT, BLOCK_USER_IN_ACCOUNT or REMOVE_USER_FROM_ACCOUNT
207
+ // only exists in users' failed operation of ADD_USER_TO_ACCOUNT, BLOCK_USER_IN_ACCOUNT or REMOVE_USER_FROM_ACCOUNT
203
208
optional string failed_user_id = 3 ;
204
209
string failed_message = 4 ;
205
210
}
You can’t perform that action at this time.
0 commit comments