Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ExcludeByHotword

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb

Overview

The rule to exclude findings based on a hotword. For record inspection of tables, column names are considered hotwords. An example of this is to exclude a finding if it belongs to a BigQuery column that matches a specific pattern.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2ExcludeByHotword

Returns a new instance of GooglePrivacyDlpV2ExcludeByHotword.



4085
4086
4087
# File 'lib/google/apis/dlp_v2/classes.rb', line 4085

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hotword_regexGoogle::Apis::DlpV2::GooglePrivacyDlpV2Regex

Message defining a custom regular expression. Corresponds to the JSON property hotwordRegex



4078
4079
4080
# File 'lib/google/apis/dlp_v2/classes.rb', line 4078

def hotword_regex
  @hotword_regex
end

#proximityGoogle::Apis::DlpV2::GooglePrivacyDlpV2Proximity

Message for specifying a window around a finding to apply a detection rule. Corresponds to the JSON property proximity



4083
4084
4085
# File 'lib/google/apis/dlp_v2/classes.rb', line 4083

def proximity
  @proximity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4090
4091
4092
4093
# File 'lib/google/apis/dlp_v2/classes.rb', line 4090

def update!(**args)
  @hotword_regex = args[:hotword_regex] if args.key?(:hotword_regex)
  @proximity = args[:proximity] if args.key?(:proximity)
end