Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket
- 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
A DeltaPresenceEstimationHistogramBucket message with the following values: min_probability: 0.1 max_probability: 0.2 frequency: 42 means that there are 42 records for which δ is in [0.1, 0.2). An important particular case is when min_probability = max_probability = 1: then, every individual who shares this quasi-identifier combination is in the dataset.
Instance Attribute Summary collapse
-
#bucket_size ⇒ Fixnum
Number of records within these probability bounds.
-
#bucket_value_count ⇒ Fixnum
Total number of distinct quasi-identifier tuple values in this bucket.
-
#bucket_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues>
Sample of quasi-identifier tuple values in this bucket.
-
#max_probability ⇒ Float
Always greater than or equal to min_probability.
-
#min_probability ⇒ Float
Between 0 and 1.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket
constructor
A new instance of GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket
Returns a new instance of GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.
3190 3191 3192 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3190 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket_size ⇒ Fixnum
Number of records within these probability bounds.
Corresponds to the JSON property bucketSize
3167 3168 3169 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3167 def bucket_size @bucket_size end |
#bucket_value_count ⇒ Fixnum
Total number of distinct quasi-identifier tuple values in this bucket.
Corresponds to the JSON property bucketValueCount
3172 3173 3174 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3172 def bucket_value_count @bucket_value_count end |
#bucket_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues>
Sample of quasi-identifier tuple values in this bucket. The total number of
classes returned per bucket is capped at 20.
Corresponds to the JSON property bucketValues
3178 3179 3180 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3178 def bucket_values @bucket_values end |
#max_probability ⇒ Float
Always greater than or equal to min_probability.
Corresponds to the JSON property maxProbability
3183 3184 3185 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3183 def max_probability @max_probability end |
#min_probability ⇒ Float
Between 0 and 1.
Corresponds to the JSON property minProbability
3188 3189 3190 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3188 def min_probability @min_probability end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3195 3196 3197 3198 3199 3200 3201 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3195 def update!(**args) @bucket_size = args[:bucket_size] if args.key?(:bucket_size) @bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count) @bucket_values = args[:bucket_values] if args.key?(:bucket_values) @max_probability = args[:max_probability] if args.key?(:max_probability) @min_probability = args[:min_probability] if args.key?(:min_probability) end |