class Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityHistogramBucket

Histogram of l-diversity equivalence class sensitive value frequencies.

Attributes

bucket_size[RW]

Total number of equivalence classes in this bucket. Corresponds to the JSON property `bucketSize` @return [Fixnum]

bucket_value_count[RW]

Total number of distinct equivalence classes in this bucket. Corresponds to the JSON property `bucketValueCount` @return [Fixnum]

bucket_values[RW]

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>]

sensitive_value_frequency_lower_bound[RW]

Lower bound on the sensitive value frequencies of the equivalence classes in this bucket. Corresponds to the JSON property `sensitiveValueFrequencyLowerBound` @return [Fixnum]

sensitive_value_frequency_upper_bound[RW]

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

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 3980
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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