class Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityEquivalenceClass

The set of columns' values that share the same ldiversity value.

Attributes

equivalence_class_size[RW]

Size of the k-anonymity equivalence class. Corresponds to the JSON property `equivalenceClassSize` @return [Fixnum]

num_distinct_sensitive_values[RW]

Number of distinct sensitive values in this equivalence class. Corresponds to the JSON property `numDistinctSensitiveValues` @return [Fixnum]

quasi_ids_values[RW]

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>]

top_sensitive_values[RW]

Estimated frequencies of top sensitive values. Corresponds to the JSON property `topSensitiveValues` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 3935
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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