maxProgramSize property
- @Deprecated('Not supported. Member documentation may have more information.')
getter/setter pair
This field controls the RE2 "program size" which is a rough estimate of how complex a compiled regex is to evaluate.
A regex that has a program size greater than the configured value will
fail to compile. In this case, the configured max program size can be
increased or the regex can be simplified. If not specified, the default is
100. This field is deprecated; regexp validation should be performed on
the management server instead of being done by each individual client. ..
note:: Although this field is deprecated, the program size will still be
checked against the global re2.max_program_size.error_level
runtime
value.
Implementation
@core.Deprecated(
'Not supported. Member documentation may have more information.',
)
core.int? maxProgramSize;