class Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityEquivalenceClass
The set of columns' values that share the same ldiversity value.
Attributes
Size of the k-anonymity equivalence class. Corresponds to the JSON property `equivalenceClassSize` @return [Fixnum]
Number of distinct sensitive values in this equivalence class. Corresponds to the JSON property `numDistinctSensitiveValues` @return [Fixnum]
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` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
Estimated frequencies of top sensitive values. Corresponds to the JSON property `topSensitiveValues` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency>]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 3935 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 3940 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