Class: Google::Privacy::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult
- Inherits:
-
Object
- Object
- Google::Privacy::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult
- Defined in:
- lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb
Overview
Result of the k-anonymity computation.
Defined Under Namespace
Classes: KAnonymityEquivalenceClass, KAnonymityHistogramBucket
Instance Attribute Summary collapse
-
#equivalence_class_histogram_buckets ⇒ Array<Google::Privacy::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult::KAnonymityHistogramBucket>
Histogram of k-anonymity equivalence classes.
Instance Attribute Details
#equivalence_class_histogram_buckets ⇒ Array<Google::Privacy::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult::KAnonymityHistogramBucket>
Returns Histogram of k-anonymity equivalence classes.
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 |
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 768 class KAnonymityResult # The set of columns' values that share the same ldiversity value # @!attribute [rw] quasi_ids_values # @return [Array<Google::Privacy::Dlp::V2::Value>] # 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. # @!attribute [rw] equivalence_class_size # @return [Integer] # Size of the equivalence class, for example number of rows with the # above set of values. class KAnonymityEquivalenceClass; end # @!attribute [rw] equivalence_class_size_lower_bound # @return [Integer] # Lower bound on the size of the equivalence classes in this bucket. # @!attribute [rw] equivalence_class_size_upper_bound # @return [Integer] # Upper bound on the size of the equivalence classes in this bucket. # @!attribute [rw] bucket_size # @return [Integer] # Total number of equivalence classes in this bucket. # @!attribute [rw] bucket_values # @return [Array<Google::Privacy::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult::KAnonymityEquivalenceClass>] # Sample of equivalence classes in this bucket. The total number of # classes returned per bucket is capped at 20. # @!attribute [rw] bucket_value_count # @return [Integer] # Total number of distinct equivalence classes in this bucket. class KAnonymityHistogramBucket; end end |