includeRegex property
A list of regular expressions matching file paths to include.
All files in the bucket that match at least one of these regular
expressions will be included in the set of files, except for those that
also match an item in exclude_regex
. Leaving this field empty will match
all files by default (this is equivalent to including .*
in the list).
Regular expressions use RE2
syntax; a guide can be found
under the google/re2 repository on GitHub.
Implementation
core.List<core.String>? includeRegex;