class Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsHistogramBucket

Histogram of value frequencies in the column.

Attributes

bucket_size[RW]

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

bucket_value_count[RW]

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

bucket_values[RW]

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

value_frequency_lower_bound[RW]

Lower bound on the value frequency of the values in this bucket. Corresponds to the JSON property `valueFrequencyLowerBound` @return [Fixnum]

value_frequency_upper_bound[RW]

Upper bound on the value frequency of the values in this bucket. Corresponds to the JSON property `valueFrequencyUpperBound` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 568
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 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