mode property

String? mode
getter/setter pair

Determines the behavior to apply to the built-in _Default sink inclusion filter.Exclusions are always appended, as built-in _Default sinks have no exclusions.

Required. Possible string values are:

  • "FILTER_WRITE_MODE_UNSPECIFIED" : The filter's write mode is unspecified. This mode must not be used.
  • "APPEND" : The contents of filter will be appended to the built-in _Default sink filter. Using the append mode with an empty filter will keep the sink inclusion filter unchanged.
  • "OVERWRITE" : The contents of filter will overwrite the built-in _Default sink filter.

Implementation

core.String? mode;