Class: Google::Apis::DlpV2::GooglePrivacyDlpV2LikelihoodAdjustment
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2LikelihoodAdjustment
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
 generated/google/apis/dlp_v2/representations.rb,
 generated/google/apis/dlp_v2/representations.rb
Overview
Message for specifying an adjustment to the likelihood of a finding as part of a detection rule.
Instance Attribute Summary collapse
- 
  
    
      #fixed_likelihood  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Set the likelihood of a finding to a fixed value. 
- 
  
    
      #relative_likelihood  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Increase or decrease the likelihood by the specified number of levels. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2LikelihoodAdjustment 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2LikelihoodAdjustment. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2LikelihoodAdjustment
Returns a new instance of GooglePrivacyDlpV2LikelihoodAdjustment
| 3052 3053 3054 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3052 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#fixed_likelihood ⇒ String
Set the likelihood of a finding to a fixed value.
Corresponds to the JSON property fixedLikelihood
| 3038 3039 3040 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3038 def fixed_likelihood @fixed_likelihood end | 
#relative_likelihood ⇒ Fixnum
Increase or decrease the likelihood by the specified number of
levels. For example, if a finding would be POSSIBLE without the
detection rule and relative_likelihood is 1, then it is upgraded to
LIKELY, while a value of -1 would downgrade it to UNLIKELY.
Likelihood may never drop below VERY_UNLIKELY or exceed
VERY_LIKELY, so applying an adjustment of 1 followed by an
adjustment of -1 when base likelihood is VERY_LIKELY will result in
a final likelihood of LIKELY.
Corresponds to the JSON property relativeLikelihood
| 3050 3051 3052 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3050 def relative_likelihood @relative_likelihood end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3057 3058 3059 3060 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3057 def update!(**args) @fixed_likelihood = args[:fixed_likelihood] if args.key?(:fixed_likelihood) @relative_likelihood = args[:relative_likelihood] if args.key?(:relative_likelihood) end |