Class: Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityEquivalenceClass
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityEquivalenceClass
 
 
- 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
The set of columns' values that share the same ldiversity value
Instance Attribute Summary collapse
- 
  
    
      #equivalence_class_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Size of the equivalence class, for example number of rows with the above set of values.
 - 
  
    
      #quasi_ids_values  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Set of values defining the equivalence class.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2KAnonymityEquivalenceClass 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2KAnonymityEquivalenceClass.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2KAnonymityEquivalenceClass
Returns a new instance of GooglePrivacyDlpV2KAnonymityEquivalenceClass.
      6074 6075 6076  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6074 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#equivalence_class_size ⇒ Fixnum
Size of the equivalence class, for example number of rows with the above set
of values.
Corresponds to the JSON property equivalenceClassSize
      6065 6066 6067  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6065 def equivalence_class_size @equivalence_class_size end  | 
  
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
Set of values defining the equivalence class. One value per quasi-identifier
column in the original KAnonymity metric message. The order is always the same
as the original request.
Corresponds to the JSON property quasiIdsValues
      6072 6073 6074  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6072 def quasi_ids_values @quasi_ids_values end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6079 6080 6081 6082  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6079 def update!(**args) @equivalence_class_size = args[:equivalence_class_size] if args.key?(:equivalence_class_size) @quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values) end  |