class Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsHistogramBucket
Histogram of value frequencies in the column.
Attributes
Total number of values in this bucket. Corresponds to the JSON property `bucketSize` @return [Fixnum]
Total number of distinct values in this bucket. Corresponds to the JSON property `bucketValueCount` @return [Fixnum]
Sample of value frequencies in this bucket. The total number of values returned per bucket is capped at 20. Corresponds to the JSON property `bucketValues` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency>]
Lower bound on the value frequency of the values in this bucket. Corresponds to the JSON property `valueFrequencyLowerBound` @return [Fixnum]
Upper bound on the value frequency of the values in this bucket. Corresponds to the JSON property `valueFrequencyUpperBound` @return [Fixnum]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 568 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 573 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) @value_frequency_lower_bound = args[:value_frequency_lower_bound] if args.key?(:value_frequency_lower_bound) @value_frequency_upper_bound = args[:value_frequency_upper_bound] if args.key?(:value_frequency_upper_bound) end