Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsHistogramBucket

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb

Overview

Histogram of value frequencies in the column.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2CategoricalStatsHistogramBucket

Returns a new instance of GooglePrivacyDlpV2CategoricalStatsHistogramBucket.



972
973
974
# File 'lib/google/apis/dlp_v2/classes.rb', line 972

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bucket_sizeFixnum

Total number of values in this bucket. Corresponds to the JSON property bucketSize

Returns:

  • (Fixnum)


949
950
951
# File 'lib/google/apis/dlp_v2/classes.rb', line 949

def bucket_size
  @bucket_size
end

#bucket_value_countFixnum

Total number of distinct values in this bucket. Corresponds to the JSON property bucketValueCount

Returns:

  • (Fixnum)


954
955
956
# File 'lib/google/apis/dlp_v2/classes.rb', line 954

def bucket_value_count
  @bucket_value_count
end

#bucket_valuesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency>

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



960
961
962
# File 'lib/google/apis/dlp_v2/classes.rb', line 960

def bucket_values
  @bucket_values
end

#value_frequency_lower_boundFixnum

Lower bound on the value frequency of the values in this bucket. Corresponds to the JSON property valueFrequencyLowerBound

Returns:

  • (Fixnum)


965
966
967
# File 'lib/google/apis/dlp_v2/classes.rb', line 965

def value_frequency_lower_bound
  @value_frequency_lower_bound
end

#value_frequency_upper_boundFixnum

Upper bound on the value frequency of the values in this bucket. Corresponds to the JSON property valueFrequencyUpperBound

Returns:

  • (Fixnum)


970
971
972
# File 'lib/google/apis/dlp_v2/classes.rb', line 970

def value_frequency_upper_bound
  @value_frequency_upper_bound
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



977
978
979
980
981
982
983
# File 'lib/google/apis/dlp_v2/classes.rb', line 977

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