File tree Expand file tree Collapse file tree 2 files changed +764
-765
lines changed
proto/protovalidate/buf/validate
tools/internal/gen/buf/validate Expand file tree Collapse file tree 2 files changed +764
-765
lines changed Original file line number Diff line number Diff line change @@ -3726,7 +3726,7 @@ message BytesRules {
3726
3726
(priv.field ).cel = {
3727
3727
id : "bytes.ipv4_empty"
3728
3728
message : "value is empty, which is not a valid IPv4 address"
3729
- expression : "!this .ipv4 || this.size() != 0"
3729
+ expression : "!rules .ipv4 || this.size() != 0"
3730
3730
}
3731
3731
];
3732
3732
@@ -3742,12 +3742,12 @@ message BytesRules {
3742
3742
(priv.field ).cel = {
3743
3743
id : "bytes.ipv6"
3744
3744
message : "value must be a valid IPv6 address"
3745
- expression : "!this .ipv6 || this.size() == 0 || this.size() == 16"
3745
+ expression : "!rules .ipv6 || this.size() == 0 || this.size() == 16"
3746
3746
},
3747
3747
(priv.field ).cel = {
3748
3748
id : "bytes.ipv6_empty"
3749
3749
message : "value is empty, which is not a valid IPv6 address"
3750
- expression : "!this .ipv6 || this.size() != 0"
3750
+ expression : "!rules .ipv6 || this.size() != 0"
3751
3751
}
3752
3752
];
3753
3753
}
You can’t perform that action at this time.
0 commit comments