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.



3812
3813
3814
# File 'lib/google/apis/dlp_v2/classes.rb', line 3812

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



3805
3806
3807
# File 'lib/google/apis/dlp_v2/classes.rb', line 3805

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



3810
3811
3812
# File 'lib/google/apis/dlp_v2/classes.rb', line 3810

def proximity
  @proximity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3817
3818
3819
3820
# File 'lib/google/apis/dlp_v2/classes.rb', line 3817

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