Class: Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityEquivalenceClass
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityEquivalenceClass
 
- 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
The set of columns' values that share the same ldiversity value.
Instance Attribute Summary collapse
- 
  
    
      #equivalence_class_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Size of the k-anonymity equivalence class. 
- 
  
    
      #num_distinct_sensitive_values  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of distinct sensitive values in this equivalence class. 
- 
  
    
      #quasi_ids_values  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Quasi-identifier values defining the k-anonymity equivalence class. 
- 
  
    
      #top_sensitive_values  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Estimated frequencies of top sensitive values. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2LDiversityEquivalenceClass 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2LDiversityEquivalenceClass. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2LDiversityEquivalenceClass
Returns a new instance of GooglePrivacyDlpV2LDiversityEquivalenceClass
| 2952 2953 2954 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2952 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#equivalence_class_size ⇒ Fixnum
Size of the k-anonymity equivalence class.
Corresponds to the JSON property equivalenceClassSize
| 2934 2935 2936 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2934 def equivalence_class_size @equivalence_class_size end | 
#num_distinct_sensitive_values ⇒ Fixnum
Number of distinct sensitive values in this equivalence class.
Corresponds to the JSON property numDistinctSensitiveValues
| 2939 2940 2941 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2939 def num_distinct_sensitive_values @num_distinct_sensitive_values end | 
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
Quasi-identifier values defining the k-anonymity equivalence
class. The order is always the same as the original request.
Corresponds to the JSON property quasiIdsValues
| 2945 2946 2947 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2945 def quasi_ids_values @quasi_ids_values end | 
#top_sensitive_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency>
Estimated frequencies of top sensitive values.
Corresponds to the JSON property topSensitiveValues
| 2950 2951 2952 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2950 def top_sensitive_values @top_sensitive_values end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2957 2958 2959 2960 2961 2962 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2957 def update!(**args) @equivalence_class_size = args[:equivalence_class_size] if args.key?(:equivalence_class_size) @num_distinct_sensitive_values = args[:num_distinct_sensitive_values] if args.key?(:num_distinct_sensitive_values) @quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values) @top_sensitive_values = args[:top_sensitive_values] if args.key?(:top_sensitive_values) end |