class Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationResult

Result of the reidentifiability analysis. Note that these results are an estimation, not exact values.

Attributes

k_map_estimation_histogram[RW]

The intervals [min_anonymity, max_anonymity] do not overlap. If a value doesn' t correspond to any such interval, the associated frequency is zero. For example, the following records: `min_anonymity: 1, max_anonymity: 1, frequency: 17` `min_anonymity: 2, max_anonymity: 3, frequency: 42` `min_anonymity: 5, max_anonymity: 10, frequency: 99` mean that there are no record with an estimated anonymity of 4, 5, or larger than 10. Corresponds to the JSON property `kMapEstimationHistogram` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationHistogramBucket>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 3787
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 3792
def update!(**args)
  @k_map_estimation_histogram = args[:k_map_estimation_histogram] if args.key?(:k_map_estimation_histogram)
end