Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
 
 
- 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
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.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues
Returns a new instance of GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.
      3224 3225 3226  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3224 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
      3217 3218 3219  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3217 def estimated_probability @estimated_probability end  | 
  
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
The quasi-identifier values.
Corresponds to the JSON property quasiIdsValues
      3222 3223 3224  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3222 def quasi_ids_values @quasi_ids_values end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3229 3230 3231 3232  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3229 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  |