mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			471 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			471 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
option go_package = "./pb";
 | 
						|
 | 
						|
package pb;
 | 
						|
 | 
						|
service DNSService {
 | 
						|
	// 查找问题
 | 
						|
	rpc findAllDNSIssues (FindAllDNSIssuesRequest) returns (FindAllDNSIssuesResponse);
 | 
						|
}
 | 
						|
 | 
						|
// 查找问题
 | 
						|
message FindAllDNSIssuesRequest {
 | 
						|
	int64 nodeClusterId = 1;
 | 
						|
}
 | 
						|
 | 
						|
message FindAllDNSIssuesResponse {
 | 
						|
	repeated DNSIssue issues = 1;
 | 
						|
}
 | 
						|
 | 
						|
message DNSIssue {
 | 
						|
	string target = 1;
 | 
						|
	int64 targetId = 2;
 | 
						|
	string type = 3;
 | 
						|
	string description = 4;
 | 
						|
	map<string, string> params = 5;
 | 
						|
} |