mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			462 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			462 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
option go_package = "./pb";
 | 
						|
 | 
						|
package pb;
 | 
						|
 | 
						|
message HTTPAccessLogPolicy {
 | 
						|
	int64 id = 1; // 策略ID
 | 
						|
	string name = 2; // 策略名称
 | 
						|
	bool isOn = 3; // 是否启用
 | 
						|
	string type = 4; // 策略类型
 | 
						|
	bytes optionsJSON = 5; // 策略选项
 | 
						|
	bytes condsJSON = 6; // 记录条件选项
 | 
						|
	bool isPublic = 7; // 是否公用
 | 
						|
	bool firewallOnly = 8; // 是否只记录WAF相关访问日志
 | 
						|
	bool disableDefaultDB = 9; // 停用默认数据库存储
 | 
						|
} |