Class: Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationQuasiIdValues
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationQuasiIdValues
 
 
- 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_anonymity  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The estimated anonymity for these quasi-identifier values.
 - 
  
    
      #quasi_ids_values  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The quasi-identifier values.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2KMapEstimationQuasiIdValues 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2KMapEstimationQuasiIdValues.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2KMapEstimationQuasiIdValues
Returns a new instance of GooglePrivacyDlpV2KMapEstimationQuasiIdValues
      3251 3252 3253  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 3251 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#estimated_anonymity ⇒ Fixnum
The estimated anonymity for these quasi-identifier values.
Corresponds to the JSON property estimatedAnonymity
      3244 3245 3246  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 3244 def estimated_anonymity @estimated_anonymity end  | 
  
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
The quasi-identifier values.
Corresponds to the JSON property quasiIdsValues
      3249 3250 3251  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 3249 def quasi_ids_values @quasi_ids_values end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3256 3257 3258 3259  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 3256 def update!(**args) @estimated_anonymity = args[:estimated_anonymity] if args.key?(:estimated_anonymity) @quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values) end  |