Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1KMapEstimationResult
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1KMapEstimationResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/representations.rb
Overview
Result of the reidentifiability analysis. Note that these results are an estimation, not exact values.
Instance Attribute Summary collapse
-
#k_map_estimation_histogram ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1KMapEstimationHistogramBucket>
The intervals [min_anonymity, max_anonymity] do not overlap.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1KMapEstimationResult
constructor
A new instance of GooglePrivacyDlpV2beta1KMapEstimationResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1KMapEstimationResult
Returns a new instance of GooglePrivacyDlpV2beta1KMapEstimationResult
895 896 897 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 895 def initialize(**args) update!(**args) end |
Instance Attribute Details
#k_map_estimation_histogram ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1KMapEstimationHistogramBucket>
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
893 894 895 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 893 def k_map_estimation_histogram @k_map_estimation_histogram end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
900 901 902 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 900 def update!(**args) @k_map_estimation_histogram = args[:k_map_estimation_histogram] if args.key?(:k_map_estimation_histogram) end |