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.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2LDiversityEquivalenceClass
Returns a new instance of GooglePrivacyDlpV2LDiversityEquivalenceClass.
3922 3923 3924 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3922 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
3904 3905 3906 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3904 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
3909 3910 3911 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3909 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
3915 3916 3917 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3915 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
3920 3921 3922 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3920 def top_sensitive_values @top_sensitive_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3927 3928 3929 3930 3931 3932 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3927 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 |