This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/rpc/protos/model_http_firewall_policy.proto
T
2020-10-06 21:02:21 +08:00

13 lines
214 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
message HTTPFirewallPolicy {
int64 id = 1;
string name = 2;
bool isOn = 3;
string description = 4;
bytes inboundJSON = 5;
bytes outboundJSON = 6;
}