Class: Google::Apis::DlpV2::GooglePrivacyDlpV2HotwordRule
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2HotwordRule
 
 
- 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 that adjusts the likelihood of findings within a certain proximity of hotwords.
Instance Attribute Summary collapse
- 
  
    
      #hotword_regex  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Regex 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Message defining a custom regular expression.
 - 
  
    
      #likelihood_adjustment  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2LikelihoodAdjustment 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Message for specifying an adjustment to the likelihood of a finding as part of a detection rule.
 - 
  
    
      #proximity  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Proximity 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Message for specifying a window around a finding to apply a detection rule.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2HotwordRule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2HotwordRule.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2HotwordRule
Returns a new instance of GooglePrivacyDlpV2HotwordRule.
      4953 4954 4955  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4953 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#hotword_regex ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Regex
Message defining a custom regular expression.
Corresponds to the JSON property hotwordRegex
      4940 4941 4942  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4940 def hotword_regex @hotword_regex end  | 
  
#likelihood_adjustment ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2LikelihoodAdjustment
Message for specifying an adjustment to the likelihood of a finding as part of
a detection rule.
Corresponds to the JSON property likelihoodAdjustment
      4946 4947 4948  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4946 def likelihood_adjustment @likelihood_adjustment end  | 
  
#proximity ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Proximity
Message for specifying a window around a finding to apply a detection rule.
Corresponds to the JSON property proximity
      4951 4952 4953  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4951 def proximity @proximity end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4958 4959 4960 4961 4962  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4958 def update!(**args) @hotword_regex = args[:hotword_regex] if args.key?(:hotword_regex) @likelihood_adjustment = args[:likelihood_adjustment] if args.key?(:likelihood_adjustment) @proximity = args[:proximity] if args.key?(:proximity) end  |