Class: Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationQuasiIdValues
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationQuasiIdValues
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb
Overview
A tuple of values for the quasi-identifier columns.
Instance Attribute Summary collapse
-
#estimated_anonymity ⇒ Fixnum
The estimated anonymity for these quasi-identifier values.
-
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
The quasi-identifier values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2KMapEstimationQuasiIdValues
constructor
A new instance of GooglePrivacyDlpV2KMapEstimationQuasiIdValues.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2KMapEstimationQuasiIdValues
Returns a new instance of GooglePrivacyDlpV2KMapEstimationQuasiIdValues
3393 3394 3395 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3393 def initialize(**args) update!(**args) end |
Instance Attribute Details
#estimated_anonymity ⇒ Fixnum
The estimated anonymity for these quasi-identifier values.
Corresponds to the JSON property estimatedAnonymity
3386 3387 3388 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3386 def estimated_anonymity @estimated_anonymity end |
#quasi_ids_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>
The quasi-identifier values.
Corresponds to the JSON property quasiIdsValues
3391 3392 3393 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3391 def quasi_ids_values @quasi_ids_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3398 3399 3400 3401 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3398 def update!(**args) @estimated_anonymity = args[:estimated_anonymity] if args.key?(:estimated_anonymity) @quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values) end |