mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 23:00:24 +08:00
修复域名解析--集群中单节点多IP时无法修改IP的Bug
This commit is contained in:
7686
build/rpc.json
7686
build/rpc.json
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -451,6 +451,7 @@ message NodeDNSInfo {
|
|||||||
int64 id = 1;
|
int64 id = 1;
|
||||||
string name = 2;
|
string name = 2;
|
||||||
string ipAddr = 3;
|
string ipAddr = 3;
|
||||||
|
int64 nodeIPAddressId = 9;
|
||||||
repeated DNSRoute routes = 4;
|
repeated DNSRoute routes = 4;
|
||||||
int64 nodeClusterId = 5;
|
int64 nodeClusterId = 5;
|
||||||
int64 dnsDomainId = 6;
|
int64 dnsDomainId = 6;
|
||||||
@@ -462,6 +463,7 @@ message NodeDNSInfo {
|
|||||||
message FindEnabledNodeDNSRequest {
|
message FindEnabledNodeDNSRequest {
|
||||||
int64 nodeId = 1;
|
int64 nodeId = 1;
|
||||||
int64 nodeClusterId = 2;
|
int64 nodeClusterId = 2;
|
||||||
|
int64 nodeIPAddrId = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message FindEnabledNodeDNSResponse {
|
message FindEnabledNodeDNSResponse {
|
||||||
@@ -472,6 +474,7 @@ message FindEnabledNodeDNSResponse {
|
|||||||
message UpdateNodeDNSRequest {
|
message UpdateNodeDNSRequest {
|
||||||
int64 nodeId = 1;
|
int64 nodeId = 1;
|
||||||
string ipAddr = 2;
|
string ipAddr = 2;
|
||||||
|
int64 nodeIPAddressId = 5;
|
||||||
int64 dnsDomainId = 3;
|
int64 dnsDomainId = 3;
|
||||||
repeated string routes = 4;
|
repeated string routes = 4;
|
||||||
}
|
}
|
||||||
@@ -608,7 +611,7 @@ message CountAllNodeRegionInfoRequest {
|
|||||||
message ListNodeRegionInfoRequest {
|
message ListNodeRegionInfoRequest {
|
||||||
int64 nodeRegionId = 1; // 区域ID,可选
|
int64 nodeRegionId = 1; // 区域ID,可选
|
||||||
int64 offset = 2;
|
int64 offset = 2;
|
||||||
int64 size =3;
|
int64 size = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ListNodeRegionInfoResponse {
|
message ListNodeRegionInfoResponse {
|
||||||
|
|||||||
Reference in New Issue
Block a user