feat: rewrite proto to only update tags of machine

This commit is contained in:
Adrien Raffin-Caboisse 2022-04-25 20:45:07 +02:00
parent 3a90079ab8
commit 31debf7055
2 changed files with 6 additions and 5 deletions

View file

@ -62,11 +62,12 @@ message GetMachineResponse {
Machine machine = 1;
}
message UpdateMachineRequest {
Machine machine = 1;
message SetTagsRequest {
uint64 machine_id = 1;
repeated string tags = 2;
}
message UpdateMachineResponse {
message SetTagsResponse {
Machine machine = 1;
}