Class: Google::Cloud::Dlp::V2::AnalyzeDataSourceRiskDetails::CategoricalStatsResult

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/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_buckets::Array<::Google::Cloud::Dlp::V2::AnalyzeDataSourceRiskDetails::CategoricalStatsResult::CategoricalStatsHistogramBucket>

Returns Histogram of value frequencies in the column.



1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 1752

class CategoricalStatsResult
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Histogram of value frequencies in the column.
  # @!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::Cloud::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
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end