Class: Google::Apis::DlpV2::GooglePrivacyDlpV2OtherInfoTypeSummary
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2OtherInfoTypeSummary
 
 
- 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
Infotype details for other infoTypes found within a column.
Instance Attribute Summary collapse
- 
  
    
      #estimated_prevalence  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Approximate percentage of non-null rows that contained data detected by this infotype.
 - 
  
    
      #excluded_from_analysis  ⇒ Boolean 
    
    
      (also: #excluded_from_analysis?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether this infoType was excluded from sensitivity and risk analysis due to factors such as low prevalence (subject to change).
 - 
  
    
      #info_type  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Type of information detected by the API.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2OtherInfoTypeSummary 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2OtherInfoTypeSummary.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2OtherInfoTypeSummary
Returns a new instance of GooglePrivacyDlpV2OtherInfoTypeSummary.
      7122 7123 7124  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 7122 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#estimated_prevalence ⇒ Fixnum
Approximate percentage of non-null rows that contained data detected by this
infotype.
Corresponds to the JSON property estimatedPrevalence
      7108 7109 7110  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 7108 def estimated_prevalence @estimated_prevalence end  | 
  
#excluded_from_analysis ⇒ Boolean Also known as: excluded_from_analysis?
Whether this infoType was excluded from sensitivity and risk analysis due to
factors such as low prevalence (subject to change).
Corresponds to the JSON property excludedFromAnalysis
      7114 7115 7116  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 7114 def excluded_from_analysis @excluded_from_analysis end  | 
  
#info_type ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType
Type of information detected by the API.
Corresponds to the JSON property infoType
      7120 7121 7122  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 7120 def info_type @info_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7127 7128 7129 7130 7131  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 7127 def update!(**args) @estimated_prevalence = args[:estimated_prevalence] if args.key?(:estimated_prevalence) @excluded_from_analysis = args[:excluded_from_analysis] if args.key?(:excluded_from_analysis) @info_type = args[:info_type] if args.key?(:info_type) end  |