Optimize wasmplugin proto (#1656)

This commit is contained in:
澄潭
2025-01-09 13:19:46 +08:00
committed by GitHub
parent a570c72504
commit 2a89c3bb70
3 changed files with 79 additions and 69 deletions

View File

@@ -112,7 +112,7 @@ message WasmPlugin {
// Extended by Higress, matching rules take effect
repeated MatchRule match_rules = 102;
// disable the default config
bool default_config_disable = 103;
google.protobuf.BoolValue default_config_disable = 103;
}
// Extended by Higress
@@ -120,7 +120,7 @@ message MatchRule {
repeated string ingress = 1;
repeated string domain = 2;
google.protobuf.Struct config = 3;
bool config_disable = 4;
google.protobuf.BoolValue config_disable = 4;
repeated string service = 5;
}