Class: Google::Apis::DlpV2::GooglePrivacyDlpV2beta1KAnonymityEquivalenceClass
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2beta1KAnonymityEquivalenceClass
- 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 k-anonymity 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::GooglePrivacyDlpV2beta1Value>
Set of values defining the equivalence class.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1KAnonymityEquivalenceClass
constructor
A new instance of GooglePrivacyDlpV2beta1KAnonymityEquivalenceClass.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1KAnonymityEquivalenceClass
Returns a new instance of GooglePrivacyDlpV2beta1KAnonymityEquivalenceClass
5373 5374 5375 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5373 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
5364 5365 5366 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5364 def equivalence_class_size @equivalence_class_size end |
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2beta1Value>
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
5371 5372 5373 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5371 def quasi_ids_values @quasi_ids_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5378 5379 5380 5381 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5378 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 |