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.



3343
3344
3345
# File 'lib/google/apis/dlp_v2/classes.rb', line 3343

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



3336
3337
3338
# File 'lib/google/apis/dlp_v2/classes.rb', line 3336

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



3341
3342
3343
# File 'lib/google/apis/dlp_v2/classes.rb', line 3341

def proximity
  @proximity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3348
3349
3350
3351
# File 'lib/google/apis/dlp_v2/classes.rb', line 3348

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