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.



4379
4380
4381
# File 'lib/google/apis/dlp_v2/classes.rb', line 4379

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



4372
4373
4374
# File 'lib/google/apis/dlp_v2/classes.rb', line 4372

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



4377
4378
4379
# File 'lib/google/apis/dlp_v2/classes.rb', line 4377

def proximity
  @proximity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4384
4385
4386
4387
# File 'lib/google/apis/dlp_v2/classes.rb', line 4384

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