class Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityHistogramBucket
Histogram of l-diversity equivalence class sensitive value frequencies.
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::GooglePrivacyDlpV2LDiversityEquivalenceClass>]
Lower bound on the sensitive value frequencies of the equivalence classes in this bucket. Corresponds to the JSON property `sensitiveValueFrequencyLowerBound` @return [Fixnum]
Upper bound on the sensitive value frequencies of the equivalence classes in this bucket. Corresponds to the JSON property `sensitiveValueFrequencyUpperBound` @return [Fixnum]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 3980 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 3985 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) @sensitive_value_frequency_lower_bound = args[:sensitive_value_frequency_lower_bound] if args.key?(:sensitive_value_frequency_lower_bound) @sensitive_value_frequency_upper_bound = args[:sensitive_value_frequency_upper_bound] if args.key?(:sensitive_value_frequency_upper_bound) end