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
| 2775 2776 2777 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2775 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
| 2768 2769 2770 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2768 def estimated_anonymity @estimated_anonymity end | 
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
The quasi-identifier values.
Corresponds to the JSON property quasiIdsValues
| 2773 2774 2775 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2773 def quasi_ids_values @quasi_ids_values end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2780 2781 2782 2783 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2780 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 |