mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 13:10:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			249 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			249 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
option go_package = "./pb";
 | 
						|
 | 
						|
package pb;
 | 
						|
 | 
						|
message HTTPAccessLogPolicy {
 | 
						|
	int64 id = 1;
 | 
						|
	string name = 2;
 | 
						|
	bool isOn = 3;
 | 
						|
	string type = 4;
 | 
						|
	bytes optionsJSON = 5;
 | 
						|
	bytes condsJSON = 6;
 | 
						|
	bool isPublic = 7;
 | 
						|
	bool firewallOnly = 8;
 | 
						|
} |