includeRegex

@JvmName(name = "wycakuovajfskvrb")
suspend fun includeRegex(value: Output<List<String>>)
@JvmName(name = "edlaxwnflqmnandn")
suspend fun includeRegex(value: List<String>?)

Parameters

value

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.


@JvmName(name = "dclkjpuaesptnkty")
suspend fun includeRegex(vararg values: Output<String>)


@JvmName(name = "jmeyeqviayketdrk")
suspend fun includeRegex(values: List<Output<String>>)
@JvmName(name = "mlbafqnndhquocsq")
suspend fun includeRegex(vararg values: String)

Parameters

values

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.