mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-08 07:50:27 +08:00
21 lines
349 B
Protocol Buffer
21 lines
349 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
// 节点地址
|
|
message NodeIPAddress {
|
|
int64 id = 1;
|
|
int64 nodeId = 2;
|
|
string name = 3;
|
|
string ip = 4;
|
|
string description = 5;
|
|
int64 state = 6;
|
|
int64 order = 7;
|
|
bool canAccess = 8;
|
|
bool isOn = 9;
|
|
bool isUp = 10;
|
|
string role = 12;
|
|
string backupIP = 13;
|
|
bool isHealthy = 14;
|
|
} |