Class: Google::Privacy::Dlp::V2beta1::RiskAnalysisOperationResult::CategoricalStatsResult

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/dlp/v2beta1/doc/google/privacy/dlp/v2beta1/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::V2beta1::RiskAnalysisOperationResult::CategoricalStatsResult::CategoricalStatsHistogramBucket>

Returns Histogram of value frequencies in the column.



592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
# File 'lib/google/cloud/dlp/v2beta1/doc/google/privacy/dlp/v2beta1/dlp.rb', line 592

class CategoricalStatsResult
  # Histogram bucket 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 records in this bucket.
  # @!attribute [rw] bucket_values
  #   @return [Array<Google::Privacy::Dlp::V2beta1::ValueFrequency>]
  #     Sample of value frequencies in this bucket. The total number of
  #     values returned per bucket is capped at 20.
  class CategoricalStatsHistogramBucket; end
end