class Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityHistogramBucket
Histogram of k-anonymity equivalence classes.
Attributes
Total number of equivalence classes in this bucket. Corresponds to the JSON property `bucketSize` @return [Fixnum]
Total number of distinct equivalence classes in this bucket. Corresponds to the JSON property `bucketValueCount` @return [Fixnum]
Sample of equivalence classes in this bucket. The total number of classes returned per bucket is capped at 20. Corresponds to the JSON property `bucketValues` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityEquivalenceClass>]
Lower bound on the size of the equivalence classes in this bucket. Corresponds to the JSON property `equivalenceClassSizeLowerBound` @return [Fixnum]
Upper bound on the size of the equivalence classes in this bucket. Corresponds to the JSON property `equivalenceClassSizeUpperBound` @return [Fixnum]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 3624 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 3629 def update!(**args) @bucket_size = args[:bucket_size] if args.key?(:bucket_size) @bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count) @bucket_values = args[:bucket_values] if args.key?(:bucket_values) @equivalence_class_size_lower_bound = args[:equivalence_class_size_lower_bound] if args.key?(:equivalence_class_size_lower_bound) @equivalence_class_size_upper_bound = args[:equivalence_class_size_upper_bound] if args.key?(:equivalence_class_size_upper_bound) end