Class: Google::Privacy::Dlp::V2::AnalyzeDataSourceRiskDetails::CategoricalStatsResult

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb

Overview

Result of the categorical stats computation.

Defined Under Namespace

Classes: CategoricalStatsHistogramBucket

Instance Attribute Summary collapse

Instance Attribute Details

#value_frequency_histogram_bucketsArray<Google::Privacy::Dlp::V2::AnalyzeDataSourceRiskDetails::CategoricalStatsResult::CategoricalStatsHistogramBucket>

Returns Histogram of value frequencies in the column.



909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 909

class CategoricalStatsResult
  # @!attribute [rw] value_frequency_lower_bound
  #   @return [Integer]
  #     Lower bound on the value frequency of the values in this bucket.
  # @!attribute [rw] value_frequency_upper_bound
  #   @return [Integer]
  #     Upper bound on the value frequency of the values in this bucket.
  # @!attribute [rw] bucket_size
  #   @return [Integer]
  #     Total number of values in this bucket.
  # @!attribute [rw] bucket_values
  #   @return [Array<Google::Privacy::Dlp::V2::ValueFrequency>]
  #     Sample of value frequencies in this bucket. The total number of
  #     values returned per bucket is capped at 20.
  # @!attribute [rw] bucket_value_count
  #   @return [Integer]
  #     Total number of distinct values in this bucket.
  class CategoricalStatsHistogramBucket; end
end