Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
 
 
- 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
A tuple of values for the quasi-identifier columns.
Instance Attribute Summary collapse
- 
  
    
      #estimated_probability  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The estimated probability that a given individual sharing these quasi-identifier values is in the dataset.
 - 
  
    
      #quasi_ids_values  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The quasi-identifier values.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
Returns a new instance of GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
      1729 1730 1731  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 1729 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#estimated_probability ⇒ Float
The estimated probability that a given individual sharing these
quasi-identifier values is in the dataset. This value, typically called
δ, is the ratio between the number of records in the dataset with these
quasi-identifier values, and the total number of individuals (inside
and outside the dataset) with these quasi-identifier values.
For example, if there are 15 individuals in the dataset who share the
same quasi-identifier values, and an estimated 100 people in the entire
population with these values, then δ is 0.15.
Corresponds to the JSON property estimatedProbability
      1722 1723 1724  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 1722 def estimated_probability @estimated_probability end  | 
  
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
The quasi-identifier values.
Corresponds to the JSON property quasiIdsValues
      1727 1728 1729  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 1727 def quasi_ids_values @quasi_ids_values end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1734 1735 1736 1737  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 1734 def update!(**args) @estimated_probability = args[:estimated_probability] if args.key?(:estimated_probability) @quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values) end  |