Class: Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationResult

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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2KMapEstimationResult

Returns a new instance of GooglePrivacyDlpV2KMapEstimationResult.



6553
6554
6555
# File 'lib/google/apis/dlp_v2/classes.rb', line 6553

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

Instance Attribute Details

#k_map_estimation_histogramArray<Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationHistogramBucket>

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



6551
6552
6553
# File 'lib/google/apis/dlp_v2/classes.rb', line 6551

def k_map_estimation_histogram
  @k_map_estimation_histogram
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6558
6559
6560
# File 'lib/google/apis/dlp_v2/classes.rb', line 6558

def update!(**args)
  @k_map_estimation_histogram = args[:k_map_estimation_histogram] if args.key?(:k_map_estimation_histogram)
end