type property

String? type
getter/setter pair

The type of pattern to match against.

Optional. Possible string values are:

  • "PATTERN_TYPE_UNSPECIFIED" : The pattern type is unspecified - this is an invalid value.
  • "RE2" : RE2 - regular expression (https://github.com/google/re2/wiki/Syntax).
  • "GLOB" : The pattern is a glob.
  • "PREFIX" : The pattern is a prefix.

Implementation

core.String? type;