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.
6047 6048 6049 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6047 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
6038 6039 6040 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6038 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
6045 6046 6047 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6045 def quasi_ids_values @quasi_ids_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6052 6053 6054 6055 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6052 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 |