Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RiskAnalysisOperationResult
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RiskAnalysisOperationResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb
Overview
Result of a risk analysis
Operation
request.
Instance Attribute Summary collapse
-
#categorical_stats_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CategoricalStatsResult
Result of the categorical stats computation.
-
#k_anonymity_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1KAnonymityResult
Result of the k-anonymity computation.
-
#k_map_estimation_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1KMapEstimationResult
Result of the reidentifiability analysis.
-
#l_diversity_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1LDiversityResult
Result of the l-diversity computation.
-
#numerical_stats_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1NumericalStatsResult
Result of the numerical stats computation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1RiskAnalysisOperationResult
constructor
A new instance of GooglePrivacyDlpV2beta1RiskAnalysisOperationResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1RiskAnalysisOperationResult
Returns a new instance of GooglePrivacyDlpV2beta1RiskAnalysisOperationResult
3193 3194 3195 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3193 def initialize(**args) update!(**args) end |
Instance Attribute Details
#categorical_stats_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CategoricalStatsResult
Result of the categorical stats computation.
Corresponds to the JSON property categoricalStatsResult
3170 3171 3172 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3170 def categorical_stats_result @categorical_stats_result end |
#k_anonymity_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1KAnonymityResult
Result of the k-anonymity computation.
Corresponds to the JSON property kAnonymityResult
3175 3176 3177 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3175 def k_anonymity_result @k_anonymity_result end |
#k_map_estimation_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1KMapEstimationResult
Result of the reidentifiability analysis. Note that these results are an
estimation, not exact values.
Corresponds to the JSON property kMapEstimationResult
3181 3182 3183 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3181 def k_map_estimation_result @k_map_estimation_result end |
#l_diversity_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1LDiversityResult
Result of the l-diversity computation.
Corresponds to the JSON property lDiversityResult
3186 3187 3188 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3186 def l_diversity_result @l_diversity_result end |
#numerical_stats_result ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1NumericalStatsResult
Result of the numerical stats computation.
Corresponds to the JSON property numericalStatsResult
3191 3192 3193 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3191 def numerical_stats_result @numerical_stats_result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3198 3199 3200 3201 3202 3203 3204 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3198 def update!(**args) @categorical_stats_result = args[:categorical_stats_result] if args.key?(:categorical_stats_result) @k_anonymity_result = args[:k_anonymity_result] if args.key?(:k_anonymity_result) @k_map_estimation_result = args[:k_map_estimation_result] if args.key?(:k_map_estimation_result) @l_diversity_result = args[:l_diversity_result] if args.key?(:l_diversity_result) @numerical_stats_result = args[:numerical_stats_result] if args.key?(:numerical_stats_result) end |