Add proto model for api key

This commit is contained in:
Kristoffer Dalby 2022-01-25 22:11:15 +00:00
parent 70d82ea184
commit b8e9024845
3 changed files with 65 additions and 7 deletions

View file

@ -14,13 +14,13 @@ enum RegisterMethod {
}
message Machine {
uint64 id = 1;
string machine_key = 2;
string node_key = 3;
string disco_key = 4;
repeated string ip_addresses = 5;
string name = 6;
Namespace namespace = 7;
uint64 id = 1;
string machine_key = 2;
string node_key = 3;
string disco_key = 4;
repeated string ip_addresses = 5;
string name = 6;
Namespace namespace = 7;
bool registered = 8;
RegisterMethod register_method = 9;